diff --git a/.gitignore b/.gitignore index c8cbc98da039..b979be8da5a6 100644 --- a/.gitignore +++ b/.gitignore @@ -144,4 +144,4 @@ dist # Visual Studio Code .vscode newrelic.ini - +themes/elitemba-theme diff --git a/.tx/config b/.tx/config index 75cec1910d7a..f03bf8365208 100644 --- a/.tx/config +++ b/.tx/config @@ -1,84 +1,104 @@ [main] host = https://www.transifex.com -[elitemba.django-partial] +[edx-i.django-partial] file_filter = conf/locale//LC_MESSAGES/django-partial.po source_file = conf/locale/en/LC_MESSAGES/django-partial.po source_lang = en type = PO -[elitemba.django-studio] +[edx-i.django-studio] file_filter = conf/locale//LC_MESSAGES/django-studio.po source_file = conf/locale/en/LC_MESSAGES/django-studio.po source_lang = en type = PO -[elitemba.djangojs-partial] +[edx-i.djangojs-partial] file_filter = conf/locale//LC_MESSAGES/djangojs-partial.po source_file = conf/locale/en/LC_MESSAGES/djangojs-partial.po source_lang = en type = PO -[elitemba.djangojs-studio] +[edx-i.djangojs-studio] file_filter = conf/locale//LC_MESSAGES/djangojs-studio.po source_file = conf/locale/en/LC_MESSAGES/djangojs-studio.po source_lang = en type = PO -[elitemba.mako] +[edx-i.mako] file_filter = conf/locale//LC_MESSAGES/mako.po source_file = conf/locale/en/LC_MESSAGES/mako.po source_lang = en type = PO -[elitemba.mako-studio] +[edx-i.mako-studio] file_filter = conf/locale//LC_MESSAGES/mako-studio.po source_file = conf/locale/en/LC_MESSAGES/mako-studio.po source_lang = en type = PO -[elitemba.underscore] +[edx-i.underscore] file_filter = conf/locale//LC_MESSAGES/underscore.po source_file = conf/locale/en/LC_MESSAGES/underscore.po source_lang = en type = PO -[elitemba.underscore-studio] +[edx-i.underscore-studio] file_filter = conf/locale//LC_MESSAGES/underscore-studio.po source_file = conf/locale/en/LC_MESSAGES/underscore-studio.po source_lang = en type = PO -[elitemba.wiki] +[edx-i.wiki] file_filter = conf/locale//LC_MESSAGES/wiki.po source_file = conf/locale/en/LC_MESSAGES/wiki.po source_lang = en type = PO -[open-edx-releases.release-ironwood] -file_filter = conf/locale//LC_MESSAGES/django.po -source_file = conf/locale/en/LC_MESSAGES/django.po -source_lang = en -type = PO - -[open-edx-releases.release-ironwood-js] -file_filter = conf/locale//LC_MESSAGES/djangojs.po -source_file = conf/locale/en/LC_MESSAGES/djangojs.po - -[elitemba.membership] +[edx-i.membership] file_filter = conf/locale//LC_MESSAGES/membership.po source_file = conf/locale/en/LC_MESSAGES/membership.po source_lang = en type = PO -[elitemba.membership-js] +[edx-i.membership-js] file_filter = conf/locale//LC_MESSAGES/membership-js.po source_file = conf/locale/en/LC_MESSAGES/membership-js.po source_lang = en type = PO -[elitemba.eliteu] +[edx-i.eliteu] file_filter = conf/locale//LC_MESSAGES/eliteu.po source_file = conf/locale/en/LC_MESSAGES/eliteu.po source_lang = en type = PO + +[edx-i.edx_proctoring_proctortrack] +file_filter = conf/locale//LC_MESSAGES/eliteu.po +source_file = conf/locale/en/LC_MESSAGES/eliteu.po +source_lang = en +type = PO + +[edx-i.django-theme] +file_filter = conf/locale//LC_MESSAGES/django-theme.po +source_file = conf/locale/en/LC_MESSAGES/django-theme.po +source_lang = en +type = PO + +[edx-i.djangojs-theme] +file_filter = conf/locale//LC_MESSAGES/djangojs-theme.po +source_file = conf/locale/en/LC_MESSAGES/djangojs-theme.po +source_lang = en +type = PO + +[edx-i.mako-theme] +file_filter = conf/locale//LC_MESSAGES/mako-theme.po +source_file = conf/locale/en/LC_MESSAGES/mako-theme.po +source_lang = en +type = PO + +[edx-i.underscore-theme] +file_filter = conf/locale//LC_MESSAGES/underscore-theme.po +source_file = conf/locale/en/LC_MESSAGES/underscore-theme.po +source_lang = en +type = PO diff --git a/cms/envs/devstack_docker.py b/cms/envs/devstack_docker.py index dc5f487805c4..407d44bd2046 100644 --- a/cms/envs/devstack_docker.py +++ b/cms/envs/devstack_docker.py @@ -9,8 +9,8 @@ LOGGING['loggers']['tracking']['handlers'] = ['console'] -LMS_BASE = 'edx.devstack.lms:18000' -CMS_BASE = 'edx.devstack.lms:18010' +LMS_BASE = 'localhost:18000' +CMS_BASE = 'localhost:18010' LMS_ROOT_URL = 'http://{}'.format(LMS_BASE) FEATURES.update({ diff --git a/cms/envs/eliteu_aliyun.py b/cms/envs/eliteu_aliyun.py new file mode 100644 index 000000000000..7d0c21f731c6 --- /dev/null +++ b/cms/envs/eliteu_aliyun.py @@ -0,0 +1,4 @@ +from .production import * + +############### Settings for AES Encryption/Decryption ################## +AES_KEY = AUTH_TOKENS.get('AES_KEY', '') diff --git a/cms/templates/base.html b/cms/templates/base.html index 655ccf949575..47610d171074 100644 --- a/cms/templates/base.html +++ b/cms/templates/base.html @@ -9,7 +9,6 @@ <%namespace name='static' file='static_content.html'/> <%! from django.utils.translation import ugettext as _ -from django.conf import settings from openedx.core.djangoapps.util.user_messages import PageLevelMessages from openedx.core.djangolib.js_utils import ( @@ -42,15 +41,6 @@ jsi18n_path = "js/i18n/{language}/djangojs.js".format(language=LANGUAGE_CODE) %> - <% sentry_dsn_frontend = getattr(settings, 'SENTRY_DSN_FRONTEND', '') %> - % if sentry_dsn_frontend: - - - % endif - % if getattr(settings, 'CAPTURE_CONSOLE_LOG', False): - diff --git a/cms/templates/emails/activation_email.txt b/cms/templates/emails/activation_email.txt index 80e4e6560ba5..7a54fc6b35ff 100644 --- a/cms/templates/emails/activation_email.txt +++ b/cms/templates/emails/activation_email.txt @@ -8,6 +8,4 @@ ${_("Thank you for signing up for {studio_name}! To activate your account, pleas http://${ site }/activate/${ key } % endif - - ${_("If you didn't request this, you don't need to do anything; you won't receive any more email from us. Please do not reply to this e-mail; if you require assistance, check the help section of the {studio_name} web site.").format(studio_name=settings.STUDIO_NAME)} diff --git a/cms/templates/register.html b/cms/templates/register.html index 5ee9216ab28b..3af9949bb61b 100644 --- a/cms/templates/register.html +++ b/cms/templates/register.html @@ -68,7 +68,7 @@

${_("Sign Up for {studio_name}").format(studio_name=se
  • diff --git a/cms/templates/settings.html b/cms/templates/settings.html index 4d85817421a7..1259802c7c30 100644 --- a/cms/templates/settings.html +++ b/cms/templates/settings.html @@ -279,7 +279,7 @@

    ${_('Course Schedule')}

    ${_("Last day students can enroll.")} % if not enrollment_end_editable: - ${_("Contact your EliteMBA partner manager to update these settings.")} + ${_("Contact your edX partner manager to update these settings.")} % endif diff --git a/common/djangoapps/student/fields.py b/common/djangoapps/student/fields.py new file mode 100644 index 000000000000..9e14c7fb790d --- /dev/null +++ b/common/djangoapps/student/fields.py @@ -0,0 +1,64 @@ +from django.db.models import CharField +from django.conf import settings +from hasher import AESCipher + + +class AESCharField(CharField): + """ + AESCharField + - Compatible with unencrypted data, the encrypted string will be carried + """ + + def __init__(self, *args, **kwargs): + """ + init + :param prefix: prefix + """ + if 'prefix' in kwargs: + self.prefix = kwargs['prefix'] + del kwargs['prefix'] + else: + self.prefix = "aes_str:::" + + self.cipher = AESCipher(settings.AES_KEY) + super(AESCharField, self).__init__(*args, **kwargs) + + def deconstruct(self): + name, path, args, kwargs = super(AESCharField, self).deconstruct() + + if self.prefix != "aes_str:::": + kwargs['prefix'] = self.prefix + return name, path, args, kwargs + + def from_db_value(self, value, expression, connection, context): + """ + decode + """ + if value is None: + return value + if value.startswith(self.prefix): + value = value[len(self.prefix):] + value = self.cipher.decrypt(value) + + return value + + def to_python(self, value): + if value is None: + return value + elif value.startswith(self.prefix): + value = value[len(self.prefix):] + value = self.cipher.decrypt(value) + + return value + + def get_prep_value(self, value): + """ + in + """ + if isinstance(value, str) or isinstance(value, unicode): + value = self.cipher.encrypt(value) + value = self.prefix + value + elif value is not None: + raise TypeError(str(value)+" is not a valid value for AESCharField") + + return value diff --git a/common/djangoapps/student/hasher.py b/common/djangoapps/student/hasher.py new file mode 100644 index 000000000000..0b4145ad6d50 --- /dev/null +++ b/common/djangoapps/student/hasher.py @@ -0,0 +1,44 @@ +import base64 +import hashlib +from Crypto import Random +from Crypto.Cipher import AES +from django.conf import settings + + +class AESCipher(object): + + def __init__(self, key, iv=b'X\x04\xa76\xe9\x9e\x19Sx\xe3CE*/\xb1.'): + """ + default use [settings.SECRET_KEY] + if user want to use custom, just like this. + eg. key = hashlib.sha256(settings.AES_KEY).digest() + + # iv = Random.new().read(AES.block_size) + # use settings iv instead of random to produce same result + """ + self.key = hashlib.sha256(key).digest() + self.iv = iv + + def encrypt(self, raw): + if raw is None: + return raw + + raw = self._pad(raw) + cipher = AES.new(self.key, AES.MODE_CBC, self.iv) + return base64.b64encode(self.iv + cipher.encrypt(raw.encode())) + + def decrypt(self, enc): + if enc is None: + return enc + + enc = base64.b64decode(enc) + iv = enc[:AES.block_size] + cipher = AES.new(self.key, AES.MODE_CBC, iv) + return self._unpad(cipher.decrypt(enc[AES.block_size:])).decode('utf-8') + + def _pad(self, s): + bs = AES.block_size + return s + (bs - len(s) % bs) * chr(bs - len(s) % bs) + + def _unpad(self, s): + return s[:-ord(s[len(s) - 1:])] diff --git a/common/djangoapps/student/migrations/0021_auto_20191216_0429.py b/common/djangoapps/student/migrations/0021_auto_20191216_0429.py new file mode 100644 index 000000000000..f454a3458285 --- /dev/null +++ b/common/djangoapps/student/migrations/0021_auto_20191216_0429.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.20 on 2019-12-16 09:29 +from __future__ import unicode_literals + +from django.db import migrations +import student.fields + + +class Migration(migrations.Migration): + + dependencies = [ + ('student', '0020_merge_20190510_0217'), + ] + + operations = [ + migrations.AlterField( + model_name='userprofile', + name='phone', + field=student.fields.AESCharField(max_length=60, null=True, verbose_name=b'Phone'), + ), + ] diff --git a/common/djangoapps/student/migrations/0022_hash_userprofile_phone.py b/common/djangoapps/student/migrations/0022_hash_userprofile_phone.py new file mode 100644 index 000000000000..15f86cb13969 --- /dev/null +++ b/common/djangoapps/student/migrations/0022_hash_userprofile_phone.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.20 on 2019-05-10 06:17 +from __future__ import unicode_literals + +from django.db import migrations +from student.models import UserProfile +from student.hasher import AESCipher + +def forwards_func(apps, schema_editor): + users = UserProfile.objects.all() + hasher = AESCipher + for profile in users: + profile.save() + + +class Migration(migrations.Migration): + + dependencies = [ + ('student', '0021_auto_20191216_0429'), + ] + + operations = [ + migrations.RunPython(forwards_func), + ] diff --git a/common/djangoapps/student/migrations/0023_hash_user_email.py b/common/djangoapps/student/migrations/0023_hash_user_email.py new file mode 100644 index 000000000000..4823af84c77c --- /dev/null +++ b/common/djangoapps/student/migrations/0023_hash_user_email.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.20 on 2019-05-10 06:17 +from __future__ import unicode_literals + +from django.db import migrations +from django.contrib.auth.models import User + + +def forwards_func(apps, schema_editor): + users = User.objects.all() + for user in users: + user.save(update_fields=["email"]) + + +class Migration(migrations.Migration): + + dependencies = [ + ('student', '0022_hash_userprofile_phone'), + ] + + operations = [ + migrations.RunPython(forwards_func), + ] diff --git a/common/djangoapps/student/models.py b/common/djangoapps/student/models.py index 8e1c8991f2b5..cb0e9a1f3a13 100644 --- a/common/djangoapps/student/models.py +++ b/common/djangoapps/student/models.py @@ -52,6 +52,8 @@ from edx_django_utils.cache import RequestCache import lms.lib.comment_client as cc +from student.hasher import AESCipher +from student.fields import AESCharField from student.signals import UNENROLL_DONE, ENROLL_STATUS_CHANGE, ENROLLMENT_TRACK_UPDATED from lms.djangoapps.certificates.models import GeneratedCertificate from course_modes.models import CourseMode @@ -474,7 +476,8 @@ class Meta(object): bio = models.CharField(blank=True, null=True, max_length=3000, db_index=False) profile_image_uploaded_at = models.DateTimeField(null=True, blank=True) - phone = models.CharField(_(u"Phone"), max_length=32, null=True) + #phone = models.CharField(_(u"Phone"), max_length=32, null=True) + phone = AESCharField("Phone", max_length=60, null=True) @property def has_profile_image(self): diff --git a/common/djangoapps/student/views/dashboard.py b/common/djangoapps/student/views/dashboard.py index b6779149a1c4..c4ac76241c90 100644 --- a/common/djangoapps/student/views/dashboard.py +++ b/common/djangoapps/student/views/dashboard.py @@ -900,3 +900,11 @@ def student_dashboard(request): response = render_to_response('dashboard.html', context) set_logged_in_cookies(request, response, user) return response + + +def enroll_programs(request, user): + site_org_whitelist, site_org_blacklist = get_org_black_and_whitelist_for_site() + course_enrollments = list(get_course_enrollments(user, site_org_whitelist, site_org_blacklist)) + meter = ProgramProgressMeter(request.site, user, enrollments=course_enrollments) + inverted_programs = meter.invert_programs() + return len(inverted_programs) > 0 diff --git a/common/djangoapps/student/views/management.py b/common/djangoapps/student/views/management.py index dc8a113cc294..76bddf1d95c1 100644 --- a/common/djangoapps/student/views/management.py +++ b/common/djangoapps/student/views/management.py @@ -7,6 +7,9 @@ import uuid from collections import namedtuple +import pytz +from dateutil.relativedelta import relativedelta + from bulk_email.models import Optout from courseware.courses import get_courses, sort_by_announcement, sort_by_start_date from django.conf import settings @@ -93,6 +96,7 @@ from util.db import outer_atomic from util.json_request import JsonResponse from util.password_policy_validators import normalize_password, validate_password +from elitemba.models import create_by_activate log = logging.getLogger("edx.student") @@ -636,7 +640,29 @@ def activate_account(request, key): ), extra_tags='account-activation aa-icon', ) - + try: + import requests + import time + cn = time.strftime('%Y%m%d', time.localtime(time.time())) + google_analytics = 'http://www.google-analytics.com/collect?v=1&tid={}&cid={}&t=event&ec=email&ea=open&el=activate&cs=email&cm=email&cn={}&cm1=1'.format( + settings.GOOGLE_ANALYTICS_ACCOUNT, key, cn + ) + log.info(google_analytics) + r = requests.get(google_analytics) + except Exception as ex: + log.error(ex) + + if registration.user.email.split('@')[-1] in settings.EMAIL_ACCESS_LIST: + from membership.models import VIPInfo + expired_at = datetime.datetime.now(pytz.utc) + \ + relativedelta(days=+int(settings.EMAIL_ACCESS_DATE)) + vip_info = VIPInfo.objects.filter(user=registration.user) + if not vip_info: + VIPInfo.objects.create(user=registration.user, expired_at=expired_at) + + if registration.user.email.split('@')[-1] in settings.HMM_CONFIGS.get('ACCESS_LIST', {}).keys(): + create_by_activate(registration.user) + return redirect('dashboard') diff --git a/common/djangoapps/track/middleware.py b/common/djangoapps/track/middleware.py index 99a1c0e975f8..a8e35f287393 100644 --- a/common/djangoapps/track/middleware.py +++ b/common/djangoapps/track/middleware.py @@ -136,6 +136,9 @@ def enter_request_context(self, request): 'user_id': self.get_user_primary_key(request), 'username': self.get_username(request), 'ip': self.get_request_ip_address(request), + 'nickname': self.get_user_nickname(request), + 'phone': self.get_user_phone(request), + 'port' : request.META['SERVER_PORT'] if request.META['SERVER_PORT'] else '', } for header_name, context_key in META_KEY_TO_CONTEXT_KEY.iteritems(): # HTTP headers may contain Latin1 characters. Decoding using Latin1 encoding here @@ -198,6 +201,21 @@ def get_username(self, request): except AttributeError: return '' + def get_user_nickname(self, request): + """Gets the user nickname of the logged in Django user""" + try: + return request.user.profile.name + except AttributeError: + return '' + + def get_user_phone(self, request): + """Gets the user phone of the logged in Django user""" + try: + phone = request.user.profile.phone + return phone if phone is not None else '' + except AttributeError: + return '' + def get_request_ip_address(self, request): """Gets the IP address of the request""" ip_address = get_ip(request) diff --git a/common/djangoapps/util/sms_utils.py b/common/djangoapps/util/sms_utils.py index d1fe8927d863..34e3f7be96fa 100644 --- a/common/djangoapps/util/sms_utils.py +++ b/common/djangoapps/util/sms_utils.py @@ -155,7 +155,7 @@ def send_short_message_by_linkgroup(destnumbers, msg, sendtime='', channel=1): :param Cell: 扩展号(必须是数字或为空)。 :param channel: 1-签名【E-ducation】。 :return: 实际需返回是否发送成功/失败,以及原因 - """ + """ CorpID = settings.SMS_API_BY_LINKGROUP['normal_auth']['userid'] # 账号 Pwd = settings.SMS_API_BY_LINKGROUP['normal_auth']['password'] # 密码 Mobile = destnumbers diff --git a/conf/locale/babel_third_party.cfg b/conf/locale/babel_third_party.cfg index 072a64a21034..c708f020f3b4 100644 --- a/conf/locale/babel_third_party.cfg +++ b/conf/locale/babel_third_party.cfg @@ -7,3 +7,9 @@ input_encoding = utf-8 [reactjs: **.jsx] input_encoding = utf-8 + +[mako: **.html] +input_encoding = utf-8 + +[javascript: **.js] +input_encoding = utf-8 diff --git a/conf/locale/config.yaml b/conf/locale/config.yaml index 070eb211a781..9aec47344073 100644 --- a/conf/locale/config.yaml +++ b/conf/locale/config.yaml @@ -153,17 +153,25 @@ third_party: segment: django-partial.po: # This .po file.. django-studio.po: # produces this .po file.. - - cms/* # by segregating strings from these files. + - cms/* # by segregating strings from these files. + django-theme.po: + - themes/* # Anything that doesn't match a pattern stays in the original file. djangojs-partial.po: djangojs-studio.po: - cms/* + djangojs-theme.po: + - themes/* mako.po: mako-studio.po: - cms/* + mako-theme.po: + - themes/* underscore.po: underscore-studio.po: - cms/* + underscore-theme.po: + - themes/* # How should the generate step merge files? generate_merge: @@ -175,9 +183,13 @@ generate_merge: - wiki.po - membership.po - eliteu.po + - django-theme.po + - mako-theme.po djangojs.po: - djangojs-partial.po - djangojs-studio.po - underscore.po - underscore-studio.po - membership-js.po + - djangojs-theme.po + - underscore-theme.po diff --git a/conf/locale/en/LC_MESSAGES/django-partial.po b/conf/locale/en/LC_MESSAGES/django-partial.po deleted file mode 100644 index ed8116194863..000000000000 --- a/conf/locale/en/LC_MESSAGES/django-partial.po +++ /dev/null @@ -1,11071 +0,0 @@ -# edX translation file. -# Copyright (C) 2019 EdX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:53+0000\n" -"PO-Revision-Date: 2019-05-16 10:53:15.452855\n" -"Last-Translator: \n" -"Language-Team: openedx-translation \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. Translators: 'Discussion' refers to the tab in the courseware that leads to -#. the discussion forums -#: cms/djangoapps/contentstore/views/component.py -#: lms/djangoapps/courseware/tabs.py lms/djangoapps/discussion/plugins.py -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "Discussion" -msgstr "" - -#: cms/djangoapps/contentstore/views/component.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Problem" -msgstr "" - -#: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/video_module/video_module.py -msgid "Advanced" -msgstr "" - -#: cms/djangoapps/contentstore/views/entrance_exam.py -#: lms/djangoapps/courseware/tabs.py -msgid "Entrance Exam" -msgstr "" - -#: cms/djangoapps/contentstore/views/helpers.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Section" -msgstr "" - -#: cms/djangoapps/contentstore/views/helpers.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Subsection" -msgstr "" - -#: cms/djangoapps/contentstore/views/helpers.py -#: lms/djangoapps/instructor/views/tools.py -msgid "Unit" -msgstr "" - -#: cms/djangoapps/contentstore/views/helpers.py -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Empty" -msgstr "" - -#: cms/djangoapps/contentstore/views/transcript_settings.py -#: cms/djangoapps/contentstore/views/transcript_settings.py -#: common/lib/xmodule/xmodule/video_module/video_handlers.py -#, python-brace-format -msgid "The following parameters are required: {missing}." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcript_settings.py -#: common/lib/xmodule/xmodule/video_module/video_handlers.py -#, python-brace-format -msgid "A transcript with the \"{language_code}\" language code already exists." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcript_settings.py -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -#: common/lib/xmodule/xmodule/video_module/video_handlers.py -msgid "A transcript file is required." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcript_settings.py -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -#: common/lib/xmodule/xmodule/video_module/video_handlers.py -msgid "" -"There is a problem with this transcript file. Try to upload a different " -"file." -msgstr "" - -#: cms/djangoapps/contentstore/views/videos.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/instructor/views/api.py -msgid "Name" -msgstr "" - -#: cms/djangoapps/contentstore/views/videos.py -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Video ID" -msgstr "" - -#: cms/djangoapps/contentstore/views/videos.py -#: lms/djangoapps/shoppingcart/reports.py -msgid "Status" -msgstr "" - -#. Translators: This is listed as the duration for a video that has not -#. yet reached the point in its processing by the servers where its -#. duration is determined. -#: cms/djangoapps/contentstore/views/videos.py -#: openedx/core/djangoapps/api_admin/models.py -msgid "Pending" -msgstr "" - -#: cms/envs/bok_choy.py lms/envs/bok_choy.py lms/envs/test.py -msgid "édX" -msgstr "" - -#: cms/envs/bok_choy.py lms/envs/bok_choy.py lms/envs/test.py -msgid "Open édX Platform" -msgstr "" - -#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html -msgid "Django site admin" -msgstr "" - -#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html -msgid "Django administration" -msgstr "" - -#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html -msgid "View site" -msgstr "" - -#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html -msgid "Documentation" -msgstr "" - -#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html -msgid "Log out" -msgstr "" - -#: common/djangoapps/course_modes/admin.py -#: common/djangoapps/course_modes/models.py -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Mode" -msgstr "" - -#: common/djangoapps/course_modes/admin.py -#: lms/djangoapps/courseware/date_summary.py -msgid "Verification Deadline" -msgstr "" - -#: common/djangoapps/course_modes/admin.py -msgid "" -"OPTIONAL: After this date/time, users will no longer be able to submit " -"photos for verification. This appies ONLY to modes that require " -"verification." -msgstr "" - -#: common/djangoapps/course_modes/helpers.py -msgid "Your verification is pending" -msgstr "" - -#: common/djangoapps/course_modes/helpers.py -msgid "Verified: Pending Verification" -msgstr "" - -#: common/djangoapps/course_modes/helpers.py -msgid "ID verification pending" -msgstr "" - -#: common/djangoapps/course_modes/helpers.py -msgid "You're enrolled as a verified student" -msgstr "" - -#: common/djangoapps/course_modes/helpers.py lms/envs/common.py -msgid "Verified" -msgstr "" - -#: common/djangoapps/course_modes/helpers.py -msgid "ID Verified Ribbon/Badge" -msgstr "" - -#: common/djangoapps/course_modes/helpers.py -msgid "You're enrolled as an honor code student" -msgstr "" - -#: common/djangoapps/course_modes/helpers.py lms/djangoapps/branding/api.py -#: lms/djangoapps/branding/api.py openedx/core/djangoapps/user_api/api.py -msgid "Honor Code" -msgstr "" - -#: common/djangoapps/course_modes/helpers.py -msgid "You're enrolled as a professional education student" -msgstr "" - -#: common/djangoapps/course_modes/helpers.py -msgid "Professional Ed" -msgstr "" - -#: common/djangoapps/course_modes/models.py -#: common/lib/xmodule/xmodule/annotatable_module.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/conditional_module.py -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/library_content_module.py -#: common/lib/xmodule/xmodule/lti_module.py -#: common/lib/xmodule/xmodule/split_test_module.py -#: common/lib/xmodule/xmodule/word_cloud_module.py -#: common/lib/xmodule/xmodule/x_module.py -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "Display Name" -msgstr "" - -#: common/djangoapps/course_modes/models.py -msgid "Price" -msgstr "" - -#: common/djangoapps/course_modes/models.py -msgid "Upgrade Deadline" -msgstr "" - -#: common/djangoapps/course_modes/models.py -msgid "" -"OPTIONAL: After this date/time, users will no longer be able to enroll in " -"this mode. Leave this blank if users can enroll in this mode until " -"enrollment closes for the course." -msgstr "" - -#: common/djangoapps/course_modes/models.py -msgid "" -"OPTIONAL: This is the SKU (stock keeping unit) of this mode in the external " -"ecommerce service. Leave this blank if the course has not yet been migrated" -" to the ecommerce service." -msgstr "" - -#: common/djangoapps/course_modes/models.py -msgid "" -"This is the bulk SKU (stock keeping unit) of this mode in the external " -"ecommerce service." -msgstr "" - -#: common/djangoapps/course_modes/models.py lms/envs/common.py -msgid "Honor" -msgstr "" - -#: common/djangoapps/course_modes/models.py -msgid "" -"Professional education modes are not allowed to have expiration_datetime " -"set." -msgstr "" - -#: common/djangoapps/course_modes/models.py -msgid "Verified modes cannot be free." -msgstr "" - -#. Translators: This will look like '$50', where {currency_symbol} is a symbol -#. such as '$' and {price} is a -#. numerical amount in that currency. Adjust this display as needed for your -#. language. -#: common/djangoapps/course_modes/models.py -#, python-brace-format -msgid "{currency_symbol}{price}" -msgstr "" - -#. Translators: This refers to the cost of the course. In this case, the -#. course costs nothing so it is free. -#: common/djangoapps/course_modes/models.py -msgid "Free" -msgstr "" - -#: common/djangoapps/course_modes/models.py -msgid "" -"The time period before a course ends in which a course mode will expire" -msgstr "" - -#: common/djangoapps/course_modes/views.py -#, python-brace-format -msgid "Congratulations! You are now enrolled in {course_name}" -msgstr "" - -#: common/djangoapps/course_modes/views.py -msgid "Enrollment is closed" -msgstr "" - -#: common/djangoapps/course_modes/views.py -msgid "Enrollment mode not supported" -msgstr "" - -#: common/djangoapps/course_modes/views.py -msgid "Invalid amount selected." -msgstr "" - -#: common/djangoapps/course_modes/views.py -msgid "No selected price or selected price is too low." -msgstr "" - -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "" - -#: common/djangoapps/django_comment_common/models.py -msgid "Community TA" -msgstr "" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "" - -#: common/djangoapps/student/admin.py -msgid "User profile" -msgstr "" - -#: common/djangoapps/student/admin.py common/djangoapps/student/admin.py -msgid "Account recovery" -msgstr "" - -#. Translators: This label appears above a field on the login form -#. meant to hold the user's password. -#. Translators: This label appears above a field on the registration form -#. meant to hold the user's password. -#: common/djangoapps/student/admin.py openedx/core/djangoapps/user_api/api.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Password" -msgstr "" - -#: common/djangoapps/student/admin.py -msgid "" -"Raw passwords are not stored, so there is no way to see this user's " -"password." -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "" -"That e-mail address doesn't have an associated user account. Are you sure " -"you've registered?" -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "" -"The user account associated with this e-mail address cannot reset the " -"password." -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "Full Name cannot contain the following characters: < >" -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "A properly formatted e-mail is required" -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "" - -#: common/djangoapps/student/forms.py -#, python-format -msgid "Email cannot be more than %(limit_value)s characters long" -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "You must accept the terms of service." -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "A level of education is required" -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "Your gender is required" -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "Your year of birth is required" -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "Your mailing address is required" -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "A description of your goals is required" -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "A city is required" -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "A country is required" -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "To enroll, you must follow the honor code." -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "You are missing one or more required fields" -msgstr "" - -#: common/djangoapps/student/forms.py -msgid "Unauthorized email address." -msgstr "" - -#: common/djangoapps/student/forms.py -#, python-brace-format -msgid "" -"It looks like {email} belongs to an existing account. Try again with a " -"different email address." -msgstr "" - -#: common/djangoapps/student/helpers.py -#, python-brace-format -msgid "An account with the Public Username '{username}' already exists." -msgstr "" - -#: common/djangoapps/student/helpers.py -#, python-brace-format -msgid "An account with the Email '{email}' already exists." -msgstr "" - -#: common/djangoapps/student/management/commands/manage_group.py -msgid "Removed group: \"{}\"" -msgstr "" - -#: common/djangoapps/student/management/commands/manage_group.py -msgid "Did not find a group with name \"{}\" - skipping." -msgstr "" - -#: common/djangoapps/student/management/commands/manage_group.py -#, python-brace-format -msgid "Invalid group name: \"{group_name}\". {messages}" -msgstr "" - -#: common/djangoapps/student/management/commands/manage_group.py -msgid "Created new group: \"{}\"" -msgstr "" - -#: common/djangoapps/student/management/commands/manage_group.py -msgid "Found existing group: \"{}\"" -msgstr "" - -#: common/djangoapps/student/management/commands/manage_group.py -#, python-brace-format -msgid "Adding {codenames} permissions to group \"{group}\"" -msgstr "" - -#: common/djangoapps/student/management/commands/manage_group.py -#, python-brace-format -msgid "Removing {codenames} permissions from group \"{group}\"" -msgstr "" - -#: common/djangoapps/student/management/commands/manage_group.py -msgid "" -"Invalid permission option: \"{}\". Please specify permissions using the " -"format: app_label:model_name:permission_codename." -msgstr "" - -#: common/djangoapps/student/management/commands/manage_group.py -#, python-brace-format -msgid "" -"Invalid permission codename: \"{codename}\". No such permission exists for " -"the model {module}.{model_name}." -msgstr "" - -#: common/djangoapps/student/management/commands/manage_user.py -#, python-brace-format -msgid "Setting {attribute} for user \"{username}\" to \"{new_value}\"" -msgstr "" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "" -"Skipping user \"{}\" because the specified and existing email addresses do " -"not match." -msgstr "" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Did not find a user with username \"{}\" - skipping." -msgstr "" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Removing user: \"{}\"" -msgstr "" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Created new user: \"{}\"" -msgstr "" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Found existing user: \"{}\"" -msgstr "" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Setting unusable password for user \"{}\"" -msgstr "" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Created new profile for user: \"{}\"" -msgstr "" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Could not find a group named \"{}\" - skipping." -msgstr "" - -#: common/djangoapps/student/management/commands/manage_user.py -#, python-brace-format -msgid "Adding user \"{username}\" to groups {group_names}" -msgstr "" - -#: common/djangoapps/student/management/commands/manage_user.py -#, python-brace-format -msgid "Removing user \"{username}\" from groups {group_names}" -msgstr "" - -#: common/djangoapps/student/middleware.py -#, python-brace-format -msgid "" -"Your account has been disabled. If you believe this was done in error, " -"please contact us at {support_email}" -msgstr "" - -#: common/djangoapps/student/middleware.py -msgid "Disabled Account" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Male" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Female" -msgstr "" - -#. Translators: 'Other' refers to the student's gender -#: common/djangoapps/student/models.py -msgid "Other/Prefer Not to Say" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Doctorate" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Master's or professional degree" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Bachelor's degree" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Associate degree" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Secondary/high school" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Junior secondary/junior high/middle school" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Elementary/primary school" -msgstr "" - -#. Translators: 'None' refers to the student's level of education -#: common/djangoapps/student/models.py -msgid "No formal education" -msgstr "" - -#. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py -msgid "Other education" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Phone" -msgstr "" - -#: common/djangoapps/student/models.py -#, python-brace-format -msgid "{platform_name} Honor Code Certificate for {course_name}" -msgstr "" - -#: common/djangoapps/student/models.py -#, python-brace-format -msgid "{platform_name} Verified Certificate for {course_name}" -msgstr "" - -#: common/djangoapps/student/models.py common/djangoapps/student/models.py -#, python-brace-format -msgid "{platform_name} Professional Certificate for {course_name}" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "" -"The company identifier for the LinkedIn Add-to-Profile button e.g " -"0_0dPSPyS070e0HsE9HNz_13_d11_" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "" -"Short identifier for the LinkedIn partner used in the tracking code. " -"(Example: 'edx') If no value is provided, tracking codes will not be sent " -"to LinkedIn." -msgstr "" - -#: common/djangoapps/student/models.py -#, python-brace-format -msgid "{platform_name} Certificate for {course_name}" -msgstr "" - -#: common/djangoapps/student/models.py common/djangoapps/student/models.py -msgid "The ISO 639-1 language code for this language." -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Namespace of enrollment attribute" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Name of the enrollment attribute" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Value of the enrollment attribute" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "" -"The window of time after enrolling during which users can be granted a " -"refund, represented in microseconds. The default is 14 days." -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Name of the UTM cookie" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Name of the affiliate cookie" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Name of this user attribute." -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Value of this user attribute." -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Secondary email address" -msgstr "" - -#: common/djangoapps/student/models.py -msgid "Secondary email address to recover linked account." -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -msgid " and " -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -msgid "Photos are mismatched" -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -msgid "Name missing from ID photo" -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -msgid "ID photo not provided" -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -msgid "ID is invalid" -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -msgid "Learner photo is blurry" -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -msgid "Name on ID does not match name on account" -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -msgid "Learner photo not provided" -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -msgid "ID photo is blurry" -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -#, python-brace-format -msgid "" -"Check your {email_start}{email}{email_end} inbox for an account activation " -"link from {platform_name}. If you need help, contact " -"{link_start}{platform_name} Support{link_end}." -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -#, python-brace-format -msgid "" -"Add a recovery email to retain access when single-sign on is not available. " -"Go to {link_start}your Account Settings{link_end}." -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -msgid "" -"Recovery email is not activated yet. Kindly visit your email and follow the " -"instructions to activate it." -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -#, python-brace-format -msgid "The course you are looking for does not start until {date}." -msgstr "" - -#: common/djangoapps/student/views/dashboard.py -#, python-brace-format -msgid "The course you are looking for is closed for enrollment as of {date}." -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "No inactive user with this e-mail exists" -msgstr "" - -#: common/djangoapps/student/views/management.py -#: common/djangoapps/student/views/management.py -msgid "Unable to send reactivation email" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Course id not specified" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Invalid course id" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Course id is invalid" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Could not enroll" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "You are not enrolled in this course" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Your certificate prevents you from unenrolling from this course" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Enrollment action is invalid" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Please enter a username" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Please choose an option" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "User with username {} does not exist" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Successfully disabled {}'s account" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Successfully reenabled {}'s account" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Unexpected account status" -msgstr "" - -#: common/djangoapps/student/views/management.py -#, python-brace-format -msgid "" -"{html_start}Your account could not be activated{html_end}Something went " -"wrong, please contact support to resolve this " -"issue." -msgstr "" - -#: common/djangoapps/student/views/management.py -#, python-brace-format -msgid "{html_start}This account has already been activated.{html_end}" -msgstr "" - -#: common/djangoapps/student/views/management.py -#, python-brace-format -msgid "{html_start}Success{html_end} You have activated your account." -msgstr "" - -#: common/djangoapps/student/views/management.py -#, python-brace-format -msgid "" -"{html_start}Success! You have activated your account.{html_end}You will now " -"receive email updates and alerts from us related to the courses you are " -"enrolled in. Sign In to continue." -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Some error occured during password change. Please try again" -msgstr "" - -#: common/djangoapps/student/views/management.py -#: common/djangoapps/student/views/management.py -msgid "No email address provided." -msgstr "" - -#: common/djangoapps/student/views/management.py -#: common/djangoapps/student/views/management.py -#: common/djangoapps/student/views/management.py -msgid "Password reset unsuccessful" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Error in resetting your password." -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Error in resetting your password. Please try again." -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Password creation unsuccessful" -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Error in creating your password. Please try again." -msgstr "" - -#: common/djangoapps/student/views/management.py -#, python-brace-format -msgid "" -"{html_start}Password Creation Complete{html_end}Your password has been " -"created. {bold_start}{email}{bold_end} is now your primary login email." -msgstr "" - -#: common/djangoapps/student/views/management.py -#: common/djangoapps/student/views/management.py -msgid "Valid e-mail address required." -msgstr "" - -#: common/djangoapps/student/views/management.py -#: common/djangoapps/student/views/management.py -msgid "Old email is the same as the new email." -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "E-mail address has been used." -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Cannot be same as your sign in email address." -msgstr "" - -#: common/djangoapps/student/views/management.py -msgid "Unable to send email activation link. Please try again later." -msgstr "" - -#: common/djangoapps/third_party_auth/admin.py -msgid "Deleted the selected configuration(s)." -msgstr "" - -#: common/djangoapps/third_party_auth/admin.py -msgid "Delete the selected configuration" -msgstr "" - -#: common/djangoapps/third_party_auth/middleware.py -msgid "Unable to connect with the external provider, please try again" -msgstr "" - -#: common/djangoapps/third_party_auth/models.py -msgid "Authentication with {} is currently unavailable." -msgstr "" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"Secondary providers are displayed less prominently, in a separate list of " -"\"Institution\" login providers." -msgstr "" - -#: common/djangoapps/third_party_auth/models.py -msgid "The Site that this provider configuration belongs to." -msgstr "" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is enabled, users that visit a \"TPA hinted\" URL for this " -"provider (e.g. a URL ending with `?tpa_hint=[provider_name]`) will be " -"forwarded directly to the login URL of the provider instead of being first " -"prompted with a login dialog." -msgstr "" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is enabled, users will not be asked to confirm their details " -"(name, email, etc.) during the registration process. Only select this option" -" for trusted providers that are known to provide accurate user information." -msgstr "" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is selected, users will not be required to confirm their " -"email, and their account will be activated immediately upon registration." -msgstr "" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is selected, users will be sent a welcome email upon " -"registration." -msgstr "" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is not selected, users will not be presented with the " -"provider as an option to authenticate with on the login screen, but manual " -"authentication using the correct link is still possible." -msgstr "" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is set, then users logging in using this SSO provider will " -"have their session length limited to no longer than this value. If set to 0 " -"(zero), the session will expire upon the user closing their browser. If left" -" blank, the Django platform session default length will be used." -msgstr "" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is selected, users will be directed to the registration page " -"immediately after authenticating with the third party instead of the login " -"page." -msgstr "" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"Synchronize user profile data received from the identity provider with the " -"edX user account on each SSO login. The user will be notified if the email " -"address associated with their account is changed as a part of this " -"synchronization." -msgstr "" - -#: common/djangoapps/third_party_auth/models.py -msgid "The Site that this SAML configuration belongs to." -msgstr "" - -#: common/djangoapps/third_party_auth/models.py -#, python-brace-format -msgid "{platform_name} Support" -msgstr "" - -#: common/djangoapps/third_party_auth/templates/third_party_auth/post_custom_auth_entry.html -msgid "Please wait" -msgstr "" - -#. Translators: the translation for "LONG_DATE_FORMAT" must be a format -#. string for formatting dates in a long form. For example, the -#. American English form is "%A, %B %d %Y". -#. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgid "LONG_DATE_FORMAT" -msgstr "" - -#. Translators: the translation for "DATE_TIME_FORMAT" must be a format -#. string for formatting dates with times. For example, the American -#. English form is "%b %d, %Y at %H:%M". -#. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgid "DATE_TIME_FORMAT" -msgstr "" - -#. Translators: the translation for "SHORT_DATE_FORMAT" must be a -#. format string for formatting dates in a brief form. For example, -#. the American English form is "%b %d %Y". -#. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgid "SHORT_DATE_FORMAT" -msgstr "" - -#. Translators: the translation for "TIME_FORMAT" must be a format -#. string for formatting times. For example, the American English -#. form is "%H:%M:%S". See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgid "TIME_FORMAT" -msgstr "" - -#. Translators: This is an AM/PM indicator for displaying times. It is -#. used for the %p directive in date-time formats. See http://strftime.org -#. for details. -#: common/djangoapps/util/date_utils.py -msgctxt "am/pm indicator" -msgid "AM" -msgstr "" - -#. Translators: This is an AM/PM indicator for displaying times. It is -#. used for the %p directive in date-time formats. See http://strftime.org -#. for details. -#: common/djangoapps/util/date_utils.py -msgctxt "am/pm indicator" -msgid "PM" -msgstr "" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Monday Februrary 10, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Monday" -msgstr "" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Tuesday" -msgstr "" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Wednesday" -msgstr "" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Thursday" -msgstr "" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Friday Februrary 14, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Friday" -msgstr "" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Saturday" -msgstr "" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Sunday" -msgstr "" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Mon" -msgstr "" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Tue" -msgstr "" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Wed" -msgstr "" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Thu" -msgstr "" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Fri" -msgstr "" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Sat" -msgstr "" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Sun" -msgstr "" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Jan 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Jan" -msgstr "" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Feb 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Feb" -msgstr "" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Mar 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Mar" -msgstr "" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Apr 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Apr" -msgstr "" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "May 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "May" -msgstr "" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Jun 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Jun" -msgstr "" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Jul 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Jul" -msgstr "" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Aug 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Aug" -msgstr "" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Sep 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Sep" -msgstr "" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Oct 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Oct" -msgstr "" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Nov 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Nov" -msgstr "" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Dec 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Dec" -msgstr "" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "January 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "January" -msgstr "" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "February 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "February" -msgstr "" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "March 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "March" -msgstr "" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "April 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "April" -msgstr "" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "May 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "May" -msgstr "" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "June 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "June" -msgstr "" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "July 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "July" -msgstr "" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "August 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "August" -msgstr "" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "September 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "September" -msgstr "" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "October 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "October" -msgstr "" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "November 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "November" -msgstr "" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "December 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "December" -msgstr "" - -#: common/djangoapps/util/file.py -#, python-brace-format -msgid "The file must end with the extension '{file_types}'." -msgid_plural "" -"The file must end with one of the following extensions: '{file_types}'." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/file.py -#, python-brace-format -msgid "Maximum upload file size is {file_size} bytes." -msgstr "" - -#: common/djangoapps/util/milestones_helpers.py -#, python-brace-format -msgid "Course {course_id} requires {prerequisite_course_id}" -msgstr "" - -#: common/djangoapps/util/milestones_helpers.py openedx/core/lib/gating/api.py -msgid "System defined milestone" -msgstr "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-brace-format -msgid "" -"Your password must contain {length_instruction}, including " -"{complexity_instructions}." -msgstr "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-brace-format -msgid "Your password must contain {length_instruction}." -msgstr "" - -#: common/djangoapps/util/password_policy_validators.py -msgid "Invalid password." -msgstr "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "" -"This password is too short. It must contain at least %(min_length)d " -"character." -msgid_plural "" -"This password is too short. It must contain at least %(min_length)d " -"characters." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain at least %(min_length)d character." -msgid_plural "Your password must contain at least %(min_length)d characters." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "at least %(min_length)d character" -msgid_plural "at least %(min_length)d characters" -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "" -"This password is too long. It must contain no more than %(max_length)d " -"character." -msgid_plural "" -"This password is too long. It must contain no more than %(max_length)d " -"characters." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain no more than %(max_length)d character." -msgid_plural "" -"Your password must contain no more than %(max_length)d characters." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "This password must contain at least %(min_alphabetic)d letter." -msgid_plural "This password must contain at least %(min_alphabetic)d letters." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain at least %(min_alphabetic)d letter." -msgid_plural "Your password must contain at least %(min_alphabetic)d letters." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "%(num)d letter" -msgid_plural "%(num)d letters" -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "This password must contain at least %(min_numeric)d number." -msgid_plural "This password must contain at least %(min_numeric)d numbers." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain at least %(min_numeric)d number." -msgid_plural "Your password must contain at least %(min_numeric)d numbers." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "%(num)d number" -msgid_plural "%(num)d numbers" -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "This password must contain at least %(min_upper)d uppercase letter." -msgid_plural "" -"This password must contain at least %(min_upper)d uppercase letters." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain at least %(min_upper)d uppercase letter." -msgid_plural "" -"Your password must contain at least %(min_upper)d uppercase letters." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "%(num)d uppercase letter" -msgid_plural "%(num)d uppercase letters" -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "This password must contain at least %(min_lower)d lowercase letter." -msgid_plural "" -"This password must contain at least %(min_lower)d lowercase letters." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain at least %(min_lower)d lowercase letter." -msgid_plural "" -"Your password must contain at least %(min_lower)d lowercase letters." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "%(num)d lowercase letter" -msgid_plural "%(num)d lowercase letters" -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "" -"This password must contain at least %(min_punctuation)d punctuation mark." -msgid_plural "" -"This password must contain at least %(min_punctuation)d punctuation marks." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "" -"Your password must contain at least %(min_punctuation)d punctuation mark." -msgid_plural "" -"Your password must contain at least %(min_punctuation)d punctuation marks." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "%(num)d punctuation mark" -msgid_plural "%(num)d punctuation marks" -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "This password must contain at least %(min_symbol)d symbol." -msgid_plural "This password must contain at least %(min_symbol)d symbols." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain at least %(min_symbol)d symbol." -msgid_plural "Your password must contain at least %(min_symbol)d symbols." -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "%(num)d symbol" -msgid_plural "%(num)d symbols" -msgstr[0] "" -msgstr[1] "" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "The password is too similar to the %(verbose_name)s." -msgstr "" - -#: common/djangoapps/util/password_policy_validators.py -msgid "Your password can't be too similar to your other personal information." -msgstr "" - -#: common/djangoapps/xblock_django/admin.py -msgid "" -"To disable the XBlock and prevent rendering in the LMS, leave \"Enabled\" " -"deselected; for clarity, update XBlockStudioConfiguration support state " -"accordingly." -msgstr "" - -#: common/djangoapps/xblock_django/admin.py -msgid "" -"Only XBlocks listed in a course's Advanced Module List can be flagged as " -"deprecated. Remember to update XBlockStudioConfiguration support state " -"accordingly, as deprecated does not impact whether or not new XBlock " -"instances can be created in Studio." -msgstr "" - -#: common/djangoapps/xblock_django/admin.py -msgid "" -"XBlock/template combinations that are disabled cannot be edited in Studio, " -"regardless of support level. Remember to also check if all instances of the " -"XBlock are disabled in XBlockConfiguration." -msgstr "" - -#: common/djangoapps/xblock_django/admin.py -msgid "" -"Enabled XBlock/template combinations with full or provisional support can " -"always be created in Studio. Unsupported XBlock/template combinations " -"require course author opt-in." -msgstr "" - -#: common/djangoapps/xblock_django/models.py -msgid "show deprecation messaging in Studio" -msgstr "" - -#: common/djangoapps/xblock_django/models.py -msgid "Fully Supported" -msgstr "" - -#: common/djangoapps/xblock_django/models.py -msgid "Provisionally Supported" -msgstr "" - -#: common/djangoapps/xblock_django/models.py -msgid "Unsupported" -msgstr "" - -#: common/lib/capa/capa/capa_problem.py -msgid "Cannot rescore problems with possible file submissions" -msgstr "" - -#: common/lib/capa/capa/capa_problem.py -#, python-brace-format -msgid "Question {0}" -msgstr "" - -#: common/lib/capa/capa/capa_problem.py -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Incorrect" -msgstr "" - -#: common/lib/capa/capa/capa_problem.py -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Correct" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "correct" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "incorrect" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "partially correct" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "incomplete" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py -msgid "unanswered" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "submitted" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "processing" -msgstr "" - -#. Translators: these are tooltips that indicate the state of an assessment -#. question -#: common/lib/capa/capa/inputtypes.py -msgid "This answer is correct." -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "This answer is incorrect." -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "This answer is partially correct." -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "This answer is being processed." -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "Not yet answered." -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "Select an option" -msgstr "" - -#. Translators: 'ChoiceGroup' is an input type and should not be translated. -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "ChoiceGroup: unexpected tag {tag_name}" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py -msgid "Answer received." -msgstr "" - -#. Translators: '' and '' are tag names and should not -#. be translated. -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "Expected a or tag; got {given_tag} instead" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "" -"Your files have been submitted. As soon as your submission is graded, this " -"message will be replaced with the grader's feedback." -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "" -"Your answer has been submitted. As soon as your submission is graded, this " -"message will be replaced with the grader's feedback." -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "{programming_language} editor" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "Press ESC then TAB or click outside of the code editor to exit" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "" -"Submitted. As soon as a response is returned, this message will be replaced " -"by that feedback." -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "Error running code." -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "Cannot connect to the queue" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py -msgid "No formula specified." -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "Couldn't parse formula: {error_msg}" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py -msgid "Error while rendering preview" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -msgid "Sorry, couldn't parse formula" -msgstr "" - -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "{input_type}: unexpected tag {tag_name}" -msgstr "" - -#. Translators: a "tag" is an XML element, such as "" in HTML -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "Expected a {expected_tag} tag; got {given_tag} instead" -msgstr "" - -#. Translators: index here could be 1,2,3 and so on -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Question {index}" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Correct:" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Incorrect:" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#: common/lib/xmodule/xmodule/capa_module.py -msgid "Answer" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Error {err} in evaluating hint function {hintfn}." -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "(Source code line unavailable)" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "See XML source line {sourcenum}." -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Checkboxes" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Multiple Choice" -msgstr "" - -#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not -#. be translated. -#: common/lib/capa/capa/responsetypes.py -msgid "Do not use shuffle and answer-pool at the same time" -msgstr "" - -#. Translators: 'answer-pool' is an attribute name and should not be -#. translated. -#: common/lib/capa/capa/responsetypes.py -msgid "answer-pool value should be an integer" -msgstr "" - -#. Translators: 'Choicegroup' is an input type and should not be translated. -#: common/lib/capa/capa/responsetypes.py -msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "True/False Choice" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Dropdown" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Numerical Input" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py -msgid "There was a problem with the staff answer to this problem." -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Could not interpret '{student_answer}' as a number." -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Factorial function evaluated outside its domain:'{student_answer}'" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Invalid math syntax: '{student_answer}'" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "You may not use complex numbers in range tolerance problems" -msgstr "" - -#. Translators: This is an error message for a math problem. If the instructor -#. provided a -#. boundary (end limit) for a variable that is a complex number (a + bi), this -#. message displays. -#: common/lib/capa/capa/responsetypes.py -msgid "" -"There was a problem with the staff answer to this problem: complex boundary." -msgstr "" - -#. Translators: This is an error message for a math problem. If the instructor -#. did not -#. provide a boundary (end limit) for a variable, this message displays. -#: common/lib/capa/capa/responsetypes.py -msgid "" -"There was a problem with the staff answer to this problem: empty boundary." -msgstr "" - -#. Translators: Separator used in NumericalResponse to display multiple -#. answers. -#. Translators: Separator used in StringResponse to display multiple answers. -#. Example: "Answer: Answer_1 or Answer_2 or Answer_3". -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py -msgid "or" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Text Input" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "error" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Custom Evaluated Script" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "error getting student answer from {student_answers}" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "No answer entered!" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "CustomResponse: check function returned an invalid dictionary!" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Symbolic Math Input" -msgstr "" - -#. Translators: 'SymbolicResponse' is a problem type and should not be -#. translated. -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "An error occurred with SymbolicResponse. The error was: {error_msg}" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Code Input" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "No answer provided." -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Error: No grader has been set up for this problem." -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "" -"Unable to deliver your submission to grader (Reason: {error_msg}). Please " -"try again later." -msgstr "" - -#. Translators: 'grader' refers to the edX automatic code grader. -#: common/lib/capa/capa/responsetypes.py -msgid "Invalid grader reply. Please contact the course staff." -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "External Grader" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Math Expression Input" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "" -"Factorial function not permitted in answer for this problem. Provided answer" -" was: {bad_input}" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Invalid input: Could not parse '{bad_input}' as a formula." -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Invalid input: Could not parse '{bad_input}' as a formula" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Circuit Schematic Builder" -msgstr "" - -#. Translators: 'SchematicResponse' is a problem type and should not be -#. translated. -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Image Mapped Input" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "error grading {image_input_id} (input={user_input})" -msgstr "" - -#. Translators: {sr_coords} are the coordinates of a rectangle -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Error in problem specification! Cannot parse rectangle in {sr_coords}" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Annotation Input" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "Checkboxes With Text Input" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Answer not provided for {input_type}" -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -msgid "The Staff answer could not be interpreted as a number." -msgstr "" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Could not interpret '{given_answer}' as a number." -msgstr "" - -#: common/lib/xmodule/xmodule/annotatable_module.py -msgid "XML data for the annotation" -msgstr "" - -#: common/lib/xmodule/xmodule/annotatable_module.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/conditional_module.py -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/library_content_module.py -#: common/lib/xmodule/xmodule/library_root_xblock.py -#: common/lib/xmodule/xmodule/poll_module.py -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -#: common/lib/xmodule/xmodule/word_cloud_module.py -#: common/lib/xmodule/xmodule/x_module.py -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "The display name for this component." -msgstr "" - -#: common/lib/xmodule/xmodule/annotatable_module.py -msgid "Annotation" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Blank Advanced Problem" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Number of attempts taken by the student on this problem" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Maximum Attempts" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Defines the number of times a student can try to answer this problem. If the" -" value is not set, infinite attempts are allowed." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Date that this problem is due by" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Amount of time after the due date that submissions will be accepted" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Show Results" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Defines when to show whether a learner's answer to the problem is correct. " -"Configured on the subsection." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Always" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Never" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Past Due" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Show Answer" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Defines when to show the answer to the problem. A default value can be set " -"in Advanced Settings." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Answered" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Attempted" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Closed" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Finished" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Correct or Past Due" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Whether to force the save button to appear on the page" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Show Reset Button" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Determines whether a 'Reset' button is shown so the user may reset their " -"answer. A default value can be set in Advanced Settings." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Randomization" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Defines when to randomize the variables specified in the associated Python " -"script. For problems that do not randomize values, specify \"Never\". " -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "On Reset" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Per Student" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "XML data for the problem" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Dictionary with the correctness of current student answers" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Dictionary for maintaining the state of inputtypes" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Dictionary with the current student responses" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Dictionary with the current student score" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Whether or not the answers have been saved since last submit" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Whether the student has answered the problem" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Random seed for this student" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Last submission time" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Timer Between Attempts" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Seconds a student must wait between submissions for a problem with multiple " -"attempts." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Problem Weight" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Defines the number of points each problem is worth. If the value is not set," -" each response field in the problem is worth one point." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Markdown source of this module" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Source code for LaTeX and Word problems. This feature is not well-supported." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/html_module.py -msgid "Enable LaTeX templates?" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Matlab API key" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Enter the API key provided by MathWorks for accessing the MATLAB Hosted " -"Service. This key is granted for exclusive use by this course for the " -"specified duration. Please do not share the API key with other courses and " -"notify MathWorks immediately if you believe the key is exposed or " -"compromised. To obtain a key for your course, or to report an issue, please " -"contact moocsupport@mathworks.com" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html -msgid "Submit" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Submitting" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Warning: The problem has been reset to its initial state!" -msgstr "" - -#. Translators: Following this message, there will be a bulleted list of -#. items. -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"The problem's state was corrupted by an invalid submission. The submission " -"consisted of:" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "If this error persists, please contact the course staff." -msgstr "" - -#. Translators: {previous_hints} is the HTML of hints that have already been -#. generated, {hint_number_prefix} -#. is a header for this hint, and {hint_text} is the text of the hint itself. -#. This string is being passed to translation only for possible reordering of -#. the placeholders. -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "{previous_hints}{list_start_tag}{strong_text}{hint_text}" -msgstr "" - -#. Translators: e.g. "Hint 1 of 3: " meaning we are showing the first of three -#. hints. -#. This text is shown in bold before the accompanying hint text. -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "Hint ({hint_num} of {hints_count}): " -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "" -"Your answers were previously saved. Click '{button_name}' to grade them." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "Incorrect ({progress} point)" -msgid_plural "Incorrect ({progress} points)" -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "Correct ({progress} point)" -msgid_plural "Correct ({progress} points)" -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "Partially correct ({progress} point)" -msgid_plural "Partially correct ({progress} points)" -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Partially Correct" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Answer submitted." -msgstr "" - -#. Translators: 'closed' means the problem's due date has passed. You may no -#. longer attempt to solve the problem. -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Problem is closed." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Problem must be reset before it can be submitted again." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "You must wait at least {wait} seconds between submissions." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "" -"You must wait at least {wait_secs} between submissions. {remaining_secs} " -"remaining." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "{num_hour} hour" -msgid_plural "{num_hour} hours" -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "{num_minute} minute" -msgid_plural "{num_minute} minutes" -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "{num_second} second" -msgid_plural "{num_second} seconds" -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Problem needs to be reset prior to save." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Your answers have been saved." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "" -"Your answers have been saved but not graded. Click '{button_name}' to grade " -"them." -msgstr "" - -#. Translators: 'closed' means the problem's due date has passed. You may no -#. longer attempt to solve the problem. -#: common/lib/xmodule/xmodule/capa_base.py -msgid "You cannot select Reset for a problem that is closed." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "You must submit an answer before you can select Reset." -msgstr "" - -#. Translators: 'rescoring' refers to the act of re-submitting a student's -#. solution so it can get a new score. -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Problem's definition does not support rescoring." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Problem must be answered before it can be graded again." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_module.py -msgid "" -"We're sorry, there was an error with processing your request. Please try " -"reloading your page and trying again." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_module.py -msgid "" -"The state of this problem has changed since you loaded this page. Please " -"refresh your page." -msgstr "" - -#: common/lib/xmodule/xmodule/capa_module.py -msgid "Answer ID" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_module.py -msgid "Question" -msgstr "" - -#: common/lib/xmodule/xmodule/capa_module.py -msgid "Correct Answer" -msgstr "" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "Conditional" -msgstr "" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "List of urls of children that are references to external modules" -msgstr "" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "Source Components" -msgstr "" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "" -"The component location IDs of all source components that are used to " -"determine whether a learner is shown the content of this conditional module." -" Copy the component location ID of a component from its Settings dialog in " -"Studio." -msgstr "" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "Conditional Attribute" -msgstr "" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "" -"The attribute of the source components that determines whether a learner is " -"shown the content of this conditional module." -msgstr "" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "Conditional Value" -msgstr "" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "" -"The value that the conditional attribute of the source components must match" -" before a learner is shown the content of this conditional module." -msgstr "" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "Blocked Content Message" -msgstr "" - -#: common/lib/xmodule/xmodule/conditional_module.py -#, python-brace-format -msgid "" -"The message that is shown to learners when not all conditions are met to " -"show the content of this conditional module. Include {link} in the text of " -"your message to give learners a direct link to required units. For example, " -"'You must complete {link} before you can access this unit'." -msgstr "" - -#: common/lib/xmodule/xmodule/conditional_module.py -#, python-brace-format -msgid "You must complete {link} before you can access this unit." -msgstr "" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "This component has no source components configured yet." -msgstr "" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "Configure list of sources" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -#, python-brace-format -msgid "" -"The selected proctoring provider, {proctoring_provider}, is not a valid " -"provider. Please select from one of {available_providers}." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "LTI Passports" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the passports for course LTI tools in the following format: " -"\"id:client_key:client_secret\"." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"List of Textbook objects with (title, url) for textbooks used in this course" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Slug that points to the wiki for this course" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Date that enrollment for this class is opened" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Date that enrollment for this class is closed" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Start time when this module is visible" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Date that this class ends" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Date that certificates become available to learners" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Cosmetic Course Display Price" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"The cost displayed to students for enrolling in the course. If a paid course" -" registration price is set by an administrator in the database, that price " -"will be displayed instead of this one." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Advertised Start" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the text that you want to use as the advertised starting time frame " -"for the course, such as \"Winter 2018\". If you enter null for this value, " -"the start date that you have set for this course is used." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Pre-Requisite Courses" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Pre-Requisite Course key if this course has a pre-requisite course" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Grading policy definition for this class" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Show Calculator" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. When true, students can see the calculator in the " -"course." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the name of the course as it should appear in the EliteMBA.cn course " -"list." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Display Name" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Course Editor" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enter the method by which this course is edited (\"XML\" or \"Studio\")." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Survey URL" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the URL for the end-of-course survey. If your course does not have a " -"survey, enter null." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Discussion Blackout Dates" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter pairs of dates between which students cannot post to discussion " -"forums. Inside the provided brackets, enter an additional set of square " -"brackets surrounding each pair of dates you add. Format each pair of dates " -"as [\"YYYY-MM-DD\", \"YYYY-MM-DD\"]. To specify times as well as dates, " -"format each pair as [\"YYYY-MM-DDTHH:MM\", \"YYYY-MM-DDTHH:MM\"]. Be sure to" -" include the \"T\" between the date and time. For example, an entry defining" -" two blackout periods looks like this, including the outer pair of square " -"brackets: [[\"2015-09-15\", \"2015-09-21\"], [\"2015-10-01\", " -"\"2015-10-08\"]] " -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Discussion Topic Mapping" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter discussion categories in the following format: \"CategoryName\": " -"{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " -"category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Discussion Sorting Alphabetical" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, discussion categories and subcategories are " -"sorted alphabetically. If false, they are sorted chronologically by creation" -" date and time." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Announcement Date" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter the date to announce your course." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Cohort Configuration" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter policy keys and values to enable the cohort feature, define automated " -"student assignment to groups, or identify any course-wide discussion topics " -"as private to cohort members." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Is New" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, the course appears in the list of new courses " -"on EliteMBA.cn, and a New! badge temporarily appears next to the course " -"image." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Mobile Course Available" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, the course will be available to mobile " -"devices." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Video Upload Credentials" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the unique identifier for your course's video files provided by " -"EliteMBA." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Not Graded" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter true or false. If true, the course will not be graded." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Disable Progress Graph" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter true or false. If true, students cannot view the progress graph." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "PDF Textbooks" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "List of dictionaries containing pdf_textbook configuration" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "HTML Textbooks" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"For HTML textbooks that appear as separate tabs in the course, enter the " -"name of the tab (usually the title of the book) as well as the URLs and " -"titles of each chapter in the book." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Remote Gradebook" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the remote gradebook mapping. Only use this setting when " -"REMOTE_GRADEBOOK_URL has been specified." -msgstr "" - -#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using -#. course content. CCX Coach is -#. a role created by a course Instructor to enable a person (the "Coach") to -#. manage the custom course for -#. his students. -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enable CCX" -msgstr "" - -#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using -#. course content. CCX Coach is -#. a role created by a course Instructor to enable a person (the "Coach") to -#. manage the custom course for -#. his students. -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Allow course instructors to assign CCX Coach roles, and allow coaches to " -"manage Custom Courses on EliteMBA. When false, Custom Courses cannot be " -"created, but existing Custom Courses will be preserved." -msgstr "" - -#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using -#. course content. -#: common/lib/xmodule/xmodule/course_module.py -msgid "CCX Connector URL" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"URL for CCX Connector application for managing creation of CCXs. (optional)." -" Ignored unless 'Enable CCX' is set to 'true'." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Allow Anonymous Discussion Posts" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, students can create discussion posts that are " -"anonymous to all users." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Allow Anonymous Discussion Posts to Peers" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, students can create discussion posts that are " -"anonymous to other students. This setting does not make posts anonymous to " -"course staff." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/library_root_xblock.py -msgid "Advanced Module List" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter the names of the advanced modules to use in your course." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Home Sidebar Name" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the heading that you want students to see above your course handouts " -"on the Course Home page. Your course handouts appear in the right panel of " -"the page." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Handouts" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"True if timezones should be shown on dates in the course. Deprecated in " -"favor of due_date_display_format." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Due Date Display Format" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the format for due dates. The default is Mon DD, YYYY. Enter " -"\"%m-%d-%Y\" for MM-DD-YYYY, \"%d-%m-%Y\" for DD-MM-YYYY, \"%Y-%m-%d\" for " -"YYYY-MM-DD, or \"%Y-%d-%m\" for YYYY-DD-MM." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "External Login Domain" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter the external login method students can use for the course." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificates Downloadable Before End" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, students can download certificates before the " -"course ends, if they've met certificate requirements." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificates Display Behavior" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter end, early_with_info, or early_no_info. After certificate generation, " -"students who passed see a link to their certificates on the dashboard and " -"students who did not pass see information about the grading configuration. " -"The default is end, which displays this certificate information to all " -"students after the course end date. To display this certificate information " -"to all students as soon as certificates are generated, enter " -"early_with_info. To display only the links to passing students as soon as " -"certificates are generated, enter early_no_info." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course About Page Image" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Edit the name of the course image file. You must upload this file on the " -"Files & Uploads page. You can also set the course image on the Settings & " -"Details page." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Banner Image" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Edit the name of the banner image file. You can set the banner image on the " -"Settings & Details page." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Video Thumbnail Image" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Edit the name of the video thumbnail image file. You can set the video " -"thumbnail image on the Settings & Details page." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Issue Open Badges" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Issue Open Badges badges for this course. Badges are generated when " -"certificates are created." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Use this setting only when generating PDF certificates. Between quotation " -"marks, enter the short name of the type of certificate that students receive" -" when they complete the course. For instance, \"Certificate\"." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificate Name (Short)" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Use this setting only when generating PDF certificates. Between quotation " -"marks, enter the long name of the type of certificate that students receive " -"when they complete the course. For instance, \"Certificate of Achievement\"." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificate Name (Long)" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificate Web/HTML View Enabled" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "If true, certificate Web/HTML views are enabled for the course." -msgstr "" - -#. Translators: This field is the container for course-specific certificate -#. configuration values -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificate Web/HTML View Overrides" -msgstr "" - -#. Translators: These overrides allow for an alternative configuration of the -#. certificate web view -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter course-specific overrides for the Web/HTML template parameters here " -"(JSON format)" -msgstr "" - -#. Translators: This field is the container for course-specific certificate -#. configuration values -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificate Configuration" -msgstr "" - -#. Translators: These overrides allow for an alternative configuration of the -#. certificate web view -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter course-specific configuration information here (JSON format)" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "CSS Class for Course Reruns" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Allows courses to share the same css class across runs even if they have " -"different numbers." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Discussion Forum External Link" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Allows specification of an external link to replace discussion forums." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Hide Progress Tab" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Allows hiding of the progress tab." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Organization Display String" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the course organization that you want to appear in the course. This " -"setting overrides the organization that you entered when you created the " -"course. To use the organization that you entered when you created the " -"course, enter null." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Number Display String" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the course number that you want to appear in the course. This setting " -"overrides the course number that you entered when you created the course. To" -" use the course number that you entered when you created the course, enter " -"null." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Maximum Student Enrollment" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the maximum number of students that can enroll in the course. To allow" -" an unlimited number of students, enter null." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Allow Public Wiki Access" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, EliteMBA users can view the course wiki even " -"if they're not enrolled in the course." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Invitation Only" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Whether to restrict enrollment to invitation by the course staff." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Pre-Course Survey Name" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Name of SurveyForm to display as a pre-course survey to the user." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Pre-Course Survey Required" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Specify whether students must complete a survey before they can view your " -"course content. If you set this value to true, you must add a name for the " -"survey to the Course Survey Name setting above." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Visibility In Catalog" -msgstr "" - -#. Translators: the quoted words 'both', 'about', and 'none' must be -#. left untranslated. Leave them as English words. -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Defines the access permissions for showing the course in the course catalog." -" This can be set to one of three values: 'both' (show in catalog and allow " -"access to about page), 'about' (only allow access to about page), 'none' (do" -" not show in catalog and do not allow access to an about page)." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Entrance Exam Enabled" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Specify whether students must complete an entrance exam before they can view" -" your course content. Note, you must enable Entrance Exams for this course " -"setting to take effect." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Entrance Exam Minimum Score (%)" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Specify a minimum percentage score for an entrance exam before students can " -"view your course content. Note, you must enable Entrance Exams for this " -"course setting to take effect." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Entrance Exam ID" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Content module identifier (location) of entrance exam." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Social Media Sharing URL" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"If dashboard social sharing and custom course URLs are enabled, you can " -"provide a URL (such as the URL to a course About page) that social media " -"sites can link to. URLs must be fully qualified. For example: " -"http://www.edx.org/course/Introduction-to-MOOCs-ITM001" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Language" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Specify the language of your course." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Teams Configuration" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -#, python-brace-format -msgid "" -"Specify the maximum team size and topics for teams inside the provided set " -"of curly braces. Make sure that you enclose all of the sets of topic values " -"within a set of square brackets, with a comma after the closing curly brace " -"for each topic, and another comma after the closing square brackets. For " -"example, to specify that teams should have a maximum of 5 participants and " -"provide a list of 2 topics, enter the configuration in this format: " -"{example_format}. In \"id\" values, the only supported special characters " -"are underscore, hyphen, and period." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enable Proctored Exams" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If this value is true, proctored exams are enabled in " -"your course. Note that enabling proctored exams will also enable timed " -"exams." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Proctoring Provider" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -#, python-brace-format -msgid "" -"Enter the proctoring provider you want to use for this course run. Choose " -"from the following options: {available_providers}." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Allow Opting Out of Proctored Exams" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If this value is true, learners can choose to take " -"proctored exams without proctoring. If this value is false, all learners " -"must take the exam with proctoring. This setting only applies if proctored " -"exams are enabled for the course." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Create Zendesk Tickets For Suspicious Proctored Exam Attempts" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If this value is true, a Zendesk ticket will be created" -" for suspicious attempts." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enable Timed Exams" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If this value is true, timed exams are enabled in your " -"course. Regardless of this setting, timed exams are enabled if Enable " -"Proctored Exams is set to true." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Minimum Grade for Credit" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"The minimum grade that a learner must earn to receive credit in the course, " -"as a decimal between 0.0 and 1.0. For example, for 75%, enter 0.75." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Self Paced" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Set this to \"true\" to mark this course as self-paced. Self-paced courses " -"do not have due dates for assignments, and students can progress through the" -" course at any rate before the course ends." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Bypass Course Home" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Bypass the course home tab when students arrive from the dashboard, sending " -"them directly to course content." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enable Subsection Prerequisites" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If this value is true, you can hide a subsection until " -"learners earn a minimum score in another, prerequisite subsection." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Learning Information" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Specify what student can learn from the course." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Visibility For Unenrolled Learners" -msgstr "" - -#. Translators: the quoted words 'private', 'public_outline', and 'public' -#. must be left untranslated. Leave them as English words. -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Defines the access permissions for unenrolled learners. This can be set to " -"one of three values: 'private' (default visibility, only allowed for " -"enrolled students), 'public_outline' (allow access to course outline) and " -"'public' (allow access to both outline and course content)." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Instructor" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter the details for Course Instructor" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Add Unsupported Problems and Tools" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, you can add unsupported problems and tools to " -"your course in Studio. Unsupported problems and tools are not recommended " -"for use in courses due to non-compliance with one or more of the base " -"requirements, such as testing, accessibility, internationalization, and " -"documentation." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Highlights Enabled for Messaging" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, any highlights associated with content in the " -"course will be messaged to learners at their scheduled time." -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Other Course Settings" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Any additional information about the course that the platform needs or that " -"allows integration with external systems such as CRM software. Enter a " -"dictionary of values in JSON format, such as { \"my_custom_setting\": " -"\"value\", \"other_setting\": \"value\" }" -msgstr "" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "General" -msgstr "" - -#: common/lib/xmodule/xmodule/graders.py -#, python-brace-format -msgid "{assignment_type} = {weighted_percent:.2%} of a possible {weight:.2%}" -msgstr "" - -#: common/lib/xmodule/xmodule/graders.py -msgid "Generated" -msgstr "" - -#. Translators: "Homework 1 - Unreleased - 0% (?/?)" The section has not been -#. released for viewing. -#: common/lib/xmodule/xmodule/graders.py -#, python-brace-format -msgid "{section_type} {index} Unreleased - 0% (?/?)" -msgstr "" - -#: common/lib/xmodule/xmodule/graders.py -#, python-brace-format -msgid "The lowest {drop_count} {section_type} scores are dropped." -msgstr "" - -#. Translators: "Homework Average = 0%" -#: common/lib/xmodule/xmodule/graders.py -#, python-brace-format -msgid "{section_type} Average = {percent:.0%}" -msgstr "" - -#. Translators: Avg is short for Average -#: common/lib/xmodule/xmodule/graders.py -#, python-brace-format -msgid "{short_label} Avg" -msgstr "" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "Text" -msgstr "" - -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py -msgid "Html contents to display for this module" -msgstr "" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "Source code for LaTeX documents. This feature is not well-supported." -msgstr "" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "" -"Select Visual to enter content and have the editor automatically create the " -"HTML. Select Raw to edit HTML directly. If you change this setting, you must" -" save the component and then re-open it for editing." -msgstr "" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "Editor" -msgstr "" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "Visual" -msgstr "" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "Raw" -msgstr "" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "Hide Page From Learners" -msgstr "" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "" -"If you select this option, only course team members with the Staff or Admin " -"role see this page." -msgstr "" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "HTML for the additional pages" -msgstr "" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "List of course update items" -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Any Type" -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Library" -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Select the library from which you want to draw content." -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Library Version" -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Determines how content is drawn from the library" -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Choose n at random" -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Count" -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Enter the number of components to display to each student." -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Problem Type" -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "" -"Choose a problem type to fetch from the library. If \"Any Type\" is selected" -" no filtering is applied." -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "This component is out of date. The library has new content." -msgstr "" - -#. Translators: {refresh_icon} placeholder is substituted to "↻" (without -#. double quotes) -#: common/lib/xmodule/xmodule/library_content_module.py -#, python-brace-format -msgid "{refresh_icon} Update now." -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Library is invalid, corrupt, or has been deleted." -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Edit Library List." -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "" -"This course does not support content libraries. Contact your system " -"administrator for more information." -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "A library has not yet been selected." -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Select a Library." -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "There are no matching problem types in the specified libraries." -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Select another problem type." -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -#, python-brace-format -msgid "The specified library is configured to fetch {count} problem, " -msgid_plural "The specified library is configured to fetch {count} problems, " -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/library_content_module.py -#, python-brace-format -msgid "but there is only {actual} matching problem." -msgid_plural "but there are only {actual} matching problems." -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Edit the library configuration." -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Invalid Library" -msgstr "" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "No Library Selected" -msgstr "" - -#: common/lib/xmodule/xmodule/library_root_xblock.py -msgid "Library Display Name" -msgstr "" - -#: common/lib/xmodule/xmodule/library_root_xblock.py -msgid "Enter the names of the advanced components to use in your library." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"The display name for this component. Analytics reports may also use the " -"display name to identify this component." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "LTI ID" -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -#, python-brace-format -msgid "" -"Enter the LTI ID for the external LTI provider. This value must be the same" -" LTI ID that you entered in the LTI Passports setting on the Advanced " -"Settings page.
    See {docs_anchor_open}the edX LTI " -"documentation{anchor_close} for more details on this setting." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "LTI URL" -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -#, python-brace-format -msgid "" -"Enter the URL of the external tool that this component launches. This " -"setting is only used when Hide External Tool is set to False.
    See " -"{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " -"on this setting." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Custom Parameters" -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -#, python-brace-format -msgid "" -"Add the key/value pair for any custom parameters, such as the page your " -"e-book should open to or the background color for this component.
    See " -"{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " -"on this setting." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Open in New Page" -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Select True if you want students to click a link that opens the LTI tool in " -"a new window. Select False if you want the LTI content to open in an IFrame " -"in the current page. This setting is only used when Hide External Tool is " -"set to False. " -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Scored" -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Select True if this component will receive a numerical score from the " -"external LTI system." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Weight" -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Enter the number of points possible for this component. The default value " -"is 1.0. This setting is only used when Scored is set to True." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"The score kept in the xblock KVS -- duplicate of the published score in " -"django DB" -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Comment as returned from grader, LTI2.0 spec" -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Hide External Tool" -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Select True if you want to use this component as a placeholder for syncing " -"with an external grading system rather than launch an external tool. This " -"setting hides the Launch button and any IFrames for this component." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Request user's username" -msgstr "" - -#. Translators: This is used to request the user's username for a third party -#. service. -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Select True to request the user's username." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Request user's email" -msgstr "" - -#. Translators: This is used to request the user's email for a third party -#. service. -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Select True to request the user's email address." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "LTI Application Information" -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Enter a description of the third party application. If requesting username " -"and/or email, use this text box to inform users why their username and/or " -"email will be forwarded to a third party application." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Button Text" -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Enter the text on the button used to launch the third party application." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Accept grades past deadline" -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Select True to allow third party systems to post grades past the deadline." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -#, python-brace-format -msgid "" -"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " -"string." -msgstr "" - -#: common/lib/xmodule/xmodule/lti_module.py -#, python-brace-format -msgid "" -"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " -"string." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Due Date" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enter the default date by which problems are due." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: lms/djangoapps/lms_xblock/mixin.py -msgid "If true, can be seen only by course staff, regardless of start date." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "GIT URL" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enter the URL for the course data GIT repository." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "XQA Key" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "This setting is not currently supported." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enter the ids for the content groups this problem belongs to." -msgstr "" - -#. Translators: DO NOT translate the words in quotes here, they are -#. specific words for the acceptable values. -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Specify when the Show Answer button appears for each problem. Valid values " -"are \"always\", \"answered\", \"attempted\", \"closed\", \"finished\", " -"\"past_due\", \"correct_or_past_due\", and \"never\"." -msgstr "" - -#. Translators: DO NOT translate the words in quotes here, they are -#. specific words for the acceptable values. -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Specify when to show answer correctness and score to learners. Valid values " -"are \"always\", \"never\", and \"past_due\"." -msgstr "" - -#. Translators: DO NOT translate the words in quotes here, they are -#. specific words for the acceptable values. -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Specify the default for how often variable values in a problem are " -"randomized. This setting should be set to \"never\" unless you plan to " -"provide a Python script to identify and randomize values in most of the " -"problems in your course. Valid values are \"always\", \"onreset\", " -"\"never\", and \"per_student\"." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Days Early for Beta Users" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter the number of days before the start date that beta users can access " -"the course." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Static Asset Path" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter the path to use for files on the Files & Uploads page. This value " -"overrides the Studio default, c4x://." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enable LaTeX Compiler" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter true or false. If true, you can use the LaTeX templates for HTML " -"components and advanced Problem components." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter the maximum number of times a student can try to answer problems. By " -"default, Maximum Attempts is set to null, meaning that students have an " -"unlimited number of attempts for problems. You can override this course-wide" -" setting for individual problems. However, if the course-wide setting is a " -"specific number, you cannot set the Maximum Attempts for individual problems" -" to unlimited." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter the API key provided by MathWorks for accessing the MATLAB Hosted " -"Service. This key is granted for exclusive use in this course for the " -"specified duration. Do not share the API key with other courses. Notify " -"MathWorks immediately if you believe the key is exposed or compromised. To " -"obtain a key for your course, or to report an issue, please contact " -"moocsupport@mathworks.com" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Group Configurations" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter the configurations that govern how students are grouped together." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enable video caching system" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter true or false. If true, video caching will be used for HTML5 videos." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enable video auto-advance" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Specify whether to show an auto-advance button in videos. If the student " -"clicks it, when the last video in a unit finishes it will automatically move" -" to the next unit and autoplay the first video." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Video Pre-Roll" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -#, python-brace-format -msgid "" -"Identify a video, 5-10 seconds in length, to play before course videos. " -"Enter the video ID from the Video Uploads page and one or more transcript " -"files in the following format: {format}. For example, an entry for a video " -"with two transcripts looks like this: {example}" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Show Reset Button for Problems" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter true or false. If true, problems in the course default to always " -"displaying a 'Reset' button. You can override this in each problem's " -"settings. All existing problems are affected when this course-wide setting " -"is changed." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enable Student Notes" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter true or false. If true, students can use the Student Notes feature." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Indicates whether Student Notes are visible in the course. Students can also" -" show or hide their notes in the courseware." -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Tag this module as part of an Entrance Exam section" -msgstr "" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter true or false. If true, answer submissions for problem modules will be" -" considered in the Entrance Exam scoring/gating algorithm." -msgstr "" - -#: common/lib/xmodule/xmodule/partitions/partitions_service.py -msgid "Enrollment Track Groups" -msgstr "" - -#: common/lib/xmodule/xmodule/partitions/partitions_service.py -msgid "Partition for segmenting users by enrollment track" -msgstr "" - -#: common/lib/xmodule/xmodule/poll_module.py -msgid "Whether this student has voted on the poll" -msgstr "" - -#: common/lib/xmodule/xmodule/poll_module.py -msgid "Student answer" -msgstr "" - -#: common/lib/xmodule/xmodule/poll_module.py -msgid "Poll answers from all students" -msgstr "" - -#: common/lib/xmodule/xmodule/poll_module.py -msgid "Poll answers from xml" -msgstr "" - -#: common/lib/xmodule/xmodule/poll_module.py -msgid "Poll question" -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Enter the date by which problems are due." -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Hide sequence content After Due Date" -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"If set, the sequence content is hidden for non-staff users after the due " -"date has passed." -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Is Entrance Exam" -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"Tag this course module as an Entrance Exam. Note, you must enable Entrance " -"Exams for this course setting to take effect." -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Is Time Limited" -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"This setting indicates whether students have a limited time to view or " -"interact with this courseware component." -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Time Limit in Minutes" -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"The number of minutes available to students for viewing or interacting with " -"this courseware component." -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Is Proctoring Enabled" -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "This setting indicates whether this exam is a proctored exam." -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Software Secure Review Rules" -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"This setting indicates what rules the proctoring team should follow when " -"viewing the videos." -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Is Practice Exam" -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"This setting indicates whether this exam is for testing purposes only. " -"Practice exams are not verified." -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"This subsection is unlocked for learners when they meet the prerequisite " -"requirements." -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "This exam is hidden from the learner." -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"Because the course has ended, this assignment is hidden from the learner." -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"Because the due date has passed, this assignment is hidden from the learner." -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"This section is a prerequisite. You must complete this section in order to " -"unlock additional content." -msgstr "" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"A list summarizing what students should look forward to in this section." -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -#, python-brace-format -msgid "Group ID {group_id}" -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "Not Selected" -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "The display name for this component. (Not shown to learners)" -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "Content Experiment" -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"The list of group configurations for partitioning students in content " -"experiments." -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "" -"The configuration defines how users are grouped for this content experiment." -" Caution: Changing the group configuration of a student-visible experiment " -"will impact the experiment data." -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "Group Configuration" -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "Which child module students in a particular group_id should see" -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -#, python-brace-format -msgid "{group_name} (inactive)" -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "The experiment is not associated with a group configuration." -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "Select a Group Configuration" -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "" -"The experiment uses a deleted group configuration. Select a valid group " -"configuration or delete this experiment." -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "" -"The experiment uses a group configuration that is not supported for " -"experiments. Select a valid group configuration or delete this experiment." -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "" -"The experiment does not contain all of the groups in the configuration." -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "Add Missing Groups" -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "" -"The experiment has an inactive group. Move content into active groups, then " -"delete the inactive group." -msgstr "" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "This content experiment has issues that affect content visibility." -msgstr "" - -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py -msgid "External Discussion" -msgstr "" - -#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py -msgid "Home" -msgstr "" - -#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py -#: lms/djangoapps/courseware/views/views.py -#: lms/djangoapps/shoppingcart/reports.py -#: lms/djangoapps/shoppingcart/reports.py -#: openedx/features/course_experience/__init__.py -msgid "Course" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py -#, python-brace-format -msgid "" -"Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{status_code}." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py -msgid "We support only SubRip (*.srt) transcripts format." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py -#, python-brace-format -msgid "" -"Something wrong with SubRip transcripts file during parsing. Inner message " -"is {error_message}" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py -msgid "Something wrong with SubRip transcripts file during parsing." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py -#, python-brace-format -msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_handlers.py -msgid "Language is required." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_module.py -msgid "Basic" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_module.py -#, python-brace-format -msgid "There is no transcript file associated with the {lang} language." -msgid_plural "" -"There are no transcript files associated with the {lang} languages." -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/video_module/video_module.py -msgid "" -"The URL for your video. This can be a YouTube URL or a link to an .mp4, " -".ogg, or .webm video file hosted elsewhere on the Internet." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_module.py -msgid "Default Video URL" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Component Display Name" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Current position in the video." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Optional, for older browsers: the YouTube ID for the normal speed video." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "YouTube ID" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Optional, for older browsers: the YouTube ID for the .75x speed video." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "YouTube ID for .75x speed" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Optional, for older browsers: the YouTube ID for the 1.25x speed video." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "YouTube ID for 1.25x speed" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Optional, for older browsers: the YouTube ID for the 1.5x speed video." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "YouTube ID for 1.5x speed" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Time you want the video to start if you don't want the entire video to play." -" Not supported in the native mobile app: the full video file will play. " -"Formatted as HH:MM:SS. The maximum value is 23:59:59." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Video Start Time" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Time you want the video to stop if you don't want the entire video to play. " -"Not supported in the native mobile app: the full video file will play. " -"Formatted as HH:MM:SS. The maximum value is 23:59:59." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Video Stop Time" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "The external URL to download the video." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Download Video" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Allow students to download versions of this video in different formats if " -"they cannot use the edX video player or do not have access to YouTube. You " -"must add at least one non-YouTube URL in the Video File URLs field." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Video Download Allowed" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"The URL or URLs where you've posted non-YouTube versions of the video. Each " -"URL must end in .mpeg, .mp4, .ogg, or .webm and cannot be a YouTube URL. " -"(For browser compatibility, we strongly recommend .mp4 and .webm format.) " -"Students will be able to view the first listed video that's compatible with " -"the student's computer. To allow students to download these videos, set " -"Video Download Allowed to True." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Video File URLs" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"By default, students can download an .srt or .txt transcript when you set " -"Download Transcript Allowed to True. If you want to provide a downloadable " -"transcript in a different format, we recommend that you upload a handout by " -"using the Upload a Handout field. If this isn't possible, you can post a " -"transcript file on the Files & Uploads page or on the Internet, and then add" -" the URL for the transcript here. Students see a link to download that " -"transcript below the video." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Downloadable Transcript URL" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Allow students to download the timed transcript. A link to download the file" -" appears below the video. By default, the transcript is an .srt or .txt " -"file. If you want to provide the transcript for download in a different " -"format, upload a file by using the Upload Handout field." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Download Transcript Allowed" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"The default transcript for the video, from the Default Timed Transcript " -"field on the Basic tab. This transcript should be in English. You don't have" -" to change this setting." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Default Timed Transcript" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Specify whether the transcripts appear with the video by default." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Show Transcript" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Add transcripts in different languages. Click below to specify a language " -"and upload an .srt transcript file for that language." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Transcript Languages" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Preferred language for transcript." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Preferred language for transcript" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Transcript file format to download by user." -msgstr "" - -#. Translators: This is a type of file used for captioning in the video -#. player. -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "SubRip (.srt) file" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Text (.txt) file" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "The last speed that the user specified for the video." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "The default speed for the video." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Specify whether to advance automatically to the next unit when the video " -"ends." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Specify whether YouTube is available for the user." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Upload a handout to accompany this video. Students can download the handout " -"by clicking Download Handout under the video." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Upload Handout" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Specify whether access to this video is limited to browsers only, or if it " -"can be accessed from other applications including mobile apps." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Video Available on Web Only" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"If you were assigned a Video ID by edX for the video to play in this " -"component, enter the ID here. In this case, do not enter values in the " -"Default Video URL, the Video File URLs, and the YouTube ID fields. If you " -"were not assigned a Video ID, enter values in those other fields and ignore " -"this field." -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Date of the last view of the bumper" -msgstr "" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Do not show bumper again" -msgstr "" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Instructions" -msgstr "" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "" -"Add instructions to help learners understand how to use the word cloud. " -"Clear instructions are important, especially for learners who have " -"accessibility requirements." -msgstr "" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Inputs" -msgstr "" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "" -"The number of text boxes available for learners to add words and sentences." -msgstr "" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Maximum Words" -msgstr "" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "The maximum number of words displayed in the generated word cloud." -msgstr "" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Show Percents" -msgstr "" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Statistics are shown for entered words near that word." -msgstr "" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Whether this learner has posted words to the cloud." -msgstr "" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Student answer." -msgstr "" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "All possible words from all learners." -msgstr "" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Top num_top_words words for word cloud." -msgstr "" - -#: common/lib/xmodule/xmodule/x_module.py -#, python-brace-format -msgid "" -"{display_name} is only accessible to enrolled learners. Sign in or register," -" and enroll in this course to view it." -msgstr "" - -#: common/templates/student/edx_ace/accountrecovery/email/body.html -msgid "Create Password" -msgstr "" - -#: common/templates/student/edx_ace/accountrecovery/email/body.html -#: common/templates/student/edx_ace/accountrecovery/email/body.txt -#, python-format -msgid "" -"You're receiving this e-mail because you requested to create a password for " -"your user account at %(platform_name)s." -msgstr "" - -#: common/templates/student/edx_ace/accountrecovery/email/body.html -#: common/templates/student/edx_ace/accountrecovery/email/body.txt -msgid "" -"If you didn't request this change, you can disregard this email - we have " -"not yet created your password." -msgstr "" - -#: common/templates/student/edx_ace/accountrecovery/email/body.html -msgid "Create my Password" -msgstr "" - -#: common/templates/student/edx_ace/accountrecovery/email/body.txt -#: common/templates/student/edx_ace/passwordreset/email/body.txt -msgid "Please go to the following page and choose a new password:" -msgstr "" - -#: common/templates/student/edx_ace/accountrecovery/email/body.txt -#: common/templates/student/edx_ace/passwordreset/email/body.txt -msgid "Thanks for using our site!" -msgstr "" - -#: common/templates/student/edx_ace/accountrecovery/email/body.txt -#: common/templates/student/edx_ace/passwordreset/email/body.txt -#, python-format -msgid "The %(platform_name)s Team" -msgstr "" - -#: common/templates/student/edx_ace/accountrecovery/email/subject.txt -#, python-format -msgid "Create password on %(platform_name)s" -msgstr "" - -#: common/templates/student/edx_ace/emailchange/email/body.html -msgid "Email Change" -msgstr "" - -#: common/templates/student/edx_ace/emailchange/email/body.html -#: common/templates/student/edx_ace/emailchange/email/body.txt -#, python-format -msgid "" -"We received a request to change the secondary e-mail associated with your " -"%(platform_name)s account to %(new_email)s. If this is correct, please " -"confirm your new secondary e-mail address by visiting:" -msgstr "" - -#: common/templates/student/edx_ace/emailchange/email/body.html -#: common/templates/student/edx_ace/emailchange/email/body.txt -#, python-format -msgid "" -"We received a request to change the e-mail associated with your " -"%(platform_name)s account from %(old_email)s to %(new_email)s. If this is " -"correct, please confirm your new e-mail address by visiting:" -msgstr "" - -#: common/templates/student/edx_ace/emailchange/email/body.html -msgid "Confirm Email Change" -msgstr "" - -#: common/templates/student/edx_ace/emailchange/email/body.html -#: common/templates/student/edx_ace/emailchange/email/body.txt -#, python-format -msgid "" -"If you didn't request this, you don't need to do anything; you won't receive" -" any more email from us. Please do not reply to this e-mail; if you require " -"assistance, check the help section of the %(platform_name)s web site." -msgstr "" - -#: common/templates/student/edx_ace/emailchange/email/subject.txt -#, python-format -msgid "Request to change %(platform_name)s account secondary e-mail" -msgstr "" - -#: common/templates/student/edx_ace/emailchange/email/subject.txt -#, python-format -msgid "Request to change %(platform_name)s account e-mail" -msgstr "" - -#: common/templates/student/edx_ace/passwordreset/email/body.html -msgid "Password Reset" -msgstr "" - -#: common/templates/student/edx_ace/passwordreset/email/body.html -#: common/templates/student/edx_ace/passwordreset/email/body.txt -#, python-format -msgid "" -"You're receiving this email because you requested a password reset for your " -"user account at %(platform_name)s." -msgstr "" - -#: common/templates/student/edx_ace/passwordreset/email/body.html -#: common/templates/student/edx_ace/passwordreset/email/body.txt -#, python-format -msgid "" -"However, there is currently no user account associated with your email " -"address: %(email_address)s." -msgstr "" - -#: common/templates/student/edx_ace/passwordreset/email/body.html -#: common/templates/student/edx_ace/passwordreset/email/body.txt -msgid "If you did not request this change, you can ignore this email." -msgstr "" - -#: common/templates/student/edx_ace/passwordreset/email/body.html -#: common/templates/student/edx_ace/passwordreset/email/body.txt -msgid "" -"If you didn't request this change, you can ignore this email - we have not " -"yet reset your password." -msgstr "" - -#: common/templates/student/edx_ace/passwordreset/email/body.html -msgid "Change my Password" -msgstr "" - -#: common/templates/student/edx_ace/passwordreset/email/subject.txt -#, python-format -msgid "Password reset on %(platform_name)s" -msgstr "" - -#: lms/djangoapps/badges/events/course_complete.py -#, python-brace-format -msgid "" -"Completed the course \"{course_name}\" ({course_mode}, {start_date} - " -"{end_date})" -msgstr "" - -#: lms/djangoapps/badges/events/course_complete.py -#, python-brace-format -msgid "Completed the course \"{course_name}\" ({course_mode})" -msgstr "" - -#: lms/djangoapps/badges/models.py -msgid "The badge image must be square." -msgstr "" - -#: lms/djangoapps/badges/models.py -msgid "The badge image file size must be less than 250KB." -msgstr "" - -#: lms/djangoapps/badges/models.py -msgid "This value must be all lowercase." -msgstr "" - -#: lms/djangoapps/badges/models.py -msgid "The course mode for this badge image. For example, \"verified\" or \"honor\"." -msgstr "" - -#: lms/djangoapps/badges/models.py -msgid "" -"Badge images must be square PNG files. The file size should be under 250KB." -msgstr "" - -#: lms/djangoapps/badges/models.py -msgid "" -"Set this value to True if you want this image to be the default image for " -"any course modes that do not have a specified badge image. You can have only" -" one default image." -msgstr "" - -#: lms/djangoapps/badges/models.py -msgid "There can be only one default image." -msgstr "" - -#: lms/djangoapps/badges/models.py -msgid "" -"On each line, put the number of completed courses to award a badge for, a " -"comma, and the slug of a badge class you have created that has the issuing " -"component 'openedx__course'. For example: 3,enrolled_3_courses" -msgstr "" - -#: lms/djangoapps/badges/models.py -msgid "" -"On each line, put the number of enrolled courses to award a badge for, a " -"comma, and the slug of a badge class you have created that has the issuing " -"component 'openedx__course'. For example: 3,enrolled_3_courses" -msgstr "" - -#: lms/djangoapps/badges/models.py -msgid "" -"Each line is a comma-separated list. The first item in each line is the slug" -" of a badge class you have created that has an issuing component of " -"'openedx__course'. The remaining items in each line are the course keys the " -"learner needs to complete to be awarded the badge. For example: " -"slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" -msgstr "" - -#: lms/djangoapps/badges/models.py -msgid "Please check the syntax of your entry." -msgstr "" - -#: lms/djangoapps/branding/api.py -msgid "Take free online courses at EliteMBA.cn" -msgstr "" - -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: lms/djangoapps/branding/api.py -#, python-brace-format -msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." -msgstr "" - -#. Translators: 'Open edX' is a brand, please keep this untranslated. -#. See http://openedx.org for more information. -#: lms/djangoapps/branding/api.py -msgid "Powered by Open edX" -msgstr "" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Blog" -msgstr "" - -#: lms/djangoapps/branding/api.py -msgid "Contact Us" -msgstr "" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Help Center" -msgstr "" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Media Kit" -msgstr "" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Donate" -msgstr "" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "About" -msgstr "" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -#, python-brace-format -msgid "{platform_name} for Business" -msgstr "" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "News" -msgstr "" - -#: lms/djangoapps/branding/api.py -msgid "Contact" -msgstr "" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Careers" -msgstr "" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -#: lms/djangoapps/certificates/views/webview.py -msgid "Terms of Service & Honor Code" -msgstr "" - -#. Translators: A 'Privacy Policy' is a legal document/statement describing a -#. website's use of personal information -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -#: lms/djangoapps/certificates/views/webview.py -msgid "Privacy Policy" -msgstr "" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Accessibility Policy" -msgstr "" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Sitemap" -msgstr "" - -#. Translators: This is a legal document users must agree to -#. in order to register a new account. -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Terms of Service" -msgstr "" - -#: lms/djangoapps/branding/api.py -msgid "Affiliates" -msgstr "" - -#: lms/djangoapps/branding/api.py -msgid "Open edX" -msgstr "" - -#: lms/djangoapps/branding/api.py -msgid "Trademark Policy" -msgstr "" - -#: lms/djangoapps/branding/api.py -#, python-brace-format -msgid "Download the {platform_name} mobile app from the Apple App Store" -msgstr "" - -#: lms/djangoapps/branding/api.py -#, python-brace-format -msgid "Download the {platform_name} mobile app from Google Play" -msgstr "" - -#. Translators: Bulk email from address e.g. ("Physics 101" Course Staff) -#: lms/djangoapps/bulk_email/tasks.py -#, python-brace-format -msgid "\"{course_title}\" Course Staff" -msgstr "" - -#: lms/djangoapps/ccx/plugins.py -msgid "CCX Coach" -msgstr "" - -#: lms/djangoapps/ccx/utils.py -msgid "" -"A CCX can only be created on this course through an external service. " -"Contact a course admin to give you access." -msgstr "" - -#: lms/djangoapps/ccx/utils.py -#, python-brace-format -msgid "The course is full: the limit is {max_student_enrollments_allowed}" -msgstr "" - -#: lms/djangoapps/ccx/views.py -msgid "You must be a CCX Coach to access this view." -msgstr "" - -#: lms/djangoapps/ccx/views.py -msgid "You must be the coach for this ccx to access this view" -msgstr "" - -#: lms/djangoapps/ccx/views.py -msgid "" -"You cannot create a CCX from a course using a deprecated id. Please create a" -" rerun of this course in the studio to allow this action." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "created" -msgstr "" - -#. Translators: This is a past-tense verb that is used for task action -#. messages. -#: lms/djangoapps/certificates/models.py -msgid "regenerated" -msgstr "" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/certificates/models.py -#: lms/djangoapps/instructor_task/tasks.py -#: lms/djangoapps/instructor_task/tasks.py -#: lms/djangoapps/instructor_task/tasks.py -#: lms/djangoapps/instructor_task/tasks.py -#: lms/djangoapps/instructor_task/tasks.py -msgid "generated" -msgstr "" - -#. Translators: This string represents task was executed for all learners. -#: lms/djangoapps/certificates/models.py lms/djangoapps/certificates/models.py -msgid "All learners" -msgstr "" - -#. Translators: This string represents task was executed for students having -#. exceptions. -#: lms/djangoapps/certificates/models.py -msgid "For exceptions" -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "" -"A human-readable description of the example certificate. For example, " -"'verified' or 'honor' to differentiate between two types of certificates." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "" -"A unique identifier for the example certificate. This is used when we " -"receive a response from the queue to determine which example certificate was" -" processed." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "" -"An access key for the example certificate. This is used when we receive a " -"response from the queue to validate that the sender is the same entity we " -"asked to generate the certificate." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "The full name that will appear on the certificate." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "The template file to use when generating the certificate." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "The status of the example certificate." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "The reason an error occurred during certificate generation." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "The download URL for the generated certificate." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "Name of template." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "Description and/or admin notes." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "Django template HTML." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "Organization of template." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "The course mode for this template." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "On/Off switch." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "Description of the asset." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "Asset file. It could be an image or css file." -msgstr "" - -#: lms/djangoapps/certificates/models.py -msgid "" -"Asset's unique slug. We can reference the asset in templates using this " -"value." -msgstr "" - -#: lms/djangoapps/certificates/views/support.py -msgid "user is not given." -msgstr "" - -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "user '{user}' does not exist" -msgstr "" - -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "Course id '{course_id}' is not valid" -msgstr "" - -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "The course does not exist against the given key '{course_key}'" -msgstr "" - -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "User {username} does not exist" -msgstr "" - -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "{course_key} is not a valid course key" -msgstr "" - -#: lms/djangoapps/certificates/views/support.py -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "The course {course_key} does not exist" -msgstr "" - -#: lms/djangoapps/certificates/views/support.py -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "User {username} is not enrolled in the course {course_key}" -msgstr "" - -#: lms/djangoapps/certificates/views/support.py -msgid "An unexpected error occurred while regenerating certificates." -msgstr "" - -#. Translators: This text describes the 'Honor' course certificate type. -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"An {cert_type} certificate signifies that a learner has agreed to abide by " -"the honor code established by {platform_name} and has completed all of the " -"required tasks for this course under its guidelines." -msgstr "" - -#. Translators: This text describes the 'ID Verified' course certificate -#. type, which is a higher level of -#. verification offered by edX. This type of verification is useful for -#. professional education/certifications -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"A {cert_type} certificate signifies that a learner has agreed to abide by " -"the honor code established by {platform_name} and has completed all of the " -"required tasks for this course under its guidelines. A {cert_type} " -"certificate also indicates that the identity of the learner has been checked" -" and is valid." -msgstr "" - -#. Translators: This text describes the 'XSeries' course certificate type. -#. An XSeries is a collection of -#. courses related to each other in a meaningful way, such as a specific topic -#. or theme, or even an organization -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"An {cert_type} certificate demonstrates a high level of achievement in a " -"program of study, and includes verification of the student's identity." -msgstr "" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "{month} {day}, {year}" -msgstr "" - -#. Translators: This text represents the verification of the certificate -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"This is a valid {platform_name} certificate for {user_name}, who " -"participated in {partner_short_name} {course_number}" -msgstr "" - -#. Translators: This text is bound to the HTML 'title' element of the page -#. and appears in the browser title bar -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "{partner_short_name} {course_number} Certificate | {platform_name}" -msgstr "" - -#. Translators: This text fragment appears after the student's name -#. (displayed in a large font) on the certificate -#. screen. The text describes the accomplishment represented by the -#. certificate information displayed to the user -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"successfully completed, received a passing grade, and was awarded this " -"{platform_name} {certificate_type} Certificate of Completion in " -msgstr "" - -#. Translators: This text describes the purpose (and therefore, value) of a -#. course certificate -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"{platform_name} acknowledges achievements through certificates, which are " -"awarded for course activities that {platform_name} students complete." -msgstr "" - -#. Translators: 'All rights reserved' is a legal term used in copyrighting to -#. protect published content -#: lms/djangoapps/certificates/views/webview.py -msgid "All rights reserved" -msgstr "" - -#. Translators: This text is bound to the HTML 'title' element of the page -#. and appears -#. in the browser title bar when a requested certificate is not found or -#. recognized -#: lms/djangoapps/certificates/views/webview.py -msgid "Invalid Certificate" -msgstr "" - -#. Translators: This line appears as a byline to a header image and describes -#. the purpose of the page -#: lms/djangoapps/certificates/views/webview.py -msgid "Certificate Validation" -msgstr "" - -#. Translators: Accomplishments describe the awards/certifications obtained by -#. students on this platform -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "About {platform_name} Accomplishments" -msgstr "" - -#. Translators: This line appears on the page just before the generation date -#. for the certificate -#: lms/djangoapps/certificates/views/webview.py -msgid "Issued On" -msgstr "" - -#. Translators: The Certificate ID Number is an alphanumeric value unique to -#. each individual certificate -#: lms/djangoapps/certificates/views/webview.py -msgid "Certificate ID Number" -msgstr "" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "About {platform_name} Certificates" -msgstr "" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "How {platform_name} Validates Student Certificates" -msgstr "" - -#. Translators: This text describes the validation mechanism for a -#. certificate file (known as GPG security) -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"Certificates issued by {platform_name} are signed by a gpg key so that they " -"can be validated independently by anyone with the {platform_name} public " -"key. For independent verification, {platform_name} uses what is called a " -"\"detached signature\""\"." -msgstr "" - -#: lms/djangoapps/certificates/views/webview.py -msgid "Validate this certificate for yourself" -msgstr "" - -#. Translators: This text describes (at a high level) the mission and charter -#. the edX platform and organization -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "{platform_name} offers interactive online classes and MOOCs." -msgstr "" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "About {platform_name}" -msgstr "" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "Learn more about {platform_name}" -msgstr "" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "Learn with {platform_name}" -msgstr "" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "Work at {platform_name}" -msgstr "" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "Contact {platform_name}" -msgstr "" - -#. Translators: This text appears near the top of the certficate and -#. describes the guarantee provided by edX -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "{platform_name} acknowledges the following student accomplishment" -msgstr "" - -#. Translators: This text represents the description of course -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"a course of study offered by {partner_short_name}, an online learning " -"initiative of {partner_long_name}." -msgstr "" - -#. Translators: This text represents the description of course -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "a course of study offered by {partner_short_name}." -msgstr "" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "I completed the {course_title} course on {platform_name}." -msgstr "" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"I completed a course at {platform_name}. Take a look at my certificate." -msgstr "" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "More Information About {user_name}'s Certificate:" -msgstr "" - -#. Translators: This line is displayed to a user who has completed a course -#. and achieved a certification -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "{fullname}, you earned a certificate!" -msgstr "" - -#. Translators: This line congratulates the user and instructs them to share -#. their accomplishment on social networks -#: lms/djangoapps/certificates/views/webview.py -msgid "" -"Congratulations! This page summarizes what you accomplished. Show it off to " -"family, friends, and colleagues in your social and professional networks." -msgstr "" - -#. Translators: This line leads the reader to understand more about the -#. certificate that a student has been awarded -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "More about {fullname}'s accomplishment" -msgstr "" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/tools.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/schedules/admin.py -msgid "Username" -msgstr "" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Grade" -msgstr "" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Percent" -msgstr "" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Opened by this number of students" -msgstr "" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "subsections" -msgstr "" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Count of Students" -msgstr "" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Percent of Students" -msgstr "" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Score" -msgstr "" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "problems" -msgstr "" - -#: lms/djangoapps/commerce/api/v1/serializers.py -#, python-brace-format -msgid "{course_id} is not a valid course key." -msgstr "" - -#: lms/djangoapps/commerce/api/v1/serializers.py -#, python-brace-format -msgid "Course {course_id} does not exist." -msgstr "" - -#: lms/djangoapps/commerce/models.py -msgid "Use the checkout page hosted by the E-Commerce service." -msgstr "" - -#: lms/djangoapps/commerce/models.py -msgid "Path to course(s) checkout page hosted by the E-Commerce service." -msgstr "" - -#: lms/djangoapps/commerce/models.py openedx/core/djangoapps/catalog/models.py -#: openedx/core/djangoapps/credentials/models.py -#: openedx/core/djangoapps/credit/models.py -msgid "Cache Time To Live" -msgstr "" - -#: lms/djangoapps/commerce/models.py -#: openedx/core/djangoapps/credentials/models.py -#: openedx/core/djangoapps/credit/models.py -msgid "" -"Specified in seconds. Enable caching by setting this to a value greater than" -" 0." -msgstr "" - -#: lms/djangoapps/commerce/models.py -msgid "Path to order receipt page." -msgstr "" - -#: lms/djangoapps/commerce/models.py -msgid "Automatically approve valid refund requests, without manual processing" -msgstr "" - -#: lms/djangoapps/commerce/utils.py lms/djangoapps/shoppingcart/models.py -msgid "[Refund] User-Requested Refund" -msgstr "" - -#: lms/djangoapps/commerce/utils.py -#, python-brace-format -msgid "" -"A refund request has been initiated for {username} ({email}). To process " -"this request, please visit the link(s) below." -msgstr "" - -#: lms/djangoapps/commerce/views.py lms/djangoapps/shoppingcart/pdf.py -msgid "Receipt" -msgstr "" - -#: lms/djangoapps/commerce/views.py -msgid "Payment Failed" -msgstr "" - -#: lms/djangoapps/commerce/views.py -msgid "There was a problem with this transaction. You have not been charged." -msgstr "" - -#: lms/djangoapps/commerce/views.py -msgid "" -"Make sure your information is correct, or try again with a different card or" -" another form of payment." -msgstr "" - -#: lms/djangoapps/commerce/views.py -msgid "" -"A system error occurred while processing your payment. You have not been " -"charged." -msgstr "" - -#: lms/djangoapps/commerce/views.py -msgid "Please wait a few minutes and then try again." -msgstr "" - -#: lms/djangoapps/commerce/views.py -#, python-brace-format -msgid "For help, contact {payment_support_link}." -msgstr "" - -#: lms/djangoapps/commerce/views.py -msgid "An error occurred while creating your receipt." -msgstr "" - -#: lms/djangoapps/commerce/views.py -#, python-brace-format -msgid "" -"If your course does not appear on your dashboard, contact " -"{payment_support_link}." -msgstr "" - -#: lms/djangoapps/course_goals/models.py -msgid "Earn a certificate" -msgstr "" - -#: lms/djangoapps/course_goals/models.py -msgid "Complete the course" -msgstr "" - -#: lms/djangoapps/course_goals/models.py -msgid "Explore the course" -msgstr "" - -#: lms/djangoapps/course_goals/models.py -msgid "Not sure yet" -msgstr "" - -#: lms/djangoapps/course_wiki/tab.py lms/djangoapps/course_wiki/views.py -#: lms/templates/wiki/base.html -msgid "Wiki" -msgstr "" - -#. Translators: this string includes wiki markup. Leave the ** and the _ -#. alone. -#: lms/djangoapps/course_wiki/views.py -#, python-brace-format -msgid "This is the wiki for _{course_name}_." -msgstr "" - -#: lms/djangoapps/course_wiki/views.py -msgid "Course page automatically created." -msgstr "" - -#: lms/djangoapps/course_wiki/views.py -#, python-brace-format -msgid "Welcome to the {platform_name} Wiki" -msgstr "" - -#: lms/djangoapps/course_wiki/views.py -msgid "Visit a course wiki to add an article." -msgstr "" - -#: lms/djangoapps/courseware/access_response.py -msgid "Course has not started" -msgstr "" - -#: lms/djangoapps/courseware/access_response.py -msgid "Course does not start until {}" -msgstr "" - -#: lms/djangoapps/courseware/access_response.py -msgid "You have unfulfilled milestones" -msgstr "" - -#: lms/djangoapps/courseware/access_response.py -msgid "You do not have access to this course" -msgstr "" - -#: lms/djangoapps/courseware/access_response.py -msgid "You do not have access to this course on a mobile device" -msgstr "" - -#: lms/djangoapps/courseware/course_tools.py -msgid "Upgrade to Verified" -msgstr "" - -#. Translators: 'absolute' is a date such as "Jan 01, -#. 2020". 'relative' is a fuzzy description of the time until -#. 'absolute'. For example, 'absolute' might be "Jan 01, 2020", -#. and if today were December 5th, 2020, 'relative' would be "1 -#. month". -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "{relative} ago - {absolute}" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "in {relative} - {absolute}" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Course Starts" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Don't forget to add a calendar reminder!" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "Course starts in {time_remaining_string} on {course_start_date}." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "Course starts in {time_remaining_string} at {course_start_time}." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Course End" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "" -"To earn a certificate, you must complete all requirements before this date." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "After this date, course content will be archived." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "" -"This course is archived, which means you can review course content but it is" -" no longer active." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "This course is ending in {time_remaining_string} on {course_end_date}." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "This course is ending in {time_remaining_string} at {course_end_time}." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Certificate Available" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Day certificates will become available for passing verified learners." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "" -"If you have earned a certificate, you will be able to access it " -"{time_remaining_string} from now. You will also be able to view your " -"certificates on your {learner_profile_link}." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Learner Profile" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "We are working on generating course certificates." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -#: lms/djangoapps/courseware/date_summary.py -msgid "Upgrade to Verified Certificate" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Verification Upgrade Deadline" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "" -"Don't miss the opportunity to highlight your new knowledge and skills by " -"earning a verified certificate." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "" -"You are still eligible to upgrade to a Verified Certificate! Pursue it to " -"highlight the knowledge and skills you gain in this course." -msgstr "" - -#. Translators: This describes the time by which the user -#. should upgrade to the verified track. 'date' will be -#. their personalized verified upgrade deadline formatted -#. according to their locale. -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "by {date}" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "" -"Don't forget, you have {time_remaining_string} left to upgrade to a Verified" -" Certificate." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "Don't forget to upgrade to a verified certificate by {localized_date}." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "" -"In order to qualify for a certificate, you must meet all course grading " -"requirements, upgrade before the course deadline, and successfully verify " -"your identity on {platform_name} if you have not done so " -"already.{button_panel}" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "Upgrade ({upgrade_price})" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Learn More" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Retry Verification" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Verify My Identity" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Missed Verification Deadline" -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "" -"Unfortunately you missed this course's deadline for a successful " -"verification." -msgstr "" - -#: lms/djangoapps/courseware/date_summary.py -msgid "" -"You must successfully complete verification before this date to qualify for " -"a Verified Certificate." -msgstr "" - -#: lms/djangoapps/courseware/masquerade.py -#, python-brace-format -msgid "" -"There is no user with the username or email address \"{user_identifier}\" " -"enrolled in this course." -msgstr "" - -#: lms/djangoapps/courseware/masquerade.py -msgid "" -"This user does not have access to this content because" -" the content start date is in the future" -msgstr "" - -#: lms/djangoapps/courseware/masquerade.py -msgid "" -"This type of component cannot be shown while viewing the course as a " -"specific student." -msgstr "" - -#: lms/djangoapps/courseware/models.py lms/djangoapps/courseware/models.py -#: lms/djangoapps/courseware/models.py -msgid "" -"Number of days a learner has to upgrade after content is made available" -msgstr "" - -#: lms/djangoapps/courseware/models.py -msgid "Disable the dynamic upgrade deadline for this course run." -msgstr "" - -#: lms/djangoapps/courseware/models.py -msgid "Disable the dynamic upgrade deadline for this organization." -msgstr "" - -#: lms/djangoapps/courseware/tabs.py -msgid "Syllabus" -msgstr "" - -#: lms/djangoapps/courseware/tabs.py -msgid "Progress" -msgstr "" - -#. Translators: 'Textbooks' refers to the tab in the course that leads to the -#. course' textbooks -#: lms/djangoapps/courseware/tabs.py -msgid "Textbooks" -msgstr "" - -#: lms/djangoapps/courseware/views/index.py -#, python-brace-format -msgid "" -"You are not signed in. To see additional course content, {sign_in_link} or " -"{register_link}, and enroll in this course." -msgstr "" - -#: lms/djangoapps/courseware/views/index.py -#: lms/djangoapps/courseware/views/views.py -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "sign in" -msgstr "" - -#: lms/djangoapps/courseware/views/index.py -#: lms/djangoapps/courseware/views/views.py -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -#: openedx/features/course_experience/views/course_home_messages.py -msgid "register" -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Your enrollment: Audit track" -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"You are enrolled in the audit track for this course. The audit track does " -"not include a certificate." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Your enrollment: Honor track" -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"You are enrolled in the honor track for this course. The honor track does " -"not include a certificate." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "We're working on it..." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"We're creating your certificate. You can keep working in your courses and a " -"link to it will appear here and on your Dashboard when it is ready." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Your certificate has been invalidated" -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Please contact your course team if you have any questions." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Congratulations, you qualified for a certificate!" -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -#: lms/djangoapps/courseware/views/views.py -msgid "You've earned a certificate for this course." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Certificate unavailable" -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -#, python-brace-format -msgid "" -"You have not received a certificate because you do not have a current " -"{platform_name} verified identity." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Your certificate is available" -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -#, python-brace-format -msgid "To see course content, {sign_in_link} or {register_link}." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -#, python-brace-format -msgid "" -"You must be enrolled in the course to see course content." -" {enroll_link_start}Enroll now{enroll_link_end}." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -#: openedx/features/course_experience/views/course_home_messages.py -msgid "You must be enrolled in the course to see course content." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Invalid location." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -#, python-brace-format -msgid "User {username} has never accessed problem {location}" -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -#, python-brace-format -msgid "You must be signed in to {platform_name} to create a certificate." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Course is not valid" -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Your certificate will be available when you pass the course." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Certificate has already been created." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Certificate is being created." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -#, python-brace-format -msgid "" -"{platform_name} now offers financial assistance for learners who want to earn Verified Certificates but who may not be able to pay the Verified Certificate fee. Eligible learners may receive up to 90{percent_sign} off the Verified Certificate fee for a course.\n" -"To apply for financial assistance, enroll in the audit track for a course that offers Verified Certificates, and then complete this application. Note that you must complete a separate application for each course you take.\n" -" We plan to use this information to evaluate your application for financial assistance and to further develop our financial assistance program." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Annual Household Income" -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"Tell us about your current financial situation. Why do you need assistance?" -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"Tell us about your learning or professional goals. How will a Verified " -"Certificate in this course help you achieve these goals?" -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"Tell us about your plans for this course. What steps will you take to help " -"you complete the course work and receive a certificate?" -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Use between 250 and 500 words or so in your response." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"Select the course for which you want to earn a verified certificate. If the " -"course does not appear in the list, make sure that you have enrolled in the " -"audit track for the course." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "Specify your annual household income in US Dollars." -msgstr "" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"I allow EliteMBA to use the information provided in this application (except" -" for financial information) for EliteMBA marketing purposes." -msgstr "" - -#: lms/djangoapps/dashboard/git_import.py -#, python-brace-format -msgid "" -"Path {0} doesn't exist, please create it, or configure a different path with" -" GIT_REPO_DIR" -msgstr "" - -#: lms/djangoapps/dashboard/git_import.py -msgid "" -"Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" -msgstr "" - -#: lms/djangoapps/dashboard/git_import.py -msgid "Unable to get git log" -msgstr "" - -#: lms/djangoapps/dashboard/git_import.py -msgid "git clone or pull failed!" -msgstr "" - -#: lms/djangoapps/dashboard/git_import.py -msgid "Unable to run import command." -msgstr "" - -#: lms/djangoapps/dashboard/git_import.py -msgid "The underlying module store does not support import." -msgstr "" - -#. Translators: This is an error message when they ask for a -#. particular version of a git repository and that version isn't -#. available from the remote source they specified -#: lms/djangoapps/dashboard/git_import.py -msgid "The specified remote branch is not available." -msgstr "" - -#. Translators: Error message shown when they have asked for a git -#. repository branch, a specific version within a repository, that -#. doesn't exist, or there is a problem changing to it. -#: lms/djangoapps/dashboard/git_import.py -msgid "Unable to switch to specified branch. Please check your branch name." -msgstr "" - -#: lms/djangoapps/dashboard/management/commands/git_add_course.py -msgid "" -"Import the specified git repository and optional branch into the modulestore" -" and optionally specified directory." -msgstr "" - -#. Translators: This message means that the user could not be authenticated -#. (that is, we could -#. not log them in for some reason - maybe they don't have permission, or -#. their password was wrong) -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Failed in authenticating {username}, error {error}\n" -msgstr "" - -#. Translators: This message means that the user could not be authenticated -#. (that is, we could -#. not log them in for some reason - maybe they don't have permission, or -#. their password was wrong) -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Failed in authenticating {username}\n" -msgstr "" - -#. Translators: this means that the password has been corrected (sometimes the -#. database needs to be resynchronized) -#. Translate this as meaning "the password was fixed" or "the password was -#. corrected". -#: lms/djangoapps/dashboard/sysadmin.py -msgid "fixed password" -msgstr "" - -#. Translators: this means everything happened successfully, yay! -#: lms/djangoapps/dashboard/sysadmin.py -msgid "All ok!" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -msgid "Must provide username" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Must provide full name" -msgstr "" - -#. Translators: Domain is an email domain, such as "@gmail.com" -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Email address must end in {domain}" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Failed - email {email_addr} already exists as {external_id}" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Password must be supplied if not using certificates" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "email address required (not username)" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Oops, failed to create user {user}, {error}" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "User {user} created successfully!" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Cannot find user with email address {email_addr}" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Cannot find user with username {username} - {error}" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Deleted user {username}" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Statistic" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Value" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Site statistics" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Total number of users" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Courses loaded in the modulestore" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/djangoapps/support/views/manage_user.py -msgid "username" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -msgid "email" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Repair Results" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Create User Results" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Delete User Results" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "The git repo location should end with '.git', and be a valid url" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Added Course" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -msgid "Course Name" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Directory/ID" -msgstr "" - -#. Translators: "Git Commit" is a computer command; see -#. http://gitref.org/basic/#commit -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Git Commit" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Last Change" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Last Editor" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Information about all courses" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Error - cannot get course with ID {0}
    {1}
    " -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Deleted" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -msgid "course_id" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "# enrolled" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "# staff" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "instructors" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Enrollment information for all courses" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "role" -msgstr "" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "full_name" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to %(thread_title)s:" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -msgid "Title can't be empty" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -msgid "Body can't be empty" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py -msgid "Topic doesn't exist" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -msgid "Comment level too deep" -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py -msgid "" -"Error uploading file. Please contact the site administrator. Thank you." -msgstr "" - -#: lms/djangoapps/django_comment_client/base/views.py -msgid "Good" -msgstr "" - -#: lms/djangoapps/edxnotes/helpers.py lms/djangoapps/edxnotes/helpers.py -msgid "EdxNotes Service is unavailable. Please try again in a few minutes." -msgstr "" - -#: lms/djangoapps/edxnotes/helpers.py -msgid "Invalid JSON response received from notes api." -msgstr "" - -#: lms/djangoapps/edxnotes/helpers.py -msgid "Incorrect data received from notes api." -msgstr "" - -#: lms/djangoapps/edxnotes/helpers.py -msgid "No endpoint was provided for EdxNotes." -msgstr "" - -#: lms/djangoapps/edxnotes/plugins.py -msgid "Notes" -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "API key for accessing Sailthru. " -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "API secret for accessing Sailthru. " -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru list name to add new users to. " -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru connection retry interval (secs)." -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru maximum retries." -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru template to use on welcome send." -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru template to use on abandoned cart reminder. Deprecated." -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "" -"Sailthru minutes to wait before sending abandoned cart message. Deprecated." -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru send template to use on enrolling for audit. " -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru send template to use on passed ID verification." -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru send template to use on failed ID verification." -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru send template to use on upgrading a course. Deprecated " -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru send template to use on purchasing a course seat. Deprecated " -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "Use the Sailthru content API to fetch course tags." -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "Number of seconds to cache course content retrieved from Sailthru." -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "Cost in cents to report to Sailthru for enrolls." -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "" -"Optional lms url scheme + host used to construct urls for content library, " -"e.g. https://courses.edx.org." -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "" -"Number of seconds to delay the sending of User Welcome email after user has " -"been created" -msgstr "" - -#: lms/djangoapps/email_marketing/models.py -msgid "" -"The number of seconds to delay/timeout wait to get cookie values from " -"sailthru." -msgstr "" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -#, python-brace-format -msgid "{platform_name} Staff" -msgstr "" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Course Staff" -msgstr "" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Staff" -msgstr "" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Used Registration Code" -msgstr "" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Credit Card - Individual" -msgstr "" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -#, python-brace-format -msgid "manually enrolled by username: {username}" -msgstr "" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Manually Enrolled" -msgstr "" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Data Integrity Error" -msgstr "" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "TBD" -msgstr "" - -#: lms/djangoapps/instructor/services.py -#, python-brace-format -msgid "Proctored Exam Review: {review_status}" -msgstr "" - -#: lms/djangoapps/instructor/services.py -#, python-brace-format -msgid "" -"A proctored exam attempt for {exam_name} in {course_name} by username: {student_username} was reviewed as {review_status} by the proctored exam review provider.\n" -"Review link: {review_url}" -msgstr "" - -#: lms/djangoapps/instructor/settings/common.py -msgid "Your Platform Insights" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"The {report_type} report is being created. To view the status of the report," -" see Pending Tasks below." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "User does not exist." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Found a conflict with given identifier. Please try an alternative identifier" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Make sure that the file you upload is in CSV format with no extraneous " -"characters or rows." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -msgid "Could not read uploaded file." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"Data in row #{row_num} must have exactly four columns: email, username, full" -" name, and country" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Invalid email {email_address}." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"An account with email {email} exists but the provided username {username} is" -" different. Enrolling anyway with {email}." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -msgid "File is not attached." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Username {user} already exists." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"Error '{error}' while sending email to new user (user email={email}). " -"Without the email student would not be able to login. Please contact support" -" for further information." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "problem responses" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Could not find problem with this location." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Invoice number '{num}' does not exist." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "The sale associated with this invoice has already been invalidated." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Invoice number {0} has been invalidated." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "This invoice is already active." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "The registration codes for invoice {0} have been re-activated." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "CourseID" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Certificate Type" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Total Certificates Issued" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Date Report Run" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "enrolled learner profile" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "User ID" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Email" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Language" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Location" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Birth Year" -msgstr "" - -#. Translators: This label appears above a dropdown menu on the registration -#. form used to select the user's gender. -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Gender" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Level of Education" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Mailing Address" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Goals" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Enrollment Mode" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Verification Status" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Cohort" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Team" -msgstr "" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the city in which they live. -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "City" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Country" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "enrollment" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "The file must contain a 'cohort' column containing cohort names." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "The file must contain a 'username' column, an 'email' column, or both." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Coupon Code" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: openedx/core/djangoapps/schedules/admin.py -msgid "Course Id" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "% Discount" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py lms/djangoapps/shoppingcart/pdf.py -#: lms/djangoapps/shoppingcart/reports.py -msgid "Description" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Expiration Date" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Is Active" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Code Redeemed Count" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Total Discounted Seats" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Total Discounted Amount" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "detailed enrollment" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "survey" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "proctored exam results" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Could not parse amount as a decimal" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Unable to generate redeem codes because of course misconfiguration." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/shoppingcart/models.py -msgid "pdf download unavailable right now, please contact support." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Enrollment status for {student}: unknown" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Enrollment status for {student}: active" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Enrollment status for {student}: inactive" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Enrollment status for {student}: pending" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Enrollment status for {student}: never enrolled" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Module does not exist." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "An error occurred while deleting the score." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -msgid "Course has no entrance exam section." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "all_students and unique_student_identifier are mutually exclusive." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "all_students and delete_module are mutually exclusive." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Requires instructor access." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -msgid "Course has no valid entrance exam section." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -msgid "All Students" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Cannot rescore with all_students and unique_student_identifier." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "ORA data" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "grade" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "problem grade" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Successfully changed due date for student {0} for {1} to {2}" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Successfully removed invalid due date extension (unit has no due date)." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Successfully reset due date for student {0} for {1} to {2}" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-format -msgid "This student (%s) will skip the entrance exam." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-format -msgid "This student (%s) is already allowed to skip the entrance exam." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Certificate generation task for all students of this course has been " -"started. You can view the status of the generation task in the \"Pending " -"Tasks\" section." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Please select one or more certificate statuses that require certificate " -"regeneration." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Please select certificate statuses from the list only." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Certificate regeneration task has been started. You can view the status of " -"the generation task in the \"Pending Tasks\" section." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Student (username/email={user}) already in certificate exception list." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"Certificate exception (user={user}) does not exist in certificate white " -"list. Please refresh the page and try again." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Student username/email field is required and can not be empty. Kindly fill " -"in username/email and then press \"Add to Exception List\" button." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"The record is not in the correct format. Please add a valid username or " -"email address." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"{user} does not exist in the LMS. Please check your spelling and retry." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"{user} is not enrolled in this course. Please check your spelling and retry." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Invalid data, generate_for must be \"new\" or \"all\"." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "Certificate generation started for white listed students." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "user \"{user}\" in row# {row}" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "user \"{username}\" in row# {row}" -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"Certificate of {user} has already been invalidated. Please check your " -"spelling and retry." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"Certificate for student {user} is already invalid, kindly verify that " -"certificate was generated for this student and then proceed." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Certificate Invalidation does not exist, Please refresh the page and try " -"again." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Student username/email field is required and can not be empty. Kindly fill " -"in username/email and then press \"Invalidate Certificate\" button." -msgstr "" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"The student {student} does not have certificate for the course {course}. " -"Kindly verify student username/email and the selected course are correct and" -" try again." -msgstr "" - -#: lms/djangoapps/instructor/views/coupons.py -msgid "coupon id is None" -msgstr "" - -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" -msgstr "" - -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "coupon with the coupon id ({coupon_id}) is already inactive" -msgstr "" - -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "coupon with the coupon id ({coupon_id}) updated successfully" -msgstr "" - -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "" -"The code ({code}) that you have tried to define is already in use as a " -"registration code" -msgstr "" - -#: lms/djangoapps/instructor/views/coupons.py -msgid "Please Enter the Integer Value for Coupon Discount" -msgstr "" - -#: lms/djangoapps/instructor/views/coupons.py -msgid "Please Enter the Coupon Discount Value Less than or Equal to 100" -msgstr "" - -#: lms/djangoapps/instructor/views/coupons.py -msgid "Please enter the date in this format i-e month/day/year" -msgstr "" - -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "coupon with the coupon code ({code}) added successfully" -msgstr "" - -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "coupon with the coupon code ({code}) already exists for this course" -msgstr "" - -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py -msgid "coupon id not found" -msgstr "" - -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "coupon with the coupon id ({coupon_id}) updated Successfully" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Instructor" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -#, python-brace-format -msgid "" -"To gain insights into student enrollment and participation {link_start}visit" -" {analytics_dashboard_name}, our new course analytics product{link_end}." -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "E-Commerce" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Special Exams" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -#: lms/djangoapps/support/views/index.py -msgid "Certificates" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Please Enter the numeric value for the course price" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -#, python-brace-format -msgid "CourseMode with the mode slug({mode_slug}) DoesNotExist" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "CourseMode price updated successfully" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Course Info" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -#, python-brace-format -msgid "Enrollment data is now available in {dashboard_link}." -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Membership" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Cohorts" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Discussions" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Student Admin" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Extensions" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Data Download" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Analytics" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Metrics" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Open Responses" -msgstr "" - -#. Translators: number sent refers to the number of emails sent -#: lms/djangoapps/instructor/views/instructor_task_helpers.py -msgid "0 sent" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_task_helpers.py -#, python-brace-format -msgid "{num_emails} sent" -msgid_plural "{num_emails} sent" -msgstr[0] "" -msgstr[1] "" - -#: lms/djangoapps/instructor/views/instructor_task_helpers.py -#, python-brace-format -msgid "{num_emails} failed" -msgid_plural "{num_emails} failed" -msgstr[0] "" -msgstr[1] "" - -#: lms/djangoapps/instructor/views/instructor_task_helpers.py -msgid "Complete" -msgstr "" - -#: lms/djangoapps/instructor/views/instructor_task_helpers.py -msgid "Incomplete" -msgstr "" - -#: lms/djangoapps/instructor/views/registration_codes.py -#: lms/djangoapps/instructor/views/registration_codes.py -#, python-brace-format -msgid "" -"The enrollment code ({code}) was not found for the {course_name} course." -msgstr "" - -#: lms/djangoapps/instructor/views/registration_codes.py -msgid "This enrollment code has been canceled. It can no longer be used." -msgstr "" - -#: lms/djangoapps/instructor/views/registration_codes.py -msgid "This enrollment code has been marked as unused." -msgstr "" - -#: lms/djangoapps/instructor/views/registration_codes.py -msgid "The enrollment code has been restored." -msgstr "" - -#: lms/djangoapps/instructor/views/registration_codes.py -#, python-brace-format -msgid "The redemption does not exist against enrollment code ({code})." -msgstr "" - -#: lms/djangoapps/instructor/views/tools.py -#, python-brace-format -msgid "Could not find student matching identifier: {student_identifier}" -msgstr "" - -#: lms/djangoapps/instructor/views/tools.py -msgid "Unable to parse date: " -msgstr "" - -#: lms/djangoapps/instructor/views/tools.py -#, python-brace-format -msgid "Couldn't find module for url: {0}" -msgstr "" - -#: lms/djangoapps/instructor/views/tools.py -#, python-brace-format -msgid "Unit {0} has no due date to extend." -msgstr "" - -#: lms/djangoapps/instructor/views/tools.py -msgid "An extended due date must be later than the original due date." -msgstr "" - -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "" - -#. Translators: This label appears above a field on the registration form -#. meant to hold the user's full name. -#: lms/djangoapps/instructor/views/tools.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Full Name" -msgstr "" - -#: lms/djangoapps/instructor/views/tools.py -#: lms/djangoapps/instructor/views/tools.py -msgid "Extended Due Date" -msgstr "" - -#: lms/djangoapps/instructor/views/tools.py -#, python-brace-format -msgid "Users with due date extensions for {0}" -msgstr "" - -#: lms/djangoapps/instructor/views/tools.py -#, python-brace-format -msgid "Due date extensions for {0} {1} ({2})" -msgstr "" - -#: lms/djangoapps/instructor_task/api_helper.py -msgid "Requested task is already running" -msgstr "" - -#: lms/djangoapps/instructor_task/api_helper.py -msgid "Error occured. Please try again later." -msgstr "" - -#: lms/djangoapps/instructor_task/api_helper.py -#, python-brace-format -msgid "" -"The {report_type} report is being created. To view the status of the report," -" see Pending Tasks below. You will be able to download the report when it is" -" complete." -msgstr "" - -#: lms/djangoapps/instructor_task/api_helper.py -msgid "This component cannot be rescored." -msgstr "" - -#: lms/djangoapps/instructor_task/api_helper.py -msgid "This component does not support score override." -msgstr "" - -#: lms/djangoapps/instructor_task/api_helper.py -msgid "Scores must be between 0 and the value of the problem." -msgstr "" - -#: lms/djangoapps/instructor_task/api_helper.py -msgid "Not all problems in entrance exam support re-scoring." -msgstr "" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "rescored" -msgstr "" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -#: lms/djangoapps/instructor_task/tasks_helper/module_state.py -msgid "overridden" -msgstr "" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "reset" -msgstr "" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py lms/templates/wiki/history.html -#: lms/templates/wiki/plugins/attachments/index.html -msgid "deleted" -msgstr "" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "emailed" -msgstr "" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "graded" -msgstr "" - -#. Translators: This is a past-tense phrase that is inserted into task -#. progress messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "problem distribution graded" -msgstr "" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "generating_enrollment_report" -msgstr "" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "certificates generated" -msgstr "" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#. An example of such a message is: "Progress: {action} {succeeded} of -#. {attempted} so far" -#: lms/djangoapps/instructor_task/tasks.py -msgid "cohorted" -msgstr "" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the First Name -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "First Name" -msgstr "" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the First Name -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Last Name" -msgstr "" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Company Name" -msgstr "" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the Title -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Title" -msgstr "" - -#. Translators: This label appears above a dropdown menu on the registration -#. form used to select the user's year of birth. -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Year of Birth" -msgstr "" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Enrollment Date" -msgstr "" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Currently Enrolled" -msgstr "" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Enrollment Source" -msgstr "" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Manual (Un)Enrollment Reason" -msgstr "" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Enrollment Role" -msgstr "" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "List Price" -msgstr "" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Payment Amount" -msgstr "" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Coupon Codes Used" -msgstr "" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Registration Code Used" -msgstr "" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Payment Status" -msgstr "" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Transaction Reference Number" -msgstr "" - -#: lms/djangoapps/instructor_task/views.py -#: lms/djangoapps/instructor_task/views.py -msgid "No status information available" -msgstr "" - -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "No task_output information found for instructor_task {0}" -msgstr "" - -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "No parsable task_output information found for instructor_task {0}: {1}" -msgstr "" - -#: lms/djangoapps/instructor_task/views.py -msgid "No parsable status information available" -msgstr "" - -#: lms/djangoapps/instructor_task/views.py -msgid "No message provided" -msgstr "" - -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Invalid task_output information found for instructor_task {0}: {1}" -msgstr "" - -#: lms/djangoapps/instructor_task/views.py -msgid "No progress status information available" -msgstr "" - -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "No parsable task_input information found for instructor_task {0}: {1}" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {attempted} and {succeeded} are counts. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Progress: {action} {succeeded} of {attempted} so far" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {student} is a student identifier. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Unable to find submission to be {action} for student '{student}'" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {student} is a student identifier. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Problem failed to be {action} for student '{student}'" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {student} is a student identifier. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Problem successfully {action} for student '{student}'" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {student} is a student identifier. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "" -"Unable to find entrance exam submission to be {action} for student " -"'{student}'" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {student} is a student identifier. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Entrance exam successfully {action} for student '{student}'" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Unable to find any students with submissions to be {action}" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {attempted} is a count. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Problem failed to be {action} for any of {attempted} students" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {attempted} is a count. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Problem successfully {action} for {attempted} students" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {succeeded} and {attempted} are counts. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Problem {action} for {succeeded} of {attempted} students" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Unable to find any recipients to be {action}" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {attempted} is a count. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Message failed to be {action} for any of {attempted} recipients " -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {attempted} is a count. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Message successfully {action} for {attempted} recipients" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {succeeded} and {attempted} are counts. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Message {action} for {succeeded} of {attempted} recipients" -msgstr "" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {succeeded} and {attempted} are counts. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Status: {action} {succeeded} of {attempted}" -msgstr "" - -#. Translators: {skipped} is a count. This message is appended to task -#. progress status messages. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid " (skipping {skipped})" -msgstr "" - -#. Translators: {total} is a count. This message is appended to task progress -#. status messages. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid " (out of {total})" -msgstr "" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"This component's access settings refer to deleted or invalid group " -"configurations." -msgstr "" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"This unit's access settings refer to deleted or invalid group " -"configurations." -msgstr "" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "This component's access settings refer to deleted or invalid groups." -msgstr "" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "This unit's access settings refer to deleted or invalid groups." -msgstr "" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"This component's access settings contradict its parent's access settings." -msgstr "" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "Whether to display this module in the table of contents" -msgstr "" - -#. Translators: "TOC" stands for "Table of Contents" -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"What format this module is in (used for deciding which grader to apply, and " -"what to show in the TOC)" -msgstr "" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "Course Chrome" -msgstr "" - -#. Translators: DO NOT translate the words in quotes here, they are -#. specific words for the acceptable values. -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"Enter the chrome, or navigation tools, to use for the XBlock in the LMS. Valid values are: \n" -"\"chromeless\" -- to not use tabs or the accordion; \n" -"\"tabs\" -- to use tabs only; \n" -"\"accordion\" -- to use the accordion only; or \n" -"\"tabs,accordion\" -- to use tabs and the accordion." -msgstr "" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "Default Tab" -msgstr "" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"Enter the tab that is selected in the XBlock. If not set, the Course tab is " -"selected." -msgstr "" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "LaTeX Source File Name" -msgstr "" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "Enter the source file name for LaTeX." -msgstr "" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"A dictionary that maps which groups can be shown this block. The keys are " -"group configuration ids and the values are a list of group IDs. If there is " -"no key for a group configuration or if the set of group IDs is empty then " -"the block is considered visible to all. Note that this field is ignored if " -"the block is visible_to_staff_only." -msgstr "" - -#: lms/djangoapps/mobile_api/views.py -msgid "Missing requested parameter 'platform'" -msgstr "" - -#: lms/djangoapps/mobile_api/views.py -msgid "Unable to find information about the latest version of the platform" -msgstr "" - -#: lms/djangoapps/notes/views.py -msgid "My Notes" -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -msgid "Order Payment Confirmation" -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "" -"Confirmation and Registration Codes for the following courses: " -"{course_name_list}" -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -msgid "Trying to add a different currency into the cart" -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -msgid "Internal reference code for this invoice." -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -msgid "Customer's reference code for this invoice." -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -msgid "" -"The amount of the transaction. Use positive amounts for payments and " -"negative amounts for refunds." -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py -msgid "Lower-case ISO currency codes" -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -msgid "Optional: provide additional information for this transaction" -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -msgid "" -"The status of the payment or refund. 'started' means that payment is " -"expected, but money has not yet been transferred. 'completed' means that the" -" payment or refund was received. 'cancelled' means that payment or refund " -"was expected, but was cancelled before money was transferred. " -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -msgid "The number of items sold." -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -msgid "The price per item sold, including discounts." -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "Registration for Course: {course_name}" -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "" -"Please visit your {link_start}dashboard{link_end} to see your new course." -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "Enrollment codes for Course: {course_name}" -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "Mode {mode} does not exist for {course_id}" -msgstr "" - -#. Translators: In this particular case, mode_name refers to a -#. particular mode (i.e. Honor Code Certificate, Verified Certificate, etc) -#. by which a user could enroll in the given course. -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "{mode_name} for course {course}" -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -msgid "" -"You can unenroll in the course and receive a full refund for 14 days after " -"the course start date. " -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "" -"If you haven't verified your identity yet, please start the verification " -"process ({verification_url})." -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -msgid "" -"You can unenroll in the course and receive a full refund for 2 days after " -"the course start date. " -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "" -"{refund_reminder_msg}To receive your refund, contact {billing_email}. Please" -" include your order number in your email. Please do NOT include your credit " -"card information." -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "" -"We greatly appreciate this generous contribution and your support of the " -"{platform_name} mission. This receipt was prepared to support charitable " -"contributions for tax purposes. We confirm that neither goods nor services " -"were provided in exchange for this gift." -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "Could not find a course with the ID '{course_id}'" -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "Donation for {course}" -msgstr "" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "Donation for {platform_name}" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py -#, python-brace-format -msgid "Page {page_number} of {page_count}" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -msgid "Invoice" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "Order" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py -#, python-brace-format -msgid "{id_label} # {item_id}" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py -#, python-brace-format -msgid "Date: {date}" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/reports.py -msgid "Quantity" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "" -"List Price\n" -"per item" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "" -"Discount\n" -"per item" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "Amount" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "Total" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "Payment Received" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "Balance" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "Billing Address" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py openedx/core/djangoapps/user_api/api.py -msgid "Disclaimer" -msgstr "" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "TERMS AND CONDITIONS" -msgstr "" - -#. Translators: this text appears when an unfamiliar error code occurs during -#. payment, -#. for which we don't know a user-friendly message to display in advance. -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "UNKNOWN REASON" -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "The payment processor did not return a required parameter: {parameter}" -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"The payment processor returned a badly-typed value {value} for parameter " -"{parameter}." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"The payment processor accepted an order whose number is not in our system." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"The amount charged by the processor {charged_amount} " -"{charged_amount_currency} is different than the total cost of the order " -"{total_cost} {total_cost_currency}." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"Sorry! Our payment processor did not accept your payment. The decision they" -" returned was {decision}, and the reason was {reason}. You were not " -"charged. Please try a different form of payment. Contact us with payment-" -"related questions at {email}." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"Sorry! Our payment processor sent us back a payment confirmation that had " -"inconsistent data! We apologize that we cannot verify whether the charge " -"went through and take further action on your order. The specific error " -"message is: {msg} Your credit card may possibly have been charged. Contact " -"us with payment-specific questions at {email}." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"Sorry! Due to an error your purchase was charged for a different amount than" -" the order total! The specific error message is: {msg}. Your credit card has" -" probably been charged. Contact us with payment-specific questions at " -"{email}." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"Sorry! Our payment processor sent us back a corrupted message regarding your" -" charge, so we are unable to validate that the message actually came from " -"the payment processor. The specific error message is: {msg}. We apologize " -"that we cannot verify whether the charge went through and take further " -"action on your order. Your credit card may possibly have been charged. " -"Contact us with payment-specific questions at {email}." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"Sorry! Our payment processor sent us back a message saying that you have " -"cancelled this transaction. The items in your shopping cart will exist for " -"future purchase. If you feel that this is in error, please contact us with " -"payment-specific questions at {email}." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"We're sorry, but this payment was declined. The items in your shopping cart " -"have been saved. If you have any questions about this transaction, please " -"contact us at {email}." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"Sorry! Your payment could not be processed because an unexpected exception " -"occurred. Please contact us at {email} for assistance." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Successful transaction." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The request is missing one or more required fields." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "One or more fields in the request contains invalid data." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The merchant reference code for this authorization request matches the merchant reference code of another\n" -" authorization request that you sent within the past 15 minutes.\n" -" Possible action: Resend the request with a unique merchant reference code.\n" -" " -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Only a partial amount was approved." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "General system failure." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The request was received but there was a server timeout. This error does not include timeouts between the\n" -" client and the server.\n" -" " -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"The request was received, but a service did not finish running in time." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The authorization request was approved by the issuing bank but declined by CyberSource\n" -" because it did not pass the Address Verification System (AVS).\n" -" " -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The issuing bank has questions about the request. You do not receive an\n" -" authorization code programmatically, but you might receive one verbally by calling the processor.\n" -" Possible action: retry with another form of payment.\n" -" " -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" Expired card. You might also receive this if the expiration date you\n" -" provided does not match the date the issuing bank has on file.\n" -" Possible action: retry with another form of payment.\n" -" " -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" General decline of the card. No other information provided by the issuing bank.\n" -" Possible action: retry with another form of payment.\n" -" " -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"Insufficient funds in the account. Possible action: retry with another form " -"of payment." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Stolen or lost card." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"Issuing bank unavailable. Possible action: retry again after a few minutes." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" Inactive card or card not authorized for card-not-present transactions.\n" -" Possible action: retry with another form of payment.\n" -" " -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "CVN did not match." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"The card has reached the credit limit. Possible action: retry with another " -"form of payment." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"Invalid card verification number (CVN). Possible action: retry with another " -"form of payment." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The customer matched an entry on the processors negative file." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Account frozen. Possible action: retry with another form of payment." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The authorization request was approved by the issuing bank but declined by\n" -" CyberSource because it did not pass the CVN check.\n" -" Possible action: retry with another form of payment.\n" -" " -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"Invalid account number. Possible action: retry with another form of payment." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The card type is not accepted by the payment processor.\n" -" Possible action: retry with another form of payment.\n" -" " -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"General decline by the processor. Possible action: retry with another form " -"of payment." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"There is a problem with the information in your CyberSource account. Please" -" let us know at {0}" -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The requested capture amount exceeds the originally authorized amount." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Processor Failure. Possible action: retry the payment" -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The authorization has already been reversed." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The authorization has already been captured." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"The requested transaction amount must match the previous transaction amount." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The card type sent is invalid or does not correlate with the credit card number.\n" -" Possible action: retry with the same card or another form of payment.\n" -" " -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The request ID is invalid." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" You requested a capture, but there is no corresponding, unused authorization record. Occurs if there was\n" -" not a previously successful authorization request or if the previously successful authorization has already\n" -" been used by another capture request.\n" -" " -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The transaction has already been settled or reversed." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" Either the capture or credit is not voidable because the capture or credit information has already been\n" -" submitted to your processor, or you requested a void for a type of transaction that cannot be voided.\n" -" " -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "You requested a credit for a capture that was previously voided." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"The request was received, but there was a timeout at the payment processor." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Stand-alone credits are not allowed." -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The cardholder is enrolled for payer authentication" -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Payer authentication could not be authenticated" -msgstr "" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The authorization request was approved by the issuing bank but declined by CyberSource based\n" -" on your legacy Smart Authorization settings.\n" -" Possible action: retry with a different form of payment.\n" -" " -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Order Number" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Customer Name" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Date of Original Transaction" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Date of Refund" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Amount of Refund" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -#: lms/djangoapps/shoppingcart/reports.py -msgid "Service Fees (if any)" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Purchase Time" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Order ID" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Unit Cost" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Total Cost" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Currency" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Comments" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -#: lms/djangoapps/shoppingcart/reports.py -msgid "University" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Course Announce Date" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Course Start Date" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Course Registration Close Date" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Course Registration Period" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Total Enrolled" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Audit Enrollment" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Honor Code Enrollment" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Verified Enrollment" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Gross Revenue" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Gross Revenue over the Minimum" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Number of Verified Students Contributing More than the Minimum" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Number of Refunds" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Dollars Refunded" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Number of Transactions" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Total Payments Collected" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Number of Successful Refunds" -msgstr "" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Total Amount of Refunds" -msgstr "" - -#: lms/djangoapps/shoppingcart/views.py -msgid "You must be logged-in to add to a shopping cart" -msgstr "" - -#: lms/djangoapps/shoppingcart/views.py -msgid "The course you requested does not exist." -msgstr "" - -#: lms/djangoapps/shoppingcart/views.py -#, python-brace-format -msgid "The course {course_id} is already in your cart." -msgstr "" - -#: lms/djangoapps/shoppingcart/views.py -#, python-brace-format -msgid "You are already registered in course {course_id}." -msgstr "" - -#: lms/djangoapps/shoppingcart/views.py -msgid "Course added to cart." -msgstr "" - -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py -#, python-brace-format -msgid "Discount does not exist against code '{code}'." -msgstr "" - -#: lms/djangoapps/shoppingcart/views.py -#, python-brace-format -msgid "This enrollment code ({enrollment_code}) is no longer valid." -msgstr "" - -#: lms/djangoapps/shoppingcart/views.py -#, python-brace-format -msgid "This enrollment code ({enrollment_code}) is not valid." -msgstr "" - -#: lms/djangoapps/shoppingcart/views.py -#, python-brace-format -msgid "" -"Code '{registration_code}' is not valid for any course in the shopping cart." -msgstr "" - -#: lms/djangoapps/shoppingcart/views.py -msgid "" -"Cart item quantity should not be greater than 1 when applying activation " -"code" -msgstr "" - -#: lms/djangoapps/shoppingcart/views.py -msgid "Only one coupon redemption is allowed against an order" -msgstr "" - -#: lms/djangoapps/shoppingcart/views.py -msgid "success" -msgstr "" - -#: lms/djangoapps/shoppingcart/views.py -msgid "You do not have permission to view this page." -msgstr "" - -#: lms/djangoapps/support/views/index.py -msgid "View and regenerate certificates." -msgstr "" - -#: lms/djangoapps/support/views/index.py -msgid "Manual Refund" -msgstr "" - -#: lms/djangoapps/support/views/index.py -msgid "Track refunds issued directly through CyberSource." -msgstr "" - -#: lms/djangoapps/support/views/index.py -msgid "Enrollment" -msgstr "" - -#: lms/djangoapps/support/views/index.py -msgid "View and update learner enrollments." -msgstr "" - -#: lms/djangoapps/support/views/index.py -msgid "Manage User" -msgstr "" - -#: lms/djangoapps/support/views/index.py -msgid "Disable User Account" -msgstr "" - -#: lms/djangoapps/support/views/index.py -msgid "Entitlements" -msgstr "" - -#: lms/djangoapps/support/views/index.py -msgid "View, create, and reissue learner entitlements" -msgstr "" - -#: lms/djangoapps/support/views/index.py -msgid "Feature Based Enrollments" -msgstr "" - -#: lms/djangoapps/support/views/index.py -msgid "View feature based enrollment settings" -msgstr "" - -#: lms/djangoapps/support/views/manage_user.py -msgid "user_support_url" -msgstr "" - -#: lms/djangoapps/support/views/manage_user.py -msgid "user_detail_url" -msgstr "" - -#: lms/djangoapps/support/views/manage_user.py -#: lms/djangoapps/support/views/manage_user.py -msgid "Usable" -msgstr "" - -#: lms/djangoapps/support/views/manage_user.py -#: lms/djangoapps/support/views/manage_user.py -msgid "Unusable" -msgstr "" - -#: lms/djangoapps/support/views/manage_user.py -msgid "User Enabled Successfully" -msgstr "" - -#: lms/djangoapps/support/views/manage_user.py -msgid "User Disabled Successfully" -msgstr "" - -#: lms/djangoapps/support/views/refund.py -msgid "Email Address" -msgstr "" - -#: lms/djangoapps/support/views/refund.py -#: openedx/core/djangoapps/schedules/admin.py -msgid "Course ID" -msgstr "" - -#: lms/djangoapps/support/views/refund.py -msgid "User not found" -msgstr "" - -#: lms/djangoapps/support/views/refund.py -#, python-brace-format -msgid "Course {course_id} not past the refund window." -msgstr "" - -#: lms/djangoapps/support/views/refund.py -#, python-brace-format -msgid "No order found for {user} in course {course_id}" -msgstr "" - -#: lms/djangoapps/support/views/refund.py -#, python-brace-format -msgid "Unenrolled {user} from {course_id}" -msgstr "" - -#: lms/djangoapps/support/views/refund.py -#, python-brace-format -msgid "Refunded {cost} for order id {order_id}" -msgstr "" - -#: lms/djangoapps/teams/models.py -msgid "Optional language the team uses as ISO 639-1 code." -msgstr "" - -#: lms/djangoapps/teams/plugins.py -msgid "Teams" -msgstr "" - -#: lms/djangoapps/teams/views.py lms/djangoapps/teams/views.py -#, python-brace-format -msgid "The supplied course id {course_id} is not valid." -msgstr "" - -#: lms/djangoapps/teams/views.py -msgid "course_id must be provided" -msgstr "" - -#: lms/djangoapps/teams/views.py -msgid "text_search and order_by cannot be provided together" -msgstr "" - -#: lms/djangoapps/teams/views.py -#, python-brace-format -msgid "The supplied topic id {topic_id} is not valid" -msgstr "" - -#: lms/djangoapps/teams/views.py -msgid "Error connecting to elasticsearch" -msgstr "" - -#. Translators: 'ordering' is a string describing a way -#. of ordering a list. For example, {ordering} may be -#. 'name', indicating that the user wants to sort the -#. list by lower case name. -#: lms/djangoapps/teams/views.py lms/djangoapps/teams/views.py -#, python-brace-format -msgid "The ordering {ordering} is not supported" -msgstr "" - -#: lms/djangoapps/teams/views.py -#, python-brace-format -msgid "The supplied course_id {course_id} is not valid." -msgstr "" - -#: lms/djangoapps/teams/views.py -msgid "You are already in a team in this course." -msgstr "" - -#: lms/djangoapps/teams/views.py -msgid "username or team_id must be specified." -msgstr "" - -#: lms/djangoapps/teams/views.py -msgid "Username is required." -msgstr "" - -#: lms/djangoapps/teams/views.py -msgid "Team id is required." -msgstr "" - -#: lms/djangoapps/teams/views.py -msgid "This team is already full." -msgstr "" - -#: lms/djangoapps/teams/views.py -#, python-brace-format -msgid "The user {username} is already a member of a team in this course." -msgstr "" - -#: lms/djangoapps/teams/views.py -#, python-brace-format -msgid "" -"The user {username} is not enrolled in the course associated with this team." -msgstr "" - -#: lms/djangoapps/verify_student/admin.py -#: lms/djangoapps/verify_student/views.py -#, python-brace-format -msgid "Your {platform_name} ID Verification Approved" -msgstr "" - -#: lms/djangoapps/verify_student/admin.py -#: lms/djangoapps/verify_student/views.py -#, python-brace-format -msgid "Your {platform_name} Verification Has Been Denied" -msgstr "" - -#: lms/djangoapps/verify_student/models.py -msgid "The course for which this deadline applies" -msgstr "" - -#: lms/djangoapps/verify_student/models.py -msgid "" -"The datetime after which users are no longer allowed to submit photos for " -"verification." -msgstr "" - -#: lms/djangoapps/verify_student/services.py -#, python-brace-format -msgid "Your {platform_name} verification has expired." -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "Intro" -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "Make payment" -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "Payment confirmation" -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "Take photo" -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "Take a photo of your ID" -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "Review your info" -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "Enrollment confirmation" -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "Selected price is not valid number." -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "This course doesn't support paid certificates" -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "No selected price or selected price is below minimum." -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "" -"Photo ID image is required if the user does not have an initial verification" -" attempt." -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "Missing required parameter face_image" -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "Invalid course key" -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "No profile found for user" -msgstr "" - -#: lms/djangoapps/verify_student/views.py -#, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "" - -#: lms/djangoapps/verify_student/views.py -msgid "Image data is not valid." -msgstr "" - -#: lms/djangoapps/verify_student/views.py -#, python-brace-format -msgid "{platform_name} ID Verification Photos Received" -msgstr "" - -#: lms/djangoapps/verify_student/views.py -#, python-brace-format -msgid "Review ID Verification Photos For {username}" -msgstr "" - -#: lms/envs/common.py -msgid "Your Platform Name Here" -msgstr "" - -#: lms/envs/common.py -msgid "Your Platform Description Here" -msgstr "" - -#: lms/envs/common.py -msgid "Read access" -msgstr "" - -#: lms/envs/common.py -msgid "Write access" -msgstr "" - -#: lms/envs/common.py -msgid "Know your email address" -msgstr "" - -#: lms/envs/common.py -msgid "Know your name and username" -msgstr "" - -#: lms/envs/common.py -msgid "Retrieve your grades for your enrolled courses" -msgstr "" - -#: lms/envs/common.py -msgid "Retrieve your course certificates" -msgstr "" - -#: lms/envs/common.py lms/envs/common.py -msgid "Audit" -msgstr "" - -#. Translators: This is the website name of www.facebook.com. Please -#. translate this the way that Facebook advertises in your language. -#: lms/envs/common.py -msgid "Facebook" -msgstr "" - -#: lms/envs/common.py -#, python-brace-format -msgid "Like {platform_name} on Facebook" -msgstr "" - -#. Translators: This is the website name of www.twitter.com. Please -#. translate this the way that Twitter advertises in your language. -#: lms/envs/common.py -msgid "Twitter" -msgstr "" - -#: lms/envs/common.py -#, python-brace-format -msgid "Follow {platform_name} on Twitter" -msgstr "" - -#. Translators: This is the website name of www.linkedin.com. Please -#. translate this the way that LinkedIn advertises in your language. -#: lms/envs/common.py -msgid "LinkedIn" -msgstr "" - -#: lms/envs/common.py -#, python-brace-format -msgid "Follow {platform_name} on LinkedIn" -msgstr "" - -#. Translators: This is the website name of plus.google.com. Please -#. translate this the way that Google+ advertises in your language. -#: lms/envs/common.py -msgid "Google+" -msgstr "" - -#: lms/envs/common.py -#, python-brace-format -msgid "Follow {platform_name} on Google+" -msgstr "" - -#. Translators: This is the website name of www.tumblr.com. Please -#. translate this the way that Tumblr advertises in your language. -#: lms/envs/common.py -msgid "Tumblr" -msgstr "" - -#. Translators: This is the website name of www.meetup.com. Please -#. translate this the way that MeetUp advertises in your language. -#: lms/envs/common.py -msgid "Meetup" -msgstr "" - -#. Translators: This is the website name of www.reddit.com. Please -#. translate this the way that Reddit advertises in your language. -#: lms/envs/common.py -msgid "Reddit" -msgstr "" - -#: lms/envs/common.py -#, python-brace-format -msgid "Subscribe to the {platform_name} subreddit" -msgstr "" - -#. Translators: This is the website name of https://vk.com. Please -#. translate this the way that VK advertises in your language. -#: lms/envs/common.py -msgid "VK" -msgstr "" - -#. Translators: This is the website name of http://www.weibo.com. Please -#. translate this the way that Weibo advertises in your language. -#: lms/envs/common.py -msgid "Weibo" -msgstr "" - -#. Translators: This is the website name of www.youtube.com. Please -#. translate this the way that YouTube advertises in your language. -#: lms/envs/common.py -msgid "Youtube" -msgstr "" - -#: lms/envs/common.py -#, python-brace-format -msgid "Subscribe to the {platform_name} YouTube channel" -msgstr "" - -#: lms/envs/common.py lms/envs/eliteu_common.py -msgid "Kosovo" -msgstr "" - -#: lms/envs/common.py -#, python-brace-format -msgid "Welcome to {platform_name}." -msgstr "" - -#: lms/envs/common.py -#, python-brace-format -msgid "" -"You have left the {start_bold}{enterprise_name}{end_bold} website and are " -"now on the {platform_name} site. {enterprise_name} has partnered with " -"{platform_name} to offer you high-quality, always available learning " -"programs to help you advance your knowledge and career. {line_break}Please " -"note that {platform_name} has a different {privacy_policy_link_start}Privacy" -" Policy{privacy_policy_link_end} from {enterprise_name}." -msgstr "" - -#: lms/envs/common.py -msgid "Professional" -msgstr "" - -#: lms/envs/common.py -msgid "No-Id-Professional" -msgstr "" - -#: lms/envs/common.py -msgid "Credit" -msgstr "" - -#: lms/envs/eliteu_common.py -msgid "EliteMBA" -msgstr "" - -#: lms/envs/eliteu_common.py -msgid "Certificate" -msgstr "" - -#: lms/envs/eliteu_common.py -msgid "Certificate of Achievement" -msgstr "" - -#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html -msgid "Please correct the errors below." -msgstr "" - -#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html -#, python-format -msgid "Are you sure you want to cancel retirement for user \"%(username)s\"? " -msgstr "" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -#, python-format -msgid "" -"\n" -" Welcome to %(course_name)s\n" -" " -msgstr "" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -#, python-format -msgid "To get started, please visit https://%(site_name)s." -msgstr "" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -msgid "The login information for your account follows:" -msgstr "" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt -#, python-format -msgid "email: %(email_address)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt -#, python-format -msgid "password: %(password)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt -msgid "It is recommended that you change your password." -msgstr "" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt -#, python-format -msgid "Sincerely yours, The %(course_name)s Team" -msgstr "" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt -#, python-format -msgid "Welcome to %(course_name)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt -#, python-format -msgid "" -"To get started, please visit https://%(site_name)s. The login information " -"for your account follows." -msgstr "" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/subject.txt -#: lms/templates/instructor/edx_ace/enrollenrolled/email/subject.txt -#, python-format -msgid "You have been enrolled in %(course_name)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -#, python-format -msgid "" -"\n" -" You have been invited to be a beta tester for %(course_name)s at %(site_name)s\n" -" " -msgstr "" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -msgid "The invitation has been sent by a member of the course staff." -msgstr "" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -msgid "To start accessing course materials, please visit:" -msgstr "" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -msgid "To enroll in this course and begin the beta test:" -msgstr "" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -#, python-format -msgid "Visit %(course_name)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -#, python-format -msgid "Visit %(site_name)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt -#: lms/templates/instructor/edx_ace/removebetatester/email/body.html -#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt -#, python-format -msgid "" -"This email was automatically sent from %(site_name)s to %(email_address)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt -#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt -#, python-format -msgid "Dear %(full_name)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt -#, python-format -msgid "" -"You have been invited to be a beta tester for %(course_name)s at " -"%(site_name)s by a member of the course staff." -msgstr "" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt -#, python-format -msgid "To start accessing course materials, please visit %(course_url)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt -#, python-format -msgid "" -"Visit %(course_about_url)s to enroll in this course and begin the beta test." -msgstr "" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt -#, python-format -msgid "Visit %(site_name)s to enroll in this course and begin the beta test." -msgstr "" - -#: lms/templates/instructor/edx_ace/addbetatester/email/subject.txt -#, python-format -msgid "You have been invited to a beta test for %(course_name)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -#, python-format -msgid "You have been invited to %(course_name)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "" -"You have been invited to join %(course_name)s at %(site_name)s by a member " -"of the course staff." -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -msgid "To access this course click on the button below and login:" -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -msgid "To access this course visit it and register:" -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -#, python-format -msgid "" -"Please finish your registration and fill out the registration form making " -"sure to use %(email_address)s in the Email field:" -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -msgid "Finish Your Registration" -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "" -"Once you have registered and activated your account, you will see " -"%(course_name)s listed on your dashboard." -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -msgid "" -"Once you have registered and activated your account, you will be able to " -"access this course:" -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "You can then enroll in %(course_name)s." -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -msgid "Dear student," -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "To access this course visit %(course_url)s and login." -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "" -"To access this course visit %(course_about_url)s and register for this " -"course." -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "" -"To finish your registration, please visit %(registration_url)s and fill out " -"the registration form making sure to use %(email_address)s in the Email " -"field." -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "" -"Once you have registered and activated your account, visit " -"%(course_about_url)s to join this course." -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/subject.txt -#, python-format -msgid "You have been invited to register for %(course_name)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedunenroll/email/subject.txt -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/subject.txt -#, python-format -msgid "You have been unenrolled from %(course_name)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt -#, python-format -msgid "" -"You have been unenrolled from the course %(course_name)s by a member of the " -"course staff. Please ignore the invitation previously sent." -msgstr "" - -#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt -msgid "Dear Student," -msgstr "" - -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html -#, python-format -msgid "" -"\n" -" You have been unenrolled from %(course_name)s\n" -" " -msgstr "" - -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt -#, python-format -msgid "" -"You have been unenrolled from %(course_name)s at %(site_name)s by a member " -"of the course staff. This course will no longer appear on your %(site_name)s" -" dashboard." -msgstr "" - -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt -#: lms/templates/instructor/edx_ace/removebetatester/email/body.html -#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt -msgid "Your other courses have not been affected." -msgstr "" - -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt -#, python-format -msgid "This email was automatically sent from %(site_name)s to %(full_name)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html -#, python-format -msgid "" -"\n" -" You have been enrolled in %(course_name)s\n" -" " -msgstr "" - -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt -#, python-format -msgid "" -"You have been enrolled in %(course_name)s at %(site_name)s by a member of " -"the course staff. This course will now appear on your %(site_name)s " -"dashboard." -msgstr "" - -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html -msgid "Access the Course Materials Now" -msgstr "" - -#: lms/templates/instructor/edx_ace/removebetatester/email/body.html -#, python-format -msgid "" -"You have been removed as a beta tester for %(course_name)s at %(site_name)s" -msgstr "" - -#: lms/templates/instructor/edx_ace/removebetatester/email/body.html -#, python-format -msgid "" -"You have been removed as a beta tester for %(course_name)s at %(site_name)s " -"by a member of the course staff." -msgstr "" - -#: lms/templates/instructor/edx_ace/removebetatester/email/body.html -msgid "" -"This course will remain on your dashboard, but you will no longer be part of" -" the beta testing group." -msgstr "" - -#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt -#, python-format -msgid "" -"You have been removed as a beta tester for %(course_name)s at %(site_name)s " -"by a member of the course staff. This course will remain on your dashboard, " -"but you will no longer be part of the beta testing group." -msgstr "" - -#: lms/templates/instructor/edx_ace/removebetatester/email/subject.txt -#, python-format -msgid "You have been removed from a beta test for %(course_name)s" -msgstr "" - -#: lms/templates/logout.html -msgid "Signed Out" -msgstr "" - -#: lms/templates/logout.html -msgid "You have signed out." -msgstr "" - -#: lms/templates/logout.html -#, python-format -msgid "" -"If you are not redirected within 5 seconds, click " -"here to go to the home page." -msgstr "" - -#: lms/templates/main_django.html -msgid "Skip to main content" -msgstr "" - -#: lms/templates/oauth2_provider/authorize.html -#: lms/templates/oauth2_provider/authorize.html -msgid "Authorize" -msgstr "" - -#: lms/templates/oauth2_provider/authorize.html -msgid "" -"The above application requests the following permissions from your account:" -msgstr "" - -#: lms/templates/oauth2_provider/authorize.html -msgid "" -"These permissions will be granted for data from your courses associated with" -" the following content providers:" -msgstr "" - -#: lms/templates/oauth2_provider/authorize.html -msgid "" -"Please click the 'Allow' button to grant these permissions to the above " -"application. Otherwise, to withhold these permissions, please click the " -"'Cancel' button." -msgstr "" - -#: lms/templates/oauth2_provider/authorize.html -#: openedx/core/djangoapps/user_api/admin.py -msgid "Cancel" -msgstr "" - -#: lms/templates/oauth2_provider/authorize.html -msgid "Allow" -msgstr "" - -#: lms/templates/oauth2_provider/authorize.html -msgid "Error" -msgstr "" - -#: lms/templates/wiki/article.html -msgid "Last modified:" -msgstr "" - -#: lms/templates/wiki/article.html -msgid "See all children" -msgstr "" - -#: lms/templates/wiki/article.html -msgid "This article was last modified:" -msgstr "" - -#: lms/templates/wiki/create.html lms/templates/wiki/create.html -msgid "Add new article" -msgstr "" - -#: lms/templates/wiki/create.html -msgid "Create article" -msgstr "" - -#: lms/templates/wiki/create.html lms/templates/wiki/delete.html -#: lms/templates/wiki/delete.html -msgid "Go back" -msgstr "" - -#: lms/templates/wiki/delete.html lms/templates/wiki/delete.html -#: lms/templates/wiki/edit.html -msgid "Delete article" -msgstr "" - -#: lms/templates/wiki/delete.html -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Delete" -msgstr "" - -#: lms/templates/wiki/delete.html -msgid "You cannot delete a root article." -msgstr "" - -#: lms/templates/wiki/delete.html -msgid "" -"You cannot delete this article because you do not have permission to delete " -"articles with children. Try to remove the children manually one-by-one." -msgstr "" - -#: lms/templates/wiki/delete.html -msgid "" -"You are deleting an article. This means that its children will be deleted as" -" well. If you choose to purge, children will also be purged!" -msgstr "" - -#: lms/templates/wiki/delete.html -msgid "Articles that will be deleted" -msgstr "" - -#: lms/templates/wiki/delete.html -msgid "...and more!" -msgstr "" - -#: lms/templates/wiki/delete.html -msgid "You are deleting an article. Please confirm." -msgstr "" - -#: lms/templates/wiki/edit.html -msgid "Edit" -msgstr "" - -#: lms/templates/wiki/edit.html lms/templates/wiki/edit.html -msgid "Save changes" -msgstr "" - -#: lms/templates/wiki/edit.html -msgid "Preview" -msgstr "" - -#: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -msgid "Close" -msgstr "" - -#: lms/templates/wiki/edit.html -msgid "Wiki Preview" -msgstr "" - -#: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -msgid "window open" -msgstr "" - -#: lms/templates/wiki/edit.html -msgid "Back to editor" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "History" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "" -"Click each revision to see a list of edited lines. Click the Preview button " -"to see how the article looked at this stage. At the bottom of this page, you" -" can change to a particular revision or merge an old revision with the " -"current one." -msgstr "" - -#: lms/templates/wiki/history.html -msgid "anonymous (IP not logged)" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "by" -msgstr "" - -#: lms/templates/wiki/history.html -#: lms/templates/wiki/plugins/attachments/index.html -msgid "anonymous (IP logged)" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "restored" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "locked" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "unlocked" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "(no log message)" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "Preview this revision" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "Auto log:" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "Change" -msgstr "" - -#: lms/templates/wiki/history.html lms/templates/wiki/history.html -msgid "Merge selected with current..." -msgstr "" - -#: lms/templates/wiki/history.html -msgid "Switch to selected version" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "Wiki Revision Preview" -msgstr "" - -#: lms/templates/wiki/history.html lms/templates/wiki/history.html -msgid "Back to history view" -msgstr "" - -#: lms/templates/wiki/history.html lms/templates/wiki/history.html -msgid "Switch to this version" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "Merge Revision" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "Merge with current" -msgstr "" - -#: lms/templates/wiki/history.html -msgid "" -"When you merge a revision with the current, all data will be retained from " -"both versions and merged at its approximate location from each revision." -msgstr "" - -#: lms/templates/wiki/history.html -msgid "After this, it's important to do a manual review." -msgstr "" - -#: lms/templates/wiki/history.html lms/templates/wiki/history.html -msgid "Create new merged version" -msgstr "" - -#: lms/templates/wiki/includes/anonymous_blocked.html -#, python-format -msgid "" -"You need to log in or sign up to use this function." -msgstr "" - -#: lms/templates/wiki/includes/anonymous_blocked.html -msgid "You need to log in or sign up to use this function." -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Wiki Cheatsheet" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Wiki Syntax Help" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "" -"This wiki uses Markdown for styling. There are several " -"useful guides online. See any of the links below for in-depth details:" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Markdown: Basics" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Quick Markdown Syntax Guide" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Miniature Markdown Guide" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "" -"To create a new wiki article, create a link to it. Clicking the link gives " -"you the creation page." -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "[Article Name](wiki:ArticleName)" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -#, python-format -msgid "%(platform_name)s Additions:" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Math Expression" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Useful examples:" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Wikipedia" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -#, python-format -msgid "%(platform_name)s Wiki" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Huge Header" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Smaller Header" -msgstr "" - -#. Translators: Leave the punctuation, but translate "emphasis" -#: lms/templates/wiki/includes/cheatsheet.html -msgid "*emphasis* or _emphasis_" -msgstr "" - -#. Translators: Leave the punctuation, but translate "strong" -#: lms/templates/wiki/includes/cheatsheet.html -msgid "**strong** or __strong__" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Unordered List" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Sub Item 1" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Sub Item 2" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Ordered" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "List" -msgstr "" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Quotes" -msgstr "" - -#: lms/templates/wiki/includes/editor_widget.html -#, python-format -msgid "" -"Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for" -" help." -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Attachments" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Upload new file" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Search and add file" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Upload File" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Upload file" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Search files and articles" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "" -"You can reuse files from other articles. These files are subject to updates " -"on other articles which may or may not be a good thing." -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Search" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "" -"The following files are available for this article. Copy the markdown tag to" -" directly refer to a file from the article text." -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Markdown tag" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Uploaded by" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Size" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "File History" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Detach" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Replace" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Restore" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "File history" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "revisions" -msgstr "" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "There are no attachments for this article." -msgstr "" - -#: lms/templates/wiki/preview_inline.html -msgid "Previewing revision:" -msgstr "" - -#: lms/templates/wiki/preview_inline.html -msgid "Previewing a merge between two revisions:" -msgstr "" - -#: lms/templates/wiki/preview_inline.html -msgid "This revision has been deleted." -msgstr "" - -#: lms/templates/wiki/preview_inline.html -msgid "Restoring to this revision will mark the article as deleted." -msgstr "" - -#: lms/urls.py -msgid "LMS Administration" -msgstr "" - -#: openedx/core/djangoapps/ace_common/apps.py -msgid "ACE Common" -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -#, python-format -msgid "Go to %(platform_name)s Home Page" -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -msgid "Sign In" -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -#, python-format -msgid "%(platform_name)s on LinkedIn" -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -#, python-format -msgid "%(platform_name)s on Twitter" -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -#, python-format -msgid "%(platform_name)s on Facebook" -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -#, python-format -msgid "%(platform_name)s on Google Plus" -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -#, python-format -msgid "%(platform_name)s on Reddit" -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -msgid "Download the iOS app on the Apple Store" -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -msgid "Download the Android app on the Google Play Store" -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -msgid "," -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -msgid "All rights reserved." -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -msgid "Our mailing address is" -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_head.html -msgid "EliteMBA Email" -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.html -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.txt -#, python-format -msgid "" -"Don't miss the opportunity to highlight your new knowledge and skills by " -"earning a verified certificate. Upgrade by " -"%(user_schedule_upgrade_deadline_time)s." -msgstr "" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.html -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.txt -msgid "Upgrade Now" -msgstr "" - -#: openedx/core/djangoapps/api_admin/admin.py -#, python-brace-format -msgid "" -"Once you have approved this request, go to {catalog_admin_url} to set up a " -"catalog for this user." -msgstr "" - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "Organization Name" -msgstr "" - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "Organization Address" -msgstr "" - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "Describe what your application does." -msgstr "" - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "The URL of your organization's website." -msgstr "" - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "The name of your organization." -msgstr "" - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "The contact address of your organization." -msgstr "" - -#: openedx/core/djangoapps/api_admin/forms.py -#, python-brace-format -msgid "The following users do not exist: {usernames}." -msgstr "" - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "" -"Comma-separated list of usernames which will be able to view this catalog." -msgstr "" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "Denied" -msgstr "" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "Approved" -msgstr "" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "Status of this API access request" -msgstr "" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "The URL of the website associated with this API user." -msgstr "" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "The reason this user wants to access the API." -msgstr "" - -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "" - -#: openedx/core/djangoapps/api_admin/widgets.py -#, python-brace-format -msgid "" -"I, and my organization, accept the {link_start}{platform_name} API Terms of " -"Service{link_end}." -msgstr "" - -#: openedx/core/djangoapps/bookmarks/apps.py -#: openedx/features/course_bookmarks/plugins.py -#: openedx/features/course_bookmarks/views/course_bookmarks.py -msgid "Bookmarks" -msgstr "" - -#: openedx/core/djangoapps/bookmarks/views.py -msgid "An error has occurred. Please try again." -msgstr "" - -#: openedx/core/djangoapps/bookmarks/views.py -msgid "No data provided." -msgstr "" - -#: openedx/core/djangoapps/bookmarks/views.py -msgid "Parameter usage_id not provided." -msgstr "" - -#: openedx/core/djangoapps/bookmarks/views.py -#: openedx/core/djangoapps/bookmarks/views.py -#, python-brace-format -msgid "Invalid usage_id: {usage_id}." -msgstr "" - -#: openedx/core/djangoapps/bookmarks/views.py -#, python-brace-format -msgid "Block with usage_id: {usage_id} not found." -msgstr "" - -#: openedx/core/djangoapps/bookmarks/views.py -#, python-brace-format -msgid "" -"You can create up to {max_num_bookmarks_per_course} bookmarks. You must " -"remove some bookmarks before you can add new ones." -msgstr "" - -#: openedx/core/djangoapps/bookmarks/views.py -#: openedx/core/djangoapps/bookmarks/views.py -#, python-brace-format -msgid "Bookmark with usage_id: {usage_id} does not exist." -msgstr "" - -#: openedx/core/djangoapps/catalog/models.py -#: openedx/core/djangoapps/video_pipeline/models.py -msgid "Internal API URL" -msgstr "" - -#: openedx/core/djangoapps/catalog/models.py -msgid "DEPRECATED: Use the setting COURSE_CATALOG_API_URL." -msgstr "" - -#: openedx/core/djangoapps/catalog/models.py -msgid "" -"Specified in seconds. Enable caching of API responses by setting this to a " -"value greater than 0." -msgstr "" - -#: openedx/core/djangoapps/catalog/models.py -msgid "Long Term Cache Time To Live" -msgstr "" - -#: openedx/core/djangoapps/catalog/models.py -msgid "" -"Specified in seconds (defaults to 86400s, 24hr). In some cases the cache " -"does needs to be refreshed less frequently. Enable long term caching of API " -"responses by setting this to a value greater than 0." -msgstr "" - -#: openedx/core/djangoapps/catalog/models.py -msgid "" -"Username created for Course Catalog Integration, e.g. " -"lms_catalog_service_user." -msgstr "" - -#: openedx/core/djangoapps/catalog/models.py -msgid "Page Size" -msgstr "" - -#: openedx/core/djangoapps/catalog/models.py -msgid "" -"Maximum number of records in paginated response of a single request to " -"catalog service." -msgstr "" - -#: openedx/core/djangoapps/config_model_utils/models.py -msgid "Enabled" -msgstr "" - -#: openedx/core/djangoapps/config_model_utils/models.py -msgid "Configuration may not be specified at more than one level at once." -msgstr "" - -#: openedx/core/djangoapps/cors_csrf/models.py -msgid "" -"List of domains that are allowed to make cross-domain requests to this site." -" Please list each domain on its own line." -msgstr "" - -#: openedx/core/djangoapps/course_groups/cohorts.py -msgid "Default Group" -msgstr "" - -#: openedx/core/djangoapps/course_groups/cohorts.py -msgid "You cannot create two cohorts with the same name" -msgstr "" - -#: openedx/core/djangoapps/course_groups/cohorts.py -msgid "" -"There must be one cohort to which students can automatically be assigned." -msgstr "" - -#: openedx/core/djangoapps/course_groups/views.py -msgid "A cohort with the same name already exists." -msgstr "" - -#: openedx/core/djangoapps/credentials/apps.py -msgid "Credentials" -msgstr "" - -#: openedx/core/djangoapps/credentials/models.py -msgid "Internal Service URL" -msgstr "" - -#: openedx/core/djangoapps/credentials/models.py -msgid "Public Service URL" -msgstr "" - -#: openedx/core/djangoapps/credentials/models.py -msgid "Enable Learner Issuance" -msgstr "" - -#: openedx/core/djangoapps/credentials/models.py -msgid "Enable issuance of credentials via Credential Service." -msgstr "" - -#: openedx/core/djangoapps/credentials/models.py -msgid "Enable Authoring of Credential in Studio" -msgstr "" - -#: openedx/core/djangoapps/credentials/models.py -msgid "Enable authoring of Credential Service credentials in Studio." -msgstr "" - -#: openedx/core/djangoapps/credit/email_utils.py -msgid "Course Credit Eligibility" -msgstr "" - -#: openedx/core/djangoapps/credit/email_utils.py -#, python-brace-format -msgid "You are eligible for credit from {providers_string}" -msgstr "" - -#. Translators: The join of two university names (e.g., Harvard and MIT). -#: openedx/core/djangoapps/credit/email_utils.py -#, python-brace-format -msgid "{first_provider} and {second_provider}" -msgstr "" - -#. Translators: The join of three or more university names. The first of these -#. formatting strings -#. represents a comma-separated list of names (e.g., MIT, Harvard, Dartmouth). -#: openedx/core/djangoapps/credit/email_utils.py -#, python-brace-format -msgid "{first_providers}, and {last_provider}" -msgstr "" - -#: openedx/core/djangoapps/credit/exceptions.py -#, python-brace-format -msgid "[{username}] is not eligible for credit for [{course_key}]." -msgstr "" - -#: openedx/core/djangoapps/credit/exceptions.py -#, python-brace-format -msgid "[{course_key}] is not a valid course key." -msgstr "" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"Unique identifier for this credit provider. Only alphanumeric characters and" -" hyphens (-) are allowed. The identifier is case-sensitive." -msgstr "" - -#: openedx/core/djangoapps/credit/models.py -msgid "Whether the credit provider is currently enabled." -msgstr "" - -#: openedx/core/djangoapps/credit/models.py -msgid "Name of the credit provider displayed to users" -msgstr "" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"When true, automatically notify the credit provider when a user requests " -"credit. In order for this to work, a shared secret key MUST be configured " -"for the credit provider in secure auth settings." -msgstr "" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"URL of the credit provider. If automatic integration is enabled, this will " -"the the end-point that we POST to to notify the provider of a credit " -"request. Otherwise, the user will be shown a link to this URL, so the user " -"can request credit from the provider directly." -msgstr "" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"URL from the credit provider where the user can check the status of his or " -"her request for credit. This is displayed to students *after* they have " -"requested credit." -msgstr "" - -#: openedx/core/djangoapps/credit/models.py -msgid "Description for the credit provider displayed to users." -msgstr "" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"Plain text or html content for displaying further steps on receipt page " -"*after* paying for the credit to get credit for a credit course against a " -"credit provider." -msgstr "" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"Plain text or html content for displaying custom message inside credit " -"eligibility email content which is sent when user has met all credit " -"eligibility requirements." -msgstr "" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"Plain text or html content for displaying custom message inside credit " -"receipt email content which is sent *after* paying to get credit for a " -"credit course." -msgstr "" - -#: openedx/core/djangoapps/credit/models.py -msgid "Thumbnail image url of the credit provider." -msgstr "" - -#: openedx/core/djangoapps/credit/models.py -msgid "Credit requirement statuses" -msgstr "" - -#: openedx/core/djangoapps/credit/models.py -msgid "Deadline for purchasing and requesting credit." -msgstr "" - -#: openedx/core/djangoapps/dark_lang/views.py -msgid "Preview Language Administration" -msgstr "" - -#: openedx/core/djangoapps/dark_lang/views.py -msgid "Language not provided" -msgstr "" - -#: openedx/core/djangoapps/dark_lang/views.py -#, python-brace-format -msgid "Language set to {preview_language}" -msgstr "" - -#: openedx/core/djangoapps/dark_lang/views.py -msgid "Language reset to the default" -msgstr "" - -#: openedx/core/djangoapps/debug/views.py -msgid "This is a test message" -msgstr "" - -#: openedx/core/djangoapps/debug/views.py -msgid "This is a success message" -msgstr "" - -#: openedx/core/djangoapps/debug/views.py -msgid "This is a test warning" -msgstr "" - -#: openedx/core/djangoapps/debug/views.py -msgid "This is a test error" -msgstr "" - -#: openedx/core/djangoapps/embargo/forms.py -#: openedx/core/djangoapps/verified_track_content/forms.py -msgid "COURSE NOT FOUND. Please check that the course ID is valid." -msgstr "" - -#: openedx/core/djangoapps/embargo/models.py -msgid "The course key for the restricted course." -msgstr "" - -#: openedx/core/djangoapps/embargo/models.py -msgid "The message to show when a user is blocked from enrollment." -msgstr "" - -#: openedx/core/djangoapps/embargo/models.py -msgid "The message to show when a user is blocked from accessing a course." -msgstr "" - -#: openedx/core/djangoapps/embargo/models.py -msgid "" -"Allow users who enrolled in an allowed country to access restricted courses " -"from excluded countries." -msgstr "" - -#: openedx/core/djangoapps/embargo/models.py -msgid "Two character ISO country code." -msgstr "" - -#: openedx/core/djangoapps/embargo/models.py -msgid "" -"Whether to include or exclude the given course. If whitelist countries are " -"specified, then ONLY users from whitelisted countries will be able to access" -" the course. If blacklist countries are specified, then users from " -"blacklisted countries will NOT be able to access the course." -msgstr "" - -#: openedx/core/djangoapps/embargo/models.py -msgid "The course to which this rule applies." -msgstr "" - -#: openedx/core/djangoapps/embargo/models.py -msgid "The country to which this rule applies." -msgstr "" - -#: openedx/core/djangoapps/embargo/models.py -#, python-brace-format -msgid "Whitelist {country} for {course}" -msgstr "" - -#: openedx/core/djangoapps/embargo/models.py -#, python-brace-format -msgid "Blacklist {country} for {course}" -msgstr "" - -#: openedx/core/djangoapps/external_auth/views.py -#, python-brace-format -msgid "" -"You have already created an account using an external login like WebAuth or " -"Shibboleth. Please contact {tech_support_email} for support." -msgstr "" - -#: openedx/core/djangoapps/external_auth/views.py -msgid "" -"\n" -" Your university identity server did not return your ID information to us.\n" -" Please try logging in again. (You may need to restart your browser.)\n" -" " -msgstr "" - -#: openedx/core/djangoapps/oauth_dispatch/models.py -msgid "" -"Comma-separated list of scopes that this application will be allowed to " -"request." -msgstr "" - -#: openedx/core/djangoapps/oauth_dispatch/models.py -msgid "Content Provider" -msgstr "" - -#: openedx/core/djangoapps/password_policy/apps.py -msgid "Password Policy" -msgstr "" - -#: openedx/core/djangoapps/password_policy/compliance.py -#, python-brace-format -msgid "" -"{strong_tag_open}We recently changed our password " -"requirements{strong_tag_close}{break_line_tag}Your current password does not" -" meet the new security requirements. We just sent a password-reset message " -"to the email address associated with this account. Thank you for helping us " -"keep your data safe." -msgstr "" - -#: openedx/core/djangoapps/password_policy/compliance.py -#, python-brace-format -msgid "" -"{strong_tag_open}Required Action: Please update your " -"password{strong_tag_close}{break_line_tag}As of {deadline}, {platform_name} " -"will require all learners to have complex passwords. Your current password " -"does not meet these requirements. To reset your password, go to to " -"{anchor_tag_open}Account Settings{anchor_tag_close}." -msgstr "" - -#: openedx/core/djangoapps/profile_images/images.py -#, python-brace-format -msgid "The file must be smaller than {image_max_size} in size." -msgstr "" - -#: openedx/core/djangoapps/profile_images/images.py -#, python-brace-format -msgid "The file must be at least {image_min_size} in size." -msgstr "" - -#: openedx/core/djangoapps/profile_images/images.py -#, python-brace-format -msgid "The file must be one of the following types: {valid_file_types}." -msgstr "" - -#: openedx/core/djangoapps/profile_images/images.py -msgid "" -"The Content-Type header for this file does not match the file data. The file" -" may be corrupted." -msgstr "" - -#: openedx/core/djangoapps/profile_images/images.py -msgid "" -"The file name extension for this file does not match the file data. The file" -" may be corrupted." -msgstr "" - -#: openedx/core/djangoapps/profile_images/images.py -msgid "bytes" -msgstr "" - -#: openedx/core/djangoapps/profile_images/images.py -msgid "KB" -msgstr "" - -#: openedx/core/djangoapps/profile_images/images.py -msgid "MB" -msgstr "" - -#: openedx/core/djangoapps/profile_images/views.py -msgid "No file provided for profile image" -msgstr "" - -#: openedx/core/djangoapps/programs/models.py -msgid "Path used to construct URLs to programs marketing pages (e.g., \"/foo\")." -msgstr "" - -#: openedx/core/djangoapps/schedules/admin.py -msgid "Known Error Case" -msgstr "" - -#: openedx/core/djangoapps/schedules/admin.py -msgid "Schedule start < course start" -msgstr "" - -#: openedx/core/djangoapps/schedules/admin.py -msgid "All" -msgstr "" - -#: openedx/core/djangoapps/schedules/admin.py -msgid "Experience" -msgstr "" - -#: openedx/core/djangoapps/schedules/apps.py -#: openedx/core/djangoapps/schedules/models.py -msgid "Schedules" -msgstr "" - -#: openedx/core/djangoapps/schedules/models.py -msgid "Indicates if this schedule is actively used" -msgstr "" - -#: openedx/core/djangoapps/schedules/models.py -msgid "Date this schedule went into effect" -msgstr "" - -#: openedx/core/djangoapps/schedules/models.py -msgid "Deadline by which the learner must upgrade to a verified seat" -msgstr "" - -#: openedx/core/djangoapps/schedules/models.py -msgid "Schedule" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/dropdown_filter.html -#, python-format -msgid " By %(filter_title)s " -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html -#, python-format -msgid "Welcome to week %(week_num)s of %(course_name)s!" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html -#, python-format -msgid "" -"We hope you're enjoying %(course_name)s! We want to let you" -" know what you can look forward to in week %(week_num)s:" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.txt -msgid "" -"With self-paced courses, you learn on your own schedule. We encourage you to" -" spend time with the course each week. Your focused attention will pay off " -"in the end!" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html -msgid "Resume your course now" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.txt -#, python-format -msgid "" -"We hope you're enjoying %(course_name)s! We want to let you know what you " -"can look forward to in week %(week_num)s:" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/subject.txt -#, python-format -msgid "Welcome to week %(week_num)s" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt -#, python-format -msgid "" -"Many %(platform_name)s learners are completing more problems every week, and" -" participating in the discussion forums. What do you want to do to keep " -"learning?" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt -#, python-format -msgid "" -"Many %(platform_name)s learners in %(course_name)s are completing more " -"problems every week, and participating in the discussion forums. What do you" -" want to do to keep learning?" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/subject.txt -msgid "Keep up the momentum!" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html -#, python-format -msgid "" -"Many %(platform_name)s learners in %(course_name)s are " -"completing more problems every week, and participating in the discussion " -"forums. What do you want to do to keep learning?" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt -msgid "Keep learning" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#, python-format -msgid "" -"Remember when you enrolled in %(course_name)s, and other courses on " -"%(platform_name)s? We do, and we’re glad to have you! Come see what everyone" -" is learning." -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#, python-format -msgid "" -"Remember when you enrolled in %(course_name)s on %(platform_name)s? We do, " -"and we’re glad to have you! Come see what everyone is learning." -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html -msgid "Keep learning today" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html -#, python-format -msgid "" -"Remember when you enrolled in %(course_name)s, and other " -"courses on %(platform_name)s? We do, and we’re glad to have you! Come see " -"what everyone is learning." -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html -#, python-format -msgid "" -"Remember when you enrolled in %(course_name)s on " -"%(platform_name)s? We do, and we’re glad to have you! Come see what everyone" -" is learning." -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#: themes/normal-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#: themes/normal-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -msgid "Start learning now" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/subject.txt -#, python-format -msgid "Keep learning on %(platform_name)s" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/subject.txt -#, python-format -msgid "Keep learning in %(course_name)s" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt -#, python-format -msgid "" -"We hope you are enjoying learning with us so far on %(platform_name)s! A " -"verified certificate allows you to highlight your new knowledge and skills. " -"An %(platform_name)s certificate is official and easily shareable. Upgrade " -"by %(user_schedule_upgrade_deadline_time)s." -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt -#, python-format -msgid "" -"We hope you are enjoying learning with us so far in %(first_course_name)s! A" -" verified certificate allows you to highlight your new knowledge and skills." -" An %(platform_name)s certificate is official and easily shareable. Upgrade " -"by %(user_schedule_upgrade_deadline_time)s." -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -msgid "Upgrade now" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -#, python-format -msgid "" -"We hope you are enjoying learning with us so far on " -"%(platform_name)s! A verified certificate allows you to " -"highlight your new knowledge and skills. An %(platform_name)s certificate is" -" official and easily shareable." -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -#, python-format -msgid "" -"We hope you are enjoying learning with us so far in " -"%(first_course_name)s! A verified certificate allows you to" -" highlight your new knowledge and skills. An %(platform_name)s certificate " -"is official and easily shareable." -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -#, python-format -msgid "Upgrade by %(user_schedule_upgrade_deadline_time)s." -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -msgid "You are eligible to upgrade in these courses:" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -msgid "Example of a verified certificate" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt -msgid "Upgrade now at" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/subject.txt -#, python-format -msgid "Upgrade to earn a verified certificate on %(platform_name)s" -msgstr "" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/subject.txt -#, python-format -msgid "Upgrade to earn a verified certificate in %(first_course_name)s" -msgstr "" - -#: openedx/core/djangoapps/self_paced/models.py -msgid "Enable course home page improvements." -msgstr "" - -#: openedx/core/djangoapps/theming/views.py -#, python-brace-format -msgid "Site theme changed to {site_theme}" -msgstr "" - -#: openedx/core/djangoapps/theming/views.py -#, python-brace-format -msgid "Theme {site_theme} does not exist" -msgstr "" - -#: openedx/core/djangoapps/theming/views.py -msgid "Site theme reverted to the default" -msgstr "" - -#: openedx/core/djangoapps/theming/views.py -msgid "Theming Administration" -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "" -"Usernames can only contain letters (A-Z, a-z), numerals (0-9), underscores " -"(_), and hyphens (-)." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Usernames can only contain letters, numerals, and @.+-_ characters." -msgstr "" - -#. Translators: This message is shown to users who attempt to create a new -#. account using -#. an invalid email format. -#: openedx/core/djangoapps/user_api/accounts/__init__.py -#, python-brace-format -msgid "\"{email}\" is not a valid email address." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -#, python-brace-format -msgid "" -"It looks like {email_address} belongs to an existing account. Try again with" -" a different email address." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -#, python-brace-format -msgid "" -"It looks like {username} belongs to an existing account. Try again with a " -"different username." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -#, python-brace-format -msgid "Username must be between {min} and {max} characters long." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -#, python-brace-format -msgid "Enter a valid email address that contains at least {min} characters." -msgstr "" - -#. Translators: These messages are shown to users who do not enter information -#. into the required field or enter it incorrectly. -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Enter your full name." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "The email addresses do not match." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Select your country or region of residence." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Select your profession." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Select your specialty." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Enter your profession." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Enter your specialty." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Enter your city." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Tell us your goals." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Select the highest level of education you have completed." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Enter your mailing address." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/api.py -#, python-brace-format -msgid "The '{field_name}' field cannot be edited." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/api.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_authn/views/auto_auth.py -#: openedx/core/djangoapps/user_authn/views/deprecated.py -msgid "Account creation not allowed." -msgstr "" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the State/Province/Region in which they -#. live. -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "State/Province/Region" -msgstr "" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the Company -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Company" -msgstr "" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the Job Title -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Job Title" -msgstr "" - -#. Translators: This label appears above a field on the registration form -#. meant to hold the user's mailing address. -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Mailing address" -msgstr "" - -#. Translators: This phrase appears above a field on the registration form -#. meant to hold the user's reasons for registering with edX. -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "Tell us why you're interested in {platform_name}" -msgstr "" - -#. Translators: This label appears above a dropdown menu on the registration -#. form used to select the user's profession -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Profession" -msgstr "" - -#. Translators: This label appears above a dropdown menu on the registration -#. form used to select the user's specialty -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Specialty" -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/utils.py -msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/views.py -#: openedx/core/djangoapps/user_authn/views/login.py -msgid "" -"Due to multiple login failures, the account is temporarily locked. Please " -"try again after 15 minutes." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/views.py -msgid "Email or password is incorrect." -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/views.py -msgid "Verification failed" -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/views.py -msgid "Please check mobile number format;" -msgstr "" - -#: openedx/core/djangoapps/user_api/accounts/views.py -msgid "The mobile number has been occupied." -msgstr "" - -#: openedx/core/djangoapps/user_api/admin.py -msgid "Permission Denied" -msgstr "" - -#: openedx/core/djangoapps/user_api/admin.py -msgid "Retirement does not exist!" -msgstr "" - -#: openedx/core/djangoapps/user_api/admin.py -msgid "Success" -msgstr "" - -#: openedx/core/djangoapps/user_api/admin.py -msgid "Actions" -msgstr "" - -#. Translators: This label appears above a field on the password reset -#. form meant to hold the user's email address. -#. Translators: This label appears above a field on the registration form -#. meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -#: openedx/core/djangoapps/user_api/api.py -msgctxt "Register and Login" -msgid "Email" -msgstr "" - -#. Translators: This example email address is used as a placeholder in -#. a field on the password reset form meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -#: openedx/core/djangoapps/user_api/api.py -msgid "username@domain.com" -msgstr "" - -#. Translators: These instructions appear on the password reset form, -#. immediately below a field meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "The email address you used to register with {platform_name}" -msgstr "" - -#. Translators: This label appears above a field on the password reset -#. form meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -msgid "Secondary email" -msgstr "" - -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "" -"Secondary email address you registered with {platform_name} using account " -"settings page" -msgstr "" - -#. Translators: This label appears above a field on the login form -#. meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -msgctxt "Register and Login" -msgid "Email or Phone Number" -msgstr "" - -#. Translators: These instructions appear on the login form, immediately -#. below a field meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "" -"The email address you registered on {platform_name}, or the phone number " -"that is bound." -msgstr "" - -#: openedx/core/djangoapps/user_api/api.py -msgid "Remember me" -msgstr "" - -#. Translators: These instructions appear on the registration form, -#. immediately -#. below a field meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -msgid "This is what you will use to login." -msgstr "" - -#. Translators: This label appears above a field on the registration form -#. meant to confirm the user's email address. -#: openedx/core/djangoapps/user_api/api.py -msgid "Confirm Email" -msgstr "" - -#. Translators: These instructions appear on the registration form, -#. immediately -#. below a field meant to hold the user's full name. -#: openedx/core/djangoapps/user_api/api.py -msgid "This name will be used on any certificates that you earn." -msgstr "" - -#. Translators: This label appears above a field on the registration form -#. meant to hold the user's public username. -#: openedx/core/djangoapps/user_api/api.py -msgid "Public Username" -msgstr "" - -#. Translators: These instructions appear on the registration form, -#. immediately -#. below a field meant to hold the user's public username. -#: openedx/core/djangoapps/user_api/api.py -msgid "" -"The name that will identify you in your courses. It cannot be changed later." -msgstr "" - -#. Translators: This label appears above a dropdown menu on the registration -#. form used to select the user's highest completed level of education. -#: openedx/core/djangoapps/user_api/api.py -msgid "Highest Level of Education Completed" -msgstr "" - -#. Translators: This label appears above a dropdown menu on the registration -#. form used to select the country in which the user lives. -#: openedx/core/djangoapps/user_api/api.py -msgid "Country or Region of Residence" -msgstr "" - -#. Translators: These instructions appear on the registration form, -#. immediately -#. below a field meant to hold the user's country. -#: openedx/core/djangoapps/user_api/api.py -msgid "The country or region where you live." -msgstr "" - -#. Translators: This is a legal document users must agree to -#. in order to register a new account. -#: openedx/core/djangoapps/user_api/api.py -msgid "Terms of Service and Honor Code" -msgstr "" - -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "" -"I agree to the {platform_name} " -"{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -msgstr "" - -#. Translators: "Terms of Service" is a legal document users must agree to -#. in order to register a new account. -#. Translators: "Terms of service" is a legal document users must agree to -#. in order to register a new account. -#: openedx/core/djangoapps/user_api/api.py -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "You must agree to the {platform_name} {terms_of_service}" -msgstr "" - -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "" -"By creating an account, you agree to abide by EliteMBA's" -" " -"{user_agreement_link_start}{user_agreement}{user_agreement_link_end}, " -"{disclaimer_link_start}{disclaimer}{disclaimer_link_end} " -"and {privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." -msgstr "" - -#: openedx/core/djangoapps/user_api/api.py -msgid "User Agreement" -msgstr "" - -#. Translators: "Terms of service" is a legal document users must agree to -#. in order to register a new account. -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "" -"I agree to the {platform_name} " -"{tos_link_start}{terms_of_service}{tos_link_end}" -msgstr "" - -#: openedx/core/djangoapps/user_api/config/waffle.py -msgid "System maintenance in progress. Please try again later." -msgstr "" - -#: openedx/core/djangoapps/user_api/elite_password_reset.py -#, python-brace-format -msgid "Request parameter {key} missing!" -msgstr "" - -#: openedx/core/djangoapps/user_api/elite_password_reset.py -msgid "New passwords do not match. Please try again." -msgstr "" - -#: openedx/core/djangoapps/user_api/elite_password_reset.py -msgid "Password modified." -msgstr "" - -#: openedx/core/djangoapps/user_api/elite_password_reset.py -msgid "Wrong password" -msgstr "" - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "Delete failed for user preference '{preference_key}'." -msgstr "" - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "Preference '{preference_key}' cannot be set to an empty value." -msgstr "" - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "Invalid user preference key '{preference_key}'." -msgstr "" - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "" -"Value '{preference_value}' is not valid for user preference " -"'{preference_key}'." -msgstr "" - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "" -"Value '{preference_value}' not valid for preference '{preference_key}': Not " -"in timezone set." -msgstr "" - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "Value '{preference_value}' is not a valid time zone selection." -msgstr "" - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "Save failed for user preference '{key}' with value '{value}'." -msgstr "" - -#: openedx/core/djangoapps/user_api/preferences/views.py -msgid "No data provided for user preference update" -msgstr "" - -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt -#, python-format -msgid "Hello %(full_name)s," -msgstr "" - -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt -#, python-format -msgid "" -"We received a deletion request for your account on %(platform_name)s. We're " -"sorry to see you go!" -msgstr "" - -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt -msgid "" -"Your account will be deleted shortly. Account deletion, including removal " -"from email lists, may take a few weeks to fully process through our system. " -"If you want to opt-out of emails before then, please unsubscribe from the " -"footer of any email." -msgstr "" - -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt -#, python-format -msgid "" -"This is an informational email only. If you did not initiate this request, " -"please contact %(contact_email)s." -msgstr "" - -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt -#, python-format -msgid "Best, %(platform_name)s" -msgstr "" - -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/subject.txt -msgid "Your Account Has Been Queued For Deletion" -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/auto_auth.py -msgid "Superuser creation not allowed" -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/auto_auth.py -msgid "Account modification not allowed." -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/login.py -#, python-brace-format -msgid "" -"You've successfully logged into your {provider_name} account, but this " -"account isn't linked with an {platform_name} account yet." -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/login.py -#, python-brace-format -msgid "" -"Use your {platform_name} username and password to log into {platform_name} " -"below, and then link your {platform_name} account with {provider_name} from " -"your dashboard." -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/login.py -#, python-brace-format -msgid "" -"If you don't have an {platform_name} account yet, click " -"{register_label_strong} at the top of the page." -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/login.py -msgid "Register" -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/login.py -msgid "There was an error receiving your login information. Please email us." -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/login.py -#, python-brace-format -msgid "" -"In order to sign in, you need to activate your account.

    We just " -"sent an activation link to {email}. If you do not receive " -"an email, check your spam folders or contact " -"{platform} Support." -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/login.py -msgid "Too many failed login attempts. Try again later." -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/login.py -msgid "Login account or password is wrong." -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/login_form.py -msgid "Create Account" -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/register.py -#, python-brace-format -msgid "Registration using {provider} has timed out." -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/register.py -msgid "An access_token is required when passing value ({}) for provider." -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/register.py -msgid "The provided access_token is already associated with another user." -msgstr "" - -#: openedx/core/djangoapps/user_authn/views/register.py -msgid "The provided access_token is not valid." -msgstr "" - -#: openedx/core/djangoapps/util/user_messages.py -#, python-brace-format -msgid "{header_open}{title}{header_close}{body}" -msgstr "" - -#: openedx/core/djangoapps/util/user_messages.py -#, python-brace-format -msgid "{header_open}{title}{header_close}" -msgstr "" - -#: openedx/core/djangoapps/util/user_messages.py -msgid "Dismiss" -msgstr "" - -#: openedx/core/djangoapps/verified_track_content/models.py -msgid "The course key for the course we would like to be auto-cohorted." -msgstr "" - -#: openedx/core/djangoapps/video_pipeline/models.py -msgid "Oauth client name of video pipeline service." -msgstr "" - -#: openedx/core/djangoapps/video_pipeline/models.py -msgid "edx-video-pipeline API URL." -msgstr "" - -#: openedx/core/djangoapps/video_pipeline/models.py -msgid "" -"Username created for Video Pipeline Integration, e.g. veda_service_user." -msgstr "" - -#: openedx/core/djangoapps/waffle_utils/models.py -msgid "Force On" -msgstr "" - -#: openedx/core/djangoapps/waffle_utils/models.py -msgid "Force Off" -msgstr "" - -#: openedx/core/lib/api/view_utils.py -msgid "This value is invalid." -msgstr "" - -#: openedx/core/lib/api/view_utils.py -msgid "This field is not editable" -msgstr "" - -#: openedx/core/lib/gating/api.py -#, python-format -msgid "%(min_score)s is not a valid grade percentage" -msgstr "" - -#: openedx/core/lib/gating/api.py -#, python-brace-format -msgid "Gating milestone for {usage_key}" -msgstr "" - -#: openedx/core/lib/license/mixin.py -msgid "License" -msgstr "" - -#: openedx/core/lib/license/mixin.py -msgid "" -"A license defines how the contents of this block can be shared and reused." -msgstr "" - -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "Category" -msgstr "" - -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "Week 1" -msgstr "" - -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "" -"A category name for the discussion. This name appears in the left pane of " -"the discussion forum for the course." -msgstr "" - -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "Subcategory" -msgstr "" - -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "" -"A subcategory name for the discussion. This name appears in the left pane of" -" the discussion forum for the course." -msgstr "" - -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -#, python-brace-format -msgid "" -"You are not signed in. To view the discussion content, {sign_in_link} or " -"{register_link}, and enroll in this course." -msgstr "" - -#: openedx/features/content_type_gating/admin.py -#: openedx/features/course_duration_limits/admin.py -msgid "" -"These define the context to enable course duration limits on. If no values " -"are set, then the configuration applies globally. If a single value is set, " -"then the configuration applies to all courses within that context. At most " -"one value can be set at a time.
    If multiple contexts apply to a course " -"(for example, if configuration is specified for the course specifically, and" -" for the org that the course is in, then the more specific context overrides" -" the more general context." -msgstr "" - -#: openedx/features/content_type_gating/admin.py -#: openedx/features/course_duration_limits/admin.py -msgid "" -"If any of these values is left empty or \"Unknown\", then their value at " -"runtime will be retrieved from the next most specific context that applies. " -"For example, if \"Enabled\" is left as \"Unknown\" in the course context, " -"then that course will be Enabled only if the org that it is in is Enabled." -msgstr "" - -#: openedx/features/content_type_gating/models.py -#: openedx/features/course_duration_limits/models.py -msgid "Enabled As Of" -msgstr "" - -#: openedx/features/content_type_gating/models.py -#: openedx/features/course_duration_limits/models.py -msgid "" -"If the configuration is Enabled, then all enrollments created after this " -"date and time (UTC) will be affected." -msgstr "" - -#: openedx/features/content_type_gating/models.py -msgid "Studio Override Enabled" -msgstr "" - -#: openedx/features/content_type_gating/models.py -msgid "" -"Allow Feature Based Enrollment visibility to be overriden on a per-component" -" basis in Studio." -msgstr "" - -#: openedx/features/content_type_gating/models.py -#: openedx/features/course_duration_limits/models.py -msgid "enabled_as_of must be set when enabled is True" -msgstr "" - -#: openedx/features/content_type_gating/partitions.py -msgid "Feature-based Enrollments" -msgstr "" - -#: openedx/features/content_type_gating/partitions.py -msgid "Partition for segmenting users by access to gated content types" -msgstr "" - -#: openedx/features/content_type_gating/partitions.py -msgid "" -"Graded assessments are available to Verified Track learners. Upgrade to " -"Unlock." -msgstr "" - -#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html -msgid "Content available only to verified track learners" -msgstr "" - -#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html -msgid "Verified Track Access" -msgstr "" - -#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html -msgid "Graded assessments are available to Verified Track learners." -msgstr "" - -#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html -msgid "Upgrade to unlock" -msgstr "" - -#: openedx/features/course_duration_limits/access.py -#, python-brace-format -msgid "Access expired on {expiration_date}" -msgstr "" - -#: openedx/features/course_duration_limits/access.py -#, python-brace-format -msgid "Access to {course_name} expired on {expiration_date}" -msgstr "" - -#: openedx/features/course_duration_limits/access.py -#, python-brace-format -msgid "Access to the course you were looking for expired on {expiration_date}" -msgstr "" - -#: openedx/features/course_duration_limits/access.py -#, python-brace-format -msgid "" -"This learner does not have access to this course. Their access expired on " -"{expiration_date}." -msgstr "" - -#: openedx/features/course_duration_limits/access.py -#, python-brace-format -msgid "" -"{strong_open}Audit Access Expires " -"{expiration_date}{strong_close}{line_break}You lose all access to this " -"course, including your progress, on {expiration_date}." -msgstr "" - -#: openedx/features/course_duration_limits/access.py -#, python-brace-format -msgid "" -"{line_break}Upgrade by {upgrade_deadline} to get unlimited access to the " -"course as long as it exists on the site. {a_open}Upgrade " -"now{sronly_span_open} to retain access past " -"{expiration_date}{span_close}{a_close}" -msgstr "" - -#: openedx/features/course_experience/plugins.py -msgid "Updates" -msgstr "" - -#: openedx/features/course_experience/plugins.py -msgid "Reviews" -msgstr "" - -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "{sign_in_link} or {register_link} and then enroll in this course." -msgstr "" - -#: openedx/features/course_experience/views/course_home_messages.py -msgid "Sign in" -msgstr "" - -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "" -"{open_enroll_link}Enroll now{close_enroll_link} to access the full course." -msgstr "" - -#: openedx/features/course_experience/views/course_home_messages.py -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "Welcome to {course_display_name}" -msgstr "" - -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "" -"To start, set a course goal by selecting the option below that best " -"describes your learning plan. {goal_options_container}" -msgstr "" - -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "Set goal to: {choice}" -msgstr "" - -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "{choice}" -msgstr "" - -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "Set goal to: {goal_text}" -msgstr "" - -#: openedx/features/enterprise_support/api.py -#, python-brace-format -msgid "Enrollment in {course_title} was not complete." -msgstr "" - -#: openedx/features/enterprise_support/api.py -#, python-brace-format -msgid "" -"If you have concerns about sharing your data, please contact your " -"administrator at {enterprise_customer_name}." -msgstr "" - -#: openedx/features/enterprise_support/utils.py -#, python-brace-format -msgid "" -"We are sorry, you are not authorized to access {platform_name} via this " -"channel. Please contact your learning administrator or manager in order to " -"access {platform_name}.{line_break}{line_break}" -msgstr "" - -#: openedx/features/enterprise_support/utils.py -#, python-brace-format -msgid "" -"Thank you for joining {platform_name}. Just a couple steps before you start " -"learning!" -msgstr "" - -#: openedx/features/enterprise_support/utils.py -msgid "Continue" -msgstr "" - -#: openedx/features/learner_profile/views/learner_profile.py -#, python-brace-format -msgid "" -"Welcome to the new learner profile page. Your full profile now displays more" -" information to other learners. You can instead choose to display a limited " -"profile. {learn_more_link_start}Learn more{learn_more_link_end}" -msgstr "" - -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -msgid "" -"Guangdong Elite International Education & Technology Co., Ltd. All Rights" -" Reserved" -msgstr "" - -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/return_to_course_cta.html -msgid "" -"(If the link is invalid, try to copy and paste it into the address bar of " -"your web browser, and press \"Enter\" to open the page.)" -msgstr "" - -#: themes/normal-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#, python-format -msgid "" -"Remember when you enrolled in %(course_name)s, and other courses on " -"EliteMBA.cn? We do, and we’re glad to have you! Come see what everyone is " -"learning." -msgstr "" - -#: themes/normal-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#, python-format -msgid "" -"Remember when you enrolled in %(course_name)s on EliteMBA.cn? We do, and " -"we’re glad to have you! Come see what everyone is learning." -msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/django-studio.po b/conf/locale/en/LC_MESSAGES/django-studio.po deleted file mode 100644 index 2fab88ef2732..000000000000 --- a/conf/locale/en/LC_MESSAGES/django-studio.po +++ /dev/null @@ -1,725 +0,0 @@ -# edX translation file. -# Copyright (C) 2019 EdX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:53+0000\n" -"PO-Revision-Date: 2019-05-16 10:53:15.559778\n" -"Last-Translator: \n" -"Language-Team: openedx-translation \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: cms/djangoapps/api/v1/serializers/course_runs.py -msgid "Course team user does not exist" -msgstr "" - -#: cms/djangoapps/contentstore/course_group_config.py -msgid "" -"The groups in this configuration can be mapped to cohorts in the Instructor " -"Dashboard." -msgstr "" - -#: cms/djangoapps/contentstore/course_group_config.py -msgid "Content Groups" -msgstr "" - -#: cms/djangoapps/contentstore/course_group_config.py -#: cms/djangoapps/contentstore/views/certificates.py -msgid "invalid JSON" -msgstr "" - -#: cms/djangoapps/contentstore/course_group_config.py -msgid "must have name of the configuration" -msgstr "" - -#: cms/djangoapps/contentstore/course_group_config.py -msgid "must have at least one group" -msgstr "" - -#: cms/djangoapps/contentstore/course_group_config.py -msgid "unable to load this type of group configuration" -msgstr "" - -#: cms/djangoapps/contentstore/course_info_model.py -#: cms/djangoapps/contentstore/course_info_model.py -msgid "Invalid course update id." -msgstr "" - -#: cms/djangoapps/contentstore/course_info_model.py -msgid "Course update not found." -msgstr "" - -#: cms/djangoapps/contentstore/courseware_index.py -msgid "Could not index item: {}" -msgstr "" - -#: cms/djangoapps/contentstore/courseware_index.py -msgid "General indexing error occurred" -msgstr "" - -#: cms/djangoapps/contentstore/courseware_index.py -msgid "(Unnamed)" -msgstr "" - -#: cms/djangoapps/contentstore/git_export_utils.py -#, python-brace-format -msgid "" -"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " -"configure a different path with GIT_REPO_EXPORT_DIR" -msgstr "" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "" -"Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" -msgstr "" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "" -"If using http urls, you must provide the username and password in the url. " -"Similar to https://user:pass@github.com/user/course." -msgstr "" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "Unable to determine branch, repo in detached HEAD mode" -msgstr "" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "Unable to update or clone git repository." -msgstr "" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "Unable to export course to xml." -msgstr "" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "Unable to configure git username and password" -msgstr "" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "" -"Unable to commit changes. This is usually because there are no changes to be" -" committed" -msgstr "" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "" -"Unable to push changes. This is usually because the remote repository " -"cannot be contacted" -msgstr "" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "Bad course location provided" -msgstr "" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "Missing branch on fresh clone" -msgstr "" - -#: cms/djangoapps/contentstore/management/commands/git_export.py -msgid "" -"Take the specified course and attempt to export it to a git repository\n" -". Course directory must already be a git repository. Usage: git_export " -msgstr "" - -#: cms/djangoapps/contentstore/tasks.py cms/djangoapps/contentstore/tasks.py -#, python-brace-format -msgid "Unknown User ID: {0}" -msgstr "" - -#: cms/djangoapps/contentstore/tasks.py cms/djangoapps/contentstore/tasks.py -msgid "Permission denied" -msgstr "" - -#: cms/djangoapps/contentstore/tasks.py -#: cms/djangoapps/contentstore/views/import_export.py -msgid "We only support uploading a .tar.gz file." -msgstr "" - -#: cms/djangoapps/contentstore/tasks.py -msgid "Tar file not found" -msgstr "" - -#: cms/djangoapps/contentstore/tasks.py -msgid "Unsafe tar file. Aborting import." -msgstr "" - -#: cms/djangoapps/contentstore/tasks.py -#, python-brace-format -msgid "Could not find the {0} file in the package." -msgstr "" - -#: cms/djangoapps/contentstore/utils.py -msgid "Deleted Group" -msgstr "" - -#. Translators: This is building up a list of groups. It is marked for -#. translation because of the -#. comma, which is used as a separator between each group. -#: cms/djangoapps/contentstore/utils.py -#, python-brace-format -msgid "{previous_groups}, {current_group}" -msgstr "" - -#: cms/djangoapps/contentstore/video_utils.py -msgid "The image must have name, content type, and size information." -msgstr "" - -#: cms/djangoapps/contentstore/video_utils.py -#, python-brace-format -msgid "" -"This image file type is not supported. Supported file types are " -"{supported_file_formats}." -msgstr "" - -#: cms/djangoapps/contentstore/video_utils.py -#, python-brace-format -msgid "This image file must be smaller than {image_max_size}." -msgstr "" - -#: cms/djangoapps/contentstore/video_utils.py -#, python-brace-format -msgid "This image file must be larger than {image_min_size}." -msgstr "" - -#: cms/djangoapps/contentstore/video_utils.py -#: cms/djangoapps/contentstore/video_utils.py -msgid "" -"There is a problem with this image file. Try to upload a different file." -msgstr "" - -#: cms/djangoapps/contentstore/video_utils.py -#, python-brace-format -msgid "" -"Recommended image resolution is " -"{image_file_max_width}x{image_file_max_height}. The minimum resolution is " -"{image_file_min_width}x{image_file_min_height}." -msgstr "" - -#: cms/djangoapps/contentstore/video_utils.py -#, python-brace-format -msgid "" -"This image file must have an aspect ratio of " -"{video_image_aspect_ratio_text}." -msgstr "" - -#: cms/djangoapps/contentstore/video_utils.py -msgid "" -"The image file name can only contain letters, numbers, hyphens (-), and " -"underscores (_)." -msgstr "" - -#: cms/djangoapps/contentstore/views/assets.py -msgid "Upload completed" -msgstr "" - -#: cms/djangoapps/contentstore/views/assets.py -#, python-brace-format -msgid "" -"File {filename} exceeds maximum size of {maximum_size_in_megabytes} MB." -msgstr "" - -#: cms/djangoapps/contentstore/views/certificates.py -msgid "must have name of the certificate" -msgstr "" - -#: cms/djangoapps/contentstore/views/certificates.py -#, python-brace-format -msgid "Certificate dict {0} missing value key '{1}'" -msgstr "" - -#: cms/djangoapps/contentstore/views/certificates.py -#: cms/djangoapps/contentstore/views/certificates.py -#, python-brace-format -msgid "PermissionDenied: Failed in authenticating {user}" -msgstr "" - -#: cms/djangoapps/contentstore/views/component.py -#, python-brace-format -msgid "{platform_name} Support Levels:" -msgstr "" - -#: cms/djangoapps/contentstore/views/component.py -msgid "HTML" -msgstr "" - -#: cms/djangoapps/contentstore/views/component.py -msgid "Video" -msgstr "" - -#: cms/djangoapps/contentstore/views/component.py -msgid "Blank" -msgstr "" - -#: cms/djangoapps/contentstore/views/course.py -msgid "Course has been successfully reindexed." -msgstr "" - -#: cms/djangoapps/contentstore/views/course.py -msgid "Set Date" -msgstr "" - -#: cms/djangoapps/contentstore/views/course.py -msgid "" -"Special characters not allowed in organization, course number, and course " -"run." -msgstr "" - -#: cms/djangoapps/contentstore/views/course.py -msgid "" -"There is already a course defined with the same organization and course " -"number. Please change either organization or course number to be unique." -msgstr "" - -#: cms/djangoapps/contentstore/views/course.py -#: cms/djangoapps/contentstore/views/course.py -msgid "" -"Please change either the organization or course number so that it is unique." -msgstr "" - -#: cms/djangoapps/contentstore/views/course.py -#, python-brace-format -msgid "" -"Unable to create course '{name}'.\n" -"\n" -"{err}" -msgstr "" - -#: cms/djangoapps/contentstore/views/course.py -msgid "" -"You must link this course to an organization in order to continue. " -"Organization you selected does not exist in the system, you will need to add" -" it to the system" -msgstr "" - -#: cms/djangoapps/contentstore/views/course.py -msgid "Invalid prerequisite course key" -msgstr "" - -#: cms/djangoapps/contentstore/views/course.py -msgid "An error occurred while trying to save your tabs" -msgstr "" - -#: cms/djangoapps/contentstore/views/course.py -msgid "Tabs Exception" -msgstr "" - -#: cms/djangoapps/contentstore/views/course.py -msgid "This group configuration is in use and cannot be deleted." -msgstr "" - -#: cms/djangoapps/contentstore/views/course.py -msgid "This content group is in use and cannot be deleted." -msgstr "" - -#: cms/djangoapps/contentstore/views/entrance_exam.py -msgid "Entrance Exam - Subsection" -msgstr "" - -#: cms/djangoapps/contentstore/views/entrance_exam.py -msgid "Completed Course Entrance Exam" -msgstr "" - -#: cms/djangoapps/contentstore/views/export_git.py -msgid "Course successfully exported to git repository" -msgstr "" - -#: cms/djangoapps/contentstore/views/helpers.py -msgid "Vertical" -msgstr "" - -#: cms/djangoapps/contentstore/views/import_export.py -msgid "File upload corrupted. Please try again" -msgstr "" - -#: cms/djangoapps/contentstore/views/item.py -msgid "Invalid data" -msgstr "" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "Invalid data ({details})" -msgstr "" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "You can not move {source_type} into {target_parent_type}." -msgstr "" - -#: cms/djangoapps/contentstore/views/item.py -msgid "Item is already present in target location." -msgstr "" - -#: cms/djangoapps/contentstore/views/item.py -msgid "You can not move an item into itself." -msgstr "" - -#: cms/djangoapps/contentstore/views/item.py -msgid "You can not move an item into it's child." -msgstr "" - -#: cms/djangoapps/contentstore/views/item.py -msgid "You can not move an item directly into content experiment." -msgstr "" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "{source_usage_key} not found in {parent_usage_key}." -msgstr "" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "" -"You can not move {source_usage_key} at an invalid index ({target_index})." -msgstr "" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "You must provide target_index ({target_index}) as an integer." -msgstr "" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "Duplicate of {0}" -msgstr "" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "Duplicate of '{0}'" -msgstr "" - -#. Translators: The {pct_sign} here represents the percent sign, i.e., '%' -#. in many languages. This is used to avoid Transifex's misinterpreting of -#. '% o'. The percent sign is also translatable as a standalone string. -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "" -"Students must score {score}{pct_sign} or higher to access course materials." -msgstr "" - -#. Translators: This is the percent sign. It will be used to represent -#. a percent value out of 100, e.g. "58%" means "58/100". -#: cms/djangoapps/contentstore/views/item.py -msgid "%" -msgstr "" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "{section_or_subsection} \"{display_name}\"" -msgstr "" - -#: cms/djangoapps/contentstore/views/library.py -#, python-brace-format -msgid "Unable to create library - missing required field '{field}'" -msgstr "" - -#: cms/djangoapps/contentstore/views/library.py -#, python-brace-format -msgid "" -"Unable to create library '{name}'.\n" -"\n" -"{err}" -msgstr "" - -#: cms/djangoapps/contentstore/views/library.py -msgid "" -"There is already a library defined with the same organization and library " -"code. Please change your library code so that it is unique within your " -"organization." -msgstr "" - -#: cms/djangoapps/contentstore/views/preview.py -#, python-brace-format -msgid "Access restricted to: {list_of_groups}" -msgstr "" - -#: cms/djangoapps/contentstore/views/transcript_settings.py -msgid "The information you entered is incorrect." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "Transcripts are supported only for \"video\" modules." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "Cannot find item by locator." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "Video locator is required." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "This transcript file type is not supported." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "Video ID is required." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "Incoming video data is empty." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "Can't find item by locator." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "No such transcript." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "There is a problem with the chosen transcript file." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "" -"There is a problem with the existing transcript file. Please upload a " -"different file." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "YouTube ID is required." -msgstr "" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "There is a problem with the YouTube transcript file." -msgstr "" - -#: cms/djangoapps/contentstore/views/user.py -msgid "Insufficient permissions" -msgstr "" - -#: cms/djangoapps/contentstore/views/user.py -#, python-brace-format -msgid "Could not find user by email address '{email}'." -msgstr "" - -#: cms/djangoapps/contentstore/views/user.py -msgid "No `role` specified." -msgstr "" - -#: cms/djangoapps/contentstore/views/user.py -#, python-brace-format -msgid "User {email} has registered but has not yet activated his/her account." -msgstr "" - -#: cms/djangoapps/contentstore/views/user.py -msgid "Invalid `role` specified." -msgstr "" - -#: cms/djangoapps/contentstore/views/user.py -msgid "You may not remove the last Admin. Add another Admin first." -msgstr "" - -#. Translators: This is the status of an active video upload -#: cms/djangoapps/contentstore/views/videos.py -msgid "Uploading" -msgstr "" - -#. Translators: This is the status for a video that the servers are currently -#. processing -#: cms/djangoapps/contentstore/views/videos.py -msgid "In Progress" -msgstr "" - -#. Translators: This is the status for a video that the servers have -#. successfully processed -#: cms/djangoapps/contentstore/views/videos.py -msgid "Ready" -msgstr "" - -#. Translators: This is the status for a video that is uploaded completely -#: cms/djangoapps/contentstore/views/videos.py -msgid "Uploaded" -msgstr "" - -#. Translators: This is the status for a video that the servers have failed to -#. process -#: cms/djangoapps/contentstore/views/videos.py -msgid "Failed" -msgstr "" - -#. Translators: This is the status for a video that is cancelled during upload -#. by user -#: cms/djangoapps/contentstore/views/videos.py -msgid "Cancelled" -msgstr "" - -#. Translators: This is the status for a video which has failed -#. due to being flagged as a duplicate by an external or internal CMS -#: cms/djangoapps/contentstore/views/videos.py -msgid "Failed Duplicate" -msgstr "" - -#. Translators: This is the status for a video which has duplicate token for -#. youtube -#: cms/djangoapps/contentstore/views/videos.py -msgid "YouTube Duplicate" -msgstr "" - -#. Translators: This is the status for a video for which an invalid -#. processing token was provided in the course settings -#: cms/djangoapps/contentstore/views/videos.py -msgid "Invalid Token" -msgstr "" - -#. Translators: This is the status for a video that was included in a course -#. import -#: cms/djangoapps/contentstore/views/videos.py -msgid "Imported" -msgstr "" - -#. Translators: This is the status for a video that is in an unknown state -#: cms/djangoapps/contentstore/views/videos.py -msgid "Unknown" -msgstr "" - -#. Translators: This is the status for a video that is having its -#. transcription in progress on servers -#: cms/djangoapps/contentstore/views/videos.py -msgid "Transcription in Progress" -msgstr "" - -#. Translators: This is the status for a video whose transcription is complete -#: cms/djangoapps/contentstore/views/videos.py -msgid "Transcript Ready" -msgstr "" - -#: cms/djangoapps/contentstore/views/videos.py -msgid "An image file is required." -msgstr "" - -#. Translators: This is the header for a CSV file column -#. containing URLs for video encodings for the named profile -#. (e.g. desktop, mobile high quality, mobile low quality) -#: cms/djangoapps/contentstore/views/videos.py -#, python-brace-format -msgid "{profile_name} URL" -msgstr "" - -#: cms/djangoapps/contentstore/views/videos.py -msgid "Duration" -msgstr "" - -#: cms/djangoapps/contentstore/views/videos.py -msgid "Date Added" -msgstr "" - -#. Translators: This is the suggested filename when downloading the URL -#. listing for videos uploaded through Studio -#: cms/djangoapps/contentstore/views/videos.py -#, python-brace-format -msgid "{course}_video_urls" -msgstr "" - -#: cms/djangoapps/contentstore/views/videos.py -msgid "A non zero positive integer is expected" -msgstr "" - -#: cms/djangoapps/course_creators/models.py -msgid "unrequested" -msgstr "" - -#: cms/djangoapps/course_creators/models.py -msgid "pending" -msgstr "" - -#: cms/djangoapps/course_creators/models.py -msgid "granted" -msgstr "" - -#: cms/djangoapps/course_creators/models.py -msgid "denied" -msgstr "" - -#: cms/djangoapps/course_creators/models.py -msgid "Studio user" -msgstr "" - -#: cms/djangoapps/course_creators/models.py -msgid "The date when state was last updated" -msgstr "" - -#: cms/djangoapps/course_creators/models.py -msgid "Current course creator state" -msgstr "" - -#: cms/djangoapps/course_creators/models.py -msgid "" -"Optional notes about this user (for example, why course creation access was " -"denied)" -msgstr "" - -#: cms/djangoapps/maintenance/views.py -msgid "Force Publish Course" -msgstr "" - -#: cms/djangoapps/maintenance/views.py -msgid "" -"Sometimes the draft and published branches of a course can get out of sync. " -"Force publish course command resets the published branch of a course to " -"point to the draft branch, effectively force publishing the course. This " -"view dry runs the force publish command" -msgstr "" - -#: cms/djangoapps/maintenance/views.py -msgid "Please provide course id." -msgstr "" - -#: cms/djangoapps/maintenance/views.py -msgid "Invalid course key." -msgstr "" - -#: cms/djangoapps/maintenance/views.py -msgid "No matching course found." -msgstr "" - -#: cms/djangoapps/maintenance/views.py -msgid "Force publishing course is not supported with old mongo courses." -msgstr "" - -#: cms/djangoapps/maintenance/views.py -msgid "Course is already in published state." -msgstr "" - -#: cms/djangoapps/models/settings/course_metadata.py -#, python-brace-format -msgid "Incorrect format for field '{name}'. {detailed_message}" -msgstr "" - -#: cms/envs/bok_choy.py cms/envs/test.py -msgid "Your Platform 𝓢𝓽𝓾𝓭𝓲𝓸" -msgstr "" - -#: cms/envs/bok_choy.py cms/envs/test.py -msgid "𝓢𝓽𝓾𝓭𝓲𝓸" -msgstr "" - -#: cms/envs/common.py -msgid "Your Platform Studio" -msgstr "" - -#: cms/envs/common.py -msgid "Studio" -msgstr "" - -#: cms/lib/xblock/tagging/tagging.py -msgid "Dictionary with the available tags" -msgstr "" - -#: cms/urls.py -msgid "Studio Administration" -msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/django.po b/conf/locale/en/LC_MESSAGES/django.po new file mode 100644 index 000000000000..4e84e0798f82 --- /dev/null +++ b/conf/locale/en/LC_MESSAGES/django.po @@ -0,0 +1,26930 @@ +# #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +# edX translation file. +# Copyright (C) 2020 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# #-#-#-#-# django-studio.po (0.1a) #-#-#-#-# +# edX translation file. +# Copyright (C) 2020 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# #-#-#-#-# mako.po (0.1a) #-#-#-#-# +# edX translation file +# Copyright (C) 2020 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# #-#-#-#-# mako-studio.po (0.1a) #-#-#-#-# +# edX translation file +# Copyright (C) 2020 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# #-#-#-#-# wiki.po (0.1a) #-#-#-#-# +# edX translation file +# Copyright (C) 2020 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# #-#-#-#-# membership.po (PROJECT VERSION) #-#-#-#-# +# #-#-#-#-# django-partial.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# #-#-#-#-# mako.po (PROJECT VERSION) #-#-#-#-# +# Translations template for PROJECT. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2019. +# +# #-#-#-#-# eliteu.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/en/). +# Copyright (C) 2019 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2019. +# +# Translators: +# li ying , 2019 +# +# #-#-#-#-# django-theme.po (0.1a) #-#-#-#-# +# edX translation file. +# Copyright (C) 2020 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# #-#-#-#-# mako-theme.po (0.1a) #-#-#-#-# +# edX translation file +# Copyright (C) 2020 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.1a\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2020-01-10 17:58+0800\n" +"PO-Revision-Date: 2020-01-10 09:58:51.717760\n" +"Last-Translator: \n" +"Language-Team: openedx-translation \n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Generated-By: Babel 1.3\n" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: 'Discussion' refers to the tab in the courseware that leads to +#. the discussion forums +#: cms/djangoapps/contentstore/views/component.py +#: lms/djangoapps/courseware/tabs.py lms/djangoapps/discussion/plugins.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Discussion" +msgstr "" + +#: cms/djangoapps/contentstore/views/component.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "Problem" +msgstr "" + +#: cms/djangoapps/contentstore/views/component.py +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "Advanced" +msgstr "" + +#: cms/djangoapps/contentstore/views/entrance_exam.py +#: lms/djangoapps/courseware/tabs.py cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Entrance Exam" +msgstr "" + +#: cms/djangoapps/contentstore/views/helpers.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: cms/templates/course_outline.html lms/templates/seq_module.html +#: lms/templates/ccx/schedule.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Section" +msgstr "" + +#: cms/djangoapps/contentstore/views/helpers.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/templates/ccx/schedule.html +msgid "Subsection" +msgstr "" + +#: cms/djangoapps/contentstore/views/helpers.py +#: lms/djangoapps/instructor/views/tools.py lms/templates/ccx/schedule.html +msgid "Unit" +msgstr "" + +#: cms/djangoapps/contentstore/views/helpers.py +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Empty" +msgstr "" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +#, python-brace-format +msgid "The following parameters are required: {missing}." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +#, python-brace-format +msgid "A transcript with the \"{language_code}\" language code already exists." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +msgid "A transcript file is required." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +msgid "" +"There is a problem with this transcript file. Try to upload a different " +"file." +msgstr "" + +#: cms/djangoapps/contentstore/views/videos.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/receipt.html +msgid "Name" +msgstr "" + +#: cms/djangoapps/contentstore/views/videos.py +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video ID" +msgstr "" + +#: cms/djangoapps/contentstore/views/videos.py +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/shoppingcart/receipt.html +msgid "Status" +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This is listed as the duration for a video that has not +#. yet reached the point in its processing by the servers where its +#. duration is determined. +#: cms/djangoapps/contentstore/views/videos.py +#: openedx/core/djangoapps/api_admin/models.py cms/templates/index.html +msgid "Pending" +msgstr "" + +#: cms/envs/bok_choy.py lms/envs/bok_choy.py lms/envs/test.py +msgid "édX" +msgstr "" + +#: cms/envs/bok_choy.py lms/envs/bok_choy.py lms/envs/test.py +msgid "Open édX Platform" +msgstr "" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +msgid "Django site admin" +msgstr "" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +msgid "Django administration" +msgstr "" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +msgid "View site" +msgstr "" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +msgid "Documentation" +msgstr "" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +#: wiki/templates/wiki/base.html +msgid "Log out" +msgstr "" + +#: common/djangoapps/course_modes/admin.py +#: common/djangoapps/course_modes/models.py +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Mode" +msgstr "" + +#: common/djangoapps/course_modes/admin.py +#: lms/djangoapps/courseware/date_summary.py +msgid "Verification Deadline" +msgstr "" + +#: common/djangoapps/course_modes/admin.py +msgid "" +"OPTIONAL: After this date/time, users will no longer be able to submit " +"photos for verification. This appies ONLY to modes that require " +"verification." +msgstr "" + +#: common/djangoapps/course_modes/helpers.py +msgid "Your verification is pending" +msgstr "" + +#: common/djangoapps/course_modes/helpers.py +msgid "Verified: Pending Verification" +msgstr "" + +#: common/djangoapps/course_modes/helpers.py +msgid "ID verification pending" +msgstr "" + +#: common/djangoapps/course_modes/helpers.py +msgid "You're enrolled as a verified student" +msgstr "" + +#: common/djangoapps/course_modes/helpers.py lms/envs/common.py +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Verified" +msgstr "" + +#: common/djangoapps/course_modes/helpers.py +msgid "ID Verified Ribbon/Badge" +msgstr "" + +#: common/djangoapps/course_modes/helpers.py +msgid "You're enrolled as an honor code student" +msgstr "" + +#: common/djangoapps/course_modes/helpers.py lms/djangoapps/branding/api.py +#: openedx/core/djangoapps/user_api/api.py +#: lms/templates/static_templates/honor.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Honor Code" +msgstr "" + +#: common/djangoapps/course_modes/helpers.py +msgid "You're enrolled as a professional education student" +msgstr "" + +#: common/djangoapps/course_modes/helpers.py +msgid "Professional Ed" +msgstr "" + +#: common/djangoapps/course_modes/models.py +#: common/lib/xmodule/xmodule/annotatable_module.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/conditional_module.py +#: common/lib/xmodule/xmodule/html_module.py +#: common/lib/xmodule/xmodule/library_content_module.py +#: common/lib/xmodule/xmodule/lti_module.py +#: common/lib/xmodule/xmodule/split_test_module.py +#: common/lib/xmodule/xmodule/word_cloud_module.py +#: common/lib/xmodule/xmodule/x_module.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +#: cms/templates/container.html cms/templates/library.html +msgid "Display Name" +msgstr "" + +#: common/djangoapps/course_modes/models.py +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Price" +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "Upgrade Deadline" +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "" +"OPTIONAL: After this date/time, users will no longer be able to enroll in " +"this mode. Leave this blank if users can enroll in this mode until " +"enrollment closes for the course." +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "" +"OPTIONAL: This is the SKU (stock keeping unit) of this mode in the external " +"ecommerce service. Leave this blank if the course has not yet been migrated" +" to the ecommerce service." +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "" +"This is the bulk SKU (stock keeping unit) of this mode in the external " +"ecommerce service." +msgstr "" + +#: common/djangoapps/course_modes/models.py lms/envs/common.py +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Honor" +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "" +"Professional education modes are not allowed to have expiration_datetime " +"set." +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "Verified modes cannot be free." +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This will look like '$50', where {currency_symbol} is a symbol +#. such as '$' and {price} is a +#. numerical amount in that currency. Adjust this display as needed for your +#. language. +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: currency_symbol is a symbol indicating type of currency, ex +#. "$". +#. This string would look like this when all variables are in: +#. "$500.00" +#: common/djangoapps/course_modes/models.py +#: lms/templates/shoppingcart/shopping_cart.html +#, python-brace-format +msgid "{currency_symbol}{price}" +msgstr "" + +#. Translators: This refers to the cost of the course. In this case, the +#. course costs nothing so it is free. +#: common/djangoapps/course_modes/models.py +msgid "Free" +msgstr "" + +#: common/djangoapps/course_modes/models.py +msgid "" +"The time period before a course ends in which a course mode will expire" +msgstr "" + +#: common/djangoapps/course_modes/views.py +#, python-brace-format +msgid "Congratulations! You are now enrolled in {course_name}" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment is closed" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment mode not supported" +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "Invalid amount selected." +msgstr "" + +#: common/djangoapps/course_modes/views.py +msgid "No selected price or selected price is too low." +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Community TA" +msgstr "" + +#: common/djangoapps/django_comment_common/models.py +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Student" +msgstr "" + +#: common/djangoapps/student/admin.py +msgid "User profile" +msgstr "" + +#: common/djangoapps/student/admin.py +msgid "Account recovery" +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the login form +#. meant to hold the user's password. +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's password. +#: common/djangoapps/student/admin.py openedx/core/djangoapps/user_api/api.py +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/login.html lms/templates/provider_login.html +#: lms/templates/register-form.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Password" +msgstr "" + +#: common/djangoapps/student/admin.py +msgid "" +"Raw passwords are not stored, so there is no way to see this user's " +"password." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "" +"That e-mail address doesn't have an associated user account. Are you sure " +"you've registered?" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "" +"The user account associated with this e-mail address cannot reset the " +"password." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Full Name cannot contain the following characters: < >" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +#, python-format +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "" + +#: common/djangoapps/student/forms.py +msgid "Unauthorized email address." +msgstr "" + +#: common/djangoapps/student/forms.py +#, python-brace-format +msgid "" +"It looks like {email} belongs to an existing account. Try again with a " +"different email address." +msgstr "" + +#: common/djangoapps/student/helpers.py +#, python-brace-format +msgid "An account with the Public Username '{username}' already exists." +msgstr "" + +#: common/djangoapps/student/helpers.py +#, python-brace-format +msgid "An account with the Email '{email}' already exists." +msgstr "" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "Removed group: \"{}\"" +msgstr "" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "Did not find a group with name \"{}\" - skipping." +msgstr "" + +#: common/djangoapps/student/management/commands/manage_group.py +#, python-brace-format +msgid "Invalid group name: \"{group_name}\". {messages}" +msgstr "" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "Created new group: \"{}\"" +msgstr "" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "Found existing group: \"{}\"" +msgstr "" + +#: common/djangoapps/student/management/commands/manage_group.py +#, python-brace-format +msgid "Adding {codenames} permissions to group \"{group}\"" +msgstr "" + +#: common/djangoapps/student/management/commands/manage_group.py +#, python-brace-format +msgid "Removing {codenames} permissions from group \"{group}\"" +msgstr "" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "" +"Invalid permission option: \"{}\". Please specify permissions using the " +"format: app_label:model_name:permission_codename." +msgstr "" + +#: common/djangoapps/student/management/commands/manage_group.py +#, python-brace-format +msgid "" +"Invalid permission codename: \"{codename}\". No such permission exists for " +"the model {module}.{model_name}." +msgstr "" + +#: common/djangoapps/student/management/commands/manage_user.py +#, python-brace-format +msgid "Setting {attribute} for user \"{username}\" to \"{new_value}\"" +msgstr "" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "" +"Skipping user \"{}\" because the specified and existing email addresses do " +"not match." +msgstr "" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Did not find a user with username \"{}\" - skipping." +msgstr "" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Removing user: \"{}\"" +msgstr "" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Created new user: \"{}\"" +msgstr "" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Found existing user: \"{}\"" +msgstr "" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Setting unusable password for user \"{}\"" +msgstr "" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Created new profile for user: \"{}\"" +msgstr "" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Could not find a group named \"{}\" - skipping." +msgstr "" + +#: common/djangoapps/student/management/commands/manage_user.py +#, python-brace-format +msgid "Adding user \"{username}\" to groups {group_names}" +msgstr "" + +#: common/djangoapps/student/management/commands/manage_user.py +#, python-brace-format +msgid "Removing user \"{username}\" from groups {group_names}" +msgstr "" + +#: common/djangoapps/student/middleware.py +#, python-brace-format +msgid "" +"Your account has been disabled. If you believe this was done in error, " +"please contact us at {support_email}" +msgstr "" + +#: common/djangoapps/student/middleware.py +msgid "Disabled Account" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Male" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Female" +msgstr "" + +#. Translators: 'Other' refers to the student's gender +#: common/djangoapps/student/models.py +msgid "Other/Prefer Not to Say" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Doctorate" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Master's or professional degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Bachelor's degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Associate degree" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Secondary/high school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Junior secondary/junior high/middle school" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Elementary/primary school" +msgstr "" + +#. Translators: 'None' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "No formal education" +msgstr "" + +#. Translators: 'Other' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "Other education" +msgstr "" + +#: common/djangoapps/student/models.py +#, python-brace-format +msgid "{platform_name} Honor Code Certificate for {course_name}" +msgstr "" + +#: common/djangoapps/student/models.py +#, python-brace-format +msgid "{platform_name} Verified Certificate for {course_name}" +msgstr "" + +#: common/djangoapps/student/models.py +#, python-brace-format +msgid "{platform_name} Professional Certificate for {course_name}" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "" +"The company identifier for the LinkedIn Add-to-Profile button e.g " +"0_0dPSPyS070e0HsE9HNz_13_d11_" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "" + +#: common/djangoapps/student/models.py +#, python-brace-format +msgid "{platform_name} Certificate for {course_name}" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "The ISO 639-1 language code for this language." +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Namespace of enrollment attribute" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Name of the enrollment attribute" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Value of the enrollment attribute" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "" +"The window of time after enrolling during which users can be granted a " +"refund, represented in microseconds. The default is 14 days." +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Name of the UTM cookie" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Name of the affiliate cookie" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Name of this user attribute." +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Value of this user attribute." +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Secondary email address" +msgstr "" + +#: common/djangoapps/student/models.py +msgid "Secondary email address to recover linked account." +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +msgid " and " +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +msgid "Photos are mismatched" +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +msgid "Name missing from ID photo" +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +msgid "ID photo not provided" +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +msgid "ID is invalid" +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +msgid "Learner photo is blurry" +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +msgid "Name on ID does not match name on account" +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +msgid "Learner photo not provided" +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +msgid "ID photo is blurry" +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +#, python-brace-format +msgid "" +"Check your {email_start}{email}{email_end} inbox for an account activation " +"link from {platform_name}. If you need help, contact " +"{link_start}{platform_name} Support{link_end}." +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +#, python-brace-format +msgid "" +"Add a recovery email to retain access when single-sign on is not available. " +"Go to {link_start}your Account Settings{link_end}." +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +msgid "" +"Recovery email is not activated yet. Kindly visit your email and follow the " +"instructions to activate it." +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +#, python-brace-format +msgid "The course you are looking for does not start until {date}." +msgstr "" + +#: common/djangoapps/student/views/dashboard.py +#, python-brace-format +msgid "The course you are looking for is closed for enrollment as of {date}." +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "No inactive user with this e-mail exists" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Unable to send reactivation email" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Course id not specified" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Invalid course id" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Course id is invalid" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Could not enroll" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "You are not enrolled in this course" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Your certificate prevents you from unenrolling from this course" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Enrollment action is invalid" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Please enter a username" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Please choose an option" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "User with username {} does not exist" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Successfully disabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Successfully reenabled {}'s account" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Unexpected account status" +msgstr "" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "" +"{html_start}Your account could not be activated{html_end}Something went " +"wrong, please contact support to resolve this " +"issue." +msgstr "" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "{html_start}This account has already been activated.{html_end}" +msgstr "" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "{html_start}Success{html_end} You have activated your account." +msgstr "" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "" +"{html_start}Success! You have activated your account.{html_end}You will now " +"receive email updates and alerts from us related to the courses you are " +"enrolled in. Sign In to continue." +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Some error occured during password change. Please try again" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "No email address provided." +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Password reset unsuccessful" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Error in resetting your password." +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Error in resetting your password. Please try again." +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Password creation unsuccessful" +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Error in creating your password. Please try again." +msgstr "" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "" +"{html_start}Password Creation Complete{html_end}Your password has been " +"created. {bold_start}{email}{bold_end} is now your primary login email." +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Valid e-mail address required." +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Old email is the same as the new email." +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "E-mail address has been used." +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Cannot be same as your sign in email address." +msgstr "" + +#: common/djangoapps/student/views/management.py +msgid "Unable to send email activation link. Please try again later." +msgstr "" + +#: common/djangoapps/third_party_auth/admin.py +msgid "Deleted the selected configuration(s)." +msgstr "" + +#: common/djangoapps/third_party_auth/admin.py +msgid "Delete the selected configuration" +msgstr "" + +#: common/djangoapps/third_party_auth/middleware.py +msgid "Unable to connect with the external provider, please try again" +msgstr "" + +#: common/djangoapps/third_party_auth/models.py +msgid "Authentication with {} is currently unavailable." +msgstr "" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"Secondary providers are displayed less prominently, in a separate list of " +"\"Institution\" login providers." +msgstr "" + +#: common/djangoapps/third_party_auth/models.py +msgid "The Site that this provider configuration belongs to." +msgstr "" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is enabled, users that visit a \"TPA hinted\" URL for this " +"provider (e.g. a URL ending with `?tpa_hint=[provider_name]`) will be " +"forwarded directly to the login URL of the provider instead of being first " +"prompted with a login dialog." +msgstr "" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is enabled, users will not be asked to confirm their details " +"(name, email, etc.) during the registration process. Only select this option" +" for trusted providers that are known to provide accurate user information." +msgstr "" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is selected, users will not be required to confirm their " +"email, and their account will be activated immediately upon registration." +msgstr "" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is selected, users will be sent a welcome email upon " +"registration." +msgstr "" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is not selected, users will not be presented with the " +"provider as an option to authenticate with on the login screen, but manual " +"authentication using the correct link is still possible." +msgstr "" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is set, then users logging in using this SSO provider will " +"have their session length limited to no longer than this value. If set to 0 " +"(zero), the session will expire upon the user closing their browser. If left" +" blank, the Django platform session default length will be used." +msgstr "" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is selected, users will be directed to the registration page " +"immediately after authenticating with the third party instead of the login " +"page." +msgstr "" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"Synchronize user profile data received from the identity provider with the " +"edX user account on each SSO login. The user will be notified if the email " +"address associated with their account is changed as a part of this " +"synchronization." +msgstr "" + +#: common/djangoapps/third_party_auth/models.py +msgid "The Site that this SAML configuration belongs to." +msgstr "" + +#: common/djangoapps/third_party_auth/models.py lms/templates/help_modal.html +#, python-brace-format +msgid "{platform_name} Support" +msgstr "" + +#: common/djangoapps/third_party_auth/templates/third_party_auth/post_custom_auth_entry.html +#: lms/templates/student_account/finish_auth.html +#: themes/elitemba-theme/lms/templates/student_account/finish_auth.html +msgid "Please wait" +msgstr "" + +#. Translators: the translation for "LONG_DATE_FORMAT" must be a format +#. string for formatting dates in a long form. For example, the +#. American English form is "%A, %B %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "LONG_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "DATE_TIME_FORMAT" must be a format +#. string for formatting dates with times. For example, the American +#. English form is "%b %d, %Y at %H:%M". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "DATE_TIME_FORMAT" +msgstr "" + +#. Translators: the translation for "SHORT_DATE_FORMAT" must be a +#. format string for formatting dates in a brief form. For example, +#. the American English form is "%b %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "SHORT_DATE_FORMAT" +msgstr "" + +#. Translators: the translation for "TIME_FORMAT" must be a format +#. string for formatting times. For example, the American English +#. form is "%H:%M:%S". See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "TIME_FORMAT" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "AM" +msgstr "" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "PM" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Monday Februrary 10, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Monday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Tuesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Wednesday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Thursday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Friday Februrary 14, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Friday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Saturday" +msgstr "" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Sunday" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jan 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Feb 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Mar 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Apr 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "May 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "May" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jun 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jul 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Aug 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Sep 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Oct 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Nov 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Dec 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "January 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "January" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "February 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "February" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "March 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "March" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "April 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "April" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "May 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "May" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "June 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "June" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "July 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "July" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "August 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "August" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "September 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "September" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "October 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "October" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "November 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "November" +msgstr "" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "December 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "December" +msgstr "" + +#: common/djangoapps/util/file.py +#, python-brace-format +msgid "The file must end with the extension '{file_types}'." +msgid_plural "" +"The file must end with one of the following extensions: '{file_types}'." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/file.py +#, python-brace-format +msgid "Maximum upload file size is {file_size} bytes." +msgstr "" + +#: common/djangoapps/util/milestones_helpers.py +#, python-brace-format +msgid "Course {course_id} requires {prerequisite_course_id}" +msgstr "" + +#: common/djangoapps/util/milestones_helpers.py openedx/core/lib/gating/api.py +msgid "System defined milestone" +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-brace-format +msgid "" +"Your password must contain {length_instruction}, including " +"{complexity_instructions}." +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-brace-format +msgid "Your password must contain {length_instruction}." +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Invalid password." +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "" +"This password is too short. It must contain at least %(min_length)d " +"character." +msgid_plural "" +"This password is too short. It must contain at least %(min_length)d " +"characters." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_length)d character." +msgid_plural "Your password must contain at least %(min_length)d characters." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "at least %(min_length)d character" +msgid_plural "at least %(min_length)d characters" +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "" +"This password is too long. It must contain no more than %(max_length)d " +"character." +msgid_plural "" +"This password is too long. It must contain no more than %(max_length)d " +"characters." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain no more than %(max_length)d character." +msgid_plural "" +"Your password must contain no more than %(max_length)d characters." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_alphabetic)d letter." +msgid_plural "This password must contain at least %(min_alphabetic)d letters." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_alphabetic)d letter." +msgid_plural "Your password must contain at least %(min_alphabetic)d letters." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d letter" +msgid_plural "%(num)d letters" +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_numeric)d number." +msgid_plural "This password must contain at least %(min_numeric)d numbers." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_numeric)d number." +msgid_plural "Your password must contain at least %(min_numeric)d numbers." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d number" +msgid_plural "%(num)d numbers" +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_upper)d uppercase letter." +msgid_plural "" +"This password must contain at least %(min_upper)d uppercase letters." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_upper)d uppercase letter." +msgid_plural "" +"Your password must contain at least %(min_upper)d uppercase letters." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d uppercase letter" +msgid_plural "%(num)d uppercase letters" +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_lower)d lowercase letter." +msgid_plural "" +"This password must contain at least %(min_lower)d lowercase letters." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_lower)d lowercase letter." +msgid_plural "" +"Your password must contain at least %(min_lower)d lowercase letters." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d lowercase letter" +msgid_plural "%(num)d lowercase letters" +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "" +"This password must contain at least %(min_punctuation)d punctuation mark." +msgid_plural "" +"This password must contain at least %(min_punctuation)d punctuation marks." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "" +"Your password must contain at least %(min_punctuation)d punctuation mark." +msgid_plural "" +"Your password must contain at least %(min_punctuation)d punctuation marks." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d punctuation mark" +msgid_plural "%(num)d punctuation marks" +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_symbol)d symbol." +msgid_plural "This password must contain at least %(min_symbol)d symbols." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_symbol)d symbol." +msgid_plural "Your password must contain at least %(min_symbol)d symbols." +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d symbol" +msgid_plural "%(num)d symbols" +msgstr[0] "" +msgstr[1] "" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "The password is too similar to the %(verbose_name)s." +msgstr "" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Your password can't be too similar to your other personal information." +msgstr "" + +#: common/djangoapps/xblock_django/admin.py +msgid "" +"To disable the XBlock and prevent rendering in the LMS, leave \"Enabled\" " +"deselected; for clarity, update XBlockStudioConfiguration support state " +"accordingly." +msgstr "" + +#: common/djangoapps/xblock_django/admin.py +msgid "" +"Only XBlocks listed in a course's Advanced Module List can be flagged as " +"deprecated. Remember to update XBlockStudioConfiguration support state " +"accordingly, as deprecated does not impact whether or not new XBlock " +"instances can be created in Studio." +msgstr "" + +#: common/djangoapps/xblock_django/admin.py +msgid "" +"XBlock/template combinations that are disabled cannot be edited in Studio, " +"regardless of support level. Remember to also check if all instances of the " +"XBlock are disabled in XBlockConfiguration." +msgstr "" + +#: common/djangoapps/xblock_django/admin.py +msgid "" +"Enabled XBlock/template combinations with full or provisional support can " +"always be created in Studio. Unsupported XBlock/template combinations " +"require course author opt-in." +msgstr "" + +#: common/djangoapps/xblock_django/models.py +msgid "show deprecation messaging in Studio" +msgstr "" + +#: common/djangoapps/xblock_django/models.py +msgid "Fully Supported" +msgstr "" + +#: common/djangoapps/xblock_django/models.py +msgid "Provisionally Supported" +msgstr "" + +#: common/djangoapps/xblock_django/models.py +msgid "Unsupported" +msgstr "" + +#: common/lib/capa/capa/capa_problem.py +msgid "Cannot rescore problems with possible file submissions" +msgstr "" + +#: common/lib/capa/capa/capa_problem.py +#, python-brace-format +msgid "Question {0}" +msgstr "" + +#: common/lib/capa/capa/capa_problem.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Incorrect" +msgstr "" + +#: common/lib/capa/capa/capa_problem.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Correct" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "correct" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incorrect" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "partially correct" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "incomplete" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "unanswered" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "submitted" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "processing" +msgstr "" + +#. Translators: these are tooltips that indicate the state of an assessment +#. question +#: common/lib/capa/capa/inputtypes.py +msgid "This answer is correct." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "This answer is incorrect." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "This answer is partially correct." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "This answer is being processed." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "Not yet answered." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py wiki/forms.py +msgid "Select an option" +msgstr "" + +#. Translators: 'ChoiceGroup' is an input type and should not be translated. +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "ChoiceGroup: unexpected tag {tag_name}" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "Answer received." +msgstr "" + +#. Translators: '' and '' are tag names and should not +#. be translated. +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "Expected a or tag; got {given_tag} instead" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your files have been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your answer has been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "{programming_language} editor" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "Press ESC then TAB or click outside of the code editor to exit" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Submitted. As soon as a response is returned, this message will be replaced " +"by that feedback." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "Error running code." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "Cannot connect to the queue" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "No formula specified." +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "Couldn't parse formula: {error_msg}" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "Error while rendering preview" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +msgid "Sorry, couldn't parse formula" +msgstr "" + +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "{input_type}: unexpected tag {tag_name}" +msgstr "" + +#. Translators: a "tag" is an XML element, such as "" in HTML +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "Expected a {expected_tag} tag; got {given_tag} instead" +msgstr "" + +#. Translators: index here could be 1,2,3 and so on +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Question {index}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Correct:" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Incorrect:" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#: common/lib/xmodule/xmodule/capa_module.py +msgid "Answer" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Error {err} in evaluating hint function {hintfn}." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "(Source code line unavailable)" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "See XML source line {sourcenum}." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Checkboxes" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Multiple Choice" +msgstr "" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "True/False Choice" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Dropdown" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Numerical Input" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "There was a problem with the staff answer to this problem." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Could not interpret '{student_answer}' as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Factorial function evaluated outside its domain:'{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Invalid math syntax: '{student_answer}'" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use complex numbers in range tolerance problems" +msgstr "" + +#. Translators: This is an error message for a math problem. If the instructor +#. provided a +#. boundary (end limit) for a variable that is a complex number (a + bi), this +#. message displays. +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: complex boundary." +msgstr "" + +#. Translators: This is an error message for a math problem. If the instructor +#. did not +#. provide a boundary (end limit) for a variable, this message displays. +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: empty boundary." +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: Separator used in NumericalResponse to display multiple +#. answers. +#. Translators: Separator used in StringResponse to display multiple answers. +#. Example: "Answer: Answer_1 or Answer_2 or Answer_3". +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: common/lib/capa/capa/responsetypes.py lms/templates/login.html +#: lms/templates/register-form.html lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "or" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Text Input" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "error" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Custom Evaluated Script" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "error getting student answer from {student_answers}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "No answer entered!" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "CustomResponse: check function returned an invalid dictionary!" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Symbolic Math Input" +msgstr "" + +#. Translators: 'SymbolicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "An error occurred with SymbolicResponse. The error was: {error_msg}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Code Input" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "No answer provided." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Error: No grader has been set up for this problem." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "" +"Unable to deliver your submission to grader (Reason: {error_msg}). Please " +"try again later." +msgstr "" + +#. Translators: 'grader' refers to the edX automatic code grader. +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid grader reply. Please contact the course staff." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "External Grader" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Math Expression Input" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "" +"Factorial function not permitted in answer for this problem. Provided answer" +" was: {bad_input}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Invalid input: Could not parse '{bad_input}' as a formula." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Invalid input: Could not parse '{bad_input}' as a formula" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Circuit Schematic Builder" +msgstr "" + +#. Translators: 'SchematicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Image Mapped Input" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "error grading {image_input_id} (input={user_input})" +msgstr "" + +#. Translators: {sr_coords} are the coordinates of a rectangle +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Error in problem specification! Cannot parse rectangle in {sr_coords}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Annotation Input" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "Checkboxes With Text Input" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Answer not provided for {input_type}" +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +msgid "The Staff answer could not be interpreted as a number." +msgstr "" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Could not interpret '{given_answer}' as a number." +msgstr "" + +#: common/lib/xmodule/xmodule/annotatable_module.py +msgid "XML data for the annotation" +msgstr "" + +#: common/lib/xmodule/xmodule/annotatable_module.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/conditional_module.py +#: common/lib/xmodule/xmodule/html_module.py +#: common/lib/xmodule/xmodule/library_content_module.py +#: common/lib/xmodule/xmodule/library_root_xblock.py +#: common/lib/xmodule/xmodule/poll_module.py +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +#: common/lib/xmodule/xmodule/word_cloud_module.py +#: common/lib/xmodule/xmodule/x_module.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "The display name for this component." +msgstr "" + +#: common/lib/xmodule/xmodule/annotatable_module.py +msgid "Annotation" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Blank Advanced Problem" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Number of attempts taken by the student on this problem" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Maximum Attempts" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines the number of times a student can try to answer this problem. If the" +" value is not set, infinite attempts are allowed." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Date that this problem is due by" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Amount of time after the due date that submissions will be accepted" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Show Results" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines when to show whether a learner's answer to the problem is correct. " +"Configured on the subsection." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Always" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Never" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Past Due" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "Show Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines when to show the answer to the problem. A default value can be set " +"in Advanced Settings." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Answered" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Attempted" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Closed" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Finished" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Correct or Past Due" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Whether to force the save button to appear on the page" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Show Reset Button" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Determines whether a 'Reset' button is shown so the user may reset their " +"answer. A default value can be set in Advanced Settings." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Randomization" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines when to randomize the variables specified in the associated Python " +"script. For problems that do not randomize values, specify \"Never\". " +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "On Reset" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Per Student" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "XML data for the problem" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Dictionary with the correctness of current student answers" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Dictionary for maintaining the state of inputtypes" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Dictionary with the current student responses" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Dictionary with the current student score" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Whether or not the answers have been saved since last submit" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Whether the student has answered the problem" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Random seed for this student" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Last submission time" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Timer Between Attempts" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Seconds a student must wait between submissions for a problem with multiple " +"attempts." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem Weight" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines the number of points each problem is worth. If the value is not set," +" each response field in the problem is worth one point." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Markdown source of this module" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Source code for LaTeX and Word problems. This feature is not well-supported." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/html_module.py +msgid "Enable LaTeX templates?" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Matlab API key" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Enter the API key provided by MathWorks for accessing the MATLAB Hosted " +"Service. This key is granted for exclusive use by this course for the " +"specified duration. Please do not share the API key with other courses and " +"notify MathWorks immediately if you believe the key is exposed or " +"compromised. To obtain a key for your course, or to report an issue, please " +"contact moocsupport@mathworks.com" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html +#: cms/templates/index.html cms/templates/videos_index_pagination.html +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +#: lms/templates/peer_grading/peer_grading_problem.html +#: lms/templates/survey/survey.html +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Submit" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Submitting" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Warning: The problem has been reset to its initial state!" +msgstr "" + +#. Translators: Following this message, there will be a bulleted list of +#. items. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"The problem's state was corrupted by an invalid submission. The submission " +"consisted of:" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "If this error persists, please contact the course staff." +msgstr "" + +#. Translators: {previous_hints} is the HTML of hints that have already been +#. generated, {hint_number_prefix} +#. is a header for this hint, and {hint_text} is the text of the hint itself. +#. This string is being passed to translation only for possible reordering of +#. the placeholders. +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "{previous_hints}{list_start_tag}{strong_text}{hint_text}" +msgstr "" + +#. Translators: e.g. "Hint 1 of 3: " meaning we are showing the first of three +#. hints. +#. This text is shown in bold before the accompanying hint text. +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "Hint ({hint_num} of {hints_count}): " +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "" +"Your answers were previously saved. Click '{button_name}' to grade them." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "Incorrect ({progress} point)" +msgid_plural "Incorrect ({progress} points)" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "Correct ({progress} point)" +msgid_plural "Correct ({progress} points)" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "Partially correct ({progress} point)" +msgid_plural "Partially correct ({progress} points)" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Partially Correct" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Answer submitted." +msgstr "" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem is closed." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be reset before it can be submitted again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "You must wait at least {wait} seconds between submissions." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "{num_hour} hour" +msgid_plural "{num_hour} hours" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "{num_minute} minute" +msgid_plural "{num_minute} minutes" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "{num_second} second" +msgid_plural "{num_second} seconds" +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem needs to be reset prior to save." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Your answers have been saved." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "" +"Your answers have been saved but not graded. Click '{button_name}' to grade " +"them." +msgstr "" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You cannot select Reset for a problem that is closed." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You must submit an answer before you can select Reset." +msgstr "" + +#. Translators: 'rescoring' refers to the act of re-submitting a student's +#. solution so it can get a new score. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem's definition does not support rescoring." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be answered before it can be graded again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"We're sorry, there was an error with processing your request. Please try " +"reloading your page and trying again." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"The state of this problem has changed since you loaded this page. Please " +"refresh your page." +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "Answer ID" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "Question" +msgstr "" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "Correct Answer" +msgstr "" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Conditional" +msgstr "" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "List of urls of children that are references to external modules" +msgstr "" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Source Components" +msgstr "" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "" +"The component location IDs of all source components that are used to " +"determine whether a learner is shown the content of this conditional module." +" Copy the component location ID of a component from its Settings dialog in " +"Studio." +msgstr "" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Conditional Attribute" +msgstr "" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "" +"The attribute of the source components that determines whether a learner is " +"shown the content of this conditional module." +msgstr "" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Conditional Value" +msgstr "" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "" +"The value that the conditional attribute of the source components must match" +" before a learner is shown the content of this conditional module." +msgstr "" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Blocked Content Message" +msgstr "" + +#: common/lib/xmodule/xmodule/conditional_module.py +#, python-brace-format +msgid "" +"The message that is shown to learners when not all conditions are met to " +"show the content of this conditional module. Include {link} in the text of " +"your message to give learners a direct link to required units. For example, " +"'You must complete {link} before you can access this unit'." +msgstr "" + +#: common/lib/xmodule/xmodule/conditional_module.py +#, python-brace-format +msgid "You must complete {link} before you can access this unit." +msgstr "" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "This component has no source components configured yet." +msgstr "" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Configure list of sources" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +#, python-brace-format +msgid "" +"The selected proctoring provider, {proctoring_provider}, is not a valid " +"provider. Please select from one of {available_providers}." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "LTI Passports" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the passports for course LTI tools in the following format: " +"\"id:client_key:client_secret\"." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"List of Textbook objects with (title, url) for textbooks used in this course" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Slug that points to the wiki for this course" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Date that enrollment for this class is opened" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Date that enrollment for this class is closed" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Start time when this module is visible" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Date that this class ends" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Date that certificates become available to learners" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Cosmetic Course Display Price" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"The cost displayed to students for enrolling in the course. If a paid course" +" registration price is set by an administrator in the database, that price " +"will be displayed instead of this one." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Advertised Start" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the text that you want to use as the advertised starting time frame " +"for the course, such as \"Winter 2018\". If you enter null for this value, " +"the start date that you have set for this course is used." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Pre-Requisite Courses" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Pre-Requisite Course key if this course has a pre-requisite course" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Grading policy definition for this class" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Show Calculator" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. When true, students can see the calculator in the " +"course." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the name of the course as it should appear in the EliteMBA.cn course " +"list." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Display Name" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Course Editor" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enter the method by which this course is edited (\"XML\" or \"Studio\")." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Survey URL" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the URL for the end-of-course survey. If your course does not have a " +"survey, enter null." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Discussion Blackout Dates" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter pairs of dates between which students cannot post to discussion " +"forums. Inside the provided brackets, enter an additional set of square " +"brackets surrounding each pair of dates you add. Format each pair of dates " +"as [\"YYYY-MM-DD\", \"YYYY-MM-DD\"]. To specify times as well as dates, " +"format each pair as [\"YYYY-MM-DDTHH:MM\", \"YYYY-MM-DDTHH:MM\"]. Be sure to" +" include the \"T\" between the date and time. For example, an entry defining" +" two blackout periods looks like this, including the outer pair of square " +"brackets: [[\"2015-09-15\", \"2015-09-21\"], [\"2015-10-01\", " +"\"2015-10-08\"]] " +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Discussion Topic Mapping" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter discussion categories in the following format: \"CategoryName\": " +"{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " +"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" +"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " +"must be unique. In \"id\" values, the only special characters that are " +"supported are underscore, hyphen, and period. You can also specify a " +"category as the default for new posts in the Discussion page by setting its " +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" +"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Discussion Sorting Alphabetical" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, discussion categories and subcategories are " +"sorted alphabetically. If false, they are sorted chronologically by creation" +" date and time." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Announcement Date" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter the date to announce your course." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Cohort Configuration" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter policy keys and values to enable the cohort feature, define automated " +"student assignment to groups, or identify any course-wide discussion topics " +"as private to cohort members." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Is New" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, the course appears in the list of new courses " +"on EliteMBA.cn, and a New! badge temporarily appears next to the course " +"image." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Mobile Course Available" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, the course will be available to mobile " +"devices." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Video Upload Credentials" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the unique identifier for your course's video files provided by " +"EliteMBA." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Not Graded" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter true or false. If true, the course will not be graded." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Disable Progress Graph" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter true or false. If true, students cannot view the progress graph." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "PDF Textbooks" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "List of dictionaries containing pdf_textbook configuration" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "HTML Textbooks" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"For HTML textbooks that appear as separate tabs in the course, enter the " +"name of the tab (usually the title of the book) as well as the URLs and " +"titles of each chapter in the book." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Remote Gradebook" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the remote gradebook mapping. Only use this setting when " +"REMOTE_GRADEBOOK_URL has been specified." +msgstr "" + +#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using +#. course content. CCX Coach is +#. a role created by a course Instructor to enable a person (the "Coach") to +#. manage the custom course for +#. his students. +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enable CCX" +msgstr "" + +#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using +#. course content. CCX Coach is +#. a role created by a course Instructor to enable a person (the "Coach") to +#. manage the custom course for +#. his students. +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Allow course instructors to assign CCX Coach roles, and allow coaches to " +"manage Custom Courses on EliteMBA. When false, Custom Courses cannot be " +"created, but existing Custom Courses will be preserved." +msgstr "" + +#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using +#. course content. +#: common/lib/xmodule/xmodule/course_module.py +msgid "CCX Connector URL" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"URL for CCX Connector application for managing creation of CCXs. (optional)." +" Ignored unless 'Enable CCX' is set to 'true'." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allow Anonymous Discussion Posts" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, students can create discussion posts that are " +"anonymous to all users." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allow Anonymous Discussion Posts to Peers" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, students can create discussion posts that are " +"anonymous to other students. This setting does not make posts anonymous to " +"course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/library_root_xblock.py +msgid "Advanced Module List" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter the names of the advanced modules to use in your course." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Home Sidebar Name" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the heading that you want students to see above your course handouts " +"on the Course Home page. Your course handouts appear in the right panel of " +"the page." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +#: lms/templates/courseware/info.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Course Handouts" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"True if timezones should be shown on dates in the course. Deprecated in " +"favor of due_date_display_format." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Due Date Display Format" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the format for due dates. The default is Mon DD, YYYY. Enter " +"\"%m-%d-%Y\" for MM-DD-YYYY, \"%d-%m-%Y\" for DD-MM-YYYY, \"%Y-%m-%d\" for " +"YYYY-MM-DD, or \"%Y-%d-%m\" for YYYY-DD-MM." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "External Login Domain" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter the external login method students can use for the course." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificates Downloadable Before End" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, students can download certificates before the " +"course ends, if they've met certificate requirements." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificates Display Behavior" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter end, early_with_info, or early_no_info. After certificate generation, " +"students who passed see a link to their certificates on the dashboard and " +"students who did not pass see information about the grading configuration. " +"The default is end, which displays this certificate information to all " +"students after the course end date. To display this certificate information " +"to all students as soon as certificates are generated, enter " +"early_with_info. To display only the links to passing students as soon as " +"certificates are generated, enter early_no_info." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course About Page Image" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Edit the name of the course image file. You must upload this file on the " +"Files & Uploads page. You can also set the course image on the Settings & " +"Details page." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Banner Image" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Edit the name of the banner image file. You can set the banner image on the " +"Settings & Details page." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Video Thumbnail Image" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Edit the name of the video thumbnail image file. You can set the video " +"thumbnail image on the Settings & Details page." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Issue Open Badges" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Issue Open Badges badges for this course. Badges are generated when " +"certificates are created." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Use this setting only when generating PDF certificates. Between quotation " +"marks, enter the short name of the type of certificate that students receive" +" when they complete the course. For instance, \"Certificate\"." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Name (Short)" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Use this setting only when generating PDF certificates. Between quotation " +"marks, enter the long name of the type of certificate that students receive " +"when they complete the course. For instance, \"Certificate of Achievement\"." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Name (Long)" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Web/HTML View Enabled" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "If true, certificate Web/HTML views are enabled for the course." +msgstr "" + +#. Translators: This field is the container for course-specific certificate +#. configuration values +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Web/HTML View Overrides" +msgstr "" + +#. Translators: These overrides allow for an alternative configuration of the +#. certificate web view +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter course-specific overrides for the Web/HTML template parameters here " +"(JSON format)" +msgstr "" + +#. Translators: This field is the container for course-specific certificate +#. configuration values +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Configuration" +msgstr "" + +#. Translators: These overrides allow for an alternative configuration of the +#. certificate web view +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter course-specific configuration information here (JSON format)" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "CSS Class for Course Reruns" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Allows courses to share the same css class across runs even if they have " +"different numbers." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Discussion Forum External Link" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allows specification of an external link to replace discussion forums." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Hide Progress Tab" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allows hiding of the progress tab." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Organization Display String" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the course organization that you want to appear in the course. This " +"setting overrides the organization that you entered when you created the " +"course. To use the organization that you entered when you created the " +"course, enter null." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Number Display String" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the course number that you want to appear in the course. This setting " +"overrides the course number that you entered when you created the course. To" +" use the course number that you entered when you created the course, enter " +"null." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Maximum Student Enrollment" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the maximum number of students that can enroll in the course. To allow" +" an unlimited number of students, enter null." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allow Public Wiki Access" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, EliteMBA users can view the course wiki even " +"if they're not enrolled in the course." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Invitation Only" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Whether to restrict enrollment to invitation by the course staff." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Pre-Course Survey Name" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Name of SurveyForm to display as a pre-course survey to the user." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Pre-Course Survey Required" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Specify whether students must complete a survey before they can view your " +"course content. If you set this value to true, you must add a name for the " +"survey to the Course Survey Name setting above." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Visibility In Catalog" +msgstr "" + +#. Translators: the quoted words 'both', 'about', and 'none' must be +#. left untranslated. Leave them as English words. +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Defines the access permissions for showing the course in the course catalog." +" This can be set to one of three values: 'both' (show in catalog and allow " +"access to about page), 'about' (only allow access to about page), 'none' (do" +" not show in catalog and do not allow access to an about page)." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Entrance Exam Enabled" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Specify whether students must complete an entrance exam before they can view" +" your course content. Note, you must enable Entrance Exams for this course " +"setting to take effect." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Entrance Exam Minimum Score (%)" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Specify a minimum percentage score for an entrance exam before students can " +"view your course content. Note, you must enable Entrance Exams for this " +"course setting to take effect." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Entrance Exam ID" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Content module identifier (location) of entrance exam." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Social Media Sharing URL" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"If dashboard social sharing and custom course URLs are enabled, you can " +"provide a URL (such as the URL to a course About page) that social media " +"sites can link to. URLs must be fully qualified. For example: " +"http://www.edx.org/course/Introduction-to-MOOCs-ITM001" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Language" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Specify the language of your course." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Teams Configuration" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +#, python-brace-format +msgid "" +"Specify the maximum team size and topics for teams inside the provided set " +"of curly braces. Make sure that you enclose all of the sets of topic values " +"within a set of square brackets, with a comma after the closing curly brace " +"for each topic, and another comma after the closing square brackets. For " +"example, to specify that teams should have a maximum of 5 participants and " +"provide a list of 2 topics, enter the configuration in this format: " +"{example_format}. In \"id\" values, the only supported special characters " +"are underscore, hyphen, and period." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enable Proctored Exams" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, proctored exams are enabled in " +"your course. Note that enabling proctored exams will also enable timed " +"exams." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Proctoring Provider" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +#, python-brace-format +msgid "" +"Enter the proctoring provider you want to use for this course run. Choose " +"from the following options: {available_providers}." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allow Opting Out of Proctored Exams" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, learners can choose to take " +"proctored exams without proctoring. If this value is false, all learners " +"must take the exam with proctoring. This setting only applies if proctored " +"exams are enabled for the course." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Create Zendesk Tickets For Suspicious Proctored Exam Attempts" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, a Zendesk ticket will be created" +" for suspicious attempts." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enable Timed Exams" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, timed exams are enabled in your " +"course. Regardless of this setting, timed exams are enabled if Enable " +"Proctored Exams is set to true." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Minimum Grade for Credit" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"The minimum grade that a learner must earn to receive credit in the course, " +"as a decimal between 0.0 and 1.0. For example, for 75%, enter 0.75." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Self Paced" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Set this to \"true\" to mark this course as self-paced. Self-paced courses " +"do not have due dates for assignments, and students can progress through the" +" course at any rate before the course ends." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Bypass Course Home" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Bypass the course home tab when students arrive from the dashboard, sending " +"them directly to course content." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enable Subsection Prerequisites" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, you can hide a subsection until " +"learners earn a minimum score in another, prerequisite subsection." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Learning Information" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Specify what student can learn from the course." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Visibility For Unenrolled Learners" +msgstr "" + +#. Translators: the quoted words 'private', 'public_outline', and 'public' +#. must be left untranslated. Leave them as English words. +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Defines the access permissions for unenrolled learners. This can be set to " +"one of three values: 'private' (default visibility, only allowed for " +"enrolled students), 'public_outline' (allow access to course outline) and " +"'public' (allow access to both outline and course content)." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Instructor" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter the details for Course Instructor" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Add Unsupported Problems and Tools" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, you can add unsupported problems and tools to " +"your course in Studio. Unsupported problems and tools are not recommended " +"for use in courses due to non-compliance with one or more of the base " +"requirements, such as testing, accessibility, internationalization, and " +"documentation." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Highlights Enabled for Messaging" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, any highlights associated with content in the " +"course will be messaged to learners at their scheduled time." +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py cms/templates/certificates.html +#: cms/templates/group_configurations.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Other Course Settings" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Any additional information about the course that the platform needs or that " +"allows integration with external systems such as CRM software. Enter a " +"dictionary of values in JSON format, such as { \"my_custom_setting\": " +"\"value\", \"other_setting\": \"value\" }" +msgstr "" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "General" +msgstr "" + +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "{assignment_type} = {weighted_percent:.2%} of a possible {weight:.2%}" +msgstr "" + +#: common/lib/xmodule/xmodule/graders.py +msgid "Generated" +msgstr "" + +#. Translators: "Homework 1 - Unreleased - 0% (?/?)" The section has not been +#. released for viewing. +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "{section_type} {index} Unreleased - 0% (?/?)" +msgstr "" + +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "The lowest {drop_count} {section_type} scores are dropped." +msgstr "" + +#. Translators: "Homework Average = 0%" +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "{section_type} Average = {percent:.0%}" +msgstr "" + +#. Translators: Avg is short for Average +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "{short_label} Avg" +msgstr "" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Text" +msgstr "" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Html contents to display for this module" +msgstr "" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Source code for LaTeX documents. This feature is not well-supported." +msgstr "" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "" +"Select Visual to enter content and have the editor automatically create the " +"HTML. Select Raw to edit HTML directly. If you change this setting, you must" +" save the component and then re-open it for editing." +msgstr "" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Editor" +msgstr "" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Visual" +msgstr "" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Raw" +msgstr "" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Hide Page From Learners" +msgstr "" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "" +"If you select this option, only course team members with the Staff or Admin " +"role see this page." +msgstr "" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "HTML for the additional pages" +msgstr "" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "List of course update items" +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Any Type" +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +#: cms/templates/widgets/header.html +msgid "Library" +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Select the library from which you want to draw content." +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Library Version" +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Determines how content is drawn from the library" +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Choose n at random" +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Count" +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Enter the number of components to display to each student." +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Problem Type" +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "" +"Choose a problem type to fetch from the library. If \"Any Type\" is selected" +" no filtering is applied." +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "This component is out of date. The library has new content." +msgstr "" + +#. Translators: {refresh_icon} placeholder is substituted to "↻" (without +#. double quotes) +#: common/lib/xmodule/xmodule/library_content_module.py +#, python-brace-format +msgid "{refresh_icon} Update now." +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Library is invalid, corrupt, or has been deleted." +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Edit Library List." +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "" +"This course does not support content libraries. Contact your system " +"administrator for more information." +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "A library has not yet been selected." +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Select a Library." +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "There are no matching problem types in the specified libraries." +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Select another problem type." +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +#, python-brace-format +msgid "The specified library is configured to fetch {count} problem, " +msgid_plural "The specified library is configured to fetch {count} problems, " +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/library_content_module.py +#, python-brace-format +msgid "but there is only {actual} matching problem." +msgid_plural "but there are only {actual} matching problems." +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Edit the library configuration." +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Invalid Library" +msgstr "" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "No Library Selected" +msgstr "" + +#: common/lib/xmodule/xmodule/library_root_xblock.py +msgid "Library Display Name" +msgstr "" + +#: common/lib/xmodule/xmodule/library_root_xblock.py +msgid "Enter the names of the advanced components to use in your library." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"The display name for this component. Analytics reports may also use the " +"display name to identify this component." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "LTI ID" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Enter the LTI ID for the external LTI provider. This value must be the same" +" LTI ID that you entered in the LTI Passports setting on the Advanced " +"Settings page.
    See {docs_anchor_open}the edX LTI " +"documentation{anchor_close} for more details on this setting." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "LTI URL" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Enter the URL of the external tool that this component launches. This " +"setting is only used when Hide External Tool is set to False.
    See " +"{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " +"on this setting." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Custom Parameters" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Add the key/value pair for any custom parameters, such as the page your " +"e-book should open to or the background color for this component.
    See " +"{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " +"on this setting." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Open in New Page" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Select True if you want students to click a link that opens the LTI tool in " +"a new window. Select False if you want the LTI content to open in an IFrame " +"in the current page. This setting is only used when Hide External Tool is " +"set to False. " +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Scored" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Select True if this component will receive a numerical score from the " +"external LTI system." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Weight" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Enter the number of points possible for this component. The default value " +"is 1.0. This setting is only used when Scored is set to True." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"The score kept in the xblock KVS -- duplicate of the published score in " +"django DB" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Comment as returned from grader, LTI2.0 spec" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Hide External Tool" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Select True if you want to use this component as a placeholder for syncing " +"with an external grading system rather than launch an external tool. This " +"setting hides the Launch button and any IFrames for this component." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Request user's username" +msgstr "" + +#. Translators: This is used to request the user's username for a third party +#. service. +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Select True to request the user's username." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Request user's email" +msgstr "" + +#. Translators: This is used to request the user's email for a third party +#. service. +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Select True to request the user's email address." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "LTI Application Information" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Enter a description of the third party application. If requesting username " +"and/or email, use this text box to inform users why their username and/or " +"email will be forwarded to a third party application." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Button Text" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Enter the text on the button used to launch the third party application." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Accept grades past deadline" +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Select True to allow third party systems to post grades past the deadline." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#: common/lib/xmodule/xmodule/seq_module.py lms/templates/ccx/schedule.html +msgid "Due Date" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enter the default date by which problems are due." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#: lms/djangoapps/lms_xblock/mixin.py +msgid "If true, can be seen only by course staff, regardless of start date." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "GIT URL" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enter the URL for the course data GIT repository." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "XQA Key" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "This setting is not currently supported." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enter the ids for the content groups this problem belongs to." +msgstr "" + +#. Translators: DO NOT translate the words in quotes here, they are +#. specific words for the acceptable values. +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Specify when the Show Answer button appears for each problem. Valid values " +"are \"always\", \"answered\", \"attempted\", \"closed\", \"finished\", " +"\"past_due\", \"correct_or_past_due\", and \"never\"." +msgstr "" + +#. Translators: DO NOT translate the words in quotes here, they are +#. specific words for the acceptable values. +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Specify when to show answer correctness and score to learners. Valid values " +"are \"always\", \"never\", and \"past_due\"." +msgstr "" + +#. Translators: DO NOT translate the words in quotes here, they are +#. specific words for the acceptable values. +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Specify the default for how often variable values in a problem are " +"randomized. This setting should be set to \"never\" unless you plan to " +"provide a Python script to identify and randomize values in most of the " +"problems in your course. Valid values are \"always\", \"onreset\", " +"\"never\", and \"per_student\"." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Days Early for Beta Users" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the number of days before the start date that beta users can access " +"the course." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Static Asset Path" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the path to use for files on the Files & Uploads page. This value " +"overrides the Studio default, c4x://." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enable LaTeX Compiler" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, you can use the LaTeX templates for HTML " +"components and advanced Problem components." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the maximum number of times a student can try to answer problems. By " +"default, Maximum Attempts is set to null, meaning that students have an " +"unlimited number of attempts for problems. You can override this course-wide" +" setting for individual problems. However, if the course-wide setting is a " +"specific number, you cannot set the Maximum Attempts for individual problems" +" to unlimited." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the API key provided by MathWorks for accessing the MATLAB Hosted " +"Service. This key is granted for exclusive use in this course for the " +"specified duration. Do not share the API key with other courses. Notify " +"MathWorks immediately if you believe the key is exposed or compromised. To " +"obtain a key for your course, or to report an issue, please contact " +"moocsupport@mathworks.com" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Group Configurations" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the configurations that govern how students are grouped together." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enable video caching system" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, video caching will be used for HTML5 videos." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enable video auto-advance" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Specify whether to show an auto-advance button in videos. If the student " +"clicks it, when the last video in a unit finishes it will automatically move" +" to the next unit and autoplay the first video." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Video Pre-Roll" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#, python-brace-format +msgid "" +"Identify a video, 5-10 seconds in length, to play before course videos. " +"Enter the video ID from the Video Uploads page and one or more transcript " +"files in the following format: {format}. For example, an entry for a video " +"with two transcripts looks like this: {example}" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Show Reset Button for Problems" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, problems in the course default to always " +"displaying a 'Reset' button. You can override this in each problem's " +"settings. All existing problems are affected when this course-wide setting " +"is changed." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enable Student Notes" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, students can use the Student Notes feature." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Indicates whether Student Notes are visible in the course. Students can also" +" show or hide their notes in the courseware." +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Tag this module as part of an Entrance Exam section" +msgstr "" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, answer submissions for problem modules will be" +" considered in the Entrance Exam scoring/gating algorithm." +msgstr "" + +#: common/lib/xmodule/xmodule/partitions/partitions_service.py +#: cms/templates/group_configurations.html +msgid "Enrollment Track Groups" +msgstr "" + +#: common/lib/xmodule/xmodule/partitions/partitions_service.py +msgid "Partition for segmenting users by enrollment track" +msgstr "" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Whether this student has voted on the poll" +msgstr "" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Student answer" +msgstr "" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Poll answers from all students" +msgstr "" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Poll answers from xml" +msgstr "" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Poll question" +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Enter the date by which problems are due." +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Hide sequence content After Due Date" +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"If set, the sequence content is hidden for non-staff users after the due " +"date has passed." +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Entrance Exam" +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"Tag this course module as an Entrance Exam. Note, you must enable Entrance " +"Exams for this course setting to take effect." +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Time Limited" +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This setting indicates whether students have a limited time to view or " +"interact with this courseware component." +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Time Limit in Minutes" +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"The number of minutes available to students for viewing or interacting with " +"this courseware component." +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Proctoring Enabled" +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "This setting indicates whether this exam is a proctored exam." +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Software Secure Review Rules" +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This setting indicates what rules the proctoring team should follow when " +"viewing the videos." +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Practice Exam" +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This setting indicates whether this exam is for testing purposes only. " +"Practice exams are not verified." +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This subsection is unlocked for learners when they meet the prerequisite " +"requirements." +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "This exam is hidden from the learner." +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"Because the course has ended, this assignment is hidden from the learner." +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"Because the due date has passed, this assignment is hidden from the learner." +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This section is a prerequisite. You must complete this section in order to " +"unlock additional content." +msgstr "" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"A list summarizing what students should look forward to in this section." +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +#, python-brace-format +msgid "Group ID {group_id}" +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Not Selected" +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "The display name for this component. (Not shown to learners)" +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Content Experiment" +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"The list of group configurations for partitioning students in content " +"experiments." +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The configuration defines how users are grouped for this content experiment." +" Caution: Changing the group configuration of a student-visible experiment " +"will impact the experiment data." +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Group Configuration" +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Which child module students in a particular group_id should see" +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +#, python-brace-format +msgid "{group_name} (inactive)" +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "The experiment is not associated with a group configuration." +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Select a Group Configuration" +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The experiment uses a deleted group configuration. Select a valid group " +"configuration or delete this experiment." +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The experiment uses a group configuration that is not supported for " +"experiments. Select a valid group configuration or delete this experiment." +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The experiment does not contain all of the groups in the configuration." +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Add Missing Groups" +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The experiment has an inactive group. Move content into active groups, then " +"delete the inactive group." +msgstr "" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "This content experiment has issues that affect content visibility." +msgstr "" + +#: common/lib/xmodule/xmodule/tabs.py +msgid "External Discussion" +msgstr "" + +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +msgid "Home" +msgstr "" + +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +#: lms/djangoapps/courseware/views/views.py +#: lms/djangoapps/shoppingcart/reports.py +#: openedx/features/course_experience/__init__.py +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/courseware.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Course" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +#, python-brace-format +msgid "" +"Can't receive transcripts from Youtube for {youtube_id}. Status code: " +"{status_code}." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "We support only SubRip (*.srt) transcripts format." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +#, python-brace-format +msgid "" +"Something wrong with SubRip transcripts file during parsing. Inner message " +"is {error_message}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Something wrong with SubRip transcripts file during parsing." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +#, python-brace-format +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +msgid "Language is required." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "Basic" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +#, python-brace-format +msgid "There is no transcript file associated with the {lang} language." +msgid_plural "" +"There are no transcript files associated with the {lang} languages." +msgstr[0] "" +msgstr[1] "" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "" +"The URL for your video. This can be a YouTube URL or a link to an .mp4, " +".ogg, or .webm video file hosted elsewhere on the Internet." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "Default Video URL" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Component Display Name" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Current position in the video." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Optional, for older browsers: the YouTube ID for the normal speed video." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "YouTube ID" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Optional, for older browsers: the YouTube ID for the .75x speed video." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "YouTube ID for .75x speed" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Optional, for older browsers: the YouTube ID for the 1.25x speed video." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "YouTube ID for 1.25x speed" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Optional, for older browsers: the YouTube ID for the 1.5x speed video." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "YouTube ID for 1.5x speed" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Time you want the video to start if you don't want the entire video to play." +" Not supported in the native mobile app: the full video file will play. " +"Formatted as HH:MM:SS. The maximum value is 23:59:59." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video Start Time" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Time you want the video to stop if you don't want the entire video to play. " +"Not supported in the native mobile app: the full video file will play. " +"Formatted as HH:MM:SS. The maximum value is 23:59:59." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video Stop Time" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "The external URL to download the video." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Download Video" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Allow students to download versions of this video in different formats if " +"they cannot use the edX video player or do not have access to YouTube. You " +"must add at least one non-YouTube URL in the Video File URLs field." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video Download Allowed" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"The URL or URLs where you've posted non-YouTube versions of the video. Each " +"URL must end in .mpeg, .mp4, .ogg, or .webm and cannot be a YouTube URL. " +"(For browser compatibility, we strongly recommend .mp4 and .webm format.) " +"Students will be able to view the first listed video that's compatible with " +"the student's computer. To allow students to download these videos, set " +"Video Download Allowed to True." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video File URLs" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"By default, students can download an .srt or .txt transcript when you set " +"Download Transcript Allowed to True. If you want to provide a downloadable " +"transcript in a different format, we recommend that you upload a handout by " +"using the Upload a Handout field. If this isn't possible, you can post a " +"transcript file on the Files & Uploads page or on the Internet, and then add" +" the URL for the transcript here. Students see a link to download that " +"transcript below the video." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Downloadable Transcript URL" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Allow students to download the timed transcript. A link to download the file" +" appears below the video. By default, the transcript is an .srt or .txt " +"file. If you want to provide the transcript for download in a different " +"format, upload a file by using the Upload Handout field." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Download Transcript Allowed" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"The default transcript for the video, from the Default Timed Transcript " +"field on the Basic tab. This transcript should be in English. You don't have" +" to change this setting." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Default Timed Transcript" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Specify whether the transcripts appear with the video by default." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Show Transcript" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Add transcripts in different languages. Click below to specify a language " +"and upload an .srt transcript file for that language." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Transcript Languages" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Preferred language for transcript." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Preferred language for transcript" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Transcript file format to download by user." +msgstr "" + +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "The last speed that the user specified for the video." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "The default speed for the video." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Specify whether to advance automatically to the next unit when the video " +"ends." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Specify whether YouTube is available for the user." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Upload a handout to accompany this video. Students can download the handout " +"by clicking Download Handout under the video." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Upload Handout" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Specify whether access to this video is limited to browsers only, or if it " +"can be accessed from other applications including mobile apps." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video Available on Web Only" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"If you were assigned a Video ID by edX for the video to play in this " +"component, enter the ID here. In this case, do not enter values in the " +"Default Video URL, the Video File URLs, and the YouTube ID fields. If you " +"were not assigned a Video ID, enter values in those other fields and ignore " +"this field." +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Date of the last view of the bumper" +msgstr "" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Do not show bumper again" +msgstr "" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +#: lms/templates/annotatable.html lms/templates/peer_grading/peer_grading.html +msgid "Instructions" +msgstr "" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "" +"Add instructions to help learners understand how to use the word cloud. " +"Clear instructions are important, especially for learners who have " +"accessibility requirements." +msgstr "" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Inputs" +msgstr "" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "" +"The number of text boxes available for learners to add words and sentences." +msgstr "" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Maximum Words" +msgstr "" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "The maximum number of words displayed in the generated word cloud." +msgstr "" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Show Percents" +msgstr "" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Statistics are shown for entered words near that word." +msgstr "" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Whether this learner has posted words to the cloud." +msgstr "" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Student answer." +msgstr "" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "All possible words from all learners." +msgstr "" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Top num_top_words words for word cloud." +msgstr "" + +#: common/lib/xmodule/xmodule/x_module.py +#, python-brace-format +msgid "" +"{display_name} is only accessible to enrolled learners. Sign in or register," +" and enroll in this course to view it." +msgstr "" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +msgid "Create Password" +msgstr "" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#, python-format +msgid "" +"You're receiving this e-mail because you requested to create a password for " +"your user account at %(platform_name)s." +msgstr "" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet created your password." +msgstr "" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +msgid "Create my Password" +msgstr "" + +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "Please go to the following page and choose a new password:" +msgstr "" + +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "Thanks for using our site!" +msgstr "" + +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.txt +#, python-format +msgid "The %(platform_name)s Team" +msgstr "" + +#: common/templates/student/edx_ace/accountrecovery/email/subject.txt +#, python-format +msgid "Create password on %(platform_name)s" +msgstr "" + +#: common/templates/student/edx_ace/emailchange/email/body.html +msgid "Email Change" +msgstr "" + +#: common/templates/student/edx_ace/emailchange/email/body.html +#: common/templates/student/edx_ace/emailchange/email/body.txt +#, python-format +msgid "" +"We received a request to change the secondary e-mail associated with your " +"%(platform_name)s account to %(new_email)s. If this is correct, please " +"confirm your new secondary e-mail address by visiting:" +msgstr "" + +#: common/templates/student/edx_ace/emailchange/email/body.html +#: common/templates/student/edx_ace/emailchange/email/body.txt +#, python-format +msgid "" +"We received a request to change the e-mail associated with your " +"%(platform_name)s account from %(old_email)s to %(new_email)s. If this is " +"correct, please confirm your new e-mail address by visiting:" +msgstr "" + +#: common/templates/student/edx_ace/emailchange/email/body.html +msgid "Confirm Email Change" +msgstr "" + +#: common/templates/student/edx_ace/emailchange/email/body.html +#: common/templates/student/edx_ace/emailchange/email/body.txt +#, python-format +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the %(platform_name)s web site." +msgstr "" + +#: common/templates/student/edx_ace/emailchange/email/subject.txt +#, python-format +msgid "Request to change %(platform_name)s account secondary e-mail" +msgstr "" + +#: common/templates/student/edx_ace/emailchange/email/subject.txt +#, python-format +msgid "Request to change %(platform_name)s account e-mail" +msgstr "" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: lms/templates/forgot_password_modal.html +msgid "Password Reset" +msgstr "" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +#, python-format +msgid "" +"You're receiving this email because you requested a password reset for your " +"user account at %(platform_name)s." +msgstr "" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +#, python-format +msgid "" +"However, there is currently no user account associated with your email " +"address: %(email_address)s." +msgstr "" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "If you did not request this change, you can ignore this email." +msgstr "" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "" +"If you didn't request this change, you can ignore this email - we have not " +"yet reset your password." +msgstr "" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +msgid "Change my Password" +msgstr "" + +#: common/templates/student/edx_ace/passwordreset/email/subject.txt +#, python-format +msgid "Password reset on %(platform_name)s" +msgstr "" + +#: lms/djangoapps/badges/events/course_complete.py +#, python-brace-format +msgid "" +"Completed the course \"{course_name}\" ({course_mode}, {start_date} - " +"{end_date})" +msgstr "" + +#: lms/djangoapps/badges/events/course_complete.py +#, python-brace-format +msgid "Completed the course \"{course_name}\" ({course_mode})" +msgstr "" + +#: lms/djangoapps/badges/models.py +msgid "The badge image must be square." +msgstr "" + +#: lms/djangoapps/badges/models.py +msgid "The badge image file size must be less than 250KB." +msgstr "" + +#: lms/djangoapps/badges/models.py +msgid "This value must be all lowercase." +msgstr "" + +#: lms/djangoapps/badges/models.py +msgid "The course mode for this badge image. For example, \"verified\" or \"honor\"." +msgstr "" + +#: lms/djangoapps/badges/models.py +msgid "" +"Badge images must be square PNG files. The file size should be under 250KB." +msgstr "" + +#: lms/djangoapps/badges/models.py +msgid "" +"Set this value to True if you want this image to be the default image for " +"any course modes that do not have a specified badge image. You can have only" +" one default image." +msgstr "" + +#: lms/djangoapps/badges/models.py +msgid "There can be only one default image." +msgstr "" + +#: lms/djangoapps/badges/models.py +msgid "" +"On each line, put the number of completed courses to award a badge for, a " +"comma, and the slug of a badge class you have created that has the issuing " +"component 'openedx__course'. For example: 3,enrolled_3_courses" +msgstr "" + +#: lms/djangoapps/badges/models.py +msgid "" +"On each line, put the number of enrolled courses to award a badge for, a " +"comma, and the slug of a badge class you have created that has the issuing " +"component 'openedx__course'. For example: 3,enrolled_3_courses" +msgstr "" + +#: lms/djangoapps/badges/models.py +msgid "" +"Each line is a comma-separated list. The first item in each line is the slug" +" of a badge class you have created that has an issuing component of " +"'openedx__course'. The remaining items in each line are the course keys the " +"learner needs to complete to be awarded the badge. For example: " +"slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" +msgstr "" + +#: lms/djangoapps/badges/models.py +msgid "Please check the syntax of your entry." +msgstr "" + +#: lms/djangoapps/branding/api.py +msgid "Take free online courses at EliteMBA.cn" +msgstr "" + +#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Please do not translate any of these trademarks and company names. +#: lms/djangoapps/branding/api.py +#, python-brace-format +msgid "" +"© {org_name}. All rights reserved except where noted. EdX, Open edX and " +"their respective logos are trademarks or registered trademarks of edX Inc." +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. See http://openedx.org for more information. +#: lms/djangoapps/branding/api.py cms/templates/widgets/footer.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +msgid "Powered by Open edX" +msgstr "" + +#: lms/djangoapps/branding/api.py lms/templates/static_templates/blog.html +msgid "Blog" +msgstr "" + +#: lms/djangoapps/branding/api.py cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "Contact Us" +msgstr "" + +#: lms/djangoapps/branding/api.py +msgid "Help Center" +msgstr "" + +#: lms/djangoapps/branding/api.py +#: lms/templates/static_templates/media-kit.html +msgid "Media Kit" +msgstr "" + +#: lms/djangoapps/branding/api.py lms/templates/static_templates/donate.html +msgid "Donate" +msgstr "" + +#: lms/djangoapps/branding/api.py lms/templates/footer.html +#: lms/templates/static_templates/about.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "About" +msgstr "" + +#: lms/djangoapps/branding/api.py +#, python-brace-format +msgid "{platform_name} for Business" +msgstr "" + +#: lms/djangoapps/branding/api.py +msgid "News" +msgstr "" + +#: lms/djangoapps/branding/api.py lms/templates/static_templates/contact.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "Contact" +msgstr "" + +#: lms/djangoapps/branding/api.py +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "Careers" +msgstr "" + +#: lms/djangoapps/branding/api.py lms/djangoapps/certificates/views/webview.py +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +msgid "Terms of Service & Honor Code" +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: A 'Privacy Policy' is a legal document/statement describing a +#. website's use of personal information +#: lms/djangoapps/branding/api.py lms/djangoapps/certificates/views/webview.py +#: cms/templates/widgets/footer.html +#: lms/templates/static_templates/privacy.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +#: themes/elitemba-theme/lms/templates/static_templates/privacy.html +#: themes/elitemba-theme/lms/templates/static_templates/privacy_policy.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Privacy Policy" +msgstr "" + +#: lms/djangoapps/branding/api.py +msgid "Accessibility Policy" +msgstr "" + +#: lms/djangoapps/branding/api.py +msgid "Sitemap" +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This is a legal document users must agree to +#. in order to register a new account. +#: lms/djangoapps/branding/api.py openedx/core/djangoapps/user_api/api.py +#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Terms of Service" +msgstr "" + +#: lms/djangoapps/branding/api.py +msgid "Affiliates" +msgstr "" + +#: lms/djangoapps/branding/api.py +msgid "Open edX" +msgstr "" + +#: lms/djangoapps/branding/api.py +msgid "Trademark Policy" +msgstr "" + +#: lms/djangoapps/branding/api.py +#, python-brace-format +msgid "Download the {platform_name} mobile app from the Apple App Store" +msgstr "" + +#: lms/djangoapps/branding/api.py +#, python-brace-format +msgid "Download the {platform_name} mobile app from Google Play" +msgstr "" + +#. Translators: Bulk email from address e.g. ("Physics 101" Course Staff) +#: lms/djangoapps/bulk_email/tasks.py +#, python-brace-format +msgid "\"{course_title}\" Course Staff" +msgstr "" + +#: lms/djangoapps/ccx/plugins.py +msgid "CCX Coach" +msgstr "" + +#: lms/djangoapps/ccx/utils.py +msgid "" +"A CCX can only be created on this course through an external service. " +"Contact a course admin to give you access." +msgstr "" + +#: lms/djangoapps/ccx/utils.py +#, python-brace-format +msgid "The course is full: the limit is {max_student_enrollments_allowed}" +msgstr "" + +#: lms/djangoapps/ccx/views.py +msgid "You must be a CCX Coach to access this view." +msgstr "" + +#: lms/djangoapps/ccx/views.py +msgid "You must be the coach for this ccx to access this view" +msgstr "" + +#: lms/djangoapps/ccx/views.py +msgid "" +"You cannot create a CCX from a course using a deprecated id. Please create a" +" rerun of this course in the studio to allow this action." +msgstr "" + +#: lms/djangoapps/certificates/models.py wiki/admin.py wiki/models/article.py +msgid "created" +msgstr "" + +#. Translators: This is a past-tense verb that is used for task action +#. messages. +#: lms/djangoapps/certificates/models.py +msgid "regenerated" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/certificates/models.py +#: lms/djangoapps/instructor_task/tasks.py +msgid "generated" +msgstr "" + +#. Translators: This string represents task was executed for all learners. +#: lms/djangoapps/certificates/models.py +msgid "All learners" +msgstr "" + +#. Translators: This string represents task was executed for students having +#. exceptions. +#: lms/djangoapps/certificates/models.py +msgid "For exceptions" +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "" +"A human-readable description of the example certificate. For example, " +"'verified' or 'honor' to differentiate between two types of certificates." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "" +"A unique identifier for the example certificate. This is used when we " +"receive a response from the queue to determine which example certificate was" +" processed." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "" +"An access key for the example certificate. This is used when we receive a " +"response from the queue to validate that the sender is the same entity we " +"asked to generate the certificate." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "The full name that will appear on the certificate." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "The template file to use when generating the certificate." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "The status of the example certificate." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "The reason an error occurred during certificate generation." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "The download URL for the generated certificate." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "Name of template." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "Description and/or admin notes." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "Django template HTML." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "Organization of template." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "The course mode for this template." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "On/Off switch." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "Description of the asset." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "Asset file. It could be an image or css file." +msgstr "" + +#: lms/djangoapps/certificates/models.py +msgid "" +"Asset's unique slug. We can reference the asset in templates using this " +"value." +msgstr "" + +#: lms/djangoapps/certificates/views/support.py +msgid "user is not given." +msgstr "" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "user '{user}' does not exist" +msgstr "" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "Course id '{course_id}' is not valid" +msgstr "" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "The course does not exist against the given key '{course_key}'" +msgstr "" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "User {username} does not exist" +msgstr "" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "{course_key} is not a valid course key" +msgstr "" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "The course {course_key} does not exist" +msgstr "" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "User {username} is not enrolled in the course {course_key}" +msgstr "" + +#: lms/djangoapps/certificates/views/support.py +msgid "An unexpected error occurred while regenerating certificates." +msgstr "" + +#. Translators: This text describes the 'Honor' course certificate type. +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"An {cert_type} certificate signifies that a learner has agreed to abide by " +"the honor code established by {platform_name} and has completed all of the " +"required tasks for this course under its guidelines." +msgstr "" + +#. Translators: This text describes the 'ID Verified' course certificate +#. type, which is a higher level of +#. verification offered by edX. This type of verification is useful for +#. professional education/certifications +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"A {cert_type} certificate signifies that a learner has agreed to abide by " +"the honor code established by {platform_name} and has completed all of the " +"required tasks for this course under its guidelines. A {cert_type} " +"certificate also indicates that the identity of the learner has been checked" +" and is valid." +msgstr "" + +#. Translators: This text describes the 'XSeries' course certificate type. +#. An XSeries is a collection of +#. courses related to each other in a meaningful way, such as a specific topic +#. or theme, or even an organization +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"An {cert_type} certificate demonstrates a high level of achievement in a " +"program of study, and includes verification of the student's identity." +msgstr "" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{month} {day}, {year}" +msgstr "" + +#. Translators: This text represents the verification of the certificate +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"This is a valid {platform_name} certificate for {user_name}, who " +"participated in {partner_short_name} {course_number}" +msgstr "" + +#. Translators: This text is bound to the HTML 'title' element of the page +#. and appears in the browser title bar +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{partner_short_name} {course_number} Certificate | {platform_name}" +msgstr "" + +#. Translators: This text fragment appears after the student's name +#. (displayed in a large font) on the certificate +#. screen. The text describes the accomplishment represented by the +#. certificate information displayed to the user +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"successfully completed, received a passing grade, and was awarded this " +"{platform_name} {certificate_type} Certificate of Completion in " +msgstr "" + +#. Translators: This text describes the purpose (and therefore, value) of a +#. course certificate +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"{platform_name} acknowledges achievements through certificates, which are " +"awarded for course activities that {platform_name} students complete." +msgstr "" + +#. Translators: 'All rights reserved' is a legal term used in copyrighting to +#. protect published content +#: lms/djangoapps/certificates/views/webview.py +msgid "All rights reserved" +msgstr "" + +#. Translators: This text is bound to the HTML 'title' element of the page +#. and appears +#. in the browser title bar when a requested certificate is not found or +#. recognized +#: lms/djangoapps/certificates/views/webview.py +msgid "Invalid Certificate" +msgstr "" + +#. Translators: This line appears as a byline to a header image and describes +#. the purpose of the page +#: lms/djangoapps/certificates/views/webview.py +msgid "Certificate Validation" +msgstr "" + +#. Translators: Accomplishments describe the awards/certifications obtained by +#. students on this platform +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "About {platform_name} Accomplishments" +msgstr "" + +#. Translators: This line appears on the page just before the generation date +#. for the certificate +#: lms/djangoapps/certificates/views/webview.py +msgid "Issued On" +msgstr "" + +#. Translators: The Certificate ID Number is an alphanumeric value unique to +#. each individual certificate +#: lms/djangoapps/certificates/views/webview.py +msgid "Certificate ID Number" +msgstr "" + +#: lms/djangoapps/certificates/views/webview.py +#: lms/templates/certificates/invalid.html +#, python-brace-format +msgid "About {platform_name} Certificates" +msgstr "" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "How {platform_name} Validates Student Certificates" +msgstr "" + +#. Translators: This text describes the validation mechanism for a +#. certificate file (known as GPG security) +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"Certificates issued by {platform_name} are signed by a gpg key so that they " +"can be validated independently by anyone with the {platform_name} public " +"key. For independent verification, {platform_name} uses what is called a " +"\"detached signature\""\"." +msgstr "" + +#: lms/djangoapps/certificates/views/webview.py +msgid "Validate this certificate for yourself" +msgstr "" + +#. Translators: This text describes (at a high level) the mission and charter +#. the edX platform and organization +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{platform_name} offers interactive online classes and MOOCs." +msgstr "" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "About {platform_name}" +msgstr "" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "Learn more about {platform_name}" +msgstr "" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "Learn with {platform_name}" +msgstr "" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "Work at {platform_name}" +msgstr "" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "Contact {platform_name}" +msgstr "" + +#. Translators: This text appears near the top of the certficate and +#. describes the guarantee provided by edX +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{platform_name} acknowledges the following student accomplishment" +msgstr "" + +#. Translators: This text represents the description of course +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"a course of study offered by {partner_short_name}, an online learning " +"initiative of {partner_long_name}." +msgstr "" + +#. Translators: This text represents the description of course +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "a course of study offered by {partner_short_name}." +msgstr "" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "I completed the {course_title} course on {platform_name}." +msgstr "" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"I completed a course at {platform_name}. Take a look at my certificate." +msgstr "" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "More Information About {user_name}'s Certificate:" +msgstr "" + +#. Translators: This line is displayed to a user who has completed a course +#. and achieved a certification +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{fullname}, you earned a certificate!" +msgstr "" + +#. Translators: This line congratulates the user and instructs them to share +#. their accomplishment on social networks +#: lms/djangoapps/certificates/views/webview.py +msgid "" +"Congratulations! This page summarizes what you accomplished. Show it off to " +"family, friends, and colleagues in your social and professional networks." +msgstr "" + +#. Translators: This line leads the reader to understand more about the +#. certificate that a student has been awarded +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "More about {fullname}'s accomplishment" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/schedules/admin.py +#: lms/templates/staff_problem_info.html +#: lms/templates/api_admin/catalogs/search.html +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Username" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "Opened by this number of students" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "subsections" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "Count of Students" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "Percent of Students" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Score" +msgstr "" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "problems" +msgstr "" + +#: lms/djangoapps/commerce/api/v1/serializers.py +#, python-brace-format +msgid "{course_id} is not a valid course key." +msgstr "" + +#: lms/djangoapps/commerce/api/v1/serializers.py +#, python-brace-format +msgid "Course {course_id} does not exist." +msgstr "" + +#: lms/djangoapps/commerce/models.py +msgid "Use the checkout page hosted by the E-Commerce service." +msgstr "" + +#: lms/djangoapps/commerce/models.py +msgid "Path to course(s) checkout page hosted by the E-Commerce service." +msgstr "" + +#: lms/djangoapps/commerce/models.py openedx/core/djangoapps/catalog/models.py +#: openedx/core/djangoapps/credentials/models.py +#: openedx/core/djangoapps/credit/models.py +msgid "Cache Time To Live" +msgstr "" + +#: lms/djangoapps/commerce/models.py +#: openedx/core/djangoapps/credentials/models.py +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Specified in seconds. Enable caching by setting this to a value greater than" +" 0." +msgstr "" + +#: lms/djangoapps/commerce/models.py +msgid "Path to order receipt page." +msgstr "" + +#: lms/djangoapps/commerce/models.py +msgid "Automatically approve valid refund requests, without manual processing" +msgstr "" + +#: lms/djangoapps/commerce/utils.py lms/djangoapps/shoppingcart/models.py +msgid "[Refund] User-Requested Refund" +msgstr "" + +#: lms/djangoapps/commerce/utils.py +#, python-brace-format +msgid "" +"A refund request has been initiated for {username} ({email}). To process " +"this request, please visit the link(s) below." +msgstr "" + +#: lms/djangoapps/commerce/views.py lms/djangoapps/shoppingcart/pdf.py +msgid "Receipt" +msgstr "" + +#: lms/djangoapps/commerce/views.py +msgid "Payment Failed" +msgstr "" + +#: lms/djangoapps/commerce/views.py +msgid "There was a problem with this transaction. You have not been charged." +msgstr "" + +#: lms/djangoapps/commerce/views.py +msgid "" +"Make sure your information is correct, or try again with a different card or" +" another form of payment." +msgstr "" + +#: lms/djangoapps/commerce/views.py +msgid "" +"A system error occurred while processing your payment. You have not been " +"charged." +msgstr "" + +#: lms/djangoapps/commerce/views.py +msgid "Please wait a few minutes and then try again." +msgstr "" + +#: lms/djangoapps/commerce/views.py +#, python-brace-format +msgid "For help, contact {payment_support_link}." +msgstr "" + +#: lms/djangoapps/commerce/views.py +msgid "An error occurred while creating your receipt." +msgstr "" + +#: lms/djangoapps/commerce/views.py +#, python-brace-format +msgid "" +"If your course does not appear on your dashboard, contact " +"{payment_support_link}." +msgstr "" + +#: lms/djangoapps/course_goals/models.py +msgid "Earn a certificate" +msgstr "" + +#: lms/djangoapps/course_goals/models.py +msgid "Complete the course" +msgstr "" + +#: lms/djangoapps/course_goals/models.py +msgid "Explore the course" +msgstr "" + +#: lms/djangoapps/course_goals/models.py +msgid "Not sure yet" +msgstr "" + +#: lms/djangoapps/course_wiki/tab.py lms/djangoapps/course_wiki/views.py +#: lms/templates/wiki/base.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Wiki" +msgstr "" + +#. Translators: this string includes wiki markup. Leave the ** and the _ +#. alone. +#: lms/djangoapps/course_wiki/views.py +#, python-brace-format +msgid "This is the wiki for _{course_name}_." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Course page automatically created." +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +#, python-brace-format +msgid "Welcome to the {platform_name} Wiki" +msgstr "" + +#: lms/djangoapps/course_wiki/views.py +msgid "Visit a course wiki to add an article." +msgstr "" + +#: lms/djangoapps/courseware/access_response.py +msgid "Course has not started" +msgstr "" + +#: lms/djangoapps/courseware/access_response.py +msgid "Course does not start until {}" +msgstr "" + +#: lms/djangoapps/courseware/access_response.py +msgid "You have unfulfilled milestones" +msgstr "" + +#: lms/djangoapps/courseware/access_response.py +msgid "You do not have access to this course" +msgstr "" + +#: lms/djangoapps/courseware/access_response.py +msgid "You do not have access to this course on a mobile device" +msgstr "" + +#: lms/djangoapps/courseware/course_tools.py +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Upgrade to Verified" +msgstr "" + +#. Translators: 'absolute' is a date such as "Jan 01, +#. 2020". 'relative' is a fuzzy description of the time until +#. 'absolute'. For example, 'absolute' might be "Jan 01, 2020", +#. and if today were December 5th, 2020, 'relative' would be "1 +#. month". +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "{relative} ago - {absolute}" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "in {relative} - {absolute}" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Course Starts" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Don't forget to add a calendar reminder!" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "Course starts in {time_remaining_string} on {course_start_date}." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "Course starts in {time_remaining_string} at {course_start_time}." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Course End" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"To earn a certificate, you must complete all requirements before this date." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "After this date, course content will be archived." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"This course is archived, which means you can review course content but it is" +" no longer active." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "This course is ending in {time_remaining_string} on {course_end_date}." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "This course is ending in {time_remaining_string} at {course_end_time}." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Certificate Available" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Day certificates will become available for passing verified learners." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "" +"If you have earned a certificate, you will be able to access it " +"{time_remaining_string} from now. You will also be able to view your " +"certificates on your {learner_profile_link}." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "Learner Profile" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "We are working on generating course certificates." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Upgrade to Verified Certificate" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Verification Upgrade Deadline" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"Don't miss the opportunity to highlight your new knowledge and skills by " +"earning a verified certificate." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"You are still eligible to upgrade to a Verified Certificate! Pursue it to " +"highlight the knowledge and skills you gain in this course." +msgstr "" + +#. Translators: This describes the time by which the user +#. should upgrade to the verified track. 'date' will be +#. their personalized verified upgrade deadline formatted +#. according to their locale. +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "by {date}" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "" +"Don't forget, you have {time_remaining_string} left to upgrade to a Verified" +" Certificate." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "Don't forget to upgrade to a verified certificate by {localized_date}." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "" +"In order to qualify for a certificate, you must meet all course grading " +"requirements, upgrade before the course deadline, and successfully verify " +"your identity on {platform_name} if you have not done so " +"already.{button_panel}" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "Upgrade ({upgrade_price})" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +#: cms/templates/group_configurations.html +#: lms/templates/courseware/program_marketing.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Learn More" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Retry Verification" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Verify My Identity" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Missed Verification Deadline" +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"Unfortunately you missed this course's deadline for a successful " +"verification." +msgstr "" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"You must successfully complete verification before this date to qualify for " +"a Verified Certificate." +msgstr "" + +#: lms/djangoapps/courseware/masquerade.py +#, python-brace-format +msgid "" +"There is no user with the username or email address \"{user_identifier}\" " +"enrolled in this course." +msgstr "" + +#: lms/djangoapps/courseware/masquerade.py +msgid "" +"This user does not have access to this content because" +" the content start date is in the future" +msgstr "" + +#: lms/djangoapps/courseware/masquerade.py +msgid "" +"This type of component cannot be shown while viewing the course as a " +"specific student." +msgstr "" + +#: lms/djangoapps/courseware/models.py +msgid "" +"Number of days a learner has to upgrade after content is made available" +msgstr "" + +#: lms/djangoapps/courseware/models.py +msgid "Disable the dynamic upgrade deadline for this course run." +msgstr "" + +#: lms/djangoapps/courseware/models.py +msgid "Disable the dynamic upgrade deadline for this organization." +msgstr "" + +#: lms/djangoapps/courseware/tabs.py lms/templates/courseware/syllabus.html +msgid "Syllabus" +msgstr "" + +#: lms/djangoapps/courseware/tabs.py +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Progress" +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: 'Textbooks' refers to the tab in the course that leads to the +#. course' textbooks +#: lms/djangoapps/courseware/tabs.py cms/templates/textbooks.html +#: cms/templates/widgets/header.html +msgid "Textbooks" +msgstr "" + +#: lms/djangoapps/courseware/views/index.py +#, python-brace-format +msgid "" +"You are not signed in. To see additional course content, {sign_in_link} or " +"{register_link}, and enroll in this course." +msgstr "" + +#: lms/djangoapps/courseware/views/index.py +#: lms/djangoapps/courseware/views/views.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "sign in" +msgstr "" + +#: lms/djangoapps/courseware/views/index.py +#: lms/djangoapps/courseware/views/views.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +#: openedx/features/course_experience/views/course_home_messages.py +msgid "register" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your enrollment: Audit track" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"You are enrolled in the audit track for this course. The audit track does " +"not include a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your enrollment: Honor track" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"You are enrolled in the honor track for this course. The honor track does " +"not include a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "We're working on it..." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"We're creating your certificate. You can keep working in your courses and a " +"link to it will appear here and on your Dashboard when it is ready." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your certificate has been invalidated" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Please contact your course team if you have any questions." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Congratulations, you qualified for a certificate!" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "You've earned a certificate for this course." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Certificate unavailable" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "" +"You have not received a certificate because you do not have a current " +"{platform_name} verified identity." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your certificate is available" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "To see course content, {sign_in_link} or {register_link}." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "" +"You must be enrolled in the course to see course content." +" {enroll_link_start}Enroll now{enroll_link_end}." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +msgid "You must be enrolled in the course to see course content." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Invalid location." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "User {username} has never accessed problem {location}" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Course is not valid" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your certificate will be available when you pass the course." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Certificate has already been created." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Certificate is being created." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "" +"{platform_name} now offers financial assistance for learners who want to earn Verified Certificates but who may not be able to pay the Verified Certificate fee. Eligible learners may receive up to 90{percent_sign} off the Verified Certificate fee for a course.\n" +"To apply for financial assistance, enroll in the audit track for a course that offers Verified Certificates, and then complete this application. Note that you must complete a separate application for each course you take.\n" +" We plan to use this information to evaluate your application for financial assistance and to further develop our financial assistance program." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Annual Household Income" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your current financial situation. Why do you need assistance?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your learning or professional goals. How will a Verified " +"Certificate in this course help you achieve these goals?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your plans for this course. What steps will you take to help " +"you complete the course work and receive a certificate?" +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Use between 250 and 500 words or so in your response." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Select the course for which you want to earn a verified certificate. If the " +"course does not appear in the list, make sure that you have enrolled in the " +"audit track for the course." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "Specify your annual household income in US Dollars." +msgstr "" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"I allow EliteMBA to use the information provided in this application (except" +" for financial information) for EliteMBA marketing purposes." +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +#, python-brace-format +msgid "" +"Path {0} doesn't exist, please create it, or configure a different path with" +" GIT_REPO_DIR" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Non usable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to get git log" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "git clone or pull failed!" +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to run import command." +msgstr "" + +#: lms/djangoapps/dashboard/git_import.py +msgid "The underlying module store does not support import." +msgstr "" + +#. Translators: This is an error message when they ask for a +#. particular version of a git repository and that version isn't +#. available from the remote source they specified +#: lms/djangoapps/dashboard/git_import.py +msgid "The specified remote branch is not available." +msgstr "" + +#. Translators: Error message shown when they have asked for a git +#. repository branch, a specific version within a repository, that +#. doesn't exist, or there is a problem changing to it. +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to switch to specified branch. Please check your branch name." +msgstr "" + +#: lms/djangoapps/dashboard/management/commands/git_add_course.py +msgid "" +"Import the specified git repository and optional branch into the modulestore" +" and optionally specified directory." +msgstr "" + +#. Translators: This message means that the user could not be authenticated +#. (that is, we could +#. not log them in for some reason - maybe they don't have permission, or +#. their password was wrong) +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Failed in authenticating {username}, error {error}\n" +msgstr "" + +#. Translators: This message means that the user could not be authenticated +#. (that is, we could +#. not log them in for some reason - maybe they don't have permission, or +#. their password was wrong) +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Failed in authenticating {username}\n" +msgstr "" + +#. Translators: this means that the password has been corrected (sometimes the +#. database needs to be resynchronized) +#. Translate this as meaning "the password was fixed" or "the password was +#. corrected". +#: lms/djangoapps/dashboard/sysadmin.py +msgid "fixed password" +msgstr "" + +#. Translators: this means everything happened successfully, yay! +#: lms/djangoapps/dashboard/sysadmin.py +msgid "All ok!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Must provide username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Must provide full name" +msgstr "" + +#. Translators: Domain is an email domain, such as "@gmail.com" +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Email address must end in {domain}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Failed - email {email_addr} already exists as {external_id}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Password must be supplied if not using certificates" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email address required (not username)" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Oops, failed to create user {user}, {error}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "User {user} created successfully!" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Cannot find user with email address {email_addr}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Cannot find user with username {username} - {error}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Deleted user {username}" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Statistic" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Value" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Site statistics" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Total number of users" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Courses loaded in the modulestore" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/support/views/manage_user.py lms/templates/tracking_log.html +msgid "username" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Repair Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Create User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Delete User Results" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "The git repo location should end with '.git', and be a valid url" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Added Course" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html +#: lms/templates/support/feature_based_enrollments.html +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Course Name" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Directory/ID" +msgstr "" + +#. Translators: "Git Commit" is a computer command; see +#. http://gitref.org/basic/#commit +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Git Commit" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Change" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Editor" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Information about all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Error - cannot get course with ID {0}
    {1}
    " +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "course_id" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# enrolled" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# staff" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "instructors" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Enrollment information for all courses" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "role" +msgstr "" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "full_name" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to %(thread_title)s:" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Title can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Body can't be empty" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Topic doesn't exist" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Comment level too deep" +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "" +"Error uploading file. Please contact the site administrator. Thank you." +msgstr "" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Good" +msgstr "" + +#: lms/djangoapps/edxnotes/helpers.py +msgid "EdxNotes Service is unavailable. Please try again in a few minutes." +msgstr "" + +#: lms/djangoapps/edxnotes/helpers.py +msgid "Invalid JSON response received from notes api." +msgstr "" + +#: lms/djangoapps/edxnotes/helpers.py +msgid "Incorrect data received from notes api." +msgstr "" + +#: lms/djangoapps/edxnotes/helpers.py +msgid "No endpoint was provided for EdxNotes." +msgstr "" + +#: lms/djangoapps/edxnotes/plugins.py lms/templates/edxnotes/edxnotes.html +msgid "Notes" +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "API key for accessing Sailthru. " +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "API secret for accessing Sailthru. " +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru list name to add new users to. " +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru connection retry interval (secs)." +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru maximum retries." +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru template to use on welcome send." +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru template to use on abandoned cart reminder. Deprecated." +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "" +"Sailthru minutes to wait before sending abandoned cart message. Deprecated." +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on enrolling for audit. " +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on passed ID verification." +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on failed ID verification." +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on upgrading a course. Deprecated " +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on purchasing a course seat. Deprecated " +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "Use the Sailthru content API to fetch course tags." +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "Number of seconds to cache course content retrieved from Sailthru." +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "Cost in cents to report to Sailthru for enrolls." +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "" +"Optional lms url scheme + host used to construct urls for content library, " +"e.g. https://courses.edx.org." +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "" +"Number of seconds to delay the sending of User Welcome email after user has " +"been created" +msgstr "" + +#: lms/djangoapps/email_marketing/models.py +msgid "" +"The number of seconds to delay/timeout wait to get cookie values from " +"sailthru." +msgstr "" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#, python-brace-format +msgid "{platform_name} Staff" +msgstr "" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Course Staff" +msgstr "" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: lms/templates/preview_menu.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Staff" +msgstr "" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Used Registration Code" +msgstr "" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Credit Card - Individual" +msgstr "" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#, python-brace-format +msgid "manually enrolled by username: {username}" +msgstr "" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Manually Enrolled" +msgstr "" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Data Integrity Error" +msgstr "" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "TBD" +msgstr "" + +#: lms/djangoapps/instructor/services.py +#, python-brace-format +msgid "Proctored Exam Review: {review_status}" +msgstr "" + +#: lms/djangoapps/instructor/services.py +#, python-brace-format +msgid "" +"A proctored exam attempt for {exam_name} in {course_name} by username: {student_username} was reviewed as {review_status} by the proctored exam review provider.\n" +"Review link: {review_url}" +msgstr "" + +#: lms/djangoapps/instructor/settings/common.py +msgid "Your Platform Insights" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"The {report_type} report is being created. To view the status of the report," +" see Pending Tasks below." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "User does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Found a conflict with given identifier. Please try an alternative identifier" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Make sure that the file you upload is in CSV format with no extraneous " +"characters or rows." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Could not read uploaded file." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Data in row #{row_num} must have exactly four columns: email, username, full" +" name, and country" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Invalid email {email_address}." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"An account with email {email} exists but the provided username {username} is" +" different. Enrolling anyway with {email}." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "File is not attached." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Username {user} already exists." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Error '{error}' while sending email to new user (user email={email}). " +"Without the email student would not be able to login. Please contact support" +" for further information." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "problem responses" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Could not find problem with this location." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Invoice number '{num}' does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "The sale associated with this invoice has already been invalidated." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Invoice number {0} has been invalidated." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "This invoice is already active." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "The registration codes for invoice {0} have been re-activated." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "CourseID" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Certificate Type" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Total Certificates Issued" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Date Report Run" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "enrolled learner profile" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "User ID" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Email" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Language" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Location" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Birth Year" +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's gender. +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/api.py lms/templates/register-form.html +#: lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Gender" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Level of Education" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Mailing Address" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Goals" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Enrollment Mode" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Verification Status" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Cohort" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Team" +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the city in which they live. +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py lms/templates/register-form.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/shoppingcart/receipt.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "City" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: lms/templates/register-form.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/shoppingcart/receipt.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Country" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "enrollment" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "The file must contain a 'cohort' column containing cohort names." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "The file must contain a 'username' column, an 'email' column, or both." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Coupon Code" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: openedx/core/djangoapps/schedules/admin.py +msgid "Course Id" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "% Discount" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py lms/djangoapps/shoppingcart/pdf.py +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: wiki/plugins/attachments/forms.py +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +msgid "Description" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Is Active" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Code Redeemed Count" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Total Discounted Seats" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Total Discounted Amount" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "detailed enrollment" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "executive summary" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "survey" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "proctored exam results" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Could not parse amount as a decimal" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Unable to generate redeem codes because of course misconfiguration." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/shoppingcart/models.py +msgid "pdf download unavailable right now, please contact support." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: unknown" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: active" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: inactive" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: pending" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: never enrolled" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "An error occurred while deleting the score." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Course has no entrance exam section." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "all_students and unique_student_identifier are mutually exclusive." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "all_students and delete_module are mutually exclusive." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Requires instructor access." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Course has no valid entrance exam section." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "All Students" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Cannot rescore with all_students and unique_student_identifier." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "ORA data" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "grade" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "problem grade" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Successfully changed due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Successfully removed invalid due date extension (unit has no due date)." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Successfully reset due date for student {0} for {1} to {2}" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-format +msgid "This student (%s) will skip the entrance exam." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-format +msgid "This student (%s) is already allowed to skip the entrance exam." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Certificate generation task for all students of this course has been " +"started. You can view the status of the generation task in the \"Pending " +"Tasks\" section." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Please select one or more certificate statuses that require certificate " +"regeneration." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Please select certificate statuses from the list only." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Certificate regeneration task has been started. You can view the status of " +"the generation task in the \"Pending Tasks\" section." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Student (username/email={user}) already in certificate exception list." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Certificate exception (user={user}) does not exist in certificate white " +"list. Please refresh the page and try again." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Student username/email field is required and can not be empty. Kindly fill " +"in username/email and then press \"Add to Exception List\" button." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"The record is not in the correct format. Please add a valid username or " +"email address." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"{user} does not exist in the LMS. Please check your spelling and retry." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"{user} is not enrolled in this course. Please check your spelling and retry." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Invalid data, generate_for must be \"new\" or \"all\"." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "Certificate generation started for white listed students." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "user \"{user}\" in row# {row}" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "user \"{username}\" in row# {row}" +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Certificate of {user} has already been invalidated. Please check your " +"spelling and retry." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Certificate for student {user} is already invalid, kindly verify that " +"certificate was generated for this student and then proceed." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Certificate Invalidation does not exist, Please refresh the page and try " +"again." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Student username/email field is required and can not be empty. Kindly fill " +"in username/email and then press \"Invalidate Certificate\" button." +msgstr "" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"The student {student} does not have certificate for the course {course}. " +"Kindly verify student username/email and the selected course are correct and" +" try again." +msgstr "" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "coupon id is None" +msgstr "" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" +msgstr "" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon id ({coupon_id}) is already inactive" +msgstr "" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon id ({coupon_id}) updated successfully" +msgstr "" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "" +"The code ({code}) that you have tried to define is already in use as a " +"registration code" +msgstr "" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "Please Enter the Integer Value for Coupon Discount" +msgstr "" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "Please Enter the Coupon Discount Value Less than or Equal to 100" +msgstr "" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "Please enter the date in this format i-e month/day/year" +msgstr "" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon code ({code}) added successfully" +msgstr "" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon code ({code}) already exists for this course" +msgstr "" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "coupon id not found" +msgstr "" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon id ({coupon_id}) updated Successfully" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Instructor" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#, python-brace-format +msgid "" +"To gain insights into student enrollment and participation {link_start}visit" +" {analytics_dashboard_name}, our new course analytics product{link_end}." +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "E-Commerce" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Special Exams" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/djangoapps/support/views/index.py cms/templates/certificates.html +#: cms/templates/export.html cms/templates/widgets/header.html +msgid "Certificates" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Please Enter the numeric value for the course price" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#, python-brace-format +msgid "CourseMode with the mode slug({mode_slug}) DoesNotExist" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "CourseMode price updated successfully" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Course Info" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#, python-brace-format +msgid "Enrollment data is now available in {dashboard_link}." +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Membership" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Cohorts" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html +msgid "Discussions" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/ccx/coach_dashboard.html +msgid "Student Admin" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Extensions" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Data Download" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Analytics" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Metrics" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Open Responses" +msgstr "" + +#. Translators: number sent refers to the number of emails sent +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +msgid "0 sent" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +#, python-brace-format +msgid "{num_emails} sent" +msgid_plural "{num_emails} sent" +msgstr[0] "" +msgstr[1] "" + +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +#, python-brace-format +msgid "{num_emails} failed" +msgid_plural "{num_emails} failed" +msgstr[0] "" +msgstr[1] "" + +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +msgid "Complete" +msgstr "" + +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +msgid "Incomplete" +msgstr "" + +#: lms/djangoapps/instructor/views/registration_codes.py +#, python-brace-format +msgid "" +"The enrollment code ({code}) was not found for the {course_name} course." +msgstr "" + +#: lms/djangoapps/instructor/views/registration_codes.py +msgid "This enrollment code has been canceled. It can no longer be used." +msgstr "" + +#: lms/djangoapps/instructor/views/registration_codes.py +msgid "This enrollment code has been marked as unused." +msgstr "" + +#: lms/djangoapps/instructor/views/registration_codes.py +msgid "The enrollment code has been restored." +msgstr "" + +#: lms/djangoapps/instructor/views/registration_codes.py +#, python-brace-format +msgid "The redemption does not exist against enrollment code ({code})." +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Could not find student matching identifier: {student_identifier}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unable to parse date: " +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Couldn't find module for url: {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Unit {0} has no due date to extend." +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "An extended due date must be later than the original due date." +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "No due date extension is set for that student and unit." +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's full name. +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/api.py cms/templates/register.html +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Full Name" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Extended Due Date" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Users with due date extensions for {0}" +msgstr "" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Due date extensions for {0} {1} ({2})" +msgstr "" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "Requested task is already running" +msgstr "" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "Error occured. Please try again later." +msgstr "" + +#: lms/djangoapps/instructor_task/api_helper.py +#, python-brace-format +msgid "" +"The {report_type} report is being created. To view the status of the report," +" see Pending Tasks below. You will be able to download the report when it is" +" complete." +msgstr "" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "This component cannot be rescored." +msgstr "" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "This component does not support score override." +msgstr "" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "Scores must be between 0 and the value of the problem." +msgstr "" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "Not all problems in entrance exam support re-scoring." +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "rescored" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/djangoapps/instructor_task/tasks_helper/module_state.py +msgid "overridden" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "reset" +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/templates/wiki/plugins/attachments/index.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/models/article.py +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +#: wiki/templates/wiki/includes/revision_info.html +msgid "deleted" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "emailed" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "graded" +msgstr "" + +#. Translators: This is a past-tense phrase that is inserted into task +#. progress messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "problem distribution graded" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "generating_enrollment_report" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "certificates generated" +msgstr "" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#. An example of such a message is: "Progress: {action} {succeeded} of +#. {attempted} so far" +#: lms/djangoapps/instructor_task/tasks.py +msgid "cohorted" +msgstr "" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the First Name +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "First Name" +msgstr "" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the First Name +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Last Name" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: lms/templates/shoppingcart/receipt.html +msgid "Company Name" +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the Title +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py wiki/forms.py +#: wiki/templates/wiki/dir.html +msgid "Title" +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's year of birth. +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/api.py lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Year of Birth" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Enrollment Date" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Currently Enrolled" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Enrollment Source" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Manual (Un)Enrollment Reason" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Enrollment Role" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "List Price" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Payment Amount" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Coupon Codes Used" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Registration Code Used" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Payment Status" +msgstr "" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Transaction Reference Number" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "No task_output information found for instructor_task {0}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "No parsable task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No message provided" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Invalid task_output information found for instructor_task {0}: {1}" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +msgid "No progress status information available" +msgstr "" + +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "No parsable task_input information found for instructor_task {0}: {1}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} and {succeeded} are counts. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Progress: {action} {succeeded} of {attempted} so far" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Unable to find submission to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem failed to be {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem successfully {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "" +"Unable to find entrance exam submission to be {action} for student " +"'{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Entrance exam successfully {action} for student '{student}'" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Unable to find any students with submissions to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem failed to be {action} for any of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem successfully {action} for {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem {action} for {succeeded} of {attempted} students" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Unable to find any recipients to be {action}" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Message failed to be {action} for any of {attempted} recipients " +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Message successfully {action} for {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Message {action} for {succeeded} of {attempted} recipients" +msgstr "" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Status: {action} {succeeded} of {attempted}" +msgstr "" + +#. Translators: {skipped} is a count. This message is appended to task +#. progress status messages. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid " (skipping {skipped})" +msgstr "" + +#. Translators: {total} is a count. This message is appended to task progress +#. status messages. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid " (out of {total})" +msgstr "" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"This component's access settings refer to deleted or invalid group " +"configurations." +msgstr "" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"This unit's access settings refer to deleted or invalid group " +"configurations." +msgstr "" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "This component's access settings refer to deleted or invalid groups." +msgstr "" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "This unit's access settings refer to deleted or invalid groups." +msgstr "" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"This component's access settings contradict its parent's access settings." +msgstr "" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "Whether to display this module in the table of contents" +msgstr "" + +#. Translators: "TOC" stands for "Table of Contents" +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"What format this module is in (used for deciding which grader to apply, and " +"what to show in the TOC)" +msgstr "" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "Course Chrome" +msgstr "" + +#. Translators: DO NOT translate the words in quotes here, they are +#. specific words for the acceptable values. +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"Enter the chrome, or navigation tools, to use for the XBlock in the LMS. Valid values are: \n" +"\"chromeless\" -- to not use tabs or the accordion; \n" +"\"tabs\" -- to use tabs only; \n" +"\"accordion\" -- to use the accordion only; or \n" +"\"tabs,accordion\" -- to use tabs and the accordion." +msgstr "" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "Default Tab" +msgstr "" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"Enter the tab that is selected in the XBlock. If not set, the Course tab is " +"selected." +msgstr "" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "LaTeX Source File Name" +msgstr "" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "Enter the source file name for LaTeX." +msgstr "" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"A dictionary that maps which groups can be shown this block. The keys are " +"group configuration ids and the values are a list of group IDs. If there is " +"no key for a group configuration or if the set of group IDs is empty then " +"the block is considered visible to all. Note that this field is ignored if " +"the block is visible_to_staff_only." +msgstr "" + +#: lms/djangoapps/mobile_api/views.py +msgid "Missing requested parameter 'platform'" +msgstr "" + +#: lms/djangoapps/mobile_api/views.py +msgid "Unable to find information about the latest version of the platform" +msgstr "" + +#: lms/djangoapps/notes/views.py lms/templates/notes.html +msgid "My Notes" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Order Payment Confirmation" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"Confirmation and Registration Codes for the following courses: " +"{course_name_list}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Trying to add a different currency into the cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Internal reference code for this invoice." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Customer's reference code for this invoice." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"The amount of the transaction. Use positive amounts for payments and " +"negative amounts for refunds." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Lower-case ISO currency codes" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Optional: provide additional information for this transaction" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"The status of the payment or refund. 'started' means that payment is " +"expected, but money has not yet been transferred. 'completed' means that the" +" payment or refund was received. 'cancelled' means that payment or refund " +"was expected, but was cancelled before money was transferred. " +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "The number of items sold." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "The price per item sold, including discounts." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Registration for Course: {course_name}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"Please visit your {link_start}dashboard{link_end} to see your new course." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Enrollment codes for Course: {course_name}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Mode {mode} does not exist for {course_id}" +msgstr "" + +#. Translators: In this particular case, mode_name refers to a +#. particular mode (i.e. Honor Code Certificate, Verified Certificate, etc) +#. by which a user could enroll in the given course. +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "{mode_name} for course {course}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"You can unenroll in the course and receive a full refund for 14 days after " +"the course start date. " +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"If you haven't verified your identity yet, please start the verification " +"process ({verification_url})." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"You can unenroll in the course and receive a full refund for 2 days after " +"the course start date. " +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"{refund_reminder_msg}To receive your refund, contact {billing_email}. Please" +" include your order number in your email. Please do NOT include your credit " +"card information." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"We greatly appreciate this generous contribution and your support of the " +"{platform_name} mission. This receipt was prepared to support charitable " +"contributions for tax purposes. We confirm that neither goods nor services " +"were provided in exchange for this gift." +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Could not find a course with the ID '{course_id}'" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Donation for {course}" +msgstr "" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Donation for {platform_name}" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py +#, python-brace-format +msgid "Page {page_number} of {page_count}" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html +msgid "Invoice" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "Order" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py +#, python-brace-format +msgid "{id_label} # {item_id}" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +#, python-brace-format +msgid "Date: {date}" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/reports.py +msgid "Quantity" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "" +"List Price\n" +"per item" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "" +"Discount\n" +"per item" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "Amount" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/courseware/gradebook.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/receipt.html +msgid "Total" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "Payment Received" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py membership/models.py +msgid "Balance" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "Billing Address" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py openedx/core/djangoapps/user_api/api.py +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/disclaimer.html +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Disclaimer" +msgstr "" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "TERMS AND CONDITIONS" +msgstr "" + +#. Translators: this text appears when an unfamiliar error code occurs during +#. payment, +#. for which we don't know a user-friendly message to display in advance. +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "UNKNOWN REASON" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "The payment processor did not return a required parameter: {parameter}" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"The payment processor returned a badly-typed value {value} for parameter " +"{parameter}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The payment processor accepted an order whose number is not in our system." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"The amount charged by the processor {charged_amount} " +"{charged_amount_currency} is different than the total cost of the order " +"{total_cost} {total_cost_currency}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Our payment processor did not accept your payment. The decision they" +" returned was {decision}, and the reason was {reason}. You were not " +"charged. Please try a different form of payment. Contact us with payment-" +"related questions at {email}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Our payment processor sent us back a payment confirmation that had " +"inconsistent data! We apologize that we cannot verify whether the charge " +"went through and take further action on your order. The specific error " +"message is: {msg} Your credit card may possibly have been charged. Contact " +"us with payment-specific questions at {email}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Due to an error your purchase was charged for a different amount than" +" the order total! The specific error message is: {msg}. Your credit card has" +" probably been charged. Contact us with payment-specific questions at " +"{email}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Our payment processor sent us back a corrupted message regarding your" +" charge, so we are unable to validate that the message actually came from " +"the payment processor. The specific error message is: {msg}. We apologize " +"that we cannot verify whether the charge went through and take further " +"action on your order. Your credit card may possibly have been charged. " +"Contact us with payment-specific questions at {email}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Our payment processor sent us back a message saying that you have " +"cancelled this transaction. The items in your shopping cart will exist for " +"future purchase. If you feel that this is in error, please contact us with " +"payment-specific questions at {email}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"We're sorry, but this payment was declined. The items in your shopping cart " +"have been saved. If you have any questions about this transaction, please " +"contact us at {email}." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Your payment could not be processed because an unexpected exception " +"occurred. Please contact us at {email} for assistance." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Successful transaction." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The request is missing one or more required fields." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "One or more fields in the request contains invalid data." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The merchant reference code for this authorization request matches the merchant reference code of another\n" +" authorization request that you sent within the past 15 minutes.\n" +" Possible action: Resend the request with a unique merchant reference code.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Only a partial amount was approved." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "General system failure." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The request was received but there was a server timeout. This error does not include timeouts between the\n" +" client and the server.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The request was received, but a service did not finish running in time." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource\n" +" because it did not pass the Address Verification System (AVS).\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The issuing bank has questions about the request. You do not receive an\n" +" authorization code programmatically, but you might receive one verbally by calling the processor.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" Expired card. You might also receive this if the expiration date you\n" +" provided does not match the date the issuing bank has on file.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" General decline of the card. No other information provided by the issuing bank.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"Insufficient funds in the account. Possible action: retry with another form " +"of payment." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Stolen or lost card." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"Issuing bank unavailable. Possible action: retry again after a few minutes." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" Inactive card or card not authorized for card-not-present transactions.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "CVN did not match." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The card has reached the credit limit. Possible action: retry with another " +"form of payment." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"Invalid card verification number (CVN). Possible action: retry with another " +"form of payment." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The customer matched an entry on the processors negative file." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Account frozen. Possible action: retry with another form of payment." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by\n" +" CyberSource because it did not pass the CVN check.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"Invalid account number. Possible action: retry with another form of payment." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The card type is not accepted by the payment processor.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"General decline by the processor. Possible action: retry with another form " +"of payment." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"There is a problem with the information in your CyberSource account. Please" +" let us know at {0}" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The requested capture amount exceeds the originally authorized amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Processor Failure. Possible action: retry the payment" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The authorization has already been reversed." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The authorization has already been captured." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The requested transaction amount must match the previous transaction amount." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The card type sent is invalid or does not correlate with the credit card number.\n" +" Possible action: retry with the same card or another form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The request ID is invalid." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" You requested a capture, but there is no corresponding, unused authorization record. Occurs if there was\n" +" not a previously successful authorization request or if the previously successful authorization has already\n" +" been used by another capture request.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The transaction has already been settled or reversed." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" Either the capture or credit is not voidable because the capture or credit information has already been\n" +" submitted to your processor, or you requested a void for a type of transaction that cannot be voided.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "You requested a credit for a capture that was previously voided." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The request was received, but there was a timeout at the payment processor." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Stand-alone credits are not allowed." +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The cardholder is enrolled for payer authentication" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Payer authentication could not be authenticated" +msgstr "" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource based\n" +" on your legacy Smart Authorization settings.\n" +" Possible action: retry with a different form of payment.\n" +" " +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order Number" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Customer Name" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Original Transaction" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Amount of Refund" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Service Fees (if any)" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Purchase Time" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order ID" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Unit Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Cost" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Currency" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Comments" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "University" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Announce Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Start Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Close Date" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Period" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Enrolled" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Audit Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Honor Code Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Verified Enrollment" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Gross Revenue" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue over the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Verified Students Contributing More than the Minimum" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Dollars Refunded" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Transactions" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Payments Collected" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Successful Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Amount of Refunds" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You must be logged-in to add to a shopping cart" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "The course you requested does not exist." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "The course {course_id} is already in your cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "You are already registered in course {course_id}." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Course added to cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "Discount does not exist against code '{code}'." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "This enrollment code ({enrollment_code}) is no longer valid." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "This enrollment code ({enrollment_code}) is not valid." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "" +"Code '{registration_code}' is not valid for any course in the shopping cart." +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "" +"Cart item quantity should not be greater than 1 when applying activation " +"code" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Only one coupon redemption is allowed against an order" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "success" +msgstr "" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You do not have permission to view this page." +msgstr "" + +#: lms/djangoapps/support/views/index.py +msgid "View and regenerate certificates." +msgstr "" + +#: lms/djangoapps/support/views/index.py lms/templates/support/refund.html +msgid "Manual Refund" +msgstr "" + +#: lms/djangoapps/support/views/index.py +msgid "Track refunds issued directly through CyberSource." +msgstr "" + +#: lms/djangoapps/support/views/index.py +#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/enrollment.html +#: lms/templates/support/enrollment.html +msgid "Enrollment" +msgstr "" + +#: lms/djangoapps/support/views/index.py +msgid "View and update learner enrollments." +msgstr "" + +#: lms/djangoapps/support/views/index.py +#: lms/templates/support/manage_user.html +msgid "Manage User" +msgstr "" + +#: lms/djangoapps/support/views/index.py +msgid "Disable User Account" +msgstr "" + +#: lms/djangoapps/support/views/index.py +#: lms/templates/support/entitlement.html +msgid "Entitlements" +msgstr "" + +#: lms/djangoapps/support/views/index.py +msgid "View, create, and reissue learner entitlements" +msgstr "" + +#: lms/djangoapps/support/views/index.py +#: lms/templates/support/feature_based_enrollments.html +msgid "Feature Based Enrollments" +msgstr "" + +#: lms/djangoapps/support/views/index.py +msgid "View feature based enrollment settings" +msgstr "" + +#: lms/djangoapps/support/views/manage_user.py +msgid "user_support_url" +msgstr "" + +#: lms/djangoapps/support/views/manage_user.py +msgid "user_detail_url" +msgstr "" + +#: lms/djangoapps/support/views/manage_user.py +msgid "Usable" +msgstr "" + +#: lms/djangoapps/support/views/manage_user.py +msgid "Unusable" +msgstr "" + +#: lms/djangoapps/support/views/manage_user.py +msgid "User Enabled Successfully" +msgstr "" + +#: lms/djangoapps/support/views/manage_user.py +msgid "User Disabled Successfully" +msgstr "" + +#: lms/djangoapps/support/views/refund.py +#: lms/templates/shoppingcart/billing_details.html +msgid "Email Address" +msgstr "" + +#: lms/djangoapps/support/views/refund.py +#: openedx/core/djangoapps/schedules/admin.py +#: cms/templates/maintenance/_force_publish_course.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: lms/templates/support/feature_based_enrollments.html +msgid "Course ID" +msgstr "" + +#: lms/djangoapps/support/views/refund.py +msgid "User not found" +msgstr "" + +#: lms/djangoapps/support/views/refund.py +#, python-brace-format +msgid "Course {course_id} not past the refund window." +msgstr "" + +#: lms/djangoapps/support/views/refund.py +#, python-brace-format +msgid "No order found for {user} in course {course_id}" +msgstr "" + +#: lms/djangoapps/support/views/refund.py +#, python-brace-format +msgid "Unenrolled {user} from {course_id}" +msgstr "" + +#: lms/djangoapps/support/views/refund.py +#, python-brace-format +msgid "Refunded {cost} for order id {order_id}" +msgstr "" + +#: lms/djangoapps/teams/models.py +msgid "Optional language the team uses as ISO 639-1 code." +msgstr "" + +#: lms/djangoapps/teams/plugins.py +#: lms/djangoapps/teams/templates/teams/teams.html +msgid "Teams" +msgstr "" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The supplied course id {course_id} is not valid." +msgstr "" + +#: lms/djangoapps/teams/views.py +msgid "course_id must be provided" +msgstr "" + +#: lms/djangoapps/teams/views.py +msgid "text_search and order_by cannot be provided together" +msgstr "" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The supplied topic id {topic_id} is not valid" +msgstr "" + +#: lms/djangoapps/teams/views.py +msgid "Error connecting to elasticsearch" +msgstr "" + +#. Translators: 'ordering' is a string describing a way +#. of ordering a list. For example, {ordering} may be +#. 'name', indicating that the user wants to sort the +#. list by lower case name. +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The ordering {ordering} is not supported" +msgstr "" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The supplied course_id {course_id} is not valid." +msgstr "" + +#: lms/djangoapps/teams/views.py +msgid "You are already in a team in this course." +msgstr "" + +#: lms/djangoapps/teams/views.py +msgid "username or team_id must be specified." +msgstr "" + +#: lms/djangoapps/teams/views.py +msgid "Username is required." +msgstr "" + +#: lms/djangoapps/teams/views.py +msgid "Team id is required." +msgstr "" + +#: lms/djangoapps/teams/views.py +msgid "This team is already full." +msgstr "" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The user {username} is already a member of a team in this course." +msgstr "" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "" +"The user {username} is not enrolled in the course associated with this team." +msgstr "" + +#: lms/djangoapps/verify_student/admin.py +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "Your {platform_name} ID Verification Approved" +msgstr "" + +#: lms/djangoapps/verify_student/admin.py +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "Your {platform_name} Verification Has Been Denied" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "The course for which this deadline applies" +msgstr "" + +#: lms/djangoapps/verify_student/models.py +msgid "" +"The datetime after which users are no longer allowed to submit photos for " +"verification." +msgstr "" + +#: lms/djangoapps/verify_student/services.py +#, python-brace-format +msgid "Your {platform_name} verification has expired." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Intro" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Make payment" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Payment confirmation" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Take photo" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Take a photo of your ID" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Review your info" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Enrollment confirmation" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Selected price is not valid number." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "This course doesn't support paid certificates" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "No selected price or selected price is below minimum." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "" +"Photo ID image is required if the user does not have an initial verification" +" attempt." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Missing required parameter face_image" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Invalid course key" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "No profile found for user" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "Name must be at least {min_length} characters long." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +msgid "Image data is not valid." +msgstr "" + +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "{platform_name} ID Verification Photos Received" +msgstr "" + +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "Review ID Verification Photos For {username}" +msgstr "" + +#: lms/envs/common.py +msgid "Your Platform Name Here" +msgstr "" + +#: lms/envs/common.py +msgid "Your Platform Description Here" +msgstr "" + +#: lms/envs/common.py +msgid "Read access" +msgstr "" + +#: lms/envs/common.py +msgid "Write access" +msgstr "" + +#: lms/envs/common.py +msgid "Know your email address" +msgstr "" + +#: lms/envs/common.py +msgid "Know your name and username" +msgstr "" + +#: lms/envs/common.py +msgid "Retrieve your grades for your enrolled courses" +msgstr "" + +#: lms/envs/common.py +msgid "Retrieve your course certificates" +msgstr "" + +#: lms/envs/common.py +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Audit" +msgstr "" + +#. Translators: This is the website name of www.facebook.com. Please +#. translate this the way that Facebook advertises in your language. +#: lms/envs/common.py +msgid "Facebook" +msgstr "" + +#: lms/envs/common.py +#, python-brace-format +msgid "Like {platform_name} on Facebook" +msgstr "" + +#. Translators: This is the website name of www.twitter.com. Please +#. translate this the way that Twitter advertises in your language. +#: lms/envs/common.py +msgid "Twitter" +msgstr "" + +#: lms/envs/common.py +#, python-brace-format +msgid "Follow {platform_name} on Twitter" +msgstr "" + +#. Translators: This is the website name of www.linkedin.com. Please +#. translate this the way that LinkedIn advertises in your language. +#: lms/envs/common.py +msgid "LinkedIn" +msgstr "" + +#: lms/envs/common.py +#, python-brace-format +msgid "Follow {platform_name} on LinkedIn" +msgstr "" + +#. Translators: This is the website name of plus.google.com. Please +#. translate this the way that Google+ advertises in your language. +#: lms/envs/common.py +msgid "Google+" +msgstr "" + +#: lms/envs/common.py +#, python-brace-format +msgid "Follow {platform_name} on Google+" +msgstr "" + +#. Translators: This is the website name of www.tumblr.com. Please +#. translate this the way that Tumblr advertises in your language. +#: lms/envs/common.py +msgid "Tumblr" +msgstr "" + +#. Translators: This is the website name of www.meetup.com. Please +#. translate this the way that MeetUp advertises in your language. +#: lms/envs/common.py +msgid "Meetup" +msgstr "" + +#. Translators: This is the website name of www.reddit.com. Please +#. translate this the way that Reddit advertises in your language. +#: lms/envs/common.py +msgid "Reddit" +msgstr "" + +#: lms/envs/common.py +#, python-brace-format +msgid "Subscribe to the {platform_name} subreddit" +msgstr "" + +#. Translators: This is the website name of https://vk.com. Please +#. translate this the way that VK advertises in your language. +#: lms/envs/common.py +msgid "VK" +msgstr "" + +#. Translators: This is the website name of http://www.weibo.com. Please +#. translate this the way that Weibo advertises in your language. +#: lms/envs/common.py +msgid "Weibo" +msgstr "" + +#. Translators: This is the website name of www.youtube.com. Please +#. translate this the way that YouTube advertises in your language. +#: lms/envs/common.py +msgid "Youtube" +msgstr "" + +#: lms/envs/common.py +#, python-brace-format +msgid "Subscribe to the {platform_name} YouTube channel" +msgstr "" + +#: lms/envs/common.py lms/envs/eliteu_common.py +msgid "Kosovo" +msgstr "" + +#: lms/envs/common.py +#, python-brace-format +msgid "Welcome to {platform_name}." +msgstr "" + +#: lms/envs/common.py +#, python-brace-format +msgid "" +"You have left the {start_bold}{enterprise_name}{end_bold} website and are " +"now on the {platform_name} site. {enterprise_name} has partnered with " +"{platform_name} to offer you high-quality, always available learning " +"programs to help you advance your knowledge and career. {line_break}Please " +"note that {platform_name} has a different {privacy_policy_link_start}Privacy" +" Policy{privacy_policy_link_end} from {enterprise_name}." +msgstr "" + +#: lms/envs/common.py +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Professional" +msgstr "" + +#: lms/envs/common.py +msgid "No-Id-Professional" +msgstr "" + +#: lms/envs/common.py +msgid "Credit" +msgstr "" + +#: lms/envs/eliteu_common.py membership/templates/membership/card.html +#: membership/templates/membership/index.html +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/certificates/verify.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "EliteMBA" +msgstr "" + +#: lms/envs/eliteu_common.py +msgid "Certificate" +msgstr "" + +#: lms/envs/eliteu_common.py +msgid "Certificate of Achievement" +msgstr "" + +#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html +msgid "Please correct the errors below." +msgstr "" + +#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html +#, python-format +msgid "Are you sure you want to cancel retirement for user \"%(username)s\"? " +msgstr "" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#, python-format +msgid "" +"\n" +" Welcome to %(course_name)s\n" +" " +msgstr "" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#, python-format +msgid "To get started, please visit https://%(site_name)s." +msgstr "" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +msgid "The login information for your account follows:" +msgstr "" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "email: %(email_address)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "password: %(password)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +msgid "It is recommended that you change your password." +msgstr "" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "Sincerely yours, The %(course_name)s Team" +msgstr "" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "Welcome to %(course_name)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "" +"To get started, please visit https://%(site_name)s. The login information " +"for your account follows." +msgstr "" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/subject.txt +#: lms/templates/instructor/edx_ace/enrollenrolled/email/subject.txt +#, python-format +msgid "You have been enrolled in %(course_name)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +#, python-format +msgid "" +"\n" +" You have been invited to be a beta tester for %(course_name)s at %(site_name)s\n" +" " +msgstr "" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +msgid "The invitation has been sent by a member of the course staff." +msgstr "" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +msgid "To start accessing course materials, please visit:" +msgstr "" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +msgid "To enroll in this course and begin the beta test:" +msgstr "" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +#, python-format +msgid "Visit %(course_name)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +#, python-format +msgid "Visit %(site_name)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#, python-format +msgid "" +"This email was automatically sent from %(site_name)s to %(email_address)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt +#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt +#, python-format +msgid "Dear %(full_name)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#, python-format +msgid "" +"You have been invited to be a beta tester for %(course_name)s at " +"%(site_name)s by a member of the course staff." +msgstr "" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt +#, python-format +msgid "To start accessing course materials, please visit %(course_url)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#, python-format +msgid "" +"Visit %(course_about_url)s to enroll in this course and begin the beta test." +msgstr "" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#, python-format +msgid "Visit %(site_name)s to enroll in this course and begin the beta test." +msgstr "" + +#: lms/templates/instructor/edx_ace/addbetatester/email/subject.txt +#, python-format +msgid "You have been invited to a beta test for %(course_name)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#, python-format +msgid "You have been invited to %(course_name)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"You have been invited to join %(course_name)s at %(site_name)s by a member " +"of the course staff." +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +msgid "To access this course click on the button below and login:" +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +msgid "To access this course visit it and register:" +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#, python-format +msgid "" +"Please finish your registration and fill out the registration form making " +"sure to use %(email_address)s in the Email field:" +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +msgid "Finish Your Registration" +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"Once you have registered and activated your account, you will see " +"%(course_name)s listed on your dashboard." +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +msgid "" +"Once you have registered and activated your account, you will be able to " +"access this course:" +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "You can then enroll in %(course_name)s." +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +msgid "Dear student," +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "To access this course visit %(course_url)s and login." +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"To access this course visit %(course_about_url)s and register for this " +"course." +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"To finish your registration, please visit %(registration_url)s and fill out " +"the registration form making sure to use %(email_address)s in the Email " +"field." +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"Once you have registered and activated your account, visit " +"%(course_about_url)s to join this course." +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/subject.txt +#, python-format +msgid "You have been invited to register for %(course_name)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedunenroll/email/subject.txt +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/subject.txt +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#, python-format +msgid "You have been unenrolled from %(course_name)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#, python-format +msgid "" +"You have been unenrolled from the course %(course_name)s by a member of the " +"course staff. Please disregard the invitation previously sent." +msgstr "" + +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +msgid "Dear Student," +msgstr "" + +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html +#, python-format +msgid "" +"\n" +" You have been unenrolled from %(course_name)s\n" +" " +msgstr "" + +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt +#, python-format +msgid "" +"You have been unenrolled from %(course_name)s at %(site_name)s by a member " +"of the course staff. This course will no longer appear on your %(site_name)s" +" dashboard." +msgstr "" + +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt +msgid "Your other courses have not been affected." +msgstr "" + +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt +#, python-format +msgid "This email was automatically sent from %(site_name)s to %(full_name)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html +#, python-format +msgid "" +"\n" +" You have been enrolled in %(course_name)s\n" +" " +msgstr "" + +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt +#, python-format +msgid "" +"You have been enrolled in %(course_name)s at %(site_name)s by a member of " +"the course staff. This course will now appear on your %(site_name)s " +"dashboard." +msgstr "" + +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html +msgid "Access the Course Materials Now" +msgstr "" + +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +#, python-format +msgid "" +"You have been removed as a beta tester for %(course_name)s at %(site_name)s" +msgstr "" + +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +#, python-format +msgid "" +"You have been removed as a beta tester for %(course_name)s at %(site_name)s " +"by a member of the course staff." +msgstr "" + +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +msgid "" +"This course will remain on your dashboard, but you will no longer be part of" +" the beta testing group." +msgstr "" + +#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt +#, python-format +msgid "" +"You have been removed as a beta tester for %(course_name)s at %(site_name)s " +"by a member of the course staff. This course will remain on your dashboard, " +"but you will no longer be part of the beta testing group." +msgstr "" + +#: lms/templates/instructor/edx_ace/removebetatester/email/subject.txt +#, python-format +msgid "You have been removed from a beta test for %(course_name)s" +msgstr "" + +#: lms/templates/logout.html themes/elitemba-theme/lms/templates/logout.html +msgid "Signed Out" +msgstr "" + +#: lms/templates/logout.html themes/elitemba-theme/lms/templates/logout.html +msgid "You have signed out." +msgstr "" + +#: lms/templates/logout.html themes/elitemba-theme/lms/templates/logout.html +#, python-format +msgid "" +"If you are not redirected within 5 seconds, click " +"here to go to the home page." +msgstr "" + +#: lms/templates/main_django.html cms/templates/base.html +#: lms/templates/main.html themes/elitemba-theme/cms/templates/base.html +#: themes/elitemba-theme/lms/templates/main.html +msgid "Skip to main content" +msgstr "" + +#: lms/templates/oauth2_provider/authorize.html +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Authorize" +msgstr "" + +#: lms/templates/oauth2_provider/authorize.html +msgid "" +"The above application requests the following permissions from your account:" +msgstr "" + +#: lms/templates/oauth2_provider/authorize.html +msgid "" +"These permissions will be granted for data from your courses associated with" +" the following content providers:" +msgstr "" + +#: lms/templates/oauth2_provider/authorize.html +msgid "" +"Please click the 'Allow' button to grant these permissions to the above " +"application. Otherwise, to withhold these permissions, please click the " +"'Cancel' button." +msgstr "" + +#: lms/templates/oauth2_provider/authorize.html +#: openedx/core/djangoapps/user_api/admin.py +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +#: cms/templates/videos_index_pagination.html +#: lms/templates/provider/authorize.html +msgid "Cancel" +msgstr "" + +#: lms/templates/oauth2_provider/authorize.html +msgid "Allow" +msgstr "" + +#: lms/templates/oauth2_provider/authorize.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/ccx/schedule.html +msgid "Error" +msgstr "" + +#: lms/templates/wiki/article.html +#: themes/elitemba-theme/lms/templates/wiki/article.html +msgid "Last modified:" +msgstr "" + +#: lms/templates/wiki/article.html +#: themes/elitemba-theme/lms/templates/wiki/article.html +msgid "See all children" +msgstr "" + +#: lms/templates/wiki/article.html +#: themes/elitemba-theme/lms/templates/wiki/article.html +#: wiki/templates/wiki/article.html +msgid "This article was last modified:" +msgstr "" + +#: lms/templates/wiki/create.html wiki/templates/wiki/create.html +msgid "Add new article" +msgstr "" + +#: lms/templates/wiki/create.html wiki/templates/wiki/create.html +msgid "Create article" +msgstr "" + +#: lms/templates/wiki/create.html lms/templates/wiki/delete.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +#: wiki/plugins/images/templates/wiki/plugins/images/purge.html +#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html +#: wiki/templates/wiki/create.html wiki/templates/wiki/delete.html +msgid "Go back" +msgstr "" + +#: lms/templates/wiki/delete.html lms/templates/wiki/edit.html +#: wiki/templates/wiki/delete.html wiki/templates/wiki/edit.html +msgid "Delete article" +msgstr "" + +#: lms/templates/wiki/delete.html +#: lms/templates/wiki/plugins/attachments/index.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/templates/wiki/delete.html +msgid "Delete" +msgstr "" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "You cannot delete a root article." +msgstr "" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "" +"You cannot delete this article because you do not have permission to delete " +"articles with children. Try to remove the children manually one-by-one." +msgstr "" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "" +"You are deleting an article. This means that its children will be deleted as" +" well. If you choose to purge, children will also be purged!" +msgstr "" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "Articles that will be deleted" +msgstr "" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "...and more!" +msgstr "" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "You are deleting an article. Please confirm." +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/component.html +#: cms/templates/container.html cms/templates/studio_xblock_wrapper.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html +#: wiki/templates/wiki/includes/article_menu.html +msgid "Edit" +msgstr "" + +#: lms/templates/wiki/edit.html lms/templates/ccx/schedule.html +#: wiki/templates/wiki/edit.html wiki/templates/wiki/settings.html +msgid "Save changes" +msgstr "" + +#: lms/templates/wiki/edit.html cms/templates/container.html +#: wiki/templates/wiki/edit.html +msgid "Preview" +msgstr "" + +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: this is a control to allow users to exit out of this modal +#. interface (a menu or piece of UI that takes the full focus of the screen) +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/includes/cheatsheet.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html +#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/ccx/schedule.html +#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +#: lms/templates/modal/_modal-settings-language.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Close" +msgstr "" + +#: lms/templates/wiki/edit.html +msgid "Wiki Preview" +msgstr "" + +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/includes/cheatsheet.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: lms/templates/modal/_modal-settings-language.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "window open" +msgstr "" + +#: lms/templates/wiki/edit.html wiki/templates/wiki/edit.html +msgid "Back to editor" +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +#: wiki/templates/wiki/history.html +msgid "History" +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "" +"Click each revision to see a list of edited lines. Click the Preview button " +"to see how the article looked at this stage. At the bottom of this page, you" +" can change to a particular revision or merge an old revision with the " +"current one." +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "(no log message)" +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Preview this revision" +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Auto log:" +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: cms/templates/videos_index_pagination.html +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +#: wiki/templates/wiki/history.html +msgid "Change" +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Merge selected with current..." +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Switch to selected version" +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "Wiki Revision Preview" +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Back to history view" +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Switch to this version" +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "Merge Revision" +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Merge with current" +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "" +"When you merge a revision with the current, all data will be retained from " +"both versions and merged at its approximate location from each revision." +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "After this, it's important to do a manual review." +msgstr "" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Create new merged version" +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +#: wiki/templates/wiki/includes/anonymous_blocked.html +#, python-format +msgid "" +"You need to log in or sign up to use this function." +msgstr "" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in or sign up to use this function." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Cheatsheet" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Syntax Help" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"This wiki uses Markdown for styling. There are several " +"useful guides online. See any of the links below for in-depth details:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Markdown: Basics" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quick Markdown Syntax Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Miniature Markdown Guide" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "" +"To create a new wiki article, create a link to it. Clicking the link gives " +"you the creation page." +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "[Article Name](wiki:ArticleName)" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +#, python-format +msgid "%(platform_name)s Additions:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Math Expression" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Useful examples:" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wikipedia" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +#, python-format +msgid "%(platform_name)s Wiki" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Huge Header" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Smaller Header" +msgstr "" + +#. Translators: Leave the punctuation, but translate "emphasis" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "*emphasis* or _emphasis_" +msgstr "" + +#. Translators: Leave the punctuation, but translate "strong" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "**strong** or __strong__" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Unordered List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 1" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 2" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Ordered" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "List" +msgstr "" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quotes" +msgstr "" + +#: lms/templates/wiki/includes/editor_widget.html +#, python-format +msgid "" +"Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for" +" help." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/wiki_plugin.py +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Attachments" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Upload new file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Search and add file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload File" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Upload file" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Search files and articles" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "" +"You can reuse files from other articles. These files are subject to updates " +"on other articles which may or may not be a good thing." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: lms/templates/dashboard.html lms/templates/index.html +#: lms/templates/api_admin/catalogs/search.html +#: lms/templates/courseware/courses.html +#: lms/templates/courseware/courseware.html +#: lms/templates/edxnotes/edxnotes.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +#: openedx/features/course_search/templates/course_search/course-search-fragment.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/index.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +#: themes/stanford-style/lms/templates/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Search" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "" +"The following files are available for this article. Copy the markdown tag to" +" directly refer to a file from the article text." +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Markdown tag" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Uploaded by" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Size" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File History" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Detach" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Replace" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/templates/wiki/deleted.html +msgid "Restore" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/includes/revision_info.html +msgid "anonymous (IP logged)" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "File history" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "revisions" +msgstr "" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "There are no attachments for this article." +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing revision:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing a merge between two revisions:" +msgstr "" + +#: lms/templates/wiki/preview_inline.html +#: wiki/templates/wiki/preview_inline.html +msgid "This revision has been deleted." +msgstr "" + +#: lms/templates/wiki/preview_inline.html +#: wiki/templates/wiki/preview_inline.html +msgid "Restoring to this revision will mark the article as deleted." +msgstr "" + +#: lms/urls.py +msgid "LMS Administration" +msgstr "" + +#: openedx/core/djangoapps/ace_common/apps.py +msgid "ACE Common" +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "Go to %(platform_name)s Home Page" +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#: cms/templates/login.html cms/templates/widgets/header.html +msgid "Sign In" +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on LinkedIn" +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on Twitter" +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on Facebook" +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on Google Plus" +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on Reddit" +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +msgid "Download the iOS app on the Apple Store" +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +msgid "Download the Android app on the Google Play Store" +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +msgid "," +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +msgid "All rights reserved." +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +msgid "Our mailing address is" +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_head.html +msgid "EliteMBA Email" +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.html +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.txt +#, python-format +msgid "" +"Don't miss the opportunity to highlight your new knowledge and skills by " +"earning a verified certificate. Upgrade by " +"%(user_schedule_upgrade_deadline_time)s." +msgstr "" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.html +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.txt +msgid "Upgrade Now" +msgstr "" + +#: openedx/core/djangoapps/api_admin/admin.py +#, python-brace-format +msgid "" +"Once you have approved this request, go to {catalog_admin_url} to set up a " +"catalog for this user." +msgstr "" + +#: openedx/core/djangoapps/api_admin/forms.py +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Organization Name" +msgstr "" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "Organization Address" +msgstr "" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "Describe what your application does." +msgstr "" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "The URL of your organization's website." +msgstr "" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "The name of your organization." +msgstr "" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "The contact address of your organization." +msgstr "" + +#: openedx/core/djangoapps/api_admin/forms.py +#, python-brace-format +msgid "The following users do not exist: {usernames}." +msgstr "" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "" +"Comma-separated list of usernames which will be able to view this catalog." +msgstr "" + +#: openedx/core/djangoapps/api_admin/models.py cms/templates/index.html +msgid "Denied" +msgstr "" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "Approved" +msgstr "" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "Status of this API access request" +msgstr "" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "The URL of the website associated with this API user." +msgstr "" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "The reason this user wants to access the API." +msgstr "" + +#: openedx/core/djangoapps/api_admin/models.py +#, python-brace-format +msgid "API access request from {company}" +msgstr "" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "API access request" +msgstr "" + +#: openedx/core/djangoapps/api_admin/widgets.py +#, python-brace-format +msgid "" +"I, and my organization, accept the {link_start}{platform_name} API Terms of " +"Service{link_end}." +msgstr "" + +#: openedx/core/djangoapps/bookmarks/apps.py +#: openedx/features/course_bookmarks/plugins.py +#: openedx/features/course_bookmarks/views/course_bookmarks.py +#: lms/templates/courseware/courseware.html +#: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html +msgid "Bookmarks" +msgstr "" + +#: openedx/core/djangoapps/bookmarks/views.py +msgid "An error has occurred. Please try again." +msgstr "" + +#: openedx/core/djangoapps/bookmarks/views.py +msgid "No data provided." +msgstr "" + +#: openedx/core/djangoapps/bookmarks/views.py +msgid "Parameter usage_id not provided." +msgstr "" + +#: openedx/core/djangoapps/bookmarks/views.py +#, python-brace-format +msgid "Invalid usage_id: {usage_id}." +msgstr "" + +#: openedx/core/djangoapps/bookmarks/views.py +#, python-brace-format +msgid "Block with usage_id: {usage_id} not found." +msgstr "" + +#: openedx/core/djangoapps/bookmarks/views.py +#, python-brace-format +msgid "" +"You can create up to {max_num_bookmarks_per_course} bookmarks. You must " +"remove some bookmarks before you can add new ones." +msgstr "" + +#: openedx/core/djangoapps/bookmarks/views.py +#, python-brace-format +msgid "Bookmark with usage_id: {usage_id} does not exist." +msgstr "" + +#: openedx/core/djangoapps/catalog/models.py +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Internal API URL" +msgstr "" + +#: openedx/core/djangoapps/catalog/models.py +msgid "DEPRECATED: Use the setting COURSE_CATALOG_API_URL." +msgstr "" + +#: openedx/core/djangoapps/catalog/models.py +msgid "" +"Specified in seconds. Enable caching of API responses by setting this to a " +"value greater than 0." +msgstr "" + +#: openedx/core/djangoapps/catalog/models.py +msgid "Long Term Cache Time To Live" +msgstr "" + +#: openedx/core/djangoapps/catalog/models.py +msgid "" +"Specified in seconds (defaults to 86400s, 24hr). In some cases the cache " +"does needs to be refreshed less frequently. Enable long term caching of API " +"responses by setting this to a value greater than 0." +msgstr "" + +#: openedx/core/djangoapps/catalog/models.py +msgid "" +"Username created for Course Catalog Integration, e.g. " +"lms_catalog_service_user." +msgstr "" + +#: openedx/core/djangoapps/catalog/models.py +msgid "Page Size" +msgstr "" + +#: openedx/core/djangoapps/catalog/models.py +msgid "" +"Maximum number of records in paginated response of a single request to " +"catalog service." +msgstr "" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "Enabled" +msgstr "" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "Configuration may not be specified at more than one level at once." +msgstr "" + +#: openedx/core/djangoapps/cors_csrf/models.py +msgid "" +"List of domains that are allowed to make cross-domain requests to this site." +" Please list each domain on its own line." +msgstr "" + +#: openedx/core/djangoapps/course_groups/cohorts.py +msgid "Default Group" +msgstr "" + +#: openedx/core/djangoapps/course_groups/cohorts.py +msgid "You cannot create two cohorts with the same name" +msgstr "" + +#: openedx/core/djangoapps/course_groups/cohorts.py +msgid "" +"There must be one cohort to which students can automatically be assigned." +msgstr "" + +#: openedx/core/djangoapps/course_groups/views.py +msgid "A cohort with the same name already exists." +msgstr "" + +#: openedx/core/djangoapps/credentials/apps.py +msgid "Credentials" +msgstr "" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Internal Service URL" +msgstr "" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Public Service URL" +msgstr "" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Enable Learner Issuance" +msgstr "" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Enable issuance of credentials via Credential Service." +msgstr "" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Enable Authoring of Credential in Studio" +msgstr "" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Enable authoring of Credential Service credentials in Studio." +msgstr "" + +#: openedx/core/djangoapps/credit/email_utils.py +msgid "Course Credit Eligibility" +msgstr "" + +#: openedx/core/djangoapps/credit/email_utils.py +#, python-brace-format +msgid "You are eligible for credit from {providers_string}" +msgstr "" + +#. Translators: The join of two university names (e.g., Harvard and MIT). +#: openedx/core/djangoapps/credit/email_utils.py +#, python-brace-format +msgid "{first_provider} and {second_provider}" +msgstr "" + +#. Translators: The join of three or more university names. The first of these +#. formatting strings +#. represents a comma-separated list of names (e.g., MIT, Harvard, Dartmouth). +#: openedx/core/djangoapps/credit/email_utils.py +#, python-brace-format +msgid "{first_providers}, and {last_provider}" +msgstr "" + +#: openedx/core/djangoapps/credit/exceptions.py +#, python-brace-format +msgid "[{username}] is not eligible for credit for [{course_key}]." +msgstr "" + +#: openedx/core/djangoapps/credit/exceptions.py +#, python-brace-format +msgid "[{course_key}] is not a valid course key." +msgstr "" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Unique identifier for this credit provider. Only alphanumeric characters and" +" hyphens (-) are allowed. The identifier is case-sensitive." +msgstr "" + +#: openedx/core/djangoapps/credit/models.py +msgid "Whether the credit provider is currently enabled." +msgstr "" + +#: openedx/core/djangoapps/credit/models.py +msgid "Name of the credit provider displayed to users" +msgstr "" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"When true, automatically notify the credit provider when a user requests " +"credit. In order for this to work, a shared secret key MUST be configured " +"for the credit provider in secure auth settings." +msgstr "" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"URL of the credit provider. If automatic integration is enabled, this will " +"the the end-point that we POST to to notify the provider of a credit " +"request. Otherwise, the user will be shown a link to this URL, so the user " +"can request credit from the provider directly." +msgstr "" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"URL from the credit provider where the user can check the status of his or " +"her request for credit. This is displayed to students *after* they have " +"requested credit." +msgstr "" + +#: openedx/core/djangoapps/credit/models.py +msgid "Description for the credit provider displayed to users." +msgstr "" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Plain text or html content for displaying further steps on receipt page " +"*after* paying for the credit to get credit for a credit course against a " +"credit provider." +msgstr "" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Plain text or html content for displaying custom message inside credit " +"eligibility email content which is sent when user has met all credit " +"eligibility requirements." +msgstr "" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Plain text or html content for displaying custom message inside credit " +"receipt email content which is sent *after* paying to get credit for a " +"credit course." +msgstr "" + +#: openedx/core/djangoapps/credit/models.py +msgid "Thumbnail image url of the credit provider." +msgstr "" + +#: openedx/core/djangoapps/credit/models.py +msgid "Credit requirement statuses" +msgstr "" + +#: openedx/core/djangoapps/credit/models.py +msgid "Deadline for purchasing and requesting credit." +msgstr "" + +#: openedx/core/djangoapps/dark_lang/views.py +msgid "Preview Language Administration" +msgstr "" + +#: openedx/core/djangoapps/dark_lang/views.py +msgid "Language not provided" +msgstr "" + +#: openedx/core/djangoapps/dark_lang/views.py +#, python-brace-format +msgid "Language set to {preview_language}" +msgstr "" + +#: openedx/core/djangoapps/dark_lang/views.py +msgid "Language reset to the default" +msgstr "" + +#: openedx/core/djangoapps/debug/views.py +msgid "This is a test message" +msgstr "" + +#: openedx/core/djangoapps/debug/views.py +msgid "This is a success message" +msgstr "" + +#: openedx/core/djangoapps/debug/views.py +msgid "This is a test warning" +msgstr "" + +#: openedx/core/djangoapps/debug/views.py +msgid "This is a test error" +msgstr "" + +#: openedx/core/djangoapps/embargo/forms.py +#: openedx/core/djangoapps/verified_track_content/forms.py +msgid "COURSE NOT FOUND. Please check that the course ID is valid." +msgstr "" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The course key for the restricted course." +msgstr "" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The message to show when a user is blocked from enrollment." +msgstr "" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The message to show when a user is blocked from accessing a course." +msgstr "" + +#: openedx/core/djangoapps/embargo/models.py +msgid "" +"Allow users who enrolled in an allowed country to access restricted courses " +"from excluded countries." +msgstr "" + +#: openedx/core/djangoapps/embargo/models.py +msgid "Two character ISO country code." +msgstr "" + +#: openedx/core/djangoapps/embargo/models.py +msgid "" +"Whether to include or exclude the given course. If whitelist countries are " +"specified, then ONLY users from whitelisted countries will be able to access" +" the course. If blacklist countries are specified, then users from " +"blacklisted countries will NOT be able to access the course." +msgstr "" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The course to which this rule applies." +msgstr "" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The country to which this rule applies." +msgstr "" + +#: openedx/core/djangoapps/embargo/models.py +#, python-brace-format +msgid "Whitelist {country} for {course}" +msgstr "" + +#: openedx/core/djangoapps/embargo/models.py +#, python-brace-format +msgid "Blacklist {country} for {course}" +msgstr "" + +#: openedx/core/djangoapps/external_auth/views.py +#, python-brace-format +msgid "" +"You have already created an account using an external login like WebAuth or " +"Shibboleth. Please contact {tech_support_email} for support." +msgstr "" + +#: openedx/core/djangoapps/external_auth/views.py +msgid "" +"\n" +" Your university identity server did not return your ID information to us.\n" +" Please try logging in again. (You may need to restart your browser.)\n" +" " +msgstr "" + +#: openedx/core/djangoapps/oauth_dispatch/models.py +msgid "" +"Comma-separated list of scopes that this application will be allowed to " +"request." +msgstr "" + +#: openedx/core/djangoapps/oauth_dispatch/models.py +msgid "Content Provider" +msgstr "" + +#: openedx/core/djangoapps/password_policy/apps.py +msgid "Password Policy" +msgstr "" + +#: openedx/core/djangoapps/password_policy/compliance.py +#, python-brace-format +msgid "" +"{strong_tag_open}We recently changed our password " +"requirements{strong_tag_close}{break_line_tag}Your current password does not" +" meet the new security requirements. We just sent a password-reset message " +"to the email address associated with this account. Thank you for helping us " +"keep your data safe." +msgstr "" + +#: openedx/core/djangoapps/password_policy/compliance.py +#, python-brace-format +msgid "" +"{strong_tag_open}Required Action: Please update your " +"password{strong_tag_close}{break_line_tag}As of {deadline}, {platform_name} " +"will require all learners to have complex passwords. Your current password " +"does not meet these requirements. To reset your password, go to to " +"{anchor_tag_open}Account Settings{anchor_tag_close}." +msgstr "" + +#: openedx/core/djangoapps/profile_images/images.py +#, python-brace-format +msgid "The file must be smaller than {image_max_size} in size." +msgstr "" + +#: openedx/core/djangoapps/profile_images/images.py +#, python-brace-format +msgid "The file must be at least {image_min_size} in size." +msgstr "" + +#: openedx/core/djangoapps/profile_images/images.py +#, python-brace-format +msgid "The file must be one of the following types: {valid_file_types}." +msgstr "" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "" +"The Content-Type header for this file does not match the file data. The file" +" may be corrupted." +msgstr "" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "" +"The file name extension for this file does not match the file data. The file" +" may be corrupted." +msgstr "" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "bytes" +msgstr "" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "KB" +msgstr "" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "MB" +msgstr "" + +#: openedx/core/djangoapps/profile_images/views.py +msgid "No file provided for profile image" +msgstr "" + +#: openedx/core/djangoapps/programs/models.py +msgid "Path used to construct URLs to programs marketing pages (e.g., \"/foo\")." +msgstr "" + +#: openedx/core/djangoapps/schedules/admin.py +msgid "Known Error Case" +msgstr "" + +#: openedx/core/djangoapps/schedules/admin.py +msgid "Schedule start < course start" +msgstr "" + +#: openedx/core/djangoapps/schedules/admin.py +msgid "All" +msgstr "" + +#: openedx/core/djangoapps/schedules/admin.py +msgid "Experience" +msgstr "" + +#: openedx/core/djangoapps/schedules/apps.py +#: openedx/core/djangoapps/schedules/models.py +msgid "Schedules" +msgstr "" + +#: openedx/core/djangoapps/schedules/models.py +msgid "Indicates if this schedule is actively used" +msgstr "" + +#: openedx/core/djangoapps/schedules/models.py +msgid "Date this schedule went into effect" +msgstr "" + +#: openedx/core/djangoapps/schedules/models.py +msgid "Deadline by which the learner must upgrade to a verified seat" +msgstr "" + +#: openedx/core/djangoapps/schedules/models.py +#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/schedule.html +msgid "Schedule" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/dropdown_filter.html +#, python-format +msgid " By %(filter_title)s " +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html +#, python-format +msgid "Welcome to week %(week_num)s of %(course_name)s!" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html +#, python-format +msgid "" +"We hope you're enjoying %(course_name)s! We want to let you" +" know what you can look forward to in week %(week_num)s:" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.txt +msgid "" +"With self-paced courses, you learn on your own schedule. We encourage you to" +" spend time with the course each week. Your focused attention will pay off " +"in the end!" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html +msgid "Resume your course now" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.txt +#, python-format +msgid "" +"We hope you're enjoying %(course_name)s! We want to let you know what you " +"can look forward to in week %(week_num)s:" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/subject.txt +#, python-format +msgid "Welcome to week %(week_num)s" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt +#, python-format +msgid "" +"Many %(platform_name)s learners are completing more problems every week, and" +" participating in the discussion forums. What do you want to do to keep " +"learning?" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt +#, python-format +msgid "" +"Many %(platform_name)s learners in %(course_name)s are completing more " +"problems every week, and participating in the discussion forums. What do you" +" want to do to keep learning?" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/subject.txt +msgid "Keep up the momentum!" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#, python-format +msgid "" +"Many %(platform_name)s learners in %(course_name)s are " +"completing more problems every week, and participating in the discussion " +"forums. What do you want to do to keep learning?" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt +msgid "Keep learning" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s, and other courses on " +"%(platform_name)s? We do, and we’re glad to have you! Come see what everyone" +" is learning." +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s on %(platform_name)s? We do, " +"and we’re glad to have you! Come see what everyone is learning." +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +msgid "Keep learning today" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s, and other " +"courses on %(platform_name)s? We do, and we’re glad to have you! Come see " +"what everyone is learning." +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s on " +"%(platform_name)s? We do, and we’re glad to have you! Come see what everyone" +" is learning." +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#: themes/elitemba-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +msgid "Start learning now" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/subject.txt +#, python-format +msgid "Keep learning on %(platform_name)s" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/subject.txt +#, python-format +msgid "Keep learning in %(course_name)s" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt +#, python-format +msgid "" +"We hope you are enjoying learning with us so far on %(platform_name)s! A " +"verified certificate allows you to highlight your new knowledge and skills. " +"An %(platform_name)s certificate is official and easily shareable. Upgrade " +"by %(user_schedule_upgrade_deadline_time)s." +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt +#, python-format +msgid "" +"We hope you are enjoying learning with us so far in %(first_course_name)s! A" +" verified certificate allows you to highlight your new knowledge and skills." +" An %(platform_name)s certificate is official and easily shareable. Upgrade " +"by %(user_schedule_upgrade_deadline_time)s." +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +msgid "Upgrade now" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#, python-format +msgid "" +"We hope you are enjoying learning with us so far on " +"%(platform_name)s! A verified certificate allows you to " +"highlight your new knowledge and skills. An %(platform_name)s certificate is" +" official and easily shareable." +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#, python-format +msgid "" +"We hope you are enjoying learning with us so far in " +"%(first_course_name)s! A verified certificate allows you to" +" highlight your new knowledge and skills. An %(platform_name)s certificate " +"is official and easily shareable." +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#, python-format +msgid "Upgrade by %(user_schedule_upgrade_deadline_time)s." +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +msgid "You are eligible to upgrade in these courses:" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +msgid "Example of a verified certificate" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt +msgid "Upgrade now at" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/subject.txt +#, python-format +msgid "Upgrade to earn a verified certificate on %(platform_name)s" +msgstr "" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/subject.txt +#, python-format +msgid "Upgrade to earn a verified certificate in %(first_course_name)s" +msgstr "" + +#: openedx/core/djangoapps/self_paced/models.py +msgid "Enable course home page improvements." +msgstr "" + +#: openedx/core/djangoapps/theming/views.py +#, python-brace-format +msgid "Site theme changed to {site_theme}" +msgstr "" + +#: openedx/core/djangoapps/theming/views.py +#, python-brace-format +msgid "Theme {site_theme} does not exist" +msgstr "" + +#: openedx/core/djangoapps/theming/views.py +msgid "Site theme reverted to the default" +msgstr "" + +#: openedx/core/djangoapps/theming/views.py +#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html +msgid "Theming Administration" +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "" +"Usernames can only contain letters (A-Z, a-z), numerals (0-9), underscores " +"(_), and hyphens (-)." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Usernames can only contain letters, numerals, and @.+-_ characters." +msgstr "" + +#. Translators: This message is shown to users who attempt to create a new +#. account using +#. an invalid email format. +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "\"{email}\" is not a valid email address." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "" +"It looks like {email_address} belongs to an existing account. Try again with" +" a different email address." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "" +"It looks like {username} belongs to an existing account. Try again with a " +"different username." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "Username must be between {min} and {max} characters long." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "Enter a valid email address that contains at least {min} characters." +msgstr "" + +#. Translators: These messages are shown to users who do not enter information +#. into the required field or enter it incorrectly. +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your full name." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "The email addresses do not match." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Select your country or region of residence." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Select your profession." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Select your specialty." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your profession." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your specialty." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your city." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Tell us your goals." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Select the highest level of education you have completed." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your mailing address." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/api.py +#, python-brace-format +msgid "The '{field_name}' field cannot be edited." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/api.py +#: openedx/core/djangoapps/user_api/views.py +#: openedx/core/djangoapps/user_authn/views/auto_auth.py +#: openedx/core/djangoapps/user_authn/views/deprecated.py +msgid "Account creation not allowed." +msgstr "" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the State/Province/Region in which they +#. live. +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "State/Province/Region" +msgstr "" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the Company +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Company" +msgstr "" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the Job Title +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Job Title" +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's mailing address. +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py lms/templates/signup_modal.html +msgid "Mailing address" +msgstr "" + +#. Translators: This phrase appears above a field on the registration form +#. meant to hold the user's reasons for registering with edX. +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "Tell us why you're interested in {platform_name}" +msgstr "" + +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's profession +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Profession" +msgstr "" + +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's specialty +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Specialty" +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/utils.py +msgid "" +" Make sure that you are providing a valid username or a URL that contains \"" +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/views.py +#: openedx/core/djangoapps/user_authn/views/login.py +msgid "" +"Due to multiple login failures, the account is temporarily locked. Please " +"try again after 15 minutes." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/views.py +#: lms/templates/provider_login.html +msgid "Email or password is incorrect." +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/views.py +msgid "Verification failed" +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/views.py +msgid "Please check mobile number format;" +msgstr "" + +#: openedx/core/djangoapps/user_api/accounts/views.py +msgid "The mobile number has been occupied." +msgstr "" + +#: openedx/core/djangoapps/user_api/admin.py +#: wiki/templates/wiki/permission_denied.html +msgid "Permission Denied" +msgstr "" + +#: openedx/core/djangoapps/user_api/admin.py +msgid "Retirement does not exist!" +msgstr "" + +#: openedx/core/djangoapps/user_api/admin.py cms/templates/export.html +#: cms/templates/import.html +msgid "Success" +msgstr "" + +#: openedx/core/djangoapps/user_api/admin.py +#: lms/templates/staff_problem_info.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Actions" +msgstr "" + +#. Translators: This label appears above a field on the password reset +#. form meant to hold the user's email address. +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgctxt "Register and Login" +msgid "Email" +msgstr "" + +#. Translators: This example email address is used as a placeholder in +#. a field on the password reset form meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgid "username@domain.com" +msgstr "" + +#. Translators: These instructions appear on the password reset form, +#. immediately below a field meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "The email address you used to register with {platform_name}" +msgstr "" + +#. Translators: This label appears above a field on the password reset +#. form meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgid "Secondary email" +msgstr "" + +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"Secondary email address you registered with {platform_name} using account " +"settings page" +msgstr "" + +#. Translators: This label appears above a field on the login form +#. meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgctxt "Register and Login" +msgid "Email or Phone Number" +msgstr "" + +#. Translators: These instructions appear on the login form, immediately +#. below a field meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"The email address you registered on {platform_name}, or the phone number " +"that is bound." +msgstr "" + +#: openedx/core/djangoapps/user_api/api.py lms/templates/login.html +msgid "Remember me" +msgstr "" + +#. Translators: These instructions appear on the registration form, +#. immediately +#. below a field meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgid "This is what you will use to login." +msgstr "" + +#. Translators: This label appears above a field on the registration form +#. meant to confirm the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgid "Confirm Email" +msgstr "" + +#. Translators: These instructions appear on the registration form, +#. immediately +#. below a field meant to hold the user's full name. +#: openedx/core/djangoapps/user_api/api.py +msgid "This name will be used on any certificates that you earn." +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's public username. +#: openedx/core/djangoapps/user_api/api.py cms/templates/register.html +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/signup_modal.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Public Username" +msgstr "" + +#. Translators: These instructions appear on the registration form, +#. immediately +#. below a field meant to hold the user's public username. +#: openedx/core/djangoapps/user_api/api.py +msgid "" +"The name that will identify you in your courses. It cannot be changed later." +msgstr "" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's highest completed level of education. +#: openedx/core/djangoapps/user_api/api.py lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Highest Level of Education Completed" +msgstr "" + +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the country in which the user lives. +#: openedx/core/djangoapps/user_api/api.py +msgid "Country or Region of Residence" +msgstr "" + +#. Translators: These instructions appear on the registration form, +#. immediately +#. below a field meant to hold the user's country. +#: openedx/core/djangoapps/user_api/api.py +msgid "The country or region where you live." +msgstr "" + +#. Translators: This is a legal document users must agree to +#. in order to register a new account. +#: openedx/core/djangoapps/user_api/api.py +msgid "Terms of Service and Honor Code" +msgstr "" + +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"I agree to the {platform_name} " +"{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" +msgstr "" + +#. Translators: "Terms of Service" is a legal document users must agree to +#. in order to register a new account. +#. Translators: "Terms of service" is a legal document users must agree to +#. in order to register a new account. +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "You must agree to the {platform_name} {terms_of_service}" +msgstr "" + +#: openedx/core/djangoapps/user_api/api.py +msgid "" +"Account can only be created after you agree to our User Agreement, " +"Disclaimer and Privacy Policy." +msgstr "" + +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"By checking this box, you agree to abide by EliteMBA's" +" " +"{user_agreement_link_start}{user_agreement}{user_agreement_link_end}, " +"{disclaimer_link_start}{disclaimer}{disclaimer_link_end} " +"and {privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." +msgstr "" + +#: openedx/core/djangoapps/user_api/api.py +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +#: themes/elitemba-theme/lms/templates/static_templates/user_agreement.html +msgid "User Agreement" +msgstr "" + +#. Translators: "Terms of service" is a legal document users must agree to +#. in order to register a new account. +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"I agree to the {platform_name} " +"{tos_link_start}{terms_of_service}{tos_link_end}" +msgstr "" + +#: openedx/core/djangoapps/user_api/config/waffle.py +msgid "System maintenance in progress. Please try again later." +msgstr "" + +#: openedx/core/djangoapps/user_api/elite_password_reset.py +#, python-brace-format +msgid "Request parameter {key} missing!" +msgstr "" + +#: openedx/core/djangoapps/user_api/elite_password_reset.py +msgid "New passwords do not match. Please try again." +msgstr "" + +#: openedx/core/djangoapps/user_api/elite_password_reset.py +msgid "Password modified." +msgstr "" + +#: openedx/core/djangoapps/user_api/elite_password_reset.py +msgid "Wrong password" +msgstr "" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Delete failed for user preference '{preference_key}'." +msgstr "" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Preference '{preference_key}' cannot be set to an empty value." +msgstr "" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Invalid user preference key '{preference_key}'." +msgstr "" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "" +"Value '{preference_value}' is not valid for user preference " +"'{preference_key}'." +msgstr "" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "" +"Value '{preference_value}' not valid for preference '{preference_key}': Not " +"in timezone set." +msgstr "" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Value '{preference_value}' is not a valid time zone selection." +msgstr "" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Save failed for user preference '{key}' with value '{value}'." +msgstr "" + +#: openedx/core/djangoapps/user_api/preferences/views.py +msgid "No data provided for user preference update" +msgstr "" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "Hello %(full_name)s," +msgstr "" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "" +"We received a deletion request for your account on %(platform_name)s. We're " +"sorry to see you go!" +msgstr "" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +msgid "" +"Your account will be deleted shortly. Account deletion, including removal " +"from email lists, may take a few weeks to fully process through our system. " +"If you want to opt-out of emails before then, please unsubscribe from the " +"footer of any email." +msgstr "" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "" +"This is an informational email only. If you did not initiate this request, " +"please contact %(contact_email)s." +msgstr "" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "Best, %(platform_name)s" +msgstr "" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/subject.txt +msgid "Your Account Has Been Queued For Deletion" +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/auto_auth.py +msgid "Superuser creation not allowed" +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/auto_auth.py +msgid "Account modification not allowed." +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/login.py +#, python-brace-format +msgid "" +"You've successfully logged into your {provider_name} account, but this " +"account isn't linked with an {platform_name} account yet." +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/login.py +#, python-brace-format +msgid "" +"Use your {platform_name} username and password to log into {platform_name} " +"below, and then link your {platform_name} account with {provider_name} from " +"your dashboard." +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/login.py +#, python-brace-format +msgid "" +"If you don't have an {platform_name} account yet, click " +"{register_label_strong} at the top of the page." +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/login.py +#: lms/templates/register-form.html +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Register" +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/login.py +msgid "There was an error receiving your login information. Please email us." +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/login.py +#, python-brace-format +msgid "" +"In order to sign in, you need to activate your account.

    We just " +"sent an activation link to {email}. If you do not receive " +"an email, check your spam folders or contact " +"{platform} Support." +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/login.py +msgid "Too many failed login attempts. Try again later." +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/login.py +msgid "Login account or password is wrong." +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/login_form.py +msgid "Create Account" +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/register.py +#, python-brace-format +msgid "Registration using {provider} has timed out." +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/register.py +msgid "An access_token is required when passing value ({}) for provider." +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/register.py +msgid "The provided access_token is already associated with another user." +msgstr "" + +#: openedx/core/djangoapps/user_authn/views/register.py +msgid "The provided access_token is not valid." +msgstr "" + +#: openedx/core/djangoapps/util/user_messages.py +#, python-brace-format +msgid "{header_open}{title}{header_close}{body}" +msgstr "" + +#: openedx/core/djangoapps/util/user_messages.py +#, python-brace-format +msgid "{header_open}{title}{header_close}" +msgstr "" + +#: openedx/core/djangoapps/util/user_messages.py +#: cms/templates/course_outline.html cms/templates/index.html +#: openedx/features/course_experience/templates/course_experience/latest-update-fragment.html +#: openedx/features/course_experience/templates/course_experience/welcome-message-fragment.html +msgid "Dismiss" +msgstr "" + +#: openedx/core/djangoapps/verified_track_content/models.py +msgid "The course key for the course we would like to be auto-cohorted." +msgstr "" + +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Oauth client name of video pipeline service." +msgstr "" + +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "edx-video-pipeline API URL." +msgstr "" + +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "" +"Username created for Video Pipeline Integration, e.g. veda_service_user." +msgstr "" + +#: openedx/core/djangoapps/waffle_utils/models.py +msgid "Force On" +msgstr "" + +#: openedx/core/djangoapps/waffle_utils/models.py +msgid "Force Off" +msgstr "" + +#: openedx/core/lib/api/view_utils.py +msgid "This value is invalid." +msgstr "" + +#: openedx/core/lib/api/view_utils.py +msgid "This field is not editable" +msgstr "" + +#: openedx/core/lib/gating/api.py +#, python-format +msgid "%(min_score)s is not a valid grade percentage" +msgstr "" + +#: openedx/core/lib/gating/api.py +#, python-brace-format +msgid "Gating milestone for {usage_key}" +msgstr "" + +#: openedx/core/lib/license/mixin.py +msgid "License" +msgstr "" + +#: openedx/core/lib/license/mixin.py +msgid "" +"A license defines how the contents of this block can be shared and reused." +msgstr "" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "Category" +msgstr "" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "Week 1" +msgstr "" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "" +"A category name for the discussion. This name appears in the left pane of " +"the discussion forum for the course." +msgstr "" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "Subcategory" +msgstr "" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "" +"A subcategory name for the discussion. This name appears in the left pane of" +" the discussion forum for the course." +msgstr "" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +#, python-brace-format +msgid "" +"You are not signed in. To view the discussion content, {sign_in_link} or " +"{register_link}, and enroll in this course." +msgstr "" + +#: openedx/features/content_type_gating/admin.py +#: openedx/features/course_duration_limits/admin.py +msgid "" +"These define the context to enable course duration limits on. If no values " +"are set, then the configuration applies globally. If a single value is set, " +"then the configuration applies to all courses within that context. At most " +"one value can be set at a time.
    If multiple contexts apply to a course " +"(for example, if configuration is specified for the course specifically, and" +" for the org that the course is in, then the more specific context overrides" +" the more general context." +msgstr "" + +#: openedx/features/content_type_gating/admin.py +#: openedx/features/course_duration_limits/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Enabled\" is left as \"Unknown\" in the course context, " +"then that course will be Enabled only if the org that it is in is Enabled." +msgstr "" + +#: openedx/features/content_type_gating/models.py +#: openedx/features/course_duration_limits/models.py +#: lms/templates/support/feature_based_enrollments.html +msgid "Enabled As Of" +msgstr "" + +#: openedx/features/content_type_gating/models.py +#: openedx/features/course_duration_limits/models.py +msgid "" +"If the configuration is Enabled, then all enrollments created after this " +"date and time (UTC) will be affected." +msgstr "" + +#: openedx/features/content_type_gating/models.py +msgid "Studio Override Enabled" +msgstr "" + +#: openedx/features/content_type_gating/models.py +msgid "" +"Allow Feature Based Enrollment visibility to be overriden on a per-component" +" basis in Studio." +msgstr "" + +#: openedx/features/content_type_gating/models.py +#: openedx/features/course_duration_limits/models.py +msgid "enabled_as_of must be set when enabled is True" +msgstr "" + +#: openedx/features/content_type_gating/partitions.py +msgid "Feature-based Enrollments" +msgstr "" + +#: openedx/features/content_type_gating/partitions.py +msgid "Partition for segmenting users by access to gated content types" +msgstr "" + +#: openedx/features/content_type_gating/partitions.py +msgid "" +"Graded assessments are available to Verified Track learners. Upgrade to " +"Unlock." +msgstr "" + +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Content available only to verified track learners" +msgstr "" + +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Verified Track Access" +msgstr "" + +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Graded assessments are available to Verified Track learners." +msgstr "" + +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Upgrade to unlock" +msgstr "" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "Access expired on {expiration_date}" +msgstr "" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "Access to {course_name} expired on {expiration_date}" +msgstr "" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "Access to the course you were looking for expired on {expiration_date}" +msgstr "" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "" +"This learner does not have access to this course. Their access expired on " +"{expiration_date}." +msgstr "" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "" +"{strong_open}Audit Access Expires " +"{expiration_date}{strong_close}{line_break}You lose all access to this " +"course, including your progress, on {expiration_date}." +msgstr "" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "" +"{line_break}Upgrade by {upgrade_deadline} to get unlimited access to the " +"course as long as it exists on the site. {a_open}Upgrade " +"now{sronly_span_open} to retain access past " +"{expiration_date}{span_close}{a_close}" +msgstr "" + +#: openedx/features/course_experience/plugins.py +#: cms/templates/widgets/header.html +#: lms/templates/api_admin/terms_of_service.html +#: openedx/features/course_experience/templates/course_experience/course-updates-fragment.html +msgid "Updates" +msgstr "" + +#: openedx/features/course_experience/plugins.py +#: openedx/features/course_experience/templates/course_experience/course-reviews-fragment.html +msgid "Reviews" +msgstr "" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link} and then enroll in this course." +msgstr "" + +#: openedx/features/course_experience/views/course_home_messages.py +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "" +"{open_enroll_link}Enroll now{close_enroll_link} to access the full course." +msgstr "" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "Welcome to {course_display_name}" +msgstr "" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "" +"To start, set a course goal by selecting the option below that best " +"describes your learning plan. {goal_options_container}" +msgstr "" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "Set goal to: {choice}" +msgstr "" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{choice}" +msgstr "" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "Set goal to: {goal_text}" +msgstr "" + +#: openedx/features/enterprise_support/api.py +#, python-brace-format +msgid "Enrollment in {course_title} was not complete." +msgstr "" + +#: openedx/features/enterprise_support/api.py +#, python-brace-format +msgid "" +"If you have concerns about sharing your data, please contact your " +"administrator at {enterprise_customer_name}." +msgstr "" + +#: openedx/features/enterprise_support/utils.py +#, python-brace-format +msgid "" +"We are sorry, you are not authorized to access {platform_name} via this " +"channel. Please contact your learning administrator or manager in order to " +"access {platform_name}.{line_break}{line_break}" +msgstr "" + +#: openedx/features/enterprise_support/utils.py +#, python-brace-format +msgid "" +"Thank you for joining {platform_name}. Just a couple steps before you start " +"learning!" +msgstr "" + +#: openedx/features/enterprise_support/utils.py +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Continue" +msgstr "" + +#: openedx/features/learner_profile/views/learner_profile.py +#, python-brace-format +msgid "" +"Welcome to the new learner profile page. Your full profile now displays more" +" information to other learners. You can instead choose to display a limited " +"profile. {learn_more_link_start}Learn more{learn_more_link_end}" +msgstr "" + +#: cms/djangoapps/api/v1/serializers/course_runs.py +msgid "Course team user does not exist" +msgstr "" + +#: cms/djangoapps/contentstore/course_group_config.py +msgid "" +"The groups in this configuration can be mapped to cohorts in the Instructor " +"Dashboard." +msgstr "" + +#: cms/djangoapps/contentstore/course_group_config.py +#: cms/templates/group_configurations.html +msgid "Content Groups" +msgstr "" + +#: cms/djangoapps/contentstore/course_group_config.py +#: cms/djangoapps/contentstore/views/certificates.py +msgid "invalid JSON" +msgstr "" + +#: cms/djangoapps/contentstore/course_group_config.py +msgid "must have name of the configuration" +msgstr "" + +#: cms/djangoapps/contentstore/course_group_config.py +msgid "must have at least one group" +msgstr "" + +#: cms/djangoapps/contentstore/course_group_config.py +msgid "unable to load this type of group configuration" +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Invalid course update id." +msgstr "" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Course update not found." +msgstr "" + +#: cms/djangoapps/contentstore/courseware_index.py +msgid "Could not index item: {}" +msgstr "" + +#: cms/djangoapps/contentstore/courseware_index.py +msgid "General indexing error occurred" +msgstr "" + +#: cms/djangoapps/contentstore/courseware_index.py +msgid "(Unnamed)" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +#, python-brace-format +msgid "" +"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " +"configure a different path with GIT_REPO_EXPORT_DIR" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Non writable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"If using http urls, you must provide the username and password in the url. " +"Similar to https://user:pass@github.com/user/course." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to determine branch, repo in detached HEAD mode" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to update or clone git repository." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to export course to xml." +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to configure git username and password" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to commit changes. This is usually because there are no changes to be" +" committed" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to push changes. This is usually because the remote repository " +"cannot be contacted" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Bad course location provided" +msgstr "" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Missing branch on fresh clone" +msgstr "" + +#: cms/djangoapps/contentstore/management/commands/git_export.py +msgid "" +"Take the specified course and attempt to export it to a git repository\n" +". Course directory must already be a git repository. Usage: git_export " +msgstr "" + +#: cms/djangoapps/contentstore/tasks.py +#, python-brace-format +msgid "Unknown User ID: {0}" +msgstr "" + +#: cms/djangoapps/contentstore/tasks.py +msgid "Permission denied" +msgstr "" + +#: cms/djangoapps/contentstore/tasks.py +#: cms/djangoapps/contentstore/views/import_export.py +msgid "We only support uploading a .tar.gz file." +msgstr "" + +#: cms/djangoapps/contentstore/tasks.py +msgid "Tar file not found" +msgstr "" + +#: cms/djangoapps/contentstore/tasks.py +msgid "Unsafe tar file. Aborting import." +msgstr "" + +#: cms/djangoapps/contentstore/tasks.py +#, python-brace-format +msgid "Could not find the {0} file in the package." +msgstr "" + +#: cms/djangoapps/contentstore/utils.py cms/templates/visibility_editor.html +msgid "Deleted Group" +msgstr "" + +#. Translators: This is building up a list of groups. It is marked for +#. translation because of the +#. comma, which is used as a separator between each group. +#: cms/djangoapps/contentstore/utils.py +#, python-brace-format +msgid "{previous_groups}, {current_group}" +msgstr "" + +#: cms/djangoapps/contentstore/video_utils.py +msgid "The image must have name, content type, and size information." +msgstr "" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "" +"This image file type is not supported. Supported file types are " +"{supported_file_formats}." +msgstr "" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "This image file must be smaller than {image_max_size}." +msgstr "" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "This image file must be larger than {image_min_size}." +msgstr "" + +#: cms/djangoapps/contentstore/video_utils.py +msgid "" +"There is a problem with this image file. Try to upload a different file." +msgstr "" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "" +"Recommended image resolution is " +"{image_file_max_width}x{image_file_max_height}. The minimum resolution is " +"{image_file_min_width}x{image_file_min_height}." +msgstr "" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "" +"This image file must have an aspect ratio of " +"{video_image_aspect_ratio_text}." +msgstr "" + +#: cms/djangoapps/contentstore/video_utils.py +msgid "" +"The image file name can only contain letters, numbers, hyphens (-), and " +"underscores (_)." +msgstr "" + +#: cms/djangoapps/contentstore/views/assets.py +msgid "Upload completed" +msgstr "" + +#: cms/djangoapps/contentstore/views/assets.py +#, python-brace-format +msgid "" +"File {filename} exceeds maximum size of {maximum_size_in_megabytes} MB." +msgstr "" + +#: cms/djangoapps/contentstore/views/certificates.py +msgid "must have name of the certificate" +msgstr "" + +#: cms/djangoapps/contentstore/views/certificates.py +#, python-brace-format +msgid "Certificate dict {0} missing value key '{1}'" +msgstr "" + +#: cms/djangoapps/contentstore/views/certificates.py +#, python-brace-format +msgid "PermissionDenied: Failed in authenticating {user}" +msgstr "" + +#: cms/djangoapps/contentstore/views/component.py +#, python-brace-format +msgid "{platform_name} Support Levels:" +msgstr "" + +#: cms/djangoapps/contentstore/views/component.py +msgid "HTML" +msgstr "" + +#: cms/djangoapps/contentstore/views/component.py lms/templates/video.html +#: membership/templates/membership/index.html +msgid "Video" +msgstr "" + +#: cms/djangoapps/contentstore/views/component.py +msgid "Blank" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "Course has been successfully reindexed." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "Set Date" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Special characters not allowed in organization, course number, and course " +"run." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization and course " +"number. Please change either organization or course number to be unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Please change either the organization or course number so that it is unique." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +#, python-brace-format +msgid "" +"Unable to create course '{name}'.\n" +"\n" +"{err}" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"You must link this course to an organization in order to continue. " +"Organization you selected does not exist in the system, you will need to add" +" it to the system" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "Invalid prerequisite course key" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "An error occurred while trying to save your tabs" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "Tabs Exception" +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This group configuration is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." +msgstr "" + +#: cms/djangoapps/contentstore/views/entrance_exam.py +msgid "Entrance Exam - Subsection" +msgstr "" + +#: cms/djangoapps/contentstore/views/entrance_exam.py +msgid "Completed Course Entrance Exam" +msgstr "" + +#: cms/djangoapps/contentstore/views/export_git.py +msgid "Course successfully exported to git repository" +msgstr "" + +#: cms/djangoapps/contentstore/views/helpers.py +msgid "Vertical" +msgstr "" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "File upload corrupted. Please try again" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Invalid data" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "Invalid data ({details})" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "You can not move {source_type} into {target_parent_type}." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Item is already present in target location." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "You can not move an item into itself." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "You can not move an item into it's child." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +msgid "You can not move an item directly into content experiment." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "{source_usage_key} not found in {parent_usage_key}." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "" +"You can not move {source_usage_key} at an invalid index ({target_index})." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "You must provide target_index ({target_index}) as an integer." +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "Duplicate of {0}" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "Duplicate of '{0}'" +msgstr "" + +#. Translators: The {pct_sign} here represents the percent sign, i.e., '%' +#. in many languages. This is used to avoid Transifex's misinterpreting of +#. '% o'. The percent sign is also translatable as a standalone string. +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "" +"Students must score {score}{pct_sign} or higher to access course materials." +msgstr "" + +#. Translators: This is the percent sign. It will be used to represent +#. a percent value out of 100, e.g. "58%" means "58/100". +#: cms/djangoapps/contentstore/views/item.py +msgid "%" +msgstr "" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "{section_or_subsection} \"{display_name}\"" +msgstr "" + +#: cms/djangoapps/contentstore/views/library.py +#, python-brace-format +msgid "Unable to create library - missing required field '{field}'" +msgstr "" + +#: cms/djangoapps/contentstore/views/library.py +#, python-brace-format +msgid "" +"Unable to create library '{name}'.\n" +"\n" +"{err}" +msgstr "" + +#: cms/djangoapps/contentstore/views/library.py +msgid "" +"There is already a library defined with the same organization and library " +"code. Please change your library code so that it is unique within your " +"organization." +msgstr "" + +#: cms/djangoapps/contentstore/views/preview.py +#, python-brace-format +msgid "Access restricted to: {list_of_groups}" +msgstr "" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +msgid "The information you entered is incorrect." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Transcripts are supported only for \"video\" modules." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Cannot find item by locator." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Video locator is required." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "This transcript file type is not supported." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Video ID is required." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Incoming video data is empty." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Can't find item by locator." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "No such transcript." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "There is a problem with the chosen transcript file." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "" +"There is a problem with the existing transcript file. Please upload a " +"different file." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "YouTube ID is required." +msgstr "" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "There is a problem with the YouTube transcript file." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Insufficient permissions" +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +#, python-brace-format +msgid "Could not find user by email address '{email}'." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "No `role` specified." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +#, python-brace-format +msgid "User {email} has registered but has not yet activated his/her account." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Invalid `role` specified." +msgstr "" + +#: cms/djangoapps/contentstore/views/user.py +msgid "You may not remove the last Admin. Add another Admin first." +msgstr "" + +#. #-#-#-#-# django-studio.po (0.1a) #-#-#-#-# +#. Translators: This is the status of an active video upload +#: cms/djangoapps/contentstore/views/videos.py cms/templates/import.html +msgid "Uploading" +msgstr "" + +#. Translators: This is the status for a video that the servers are currently +#. processing +#: cms/djangoapps/contentstore/views/videos.py +msgid "In Progress" +msgstr "" + +#. Translators: This is the status for a video that the servers have +#. successfully processed +#: cms/djangoapps/contentstore/views/videos.py +msgid "Ready" +msgstr "" + +#. Translators: This is the status for a video that is uploaded completely +#: cms/djangoapps/contentstore/views/videos.py +msgid "Uploaded" +msgstr "" + +#. Translators: This is the status for a video that the servers have failed to +#. process +#: cms/djangoapps/contentstore/views/videos.py +msgid "Failed" +msgstr "" + +#. #-#-#-#-# django-studio.po (0.1a) #-#-#-#-# +#. Translators: This is the status for a video that is cancelled during upload +#. by user +#: cms/djangoapps/contentstore/views/videos.py membership/models.py +msgid "Cancelled" +msgstr "" + +#. Translators: This is the status for a video which has failed +#. due to being flagged as a duplicate by an external or internal CMS +#: cms/djangoapps/contentstore/views/videos.py +msgid "Failed Duplicate" +msgstr "" + +#. Translators: This is the status for a video which has duplicate token for +#. youtube +#: cms/djangoapps/contentstore/views/videos.py +msgid "YouTube Duplicate" +msgstr "" + +#. Translators: This is the status for a video for which an invalid +#. processing token was provided in the course settings +#: cms/djangoapps/contentstore/views/videos.py +msgid "Invalid Token" +msgstr "" + +#. Translators: This is the status for a video that was included in a course +#. import +#: cms/djangoapps/contentstore/views/videos.py +msgid "Imported" +msgstr "" + +#. Translators: This is the status for a video that is in an unknown state +#: cms/djangoapps/contentstore/views/videos.py +msgid "Unknown" +msgstr "" + +#. Translators: This is the status for a video that is having its +#. transcription in progress on servers +#: cms/djangoapps/contentstore/views/videos.py +msgid "Transcription in Progress" +msgstr "" + +#. Translators: This is the status for a video whose transcription is complete +#: cms/djangoapps/contentstore/views/videos.py +msgid "Transcript Ready" +msgstr "" + +#: cms/djangoapps/contentstore/views/videos.py +msgid "An image file is required." +msgstr "" + +#. Translators: This is the header for a CSV file column +#. containing URLs for video encodings for the named profile +#. (e.g. desktop, mobile high quality, mobile low quality) +#: cms/djangoapps/contentstore/views/videos.py +#, python-brace-format +msgid "{profile_name} URL" +msgstr "" + +#: cms/djangoapps/contentstore/views/videos.py +msgid "Duration" +msgstr "" + +#: cms/djangoapps/contentstore/views/videos.py +msgid "Date Added" +msgstr "" + +#. Translators: This is the suggested filename when downloading the URL +#. listing for videos uploaded through Studio +#: cms/djangoapps/contentstore/views/videos.py +#, python-brace-format +msgid "{course}_video_urls" +msgstr "" + +#: cms/djangoapps/contentstore/views/videos.py +msgid "A non zero positive integer is expected" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "unrequested" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "pending" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "granted" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "denied" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Studio user" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "The date when state was last updated" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "Current course creator state" +msgstr "" + +#: cms/djangoapps/course_creators/models.py +msgid "" +"Optional notes about this user (for example, why course creation access was " +"denied)" +msgstr "" + +#: cms/djangoapps/maintenance/views.py +#: cms/templates/maintenance/_force_publish_course.html +msgid "Force Publish Course" +msgstr "" + +#: cms/djangoapps/maintenance/views.py +msgid "" +"Sometimes the draft and published branches of a course can get out of sync. " +"Force publish course command resets the published branch of a course to " +"point to the draft branch, effectively force publishing the course. This " +"view dry runs the force publish command" +msgstr "" + +#: cms/djangoapps/maintenance/views.py +msgid "Please provide course id." +msgstr "" + +#: cms/djangoapps/maintenance/views.py +msgid "Invalid course key." +msgstr "" + +#: cms/djangoapps/maintenance/views.py +msgid "No matching course found." +msgstr "" + +#: cms/djangoapps/maintenance/views.py +msgid "Force publishing course is not supported with old mongo courses." +msgstr "" + +#: cms/djangoapps/maintenance/views.py +msgid "Course is already in published state." +msgstr "" + +#: cms/djangoapps/models/settings/course_metadata.py +#, python-brace-format +msgid "Incorrect format for field '{name}'. {detailed_message}" +msgstr "" + +#: cms/envs/bok_choy.py cms/envs/test.py +msgid "Your Platform 𝓢𝓽𝓾𝓭𝓲𝓸" +msgstr "" + +#: cms/envs/bok_choy.py cms/envs/test.py +msgid "𝓢𝓽𝓾𝓭𝓲𝓸" +msgstr "" + +#: cms/envs/common.py +msgid "Your Platform Studio" +msgstr "" + +#: cms/envs/common.py +msgid "Studio" +msgstr "" + +#: cms/lib/xblock/tagging/tagging.py +msgid "Dictionary with the available tags" +msgstr "" + +#: cms/urls.py +msgid "Studio Administration" +msgstr "" + +#: cms/templates/404.html cms/templates/error.html +#: lms/templates/static_templates/404.html +#: themes/elitemba-theme/lms/templates/static_templates/404.html +msgid "Page Not Found" +msgstr "" + +#: cms/templates/404.html lms/templates/static_templates/404.html +#: themes/elitemba-theme/lms/templates/static_templates/404.html +msgid "Page not found" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/course_info.html +#: cms/templates/course_outline.html cms/templates/edit-tabs.html +#: cms/templates/textbooks.html cms/templates/videos_index.html +#: cms/templates/widgets/header.html lms/templates/static_htmlbook.html +#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +msgid "Content" +msgstr "" + +#: cms/templates/certificates.html +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +msgid "Course Certificates" +msgstr "" + +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +#: themes/elitemba-theme/cms/templates/settings.html +#: wiki/templates/wiki/settings.html +#: wiki/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "" + +#: cms/templates/certificates.html cms/templates/container.html +#: cms/templates/course_outline.html cms/templates/group_configurations.html +#: cms/templates/library.html cms/templates/manage_users.html +#: cms/templates/manage_users_lib.html lms/templates/courseware/courses.html +#: lms/templates/edxnotes/edxnotes.html +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +msgid "Loading" +msgstr "" + +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Grading" +msgstr "" + +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Team" +msgstr "" + +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Advanced Settings" +msgstr "" + +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Organization" +msgstr "" + +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/settings.html lms/templates/courseware/course_about.html +#: themes/elitemba-theme/cms/templates/settings.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Course Number" +msgstr "" + +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Run" +msgstr "" + +#: cms/templates/course_outline.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Course Outline" +msgstr "" + +#: cms/templates/html_error.html lms/templates/module-error.html +msgid "Error:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Organization:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Number:" +msgstr "" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Run:" +msgstr "" + +#: cms/templates/index.html lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/courseware/courses.html +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Courses" +msgstr "" + +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/help_modal.html lms/templates/login.html +#: lms/templates/provider_login.html lms/templates/register-form.html +#: lms/templates/register-shib.html lms/templates/signup_modal.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "E-mail" +msgstr "" + +#. Translators: This is the placeholder text for a field that requests an +#. email +#. address. +#: cms/templates/login.html cms/templates/manage_users.html +#: cms/templates/manage_users_lib.html cms/templates/register.html +#: lms/templates/login.html lms/templates/register-form.html +#: lms/templates/register-shib.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "example: username@domain.com" +msgstr "" + +#: cms/templates/login.html lms/templates/login.html +msgid "Forgot password?" +msgstr "" + +#: cms/templates/register.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Sign Up" +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Sign Up for {studio_name}" +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Already have a {studio_name} Account? Sign in" +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"Ready to start creating online courses? Sign up below and start creating " +"your first {platform_name} course today." +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Required Information to Sign Up for {studio_name}" +msgstr "" + +#. Translators: This is the placeholder text for a field that requests the +#. user's full name. +#: cms/templates/register.html lms/templates/register-form.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "example: Jane Doe" +msgstr "" + +#. Translators: This is the placeholder text for a field that asks the user to +#. pick a username +#: cms/templates/register.html lms/templates/register-form.html +#: lms/templates/register-shib.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "example: JaneDoe" +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"This will be used in public discussions with your courses and in our edX101 " +"support forums" +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Your Location" +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Preferred Language" +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "I agree to the {a_start} Terms of Service {a_end}" +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Create My Account & Start Authoring Courses" +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Common {studio_name} Questions" +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Who is {studio_name} for?" +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"{studio_name} is for anyone that wants to create online courses that " +"leverage the global {platform_name} platform. Our users are often faculty " +"members, teaching assistants and course staff, and members of instructional " +"technology groups." +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"How technically savvy do I need to be to create courses in {studio_name}?" +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"{studio_name} is designed to be easy to use by almost anyone familiar with " +"common web-based authoring environments (Wordpress, Moodle, etc.). No " +"programming knowledge is required, but for some of the more advanced " +"features, a technical background would be helpful. As always, we are here to" +" help, so don't hesitate to dive right in." +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "I've never authored a course online before. Is there help?" +msgstr "" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"Absolutely. We have created an online course, edX101, that describes some " +"best practices: from filming video, creating exercises, to the basics of " +"running an online course. Additionally, we're always here to help, just drop" +" us a note." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Schedule & Details Settings" +msgstr "" + +#: cms/templates/settings.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Schedule & Details" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Basic Information" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "The nuts and bolts of your course" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "This field is disabled: this information cannot be changed." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Summary Page" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "(for student enrollment and access)" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enroll in {course_display_name}" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"The course \"{course_display_name}\", provided by {platform_name}, is open " +"for enrollment. Please navigate to this course at {link_for_about_page} to " +"enroll." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Send a note to students via email" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Invite your students" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Promoting Your Course with {platform_name}" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course summary page will not be viewable until your course has been " +"announced. To provide content for the page and preview it, follow the " +"instructions provided by your Program Manager." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Credit Requirements" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Steps required to earn course credit" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Minimum Grade" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Successful Proctored Exam" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Proctored Exam {number}" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "ID Verification" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "In-Course Reverification {number}" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Pacing" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Set the pacing for this course" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Instructor-Paced" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Instructor-paced courses progress at the pace that the course author sets. " +"You can configure release dates for course content and due dates for " +"assignments." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Self-Paced" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Self-paced courses do not have release dates for course content or due dates" +" for assignments. Learners can complete course material at any time before " +"the course end date." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Schedule" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Dates that control when your course can be viewed" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "First day the course begins" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Start Time" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "(UTC)" +msgstr "" + +#: cms/templates/settings.html +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course End Date" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Last day your course is active" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course End Time" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Certificates Available Date" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "By default, 48 hours after course end date" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enrollment Start Date" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "First day students can enroll" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enrollment Start Time" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enrollment End Date" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Last day students can enroll." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enrollment End Time" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Details" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Provide useful information about your course" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Identify the course language here. This is used to assist users find courses" +" that are taught in a specific language. It is also used to localize the " +"'From:' field in bulk emails." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Introducing Your Course" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Information for prospective students" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Title" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Displayed as title on the course details page. Limit to 50 characters." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Subtitle" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Displayed as subtitle on the course details page. Limit to 150 characters." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Duration" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Displayed on the course details page. Limit to 50 characters." +msgstr "" + +#: cms/templates/settings.html lms/templates/courseware/program_marketing.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Description" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Displayed on the course details page. Limit to 1000 characters." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Short Description" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Appears on the course catalog page when students roll over the course name. " +"Limit to ~150 characters" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Overview" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "HTML Code Editor" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Introductions, prerequisites, FAQs that are used on {a_link_start}your " +"course summary page{a_link_end} (formatted in HTML)" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course About Sidebar HTML" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Custom sidebar content for {a_link_start}your course summary " +"page{a_link_end} (formatted in HTML)" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Card Image" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"You can manage this image along with all of your other {a_link_start}files " +"and uploads{a_link_end}" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 375px wide by 200px tall)" +msgstr "" + +#. Translators: This is the placeholder text for a field that requests the URL +#. for a course image +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Your course image URL" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your course image (Note: only JPEG " +"or PNG format supported)" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Upload Course Card Image" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 1440px wide by 400px tall)" +msgstr "" + +#. Translators: This is the placeholder text for a field that requests the URL +#. for a course banner image +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Your banner image URL" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your banner image (Note: only JPEG " +"or PNG format supported)" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Upload Course Banner Image" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Video Thumbnail Image" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course currently does not have a video thumbnail image. Please upload " +"one (JPEG or PNG format, and minimum suggested dimensions are 375px wide by " +"200px tall)" +msgstr "" + +#. Translators: This is the placeholder text for a field that requests the URL +#. for a course video thumbnail image +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Your video thumbnail image URL" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your video thumbnail image (Note: " +"only JPEG or PNG format supported)" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Upload Video Thumbnail Image" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Introduction Video" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Delete Current Video" +msgstr "" + +#. Translators: This is the placeholder text for a field that requests a +#. YouTube video ID for a course video +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "your YouTube video's ID" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enter your YouTube video's ID (along with any restriction parameters)" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Learning Outcomes" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Add the learning outcomes for this course" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Add Learning Outcome" +msgstr "" + +#: cms/templates/settings.html lms/templates/courseware/program_marketing.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Instructors" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Add details about the instructors for this course" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Add Instructor" +msgstr "" + +#: cms/templates/settings.html lms/templates/courseware/course_about.html +#: themes/elitemba-theme/cms/templates/settings.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Requirements" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Expectations of the students taking this course" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Hours of Effort per Week" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Time spent on all course work" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Prerequisite Course" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "None" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course that students must complete before beginning this course" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "set pre-requisite course" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Require students to pass an exam before beginning the course." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"You can now view and author your course entrance exam from the " +"{link_start}Course Outline{link_end}." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Grade Requirements" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid " %" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"The score student must meet in order to successfully complete the entrance " +"exam. " +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Content License" +msgstr "" + +#. Translators: At the course settings, the editor is able to select the +#. default course content license. +#. The course content will have this license set, some assets can override the +#. license with their own. +#. In the form, the license selector for course content is described using the +#. following string: +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Select the default license for course content" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "How are these settings used?" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course's schedule determines when students can enroll in and begin a " +"course." +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Other information from this page appears on the About page for your course. " +"This information includes the course overview, course image, introduction " +"video, and estimated time requirements. Students use About pages to choose " +"new courses to take." +msgstr "" + +#: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html +#: lms/templates/module-error.html +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Details" +msgstr "" + +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: this is a verb describing the action of viewing more details +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/wiki/includes/article_menu.html +#: wiki/templates/wiki/includes/article_menu.html +msgid "View" +msgstr "" + +#: cms/templates/emails/activation_email.txt +#: themes/elitemba-theme/cms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for {studio_name}! To activate your account, please" +" copy and paste this address into your web browser's address bar:" +msgstr "" + +#: cms/templates/emails/activation_email.txt +#: themes/elitemba-theme/cms/templates/emails/activation_email.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the {studio_name} web site." +msgstr "" + +#: cms/templates/maintenance/_force_publish_course.html +#: lms/templates/problem.html lms/templates/shoppingcart/shopping_cart.html +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html +#: themes/elitemba-theme/lms/templates/problem.html +msgid "Reset" +msgstr "" + +#: cms/templates/widgets/footer.html lms/templates/footer.html +msgid "Legal" +msgstr "" + +#: cms/templates/widgets/header.html lms/templates/header/header.html +#: lms/templates/navigation/navigation.html +#: lms/templates/widgets/footer-language-selector.html +msgid "Choose Language" +msgstr "" + +#: cms/templates/widgets/header.html lms/templates/user_dropdown.html +#: lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Account" +msgstr "" + +#: cms/templates/widgets/header.html +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: lms/templates/static_templates/help.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: wiki/plugins/help/wiki_plugin.py +msgid "Help" +msgstr "" + +#: cms/templates/widgets/sock.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Looking for help with {studio_name}?" +msgstr "" + +#: cms/templates/widgets/sock.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Hide {studio_name} Help" +msgstr "" + +#: cms/templates/widgets/sock.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "{studio_name} Documentation" +msgstr "" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Access documentation on http://docs.edx.org" +msgstr "" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "edX Documentation" +msgstr "" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Enroll in edX101: Overview of Creating an edX Course" +msgstr "" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Enroll in edX101" +msgstr "" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Enroll in StudioX: Creating a Course with edX Studio" +msgstr "" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Enroll in StudioX" +msgstr "" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Send an email to {email}" +msgstr "" + +#: cms/templates/widgets/tabs-aggregator.html +#: lms/templates/courseware/static_tab.html +#: lms/templates/courseware/tab-view-v2.html +#: lms/templates/courseware/tab-view.html +msgid "name" +msgstr "" + +#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html +msgid "Usermenu" +msgstr "" + +#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html +msgid "Usermenu dropdown" +msgstr "" + +#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html +#: lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Sign Out" +msgstr "" + +#: common/lib/capa/capa/templates/codeinput.html +msgid "Code Editor" +msgstr "" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Feedback Form" +msgstr "" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Email: {email}" +msgstr "" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Full Name: {realname}" +msgstr "" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Inquiry Type: {inquiry_type}" +msgstr "" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Message: {message}" +msgstr "" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Tags: {tags}" +msgstr "" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Additional Info:" +msgstr "" + +#: common/templates/emails/contact_us_feedback_email_subject.txt +msgid "Feedback from user" +msgstr "" + +#: common/templates/emails/sync_learner_profile_data_email_change_body.txt +msgid "" +"The email associated with your {platform_name} account has changed from " +"{old_email} to {new_email}." +msgstr "" + +#: common/templates/emails/sync_learner_profile_data_email_change_body.txt +msgid "No action is needed on your part." +msgstr "" + +#: common/templates/emails/sync_learner_profile_data_email_change_body.txt +msgid "" +"If this change is not correct, contact {link_start}{platform_name} " +"Support{link_end} or your administrator." +msgstr "" + +#: common/templates/emails/sync_learner_profile_data_email_change_subject.txt +msgid "Your {platform_name} account email has been updated" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html +msgid "Add a Post" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html +msgid "New topic form" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html +msgid "Discussion thread list" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html +#: lms/templates/discussion/_user_profile.html +#, python-format +msgid "%s discussion started" +msgid_plural "%s discussions started" +msgstr[0] "" +msgstr[1] "" + +#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html +#: lms/templates/discussion/_user_profile.html +#, python-format +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "" +msgstr[1] "" + +#: lms/djangoapps/discussion/templates/discussion/maintenance_fragment.html +msgid "Discussion unavailable" +msgstr "" + +#: lms/djangoapps/discussion/templates/discussion/maintenance_fragment.html +msgid "" +"The discussions are currently undergoing maintenance. We'll have them back " +"up shortly!" +msgstr "" + +#: lms/templates/_gated_content.html lms/templates/seq_module.html +msgid "Content Locked" +msgstr "" + +#: lms/templates/_gated_content.html +msgid "" +"You must complete the prerequisites for '{prereq_section_name}' to access " +"this content." +msgstr "" + +#: lms/templates/_gated_content.html +msgid "Go to Prerequisite Section" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Collapse Instructions" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Guided Discussion" +msgstr "" + +#: lms/templates/annotatable.html +msgid "Hide Annotations" +msgstr "" + +#: lms/templates/bookmark_button.html lms/templates/seq_module.html +msgid "Bookmarked" +msgstr "" + +#: lms/templates/bookmark_button.html +msgid "Bookmark this page" +msgstr "" + +#: lms/templates/conditional_module.html +msgid "You do not have access to this dependency module." +msgstr "" + +#: lms/templates/course.html +#: openedx/features/journals/templates/journals/bundle_card.html +#: openedx/features/journals/templates/journals/journal_card.html +#: themes/elitemba-theme/lms/templates/course.html +msgid "LEARN MORE" +msgstr "" + +#: lms/templates/course.html themes/elitemba-theme/lms/templates/course.html +msgid "Starts" +msgstr "" + +#: lms/templates/course.html themes/elitemba-theme/lms/templates/course.html +msgid "Starts: {date}" +msgstr "" + +#: lms/templates/courses_list.html +msgid "View all Courses" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/user_dropdown.html +#: lms/templates/header/user_dropdown.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Dashboard" +msgstr "" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "You are not enrolled in any courses yet." +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Explore courses" +msgstr "" + +#: lms/templates/dashboard.html +#: lms/templates/registration/account_activation_sidebar_notice.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Activate your account!" +msgstr "" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Course-loading errors" +msgstr "" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Search Your Courses" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/courseware/courseware.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Clear search" +msgstr "" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Account Status Info" +msgstr "" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Order History" +msgstr "" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Email Settings for {course_number}" +msgstr "" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Receive course emails" +msgstr "" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Save Settings" +msgstr "" + +#: lms/templates/dashboard.html lms/templates/ccx/enrollment.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_entitlement_actions.html +#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: themes/elitemba-theme/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Unenroll" +msgstr "" + +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +msgid "E-mail change failed" +msgstr "" + +#: lms/templates/email_change_failed.html +msgid "We were unable to send a confirmation email to {email}" +msgstr "" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +#: lms/templates/invalid_email_key.html +#: lms/templates/secondary_email_change_failed.html +msgid "Go back to the {link_start}home page{link_end}." +msgstr "" + +#: lms/templates/email_change_successful.html +msgid "E-mail change successful!" +msgstr "" + +#: lms/templates/email_change_successful.html +msgid "You should see your new email in your {link_start}dashboard{link_end}." +msgstr "" + +#: lms/templates/email_exists.html +msgid "An account with the new e-mail address already exists." +msgstr "" + +#: lms/templates/enroll_staff.html +msgid "You should Register before trying to access the Unit" +msgstr "" + +#: lms/templates/enroll_staff.html lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "self" +msgid "Enroll" +msgstr "" + +#: lms/templates/enroll_staff.html +msgid "Don't enroll" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Student Enrollment Form" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Course: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Add new students" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Existing students:" +msgstr "" + +#: lms/templates/enroll_students.html +msgid "New students added: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Students rejected: " +msgstr "" + +#: lms/templates/enroll_students.html +msgid "Debug: " +msgstr "" + +#: lms/templates/extauth_failure.html +msgid "External Authentication failed" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "" +"Please enter your e-mail address below, and we will e-mail instructions for " +"setting a new password." +msgstr "" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Required Information" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Your E-mail Address" +msgstr "" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +msgid "This is the e-mail address you used to register with {platform}" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Reset My Password" +msgstr "" + +#: lms/templates/forgot_password_modal.html +msgid "Email is incorrect." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Support" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"For {strong_start}questions on course lectures, homework, tools, or " +"materials for this course{strong_end}, post in the {link_start}course " +"discussion forum{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have {strong_start}general questions about {platform_name}{strong_end}? You " +"can find lots of helpful information in the {platform_name} " +"{link_start}FAQ{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Have a {strong_start}question about something specific{strong_end}? You can " +"contact the {platform_name} general support team directly:" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Please note: The {platform_name} support team is English speaking. While we " +"will do our best to address your inquiry in any language, our responses will" +" be in English." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Briefly describe your issue" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Tell us the details" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Describe what you were doing when you encountered the issue. Include any " +"details that will help us to troubleshoot, including error messages that you" +" saw." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Thank You!" +msgstr "" + +#: lms/templates/help_modal.html +msgid "" +"Thank you for your inquiry or feedback. We typically respond to a request " +"within one business day, Monday to Friday. In the meantime, please review " +"our {link_start}detailed FAQs{link_end} where most questions have already " +"been answered." +msgstr "" + +#: lms/templates/help_modal.html +msgid "- Select -" +msgstr "" + +#: lms/templates/help_modal.html +msgid "problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Report a Problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of the problem" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Details of the problem you are encountering{asterisk}" +msgstr "" + +#: lms/templates/help_modal.html +msgid "suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Make a Suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief description of your suggestion" +msgstr "" + +#: lms/templates/help_modal.html +msgid "question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Ask a Question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "Brief summary of your question" +msgstr "" + +#: lms/templates/help_modal.html +msgid "An error has occurred." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please {link_start}send us e-mail{link_end}." +msgstr "" + +#: lms/templates/help_modal.html +msgid "Please try again later." +msgstr "" + +#: lms/templates/hidden_content.html +msgid "The course has ended." +msgstr "" + +#: lms/templates/hidden_content.html +msgid "The due date for this assignment has passed." +msgstr "" + +#: lms/templates/hidden_content.html +msgid "" +"Because the course has ended, this assignment is no longer " +"available.{line_break}If you have completed this assignment, your grade is " +"available on the {link_start}progress page{link_end}." +msgstr "" + +#: lms/templates/hidden_content.html +msgid "" +"Because the due date has passed, this assignment is no longer " +"available.{line_break}If you have completed this assignment, your grade is " +"available on the {link_start}progress page{link_end}." +msgstr "" + +#: lms/templates/index.html lms/templates/courseware/courses.html +#: themes/elitemba-theme/lms/templates/index.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +#: themes/stanford-style/lms/templates/index.html +msgid "Search for a course" +msgstr "" + +#. Translators: 'Open edX' is a registered trademark, please keep this +#. untranslated. See http://open.edx.org for more information. +#: lms/templates/index_overlay.html +msgid "Welcome to the Open edX{registered_trademark} platform!" +msgstr "" + +#. Translators: 'Open edX' is a registered trademark, please keep this +#. untranslated. See http://open.edx.org for more information. +#: lms/templates/index_overlay.html +msgid "It works! This is the default homepage for this Open edX instance." +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Invalid email change key" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "This e-mail key is not valid. Please check:" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "" +"Was this key already used? Check whether the e-mail change has already " +"happened." +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "Did your e-mail client break the URL into two lines?" +msgstr "" + +#: lms/templates/invalid_email_key.html +msgid "The keys are valid for a limited amount of time. Has the key expired?" +msgstr "" + +#: lms/templates/library-block-author-preview-header.html +msgid "" +"Showing all matching content eligible to be added into {display_name}. Each " +"student will be assigned {max_count} component drawn randomly from this " +"list." +msgid_plural "" +"Showing all matching content eligible to be added into {display_name}. Each " +"student will be assigned {max_count} components drawn randomly from this " +"list." +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/login-sidebar.html +msgid "Helpful Information" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Login via OpenID" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "" +"You can now start learning with {platform_name} by logging in with your OpenID account." +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Not Enrolled?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Sign up for {platform_name} today!" +msgstr "" + +#: lms/templates/login-sidebar.html lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Need Help?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "Looking for help signing in or with your {platform_name} account?" +msgstr "" + +#: lms/templates/login-sidebar.html +msgid "View our help section for answers to commonly asked questions." +msgstr "" + +#: lms/templates/login.html +msgid "Log into your {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Log into My {platform_name} Account" +msgstr "" + +#: lms/templates/login.html +msgid "Access My Courses" +msgstr "" + +#: lms/templates/login.html lms/templates/register-shib.html +#: lms/templates/register.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Processing your account information" +msgstr "" + +#: lms/templates/login.html wiki/templates/wiki/accounts/login.html +msgid "Please log in" +msgstr "" + +#: lms/templates/login.html +msgid "to access your account and courses" +msgstr "" + +#: lms/templates/login.html +msgid "We're Sorry, {platform_name} accounts are unavailable currently" +msgstr "" + +#: lms/templates/login.html +msgid "We couldn't log you in." +msgstr "" + +#: lms/templates/login.html +msgid "Your email or password is incorrect" +msgstr "" + +#: lms/templates/login.html +msgid "An error occurred when signing you in to {platform_name}." +msgstr "" + +#: lms/templates/login.html +msgid "" +"Please provide the following information to log into your {platform_name} " +"account. Required fields are noted by bold text " +"and an asterisk (*)." +msgstr "" + +#: lms/templates/login.html +msgid "Account Preferences" +msgstr "" + +#: lms/templates/login.html +msgid "Sign in with {provider_name}" +msgstr "" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS +#: lms/templates/lti.html +msgid "External resource" +msgstr "" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "" + +#: lms/templates/lti.html +msgid "View resource in a new window" +msgstr "" + +#: lms/templates/lti.html +msgid "" +"Please provide launch_url. Click \"Edit\", and fill in the required fields." +msgstr "" + +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Manage student accounts" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Username:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Profile:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Image:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Name:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Choose an action:" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "View Profile" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Disable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Reenable Account" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Remove Profile Image" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "Students whose accounts have been disabled" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "(reload your page to refresh)" +msgstr "" + +#: lms/templates/manage_user_standing.html +msgid "working" +msgstr "" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" +msgstr "" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +#: lms/templates/courseware/error-message.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." +msgstr "" + +#: lms/templates/module-error.html +msgid "Raw data:" +msgstr "" + +#: lms/templates/notes.html +msgid "You do not have any notes." +msgstr "" + +#: lms/templates/preview_menu.html +msgid "Course View" +msgstr "" + +#: lms/templates/preview_menu.html +msgid "View this course as:" +msgstr "" + +#: lms/templates/preview_menu.html +msgid "Learner" +msgstr "" + +#: lms/templates/preview_menu.html +msgid "Specific learner" +msgstr "" + +#: lms/templates/preview_menu.html +msgid "Learner in {content_group}" +msgstr "" + +#: lms/templates/preview_menu.html +msgid "Username or email:" +msgstr "" + +#: lms/templates/preview_menu.html +msgid "Set preview mode" +msgstr "" + +#: lms/templates/preview_menu.html +msgid "You are now viewing the course as {i_start}{user_name}{i_end}." +msgstr "" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "You have used {num_used} of {num_total} attempt" +msgid_plural "You have used {num_used} of {num_total} attempts" +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "" +"Some problems have options such as save, reset, hints, or show answer. These" +" options follow the Submit button." +msgstr "" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "Hint" +msgstr "" + +#: lms/templates/problem.html lms/templates/word_cloud.html +#: themes/elitemba-theme/lms/templates/problem.html +msgid "Save" +msgstr "" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "Save your answer" +msgstr "" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "Reset your answer" +msgstr "" + +#: lms/templates/problem_notifications.html +msgid "Next Hint" +msgstr "" + +#: lms/templates/problem_notifications.html +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "Review" +msgstr "" + +#: lms/templates/provider_login.html +msgid "Log In" +msgstr "" + +#: lms/templates/provider_login.html +msgid "" +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." +msgstr "" + +#: lms/templates/provider_login.html +#, python-format +msgid "Return To %s" +msgstr "" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "" +"We're sorry, but this version of your browser is not supported. Try again " +"using a different browser or a newer version of your browser." +msgstr "" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "The following errors occurred while processing your registration:" +msgstr "" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Sign up with {provider_name}" +msgstr "" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Create your own {platform_name} account below" +msgstr "" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "" +"Required fields are noted by bold text and an " +"asterisk (*)." +msgstr "" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "" +"We just need a little more information before you start learning with " +"{platform_name}." +msgstr "" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Please complete the following fields to register for an account. " +msgstr "" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Your legal name, used for any certificates you earn." +msgstr "" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Will be shown in any discussions or forums you participate in" +msgstr "" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "cannot be changed later" +msgstr "" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Welcome {username}" +msgstr "" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Enter a Public Display Name:" +msgstr "" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Public Display Name" +msgstr "" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Additional Personal Information" +msgstr "" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "example: New York" +msgstr "" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Please share with us your reasons for registering with {platform_name}" +msgstr "" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Account Acknowledgements" +msgstr "" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "I agree to the {link_start}Terms of Service{link_end}" +msgstr "" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "I agree to the {link_start}Honor Code{link_end}" +msgstr "" + +#: lms/templates/register-form.html lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Create My Account" +msgstr "" + +#: lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Preferences for {platform_name}" +msgstr "" + +#: lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Update my {platform_name} Account" +msgstr "" + +#: lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Welcome {username}! Please set your preferences below" +msgstr "" + +#: lms/templates/register-shib.html lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Enter a public username:" +msgstr "" + +#: lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Update My Account" +msgstr "" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Registration Help" +msgstr "" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Already registered?" +msgstr "" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +#: wiki/templates/wiki/base.html wiki/templates/wiki/accounts/login.html +#: wiki/templates/wiki/accounts/signup.html +msgid "Log in" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"Registering with {platform_name} gives you access to all of our current and " +"future free courses. Not ready to take a course just yet? Registering puts " +"you on our mailing list - we will update you as courses are added." +msgstr "" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Next Steps" +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"As part of joining {platform_name}, you will receive an email message with " +"instructions for activating your account. Don't see the email? Check your " +"spam folder and mark {platform_name} emails as 'not spam'. At " +"{platform_name}, we communicate mostly through email." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "Need help registering with {platform_name}?" +msgstr "" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "View our FAQs for answers to commonly asked questions." +msgstr "" + +#: lms/templates/register-sidebar.html +msgid "" +"You can find the answers to most of your questions in our list of FAQs. " +"After you enroll in a course, you can also find answers in the course " +"discussions." +msgstr "" + +#: lms/templates/register.html +msgid "Register for {platform_name}" +msgstr "" + +#: lms/templates/register.html +msgid "Create My {platform_name} Account" +msgstr "" + +#: lms/templates/register.html +msgid "Welcome!" +msgstr "" + +#: lms/templates/register.html +msgid "Register below to create your {platform_name} account" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "Re-subscribe Successful!" +msgstr "" + +#: lms/templates/resubscribe.html +msgid "" +"You have re-enabled forum notification emails from {platform_name}. You may " +"{dashboard_link_start}return to your dashboard{link_end}." +msgstr "" + +#: lms/templates/secondary_email_change_failed.html +msgid "Secondary e-mail change failed" +msgstr "" + +#: lms/templates/secondary_email_change_failed.html +msgid "We were unable to activate your secondary email {secondary_email}" +msgstr "" + +#: lms/templates/secondary_email_change_successful.html +msgid "Secondary e-mail change successful!" +msgstr "" + +#: lms/templates/secondary_email_change_successful.html +msgid "" +"Your secondary email has been activated. Please visit " +"{link_start}dashboard{link_end} for courses." +msgstr "" + +#: lms/templates/seq_module.html +msgid "Important!" +msgstr "" + +#: lms/templates/seq_module.html +msgid "Previous" +msgstr "" + +#: lms/templates/seq_module.html +msgid "Next" +msgstr "" + +#: lms/templates/seq_module.html +msgid "Sequence" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Sign Up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "e.g. yourname@domain.com" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "e.g. yourname (shown on forums)" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "e.g. Your Name (for certificates)" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Welcome {name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Ed. Completed" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Year of birth" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Goals in signing up for {platform_name}" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Already have an account?" +msgstr "" + +#: lms/templates/signup_modal.html +msgid "Login." +msgstr "" + +#: lms/templates/split_test_author_view.html +msgid "" +"This content experiment uses group configuration " +"'{group_configuration_name}'." +msgstr "" + +#: lms/templates/split_test_author_view.html +msgid "Active Groups" +msgstr "" + +#: lms/templates/split_test_author_view.html +msgid "Inactive Groups" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug Info" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission history" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "{platform_name} Content Quality Assessment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Optional tag (eg \"done\" or \"broken\"):" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "tag" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Add comment" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug:" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Score (for override only)" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Reset Learner's Attempts to Zero" +msgstr "" + +#: lms/templates/staff_problem_info.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Delete Learner's State" +msgstr "" + +#: lms/templates/staff_problem_info.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Learner's Submission" +msgstr "" + +#: lms/templates/staff_problem_info.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Only If Score Improves" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Override Score" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Module Fields" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "XML attributes" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "Submission History Viewer" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "User:" +msgstr "" + +#: lms/templates/staff_problem_info.html +msgid "View History" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "{course_number} Textbook" +msgstr "" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "Textbook Navigation" +msgstr "" + +#: lms/templates/staticbook.html lms/templates/courseware/gradebook.html +msgid "Page" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Previous page" +msgstr "" + +#: lms/templates/staticbook.html +msgid "Next page" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Sysadmin Dashboard" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Users" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Staffing and Enrollment" +msgstr "" + +#. Translators: refers to http://git-scm.com/docs/git-log +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Logs" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "User Management" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Email or username" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Create user" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download list of all users (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Check and repair external authentication map" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "" +"Go to each individual course's Instructor dashboard to manage course " +"enrollment." +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Manage course staff and instructors" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download staff and instructor list (csv file)" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Administer Courses" +msgstr "" + +#. Translators: Repo is short for git repository or source of +#. courseware; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Location" +msgstr "" + +#. Translators: Repo is short for git repository (http://git-scm.com/about) or +#. source of +#. courseware and branch is a specific version within that repository +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Branch (optional)" +msgstr "" + +#. Translators: GitHub is a popular website for hosting code +#: lms/templates/sysadmin_dashboard.html +msgid "Load new course from GitHub" +msgstr "" + +#. Translators: 'dir' is short for 'directory' +#: lms/templates/sysadmin_dashboard.html +msgid "Course ID or dir" +msgstr "" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete course from site" +msgstr "" + +#. Translators: A version number appears after this string +#: lms/templates/sysadmin_dashboard.html +msgid "Platform Version" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "" + +#. Translators: Git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Recent git load activity for {course_id}" +msgstr "" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/ccx/schedule.html +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Date" +msgstr "" + +#. Translators: Git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Action" +msgstr "" + +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "" + +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded for this course." +msgstr "" + +#: lms/templates/text-me-the-app.html +msgid "Text Me The App" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "Tracking Log" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "datetime" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "ipaddr" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "source" +msgstr "" + +#: lms/templates/tracking_log.html +msgid "type" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "Unsubscribe Successful!" +msgstr "" + +#: lms/templates/unsubscribe.html +msgid "" +"You will no longer receive forum notification emails from {platform_name}. " +"You may {dashboard_link_start}return to your dashboard{link_end}. If you did" +" not mean to do this, {undo_link_start}you can re-subscribe{link_end}." +msgstr "" + +#: lms/templates/user_dropdown.html lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Dashboard for:" +msgstr "" + +#: lms/templates/user_dropdown.html +msgid "More options" +msgstr "" + +#: lms/templates/user_dropdown.html lms/templates/header/header.html +#: lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "More Options" +msgstr "" + +#: lms/templates/using.html +msgid "Using the system" +msgstr "" + +#: lms/templates/using.html +msgid "" +"During video playback, use the subtitles and the scroll bar to navigate. " +"Clicking the subtitles is a fast way to skip forwards and backwards by small" +" amounts." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you are on a low-resolution display, the left navigation bar can be " +"hidden by clicking on the set of three left arrows next to it." +msgstr "" + +#: lms/templates/using.html +msgid "" +"If you need bigger or smaller fonts, use your browsers settings to scale " +"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" +" ctrl-minus at the same time." +msgstr "" + +#: lms/templates/video.html +msgid "Loading video player" +msgstr "" + +#: lms/templates/video.html +msgid "Play video" +msgstr "" + +#: lms/templates/video.html +msgid "No playable video sources found." +msgstr "" + +#: lms/templates/video.html +msgid "" +"Your browser does not support this video format. Try using a different " +"browser." +msgstr "" + +#: lms/templates/video.html +msgid "Downloads and transcripts" +msgstr "" + +#: lms/templates/video.html +msgid "Download video file" +msgstr "" + +#: lms/templates/video.html +msgid "Transcripts" +msgstr "" + +#: lms/templates/video.html +msgid "Download {file}" +msgstr "" + +#: lms/templates/video.html +msgid "Download transcript" +msgstr "" + +#: lms/templates/video.html +msgid "Handouts" +msgstr "" + +#: lms/templates/video.html +msgid "Download Handout" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "{num} of {total}" +msgstr "" + +#: lms/templates/word_cloud.html +msgid "Your words were:" +msgstr "" + +#: lms/templates/account_recovery/password_create_confirm.html +msgid "Create Your {platform_name} Password" +msgstr "" + +#: lms/templates/account_recovery/password_create_confirm.html +msgid "Invalid Password Create Link" +msgstr "" + +#: lms/templates/api_admin/api_access_request_form.html +msgid "API Access Request" +msgstr "" + +#: lms/templates/api_admin/api_access_request_form.html +#: lms/templates/api_admin/status.html +msgid "{platform_name} API Access Request" +msgstr "" + +#: lms/templates/api_admin/api_access_request_form.html +msgid "Request API Access" +msgstr "" + +#: lms/templates/api_admin/status.html +msgid "API Access Request Status" +msgstr "" + +#. Translators: "platform_name" is the name of this Open edX installation. +#: lms/templates/api_admin/status.html +msgid "" +"Your request to access the {platform_name} Course Catalog API is being " +"processed. You will receive a message at the email address in your profile " +"when processing is complete. You can also return to this page to see the " +"status of your API access request." +msgstr "" + +#. Translators: "platform_name" is the name of this Open edX installation. +#. "api_support_email_link" is HTML for a link to email the API support staff. +#: lms/templates/api_admin/status.html +msgid "" +"Your request to access the {platform_name} Course Catalog API has been " +"denied. If you think this is an error, or for other questions about using " +"this API, contact {api_support_email_link}." +msgstr "" + +#: lms/templates/api_admin/status.html +msgid "" +"Your request to access the {platform_name} Course Catalog API has been " +"approved." +msgstr "" + +#: lms/templates/api_admin/status.html +msgid "Application Name" +msgstr "" + +#: lms/templates/api_admin/status.html +msgid "API Client ID" +msgstr "" + +#: lms/templates/api_admin/status.html +msgid "API Client Secret" +msgstr "" + +#: lms/templates/api_admin/status.html +msgid "Redirect URLs" +msgstr "" + +#: lms/templates/api_admin/status.html +msgid "" +"If you would like to regenerate your API client information, please use the " +"form below." +msgstr "" + +#: lms/templates/api_admin/status.html +msgid "Generate API client credentials" +msgstr "" + +#. Translators: "platform_name" is the name of this Open edX installation. +#. "link_start" and "link_end" are the HTML for a link to the API +#. documentation. "api_support_email_link" is HTML for a link to email the API +#. support staff. +#: lms/templates/api_admin/status.html +msgid "" +"To learn more about the {platform_name} Course Catalog API, visit " +"{link_start}our API documentation page{link_end}. For questions about using " +"this API, contact {api_support_email_link}." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "API Terms of Service" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Terms of Service for {platform_name} APIs" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Effective Date: May 24th, 2018" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"Welcome to {platform_name}. Thank you for using {platform_name}'s Course " +"Discovery API, Enterprise API and/or any additional APIs that we may offer " +"from time to time (collectively, the \"APIs\"). Please read these Terms of " +"Service prior to accessing or using the APIs. These Terms of Service, any " +"additional terms within accompanying API documentation, and any applicable " +"policies and guidelines that {platform_name} makes available and/or updates " +"from time to time are agreements (collectively, the \"Terms\") between you " +"and {platform_name}. These Terms are issued under the enterprise product " +"agreement, member participation agreement, or other direct agreement " +"governing the purchase of {platform_name} products, if any (the " +"\"Agreement\"), executed by you or the party on whose behalf you are " +"accessing or using the APIs and {platform_name}. In the event that you have" +" such an Agreement that applies to your use of the APIs, the Agreement will " +"control in the event of any conflict between it and these Terms. By " +"accessing or using the APIs, you accept and agree to be legally bound by the" +" Terms, whether or not you are a registered user. If you are accessing or " +"using the APIs on behalf of a company, organization or other legal entity, " +"you are agreeing to these Terms for that entity and representing and " +"warranting to {platform_name} that you have full authority to accept and " +"agree to these Terms for such entity, in which case the terms \"you,\" " +"\"your\" or related terms herein shall refer to such entity on whose behalf " +"you are accessing or using the APIs. If you do not have such authority or if" +" you do not understand or do not wish to be bound by the Terms, you should " +"not use the APIs." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "API Access" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"To access the APIs, you will need to create an {platform_name} user account " +"for your application (not for personal use). This account will provide you " +"with access to our API request page at {request_url}. On that page, you must" +" complete the API request form including a description of your proposed uses" +" for the APIs. Any account and registration information that you provide to " +"{platform_name} must be accurate and up to date, and you agree to inform us " +"promptly of any changes. {platform_name_capitalized} will review your API " +"request form and, upon approval in {platform_name}'s sole discretion, will " +"provide you with instructions for obtaining your API shared secret and " +"client ID." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Permissible Use" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You agree to use the APIs solely for the purpose of delivering content that " +"is accessed through the APIs (the \"API Content\") to your own website, " +"mobile site, app, blog, email distribution list, or social media property " +"(\"Your Application\") or for another commercial use that you described in " +"your request for access and that {platform_name} has approved on a case-by-" +"case basis. {platform_name_capitalized} may monitor your use of the APIs for" +" compliance with the Terms and may deny your access or shut down your " +"integration if you attempt to go around or exceed the requirements and " +"limitations set by {platform_name}. Your Application or other approved use " +"of the API or the API Content must not prompt your end users to provide " +"their {platform_name} username, password or other {platform_name} user " +"credentials anywhere other than on the {platform_name} website at " +"{platform_url}." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Prohibited Uses and Activities" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} shall have the sole right to determine whether " +"or not any given use of the APIs is acceptable, and {platform_name} reserves" +" the right to revoke API access for any use that {platform_name} determines " +"at any time, in its sole discretion, does not benefit or serve the best " +"interests of {platform_name}, its users and its partners." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"The following activities are not acceptable when using the APIs (this is not" +" an exhaustive list):" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"collecting or storing the names, passwords, or other credentials of " +"{platform_name} users;" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"scraping or similar techniques to aggregate or otherwise create permanent " +"copies of API Content;" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"violating, misappropriating or infringing any copyright, trademark rights, " +"rights of privacy or publicity, confidential information or any other right " +"of any third party;" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "altering or editing any content or graphics in the API Content;" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"altering or removing any trademark, copyright or other proprietary or legal " +"notices contained in, or appearing on, the APIs or any API Content;" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"sublicensing, re-distributing, renting, selling or leasing access to the " +"APIs or your client secret to any third party;" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"distributing any virus, Trojan horse, spyware, adware, malware, bot, time " +"bomb, worm, or other harmful or malicious component; or" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"using the APIs for any purpose which or might overburden, impair or disrupt " +"the {platform_name} platform, servers or networks." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Usage and Quotas" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} reserves the right, in its discretion, to impose" +" reasonable restrictions and limitations on the number and frequency of " +"calls made by you or Your Application to the APIs. You must not attempt to " +"circumvent any restrictions or limitations imposed by {platform_name}." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Compliance" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You agree to comply with all applicable laws, regulations, and third party " +"rights (including without limitation laws regarding the import or export of " +"data or software, privacy, copyright, and local laws). You will not use the " +"APIs to encourage or promote illegal activity or violation of third party " +"rights. You will not violate any other terms of service with " +"{platform_name}. You will only access (or attempt to access) an API by the " +"means described in the documentation of that API. You will not misrepresent " +"or mask either your identity or Your Application's identity when using the " +"APIs." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Ownership" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You acknowledge and agree that the APIs and all API Content contain valuable" +" intellectual property of {platform_name} and its partners. The APIs and all" +" API Content are protected by United States and foreign copyright, " +"trademark, and other laws. All rights in the APIs and the API Content, if " +"not expressly granted, are reserved. By using the APIs or any API Content, " +"you do not acquire ownership of any rights in the APIs or API Content. You " +"must not claim or attempt to claim ownership in the APIs or any API Content " +"or misrepresent yourself or your company or your Application as being the " +"source of any API Content. You may not modify, create derivative works of, " +"or attempt to use, license, or in any way exploit any API Content in whole " +"or in part on your own behalf or on behalf of any third party. You may not " +"distribute or modify the APIs or any API Content (including adaptation, " +"editing, excerpting, or creating derivative works)." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"All names, logos and seals (\"Trademarks\") that appear in the APIs, API " +"Content, or on or through the services made available on or through the " +"APIs, if any, are the property of their respective owners. You may not " +"remove, alter, or obscure any copyright, Trademark, or other proprietary " +"rights notices incorporated in or accompanying the API Content. If any " +"{platform_name} Participant (as hereinafter defined) or other third party " +"revokes access to API Content owned or controlled by that {platform_name} " +"Participant or third party, including without limitation any Trademarks, you" +" must ensure that all API Content pertaining to that {platform_name} " +"Participant or third party is deleted from Your Application and your " +"networks, systems and servers as soon as reasonably possible. " +"\"{platform_name_capitalized} Participants\" means MIT, Harvard, and the " +"other entities providing information, API Content or services for the APIs, " +"the course instructors and their staffs." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"To the extent that you submit any content to {platform_name} in connection " +"with your use of the APIs or any API Content, you hereby grant to " +"{platform_name} a worldwide, non-exclusive, transferable, assignable, sub " +"licensable, fully paid-up, royalty-free, perpetual, irrevocable right and " +"license to host, transfer, display, perform, reproduce, modify, distribute, " +"re-distribute, relicense and otherwise use, make available and exploit such " +"content, in whole or in part, in any form and in any media formats and " +"through any media channels (now known or hereafter developed)." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Privacy" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You agree to comply with all applicable privacy laws and regulations and to " +"be transparent with respect to any collection and use of end user data. You " +"will provide and adhere to a privacy policy for Your Application that " +"clearly and accurately describes to your end users what user information you" +" collect and how you may use and share such information (including for " +"advertising) with {platform_name} and other third parties." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Right to Charge" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"Certain access to the APIs may be provided free of charge, but " +"{platform_name} reserves the right to charge fees for future use or access " +"to the APIs." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} reserves the right to modify the Terms at any " +"time without advance notice. Any changes to the Terms will be effective " +"immediately upon posting on this page, with an updated effective date. By " +"accessing or using the APIs after any changes have been made, you signify " +"your agreement on a prospective basis to the modified Terms and all of the " +"changes. Be sure to return to this page periodically to ensure familiarity " +"with the most current version of the Terms." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} may also update or modify the APIs from time to " +"time without advance notice. These changes may affect your use of the APIs " +"or the way your integration interacts with the API. If we make a change " +"that is unacceptable to you, you should stop using the APIs. Continued use " +"of the APIs means you accept the change." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Confidentiality" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"Your credentials (such as client secret and IDs) are intended to be used " +"solely by you. You will keep your credentials confidential and prevent and " +"discourage others from using your credentials. Your credentials may not be " +"embedded in open source projects." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"In the event that {platform_name} provides you with access to information " +"specific to {platform_name} and/or the APIs that is either marked as " +"\"Confidential\" or which a reasonable person would assume to be " +"confidential or proprietary given the terms of its disclosure " +"(\"Confidential Information\"), you agree to use this information only to " +"use and build with the APIs. You may not disclose the Confidential " +"Information to anyone without {platform_name}'s prior written consent, and " +"you agree to protect the Confidential Information from unauthorized use and " +"disclosure in the same way that you would protect your own confidential " +"information. Confidential Information does not include information that you " +"independently developed, that was rightfully given to you by a third party " +"without any confidentiality obligation, or that becomes public through no " +"fault of your own. You may disclose Confidential Information when compelled " +"to do so by law if you provide {platform_name} with reasonable prior notice," +" unless a court orders that {platform_name} not receive notice." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Disclaimer of Warranty / Limitation of Liabilities" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"THE APIS AND ANY INFORMATION, API CONTENT OR SERVICES MADE AVAILABLE ON OR " +"THROUGH THE APIS ARE PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT " +"WARRANTY OF ANY KIND (EXPRESS, IMPLIED OR OTHERWISE), INCLUDING, WITHOUT " +"LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A " +"PARTICULAR PURPOSE AND NON-INFRINGEMENT, EXCEPT INSOFAR AS ANY SUCH IMPLIED " +"WARRANTIES MAY NOT BE DISCLAIMED UNDER APPLICABLE LAW." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name} AND THE {platform_name} PARTICIPANTS DO NOT WARRANT THAT THE" +" APIS WILL OPERATE IN AN UNINTERRUPTED OR ERROR-FREE MANNER, THAT THE APIS " +"ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS, OR THAT THE APIS OR API " +"CONTENT PROVIDED WILL MEET YOUR NEEDS OR EXPECTATIONS. {platform_name} AND " +"THE {platform_name} PARTICIPANTS ALSO MAKE NO WARRANTY ABOUT THE ACCURACY, " +"COMPLETENESS, TIMELINESS, OR QUALITY OF THE APIS OR ANY API CONTENT, OR THAT" +" ANY PARTICULAR API CONTENT WILL CONTINUE TO BE MADE AVAILABLE." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"USE OF THE APIS, AND THE API CONTENT AND ANY SERVICES OBTAINED FROM OR " +"THROUGH THE APIS, IS AT YOUR OWN RISK. YOUR ACCESS TO OR DOWNLOAD OF " +"INFORMATION, MATERIALS OR DATA THROUGH THE APIS IS AT YOUR OWN DISCRETION " +"AND RISK, AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY" +" (INCLUDING YOUR COMPUTER SYSTEM) OR LOSS OF DATA THAT RESULTS FROM THE " +"DOWNLOAD OR USE OF SUCH INFORMATION, MATERIALS OR DATA, UNLESS OTHERWISE " +"EXPRESSLY PROVIDED FOR IN THE {platform_name} PRIVACY POLICY." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, YOU AGREE THAT NEITHER " +"{platform_name} NOR ANY OF THE {platform_name} PARTICIPANTS WILL BE LIABLE " +"TO YOU FOR ANY LOSS OR DAMAGES, EITHER ACTUAL OR CONSEQUENTIAL, ARISING OUT " +"OF OR RELATING TO THE TERMS, OR YOUR (OR ANY THIRD PARTY'S) USE OF OR " +"INABILITY TO USE THE APIS OR ANY API CONTENT, OR YOUR RELIANCE UPON " +"INFORMATION OBTAINED FROM OR THROUGH THE APIS, WHETHER YOUR CLAIM IS BASED " +"IN CONTRACT, TORT, STATUTORY OR OTHER LAW." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"IN PARTICULAR, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, NEITHER " +"{platform_name} NOR ANY OF THE {platform_name} PARTICIPANTS WILL HAVE ANY " +"LIABILITY FOR ANY CONSEQUENTIAL, INDIRECT, PUNITIVE, SPECIAL, EXEMPLARY OR " +"INCIDENTAL DAMAGES, WHETHER FORESEEABLE OR UNFORESEEABLE AND WHETHER OR NOT " +"{platform_name} OR ANY OF THE {platform_name} PARTICIPANTS HAS BEEN " +"NEGLIGENT OR OTHERWISE AT FAULT (INCLUDING, BUT NOT LIMITED TO, CLAIMS FOR " +"DEFAMATION, ERRORS, LOSS OF PROFITS, LOSS OF DATA OR INTERRUPTION IN " +"AVAILABILITY OF DATA)." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"CERTAIN STATE LAWS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE " +"EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME" +" OR ALL OF THE ABOVE DISCLAIMERS, EXCLUSIONS, OR LIMITATIONS MAY NOT APPLY " +"TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"The APIs and API Content may include hyperlinks to sites maintained or " +"controlled by others and not affiliated with or under the control of " +"{platform_name}. {platform_name_capitalized} and the {platform_name} " +"Participants are not responsible for and do not routinely screen, approve, " +"review or endorse the contents of or use of any of the products or services " +"that may be offered at these third-party sites. If you decide to access " +"linked third-party websites, you do so at your own risk." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"To the maximum extent permitted by applicable law, you agree to defend, hold" +" harmless and indemnify {platform_name} and the {platform_name} " +"Participants, and their respective subsidiaries, affiliates, officers, " +"faculty, students, fellows, governing board members, agents and employees " +"from and against any third-party claims, actions or demands arising out of, " +"resulting from or in any way related to your use of the APIs and any API " +"Content, including any liability or expense arising from any and all claims," +" losses, damages (actual and consequential), suits, judgments, litigation " +"costs and attorneys' fees, of every kind and nature. In such a case, " +"{platform_name} or one of the {platform_name} Participants will provide you " +"with written notice of such claim, action or demand." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "General Legal Terms" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"The Terms constitute the entire agreement between you and {platform_name} " +"with respect to your use of the APIs and API Content, superseding any prior " +"agreements between you and {platform_name} regarding your use of the APIs " +"and API Content. The failure of {platform_name} to exercise or enforce any " +"right or provision of the Terms shall not constitute a waiver of such right " +"or provision. If any provision of the Terms is found by a court of competent" +" jurisdiction to be invalid, the parties nevertheless agree that the court " +"should endeavor to give effect to the parties' intentions as reflected in " +"the provision and the other provisions of the Terms shall remain in full " +"force and effect. The Terms do not create any third party beneficiary rights" +" or any agency, partnership, or joint venture. For any notice provided to " +"you by {platform_name} under these Terms, {platform_name} may notify you via" +" the email address associated with your {platform_name} account." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You agree that the Terms, the APIs, and any claim or dispute arising out of " +"or relating to the Terms or the APIs will be governed by the laws of the " +"Commonwealth of Massachusetts, excluding its conflicts of law provisions. " +"You agree that all such claims and disputes will be heard and resolved " +"exclusively in the federal or state courts located in and serving Cambridge," +" Massachusetts, U.S.A. You consent to the personal jurisdiction of those " +"courts over you for this purpose, and you waive and agree not to assert any " +"objection to such proceedings in those courts (including any defense or " +"objection of lack of proper jurisdiction or venue or inconvenience of " +"forum). Notwithstanding the foregoing, you agree that {platform_name} shall " +"still be allowed to apply for injunctive remedies (or an equivalent type of " +"urgent legal relief) in any jurisdiction." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Termination" +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You may stop using the APIs at any time. You agree that {platform_name}, in " +"its sole discretion and at any time, may terminate your use of the APIs or " +"any API Content for any reason or no reason, without prior notice or " +"liability." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} and the {platform_name} Participants reserve the" +" right at any time in their sole discretion to cancel, delay, reschedule or " +"alter the format of any API or API Content offered through {platform_name}, " +"or to cease providing any part or all of the APIs or API Content or related " +"services, and you agree that neither {platform_name} nor any of the " +"{platform_name} Participants will have any liability to you for such an " +"action." +msgstr "" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"Upon any termination of the Terms or discontinuation of your access to an " +"API for any reason, your right to use any API and API Content will " +"immediately cease. You will immediately stop using the APIs and delete any " +"cached or stored API Content from Your Application and your networks, " +"systems and servers as soon as reasonably possible. All provisions of the " +"Terms that by their nature should survive termination shall survive " +"termination, including, without limitation, ownership provisions, warranty " +"disclaimers, and limitations of liability. Termination of your access to and" +" use of the APIs and API Content shall not relieve you of any obligations " +"arising or accruing prior to such termination or limit any liability that " +"you otherwise may have to {platform_name}, including without limitation any " +"indemnification obligations contained herein." +msgstr "" + +#: lms/templates/api_admin/catalogs/edit.html +msgid "Edit {catalog_name}" +msgstr "" + +#: lms/templates/api_admin/catalogs/edit.html +#: lms/templates/api_admin/catalogs/list.html +msgid "Download CSV" +msgstr "" + +#: lms/templates/api_admin/catalogs/edit.html +msgid "Delete this catalog" +msgstr "" + +#: lms/templates/api_admin/catalogs/edit.html +msgid "Update Catalog" +msgstr "" + +#: lms/templates/api_admin/catalogs/list.html +msgid "Catalogs for {username}" +msgstr "" + +#: lms/templates/api_admin/catalogs/list.html +msgid "Create new catalog:" +msgstr "" + +#: lms/templates/api_admin/catalogs/list.html +msgid "Create Catalog" +msgstr "" + +#: lms/templates/api_admin/catalogs/search.html +msgid "Catalog search" +msgstr "" + +#: lms/templates/api_admin/catalogs/search.html +msgid "Catalog Search" +msgstr "" + +#: lms/templates/api_admin/catalogs/search.html +msgid "Enter a username to view catalogs belonging to that user." +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Open Calculator" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Enter equation" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Calculator Input Field" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Hints" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "" +"Use the arrow keys to navigate the tips or use the tab key to return to the " +"calculator" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "" +"For detailed information, see {math_link_start}Entering Mathematical and " +"Scientific Expressions{math_link_end} in the {guide_link_start}edX Guide for" +" Students{guide_link_end}." +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Tips" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "" +"Use parentheses () to make expressions clear. You can use parentheses inside" +" other parentheses." +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Do not use spaces in expressions." +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "For constants, indicate multiplication explicitly (example: 5*c)." +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "For affixes, type the number and affix without a space (example: 5c)." +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "" +"For functions, type the name of the function, then the expression in " +"parentheses." +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "To Use" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Type" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Examples" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Numbers" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Integers" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Fractions" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Decimals" +msgstr "" + +#. Translators: This refers to mathematical operators such as `plus`, `minus`, +#. `division` and others. +#: lms/templates/calculator/toggle_calculator.html +msgid "Operators" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "+ - * / (add, subtract, multiply, divide)" +msgstr "" + +#. Translators: Please do not translate mathematical symbols. +#: lms/templates/calculator/toggle_calculator.html +msgid "^ (raise to a power)" +msgstr "" + +#. Translators: Please do not translate mathematical symbols. +#: lms/templates/calculator/toggle_calculator.html +msgid "|| (parallel resistors)" +msgstr "" + +#. Translators: This refers to symbols that are mathematical constants, such +#. as +#. "i" (square root of -1) +#: lms/templates/calculator/toggle_calculator.html +msgid "Constants" +msgstr "" + +#. Translators: This refers to symbols that appear at the end of a number, +#. such +#. as the percent sign (%) and metric affixes +#: lms/templates/calculator/toggle_calculator.html +msgid "Affixes" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Percent sign (%) and metric affixes (d, c, m, u, n, p, k, M, G, T)" +msgstr "" + +#. Translators: This refers to basic mathematical functions such as "square +#. root" +#: lms/templates/calculator/toggle_calculator.html +msgid "Basic functions" +msgstr "" + +#. Translators: This refers to mathematical Sine, Cosine and Tan +#: lms/templates/calculator/toggle_calculator.html +msgid "Trigonometric functions" +msgstr "" + +#. Translators: Please see http://en.wikipedia.org/wiki/Scientific_notation +#: lms/templates/calculator/toggle_calculator.html +msgid "Scientific notation" +msgstr "" + +#. Translators: 10^ is a mathematical symbol. Please do not translate. +#: lms/templates/calculator/toggle_calculator.html +msgid "10^ and the exponent" +msgstr "" + +#. Translators: this is part of scientific notation. Please see +#. http://en.wikipedia.org/wiki/Scientific_notation#E_notation +#: lms/templates/calculator/toggle_calculator.html +msgid "e notation" +msgstr "" + +#. Translators: 1e is a mathematical symbol. Please do not translate. +#: lms/templates/calculator/toggle_calculator.html +msgid "1e and the exponent" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Calculate" +msgstr "" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Result" +msgstr "" + +#: lms/templates/ccx/coach_dashboard.html +msgid "CCX Coach Dashboard" +msgstr "" + +#: lms/templates/ccx/coach_dashboard.html +msgid "Name your CCX" +msgstr "" + +#: lms/templates/ccx/coach_dashboard.html +msgid "Create a new Custom Course for edX" +msgstr "" + +#: lms/templates/ccx/coach_dashboard.html +#: lms/templates/ccx/grading_policy.html +msgid "Grading Policy" +msgstr "" + +#: lms/templates/ccx/coach_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Enrollment" +msgstr "" + +#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/student_admin.html +msgid "Student Grades" +msgstr "" + +#: lms/templates/ccx/coach_dashboard.html +msgid "Please enter a valid CCX name." +msgstr "" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Email Addresses/Usernames" +msgstr "" + +#: lms/templates/ccx/enrollment.html +msgid "" +"Enter one or more email addresses or usernames separated by new lines or " +"commas." +msgstr "" + +#: lms/templates/ccx/enrollment.html +msgid "" +"Make sure you enter the information carefully. You will not receive " +"notification for invalid usernames or email addresses." +msgstr "" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Auto Enroll" +msgstr "" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is {em_start}checked{em_end}, users who have not yet " +"registered for {platform_name} will be automatically enrolled." +msgstr "" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is left {em_start}unchecked{em_end}, users who have not yet " +"registered for {platform_name} will not be enrolled, but will be allowed to " +"enroll once they make an account." +msgstr "" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Notify users by email" +msgstr "" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is {em_start}checked{em_end}, users will receive an email " +"notification." +msgstr "" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgctxt "someone" +msgid "Enroll" +msgstr "" + +#: lms/templates/ccx/enrollment.html +msgid "Student List Management" +msgstr "" + +#: lms/templates/ccx/enrollment.html +msgid "CCX student list management response message" +msgstr "" + +#: lms/templates/ccx/enrollment.html +msgid "Revoke access" +msgstr "" + +#: lms/templates/ccx/grading_policy.html +msgid "WARNING" +msgstr "" + +#: lms/templates/ccx/grading_policy.html +msgid "" +"For advanced users only. Errors in the grading policy can lead to the course" +" failing to display. This form does not check the validity of the policy " +"before saving." +msgstr "" + +#: lms/templates/ccx/grading_policy.html +msgid "Most coaches should not need to make changes to the grading policy." +msgstr "" + +#: lms/templates/ccx/grading_policy.html +msgid "Save Grading Policy" +msgstr "" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of YYYY-MM-DD +#: lms/templates/ccx/schedule.html +msgid "Date format four digit year dash two digit month dash two digit day" +msgstr "" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of HH:MM +#: lms/templates/ccx/schedule.html +msgid "Time format two digit hours colon two digit minutes" +msgstr "" + +#: lms/templates/ccx/schedule.html +msgid "Time" +msgstr "" + +#: lms/templates/ccx/schedule.html +msgid "Set date" +msgstr "" + +#: lms/templates/ccx/schedule.html +msgid "You have unsaved changes." +msgstr "" + +#: lms/templates/ccx/schedule.html +msgid "There was an error saving changes." +msgstr "" + +#: lms/templates/ccx/schedule.html +msgid "Schedule a Unit" +msgstr "" + +#: lms/templates/ccx/schedule.html +msgid "Start Date" +msgstr "" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of YYYY-MM-DD +#: lms/templates/ccx/schedule.html +msgid "format four digit year dash two digit month dash two digit day" +msgstr "" + +#: lms/templates/ccx/schedule.html +msgid "yyyy-mm-dd" +msgstr "" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of HH:MM +#: lms/templates/ccx/schedule.html +msgid "Start time format two digit hours colon two digit minutes" +msgstr "" + +#: lms/templates/ccx/schedule.html +msgid "time" +msgstr "" + +#: lms/templates/ccx/schedule.html +msgid "(Optional)" +msgstr "" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of HH:MM +#: lms/templates/ccx/schedule.html +msgid "Due Time format two digit hours colon two digit minutes" +msgstr "" + +#: lms/templates/ccx/schedule.html +msgid "Add Unit" +msgstr "" + +#: lms/templates/ccx/schedule.html +msgid "Add All Units" +msgstr "" + +#: lms/templates/ccx/schedule.html +msgid "All units have been added." +msgstr "" + +#: lms/templates/ccx/student_admin.html +msgid "View gradebook" +msgstr "" + +#: lms/templates/ccx/student_admin.html +msgid "Download student grades" +msgstr "" + +#: lms/templates/certificates/_accomplishment-banner.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Print or share your certificate:" +msgstr "" + +#: lms/templates/certificates/_accomplishment-banner.html +msgid "Click the link to see my certificate." +msgstr "" + +#: lms/templates/certificates/_accomplishment-banner.html +msgid "Post on Facebook" +msgstr "" + +#: lms/templates/certificates/_accomplishment-banner.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Share on Twitter" +msgstr "" + +#: lms/templates/certificates/_accomplishment-banner.html +msgid "Tweet this Accomplishment. Pop up window." +msgstr "" + +#: lms/templates/certificates/_accomplishment-banner.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Add to LinkedIn Profile" +msgstr "" + +#: lms/templates/certificates/_accomplishment-banner.html +msgid "Add to Mozilla Backpack" +msgstr "" + +#: lms/templates/certificates/_accomplishment-banner.html +#: themes/elitemba-theme/lms/templates/certificates/_accomplishment-banner.html +msgid "Print Certificate" +msgstr "" + +#: lms/templates/certificates/_accomplishment-header.html +msgid "{platform_name} Home" +msgstr "" + +#: lms/templates/certificates/_accomplishment-rendering.html +msgid "Noted by" +msgstr "" + +#: lms/templates/certificates/_accomplishment-rendering.html +msgid "Supported by the following organizations" +msgstr "" + +#: lms/templates/certificates/_accomplishment-rendering.html +msgid "Awarded to:" +msgstr "" + +#: lms/templates/certificates/_edx-accomplishment-print-help.html +msgid "" +"For tips and tricks on printing your certificate, view the {link_start}Web " +"Certificates help documentation{link_end}." +msgstr "" + +#: lms/templates/certificates/invalid.html +msgid "Cannot Find Certificate" +msgstr "" + +#: lms/templates/certificates/invalid.html +msgid "" +"We cannot find a certificate with this URL or ID number. If you are trying " +"to validate a certificate, make sure that the URL or ID number is correct. " +"If you are sure that the URL or ID number is correct, contact support." +msgstr "" + +#: lms/templates/certificates/server-error.html +msgid "Invalid Certificate Configuration." +msgstr "" + +#: lms/templates/certificates/server-error.html +msgid "There is a problem with this certificate." +msgstr "" + +#: lms/templates/certificates/server-error.html +msgid "" +"To resolve the problem, your partner manager should verify that the " +"following information is correct." +msgstr "" + +#: lms/templates/certificates/server-error.html +msgid "The institution's logo." +msgstr "" + +#: lms/templates/certificates/server-error.html +msgid "The institution that is linked to the course." +msgstr "" + +#: lms/templates/certificates/server-error.html +msgid "The course information in the Course Administration tool." +msgstr "" + +#: lms/templates/certificates/server-error.html +msgid "" +"If all of the information is correct and the problem persists, contact " +"technical support." +msgstr "" + +#: lms/templates/certificates/valid.html +msgid "About edX Certificates" +msgstr "" + +#: lms/templates/commerce/checkout_cancel.html +msgid "Checkout Cancelled" +msgstr "" + +#: lms/templates/commerce/checkout_cancel.html +msgid "" +"Your transaction has been cancelled. If you feel an error has occurred, " +"contact {email}." +msgstr "" + +#: lms/templates/commerce/checkout_error.html +msgid "Checkout Error" +msgstr "" + +#: lms/templates/commerce/checkout_error.html +msgid "" +"An error has occurred with your payment. You have not been charged. " +"Please try to submit your payment again. If this problem persists, contact " +"{email}." +msgstr "" + +#: lms/templates/commerce/checkout_receipt.html +msgid "Loading Order Data..." +msgstr "" + +#: lms/templates/commerce/checkout_receipt.html +msgid "Please wait while we retrieve your order details." +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Enroll In {course_name} | Choose Your Track" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Sorry, there was an error when trying to enroll you" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Pursue Academic Credit with the Verified Track" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Pursue Academic Credit with a Verified Certificate" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Become eligible for academic credit and highlight your new skills and " +"knowledge with a verified certificate. Use this valuable credential to " +"qualify for academic credit, advance your career, or strengthen your school " +"applications." +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Benefits of the Verified Track" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Eligible for credit:{b_end} Receive academic credit after " +"successfully completing the course" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Unlimited Course Access: {b_end}Learn at your own pace, and access " +"materials anytime to brush up on what you've learned." +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Graded Assignments: {b_end}Build your skills through graded " +"assignments and projects." +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Easily Sharable: {b_end}Add the certificate to your CV or resume, " +"or post it directly on LinkedIn." +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Benefits of a Verified Certificate" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Official:{b_end} Receive an instructor-signed certificate with the " +"institution's logo" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Easily shareable:{b_end} Add the certificate to your CV or resume, " +"or post it directly on LinkedIn" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Highlight your new knowledge and skills with a verified certificate. Use " +"this valuable credential to improve your job prospects and advance your " +"career, or highlight your certificate in school applications." +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Official: {b_end}Receive an instructor-signed certificate with the " +"institution's logo" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Easily shareable: {b_end}Add the certificate to your CV or resume, " +"or post it directly on LinkedIn" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Motivating: {b_end}Give yourself an additional incentive to " +"complete the course" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Audit This Course" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have complete access to all the course " +"material, activities, tests, and forums." +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Audit This Course (No Certificate)" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have access to course materials and " +"discussions forums. {b_start}This track does not include graded assignments," +" or unlimited course access.{b_end}" +msgstr "" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have complete access to all the course " +"material, activities, tests, and forums. {b_start}Please note that this " +"track does not offer a certificate for learners who earn a passing " +"grade.{b_end}" +msgstr "" + +#: lms/templates/courseware/accordion.html +msgid "{chapter} current chapter" +msgstr "" + +#: lms/templates/courseware/accordion.html +msgid "{span_start}current section{span_end}" +msgstr "" + +#: lms/templates/courseware/accordion.html +#: lms/templates/courseware/progress.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "due {date}" +msgstr "" + +#: lms/templates/courseware/accordion.html +msgid "{section_format} due {{date}}" +msgstr "" + +#: lms/templates/courseware/accordion.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "This content is graded" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "An error occurred. Please try again later." +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "" +"The currently logged-in user account does not have permission to enroll in " +"this course. You may need to {start_logout_tag}log out{end_tag} then try the" +" enroll button again. Please visit the {start_help_tag}help page{end_tag} " +"for a possible solution." +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "You are enrolled in this course" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/shoppingcart/registration_code_receipt.html +#: openedx/features/journals/templates/journals/bundle_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Course" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "This course is in your cart." +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Course is full" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Enrollment in this course is by invitation only" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Enrollment is Closed" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Add {course_name} to Cart ({price} USD)" +msgstr "" + +#: lms/templates/courseware/course_about.html +msgid "Enroll in {course_name}" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Classes Start" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Classes End" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Estimated Effort" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Prerequisites" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You must successfully complete {link_start}{prc_display}{link_end} before " +"you begin this course." +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Additional Resources" +msgstr "" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "self" +msgid "enroll" +msgstr "" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html +msgid "Share with friends and family!" +msgstr "" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "I just enrolled in {number} {title} through {account}: {url}" +msgstr "" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "Take a course with {platform} online" +msgstr "" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "I just enrolled in {number} {title} through {platform} {url}" +msgstr "" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html +msgid "Tweet that you've enrolled in this course" +msgstr "" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "Post a Facebook message to say you've enrolled in this course" +msgstr "" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html +msgid "Email someone to say you've enrolled in this course" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +msgid "current location" +msgstr "" + +#. Translators: 'needs attention' is an alternative string for the +#. notification image that indicates the tab "needs attention". +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/tabs.html +msgid "needs attention" +msgstr "" + +#: lms/templates/courseware/course_navigation.html +msgid "Course Material" +msgstr "" + +#: lms/templates/courseware/course_updates.html +msgid "Hide" +msgstr "" + +#: lms/templates/courseware/course_updates.html +msgid "Show" +msgstr "" + +#: lms/templates/courseware/course_updates.html +msgid "Show Earlier Course Updates" +msgstr "" + +#: lms/templates/courseware/courses.html +#: themes/elitemba-theme/lms/templates/index.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +msgid "List of Courses" +msgstr "" + +#: lms/templates/courseware/courses.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +msgid "Refine Your Search" +msgstr "" + +#: lms/templates/courseware/courseware-chromeless.html +#: lms/templates/courseware/courseware.html +#: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html +#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html +msgid "{course_number} Courseware" +msgstr "" + +#: lms/templates/courseware/courseware-chromeless.html +#: lms/templates/courseware/courseware.html +msgid "Course Utilities" +msgstr "" + +#: lms/templates/courseware/courseware-error.html +msgid "Courseware" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Course Search" +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "No content has been added to this course" +msgstr "" + +#: lms/templates/courseware/courseware.html +#, python-format +msgid "" +"To access course materials, you must score {required_score}% or higher on " +"this exam. Your current score is {current_score}%." +msgstr "" + +#: lms/templates/courseware/courseware.html +msgid "Your score is {current_score}%. You have passed the entrance exam." +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "Gradebook" +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "Search students" +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "previous page" +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "of" +msgstr "" + +#: lms/templates/courseware/gradebook.html +msgid "next page" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "{course_number} Course Info" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "You are not enrolled yet" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "" +"You are not currently enrolled in this course. {link_start}Enroll " +"now!{link_end}" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Welcome to {org}'s {course_title}!" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Welcome to {course_title}!" +msgstr "" + +#: lms/templates/courseware/info.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Resume Course" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Course Updates and News" +msgstr "" + +#: lms/templates/courseware/info.html +msgid "Handout Navigation" +msgstr "" + +#: lms/templates/courseware/info.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Course Tools" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "News - MITx 6.002x" +msgstr "" + +#: lms/templates/courseware/news.html +msgid "Updates to Discussion Posts You Follow" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "Purchase the Program (" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Original Price" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "{currency}{oldPrice}" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Discounted Price" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "{currency}{newPrice})" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "Start Learning" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "Play" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "YouTube Video" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "View Courses" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "Meet the Instructors" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "Frequently Asked Questions" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "Job Outlook" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "Real Career Impact" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "What You'll Learn" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgctxt "Program" +msgid "Length" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "{weeks_to_complete} weeks per course" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgctxt "Program" +msgid "Effort" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "" +"{min_hours_effort_per_week}-{max_hours_effort_per_week} hours per week, per " +"course" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgctxt "Program" +msgid "Courses" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "{number_of_courses} courses in program" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgctxt "Program" +msgid "Price" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "Price ({currencyCode})" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "{currency}{newPrice}{htmlEnd} for entire program" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "You save " +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "{discount_value}" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "{currency}{full_program_price} for entire program" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "Courses in the {}" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Starts on {}" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "Enroll Now" +msgstr "" + +#: lms/templates/courseware/program_marketing.html +msgid "Not Currently Available" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{course_number} Progress" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Course Progress for Student '{username}' ({email})" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "View Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Opens in a new browser window" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Request Certificate" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Requirements for Course Credit" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{student_name}, you are no longer eligible for credit in this course." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "" +"{student_name}, you have met the requirements for credit in this course. " +"{a_start}Go to your dashboard{a_end} to purchase course credit." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{student_name}, you have not yet met the requirements for credit." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Information about course credit requirements" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "display_name" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Verification Submitted" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Verification Failed" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Verification Declined" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Completed by {date}" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Upcoming" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Less" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Details for each chapter" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "{earned} of {total} possible points" +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "" +"Suspicious activity detected during proctored exam review. Exam score 0." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Section grade has been overridden." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Problem Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Practice Scores: " +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Problem scores are hidden until the due date." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Practice scores are hidden until the due date." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Problem scores are hidden." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "Practice scores are hidden." +msgstr "" + +#: lms/templates/courseware/progress.html +msgid "No problem scores in this section" +msgstr "" + +#: lms/templates/courseware/syllabus.html +msgid "{course.display_number_with_default} Course Info" +msgstr "" + +#: lms/templates/courseware/welcome-back.html +msgid "" +"You were most recently in {section_link}. If you're done with that, choose " +"another section on the left." +msgstr "" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "Hi {name}," +msgstr "" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "Hi," +msgstr "" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"Congratulations! You are now eligible to receive course credit from " +"{providers} for successfully completing your {platform_name} course! " +"{link_start}Purchase credit now.{link_end}" +msgstr "" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"Congratulations! You are now eligible to receive course credit for " +"successfully completing your {platform_name} course! {link_start}Purchase " +"credit now.{link_end}" +msgstr "" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"Course credit can help you get a jump start on your university degree, " +"finish a degree already started, or fulfill requirements at a different " +"academic institution." +msgstr "" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "There are 2 steps to getting course credit." +msgstr "" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"Purchase credit by going to your {link_start}{platform_name} " +"dashboard{link_end} and clicking the {bold_start}Get Credit{bold_end} button" +" below the course title." +msgstr "" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"When your payment is complete, return to the dashboard and click the " +"{bold_start}Request Credit{bold_end} button under the course title to " +"request an official academic transcript at the institution that granted the " +"credit." +msgstr "" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"We hope you enjoyed the course, and we hope to see you in future " +"{platform_name} courses!" +msgstr "" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "The {platform_name} Team" +msgstr "" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"{link_start}Click here for more information on credit at " +"{platform_name}{link_end}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your certificate will be available on or before {date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your final grade:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required for a {cert_name_short}:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required to pass this course:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your verified {cert_name_long} is being held pending confirmation that the " +"issuance of your {cert_name_short} is in compliance with strict U.S. " +"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " +"mistakenly identified you as being connected with one of those countries, " +"please let us know by contacting {email}. If you would like a refund on your" +" {cert_name_long}, please contact our billing address {billing_email}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your {cert_name_long} is being held pending confirmation that the issuance " +"of your {cert_name_short} is in compliance with strict U.S. embargoes on " +"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " +"identified you as being connected with one of those countries, please let us" +" know by contacting {email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your certificate was not issued because you do not have a current verified " +"identity with {platform_name}. " +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Verify your identity now." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your {cert_name_short} is Generating" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open the certificate web view" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "View {cert_name_short}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open/download a PDF document" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"This link will open/download a PDF document of your verified " +"{cert_name_long}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your ID Verified {cert_name_short} (PDF)" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Complete our course feedback survey" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course details" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Home Page" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Cover Image" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Enrolled as: " +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/static_templates/help.html +msgid "Coming Soon" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Ended - {date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Started - {date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Starts - {date}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "for {course_display_name}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You must select a session by {expiration_date} to access the course." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You must select a session to access the course." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Change or Leave Session" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You can no longer change sessions." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You can change sessions until {entitlement_expiration_date}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Archived Course" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "I'm taking {course_name} online with {facebook_brand}. Check it out!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Share {course_name} on Facebook" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Share on Facebook" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "I'm taking {course_name} online with {twitter_brand}. Check it out!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Share {course_name} on Twitter" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course options for" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_entitlement_actions.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Available Actions" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_entitlement_actions.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Email Settings" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Related Programs" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can no longer access this course because payment has not yet been " +"received. You can contact the account holder to request payment, or you can " +"unenroll from this course" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can no longer access this course because payment has not yet been " +"received. You can {contact_link_start}contact the account " +"holder{contact_link_end} to request payment, or you can " +"{unenroll_link_start}unenroll{unenroll_link_end} from this course" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Verification not yet complete." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You only have {days} day left to verify for this course." +msgid_plural "You only have {days} days left to verify for this course." +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Almost there!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You still need to verify for this course." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Verify Now" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You have submitted your verification information." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You will see a message on your dashboard when the verification process is " +"complete (usually within 1-2 days)." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Your current verification will expire soon!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You have submitted your reverification information. You will see a message " +"on your dashboard when the verification process is complete (usually within " +"1-2 days)." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "You have successfully verified your ID with edX" +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Your current verification is effective until {date}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Your current verification will expire soon." +msgstr "" + +#. Translators: start_link and end_link will be replaced with HTML tags; +#. please do not translate these. +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Your current verification will expire in {days} days. {start_link}Re-verify " +"your identity now{end_link} using a webcam and a government-issued photo ID." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Pursue a {cert_name_long} to highlight the knowledge and skills you gain in " +"this course." +msgstr "" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"It's official. It's easily shareable. It's a proven motivator to complete " +"the course. {line_break}{link_start}Learn more about the verified " +"{cert_name_long}{link_end}." +msgstr "" + +#. Translators: provider_name is the name of a credit provider or university +#. (e.g. State University) +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"You have completed this course and are eligible to purchase course credit. " +"Select Get Credit to get started." +msgstr "" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "You are now eligible for credit from {provider}. Congratulations!" +msgstr "" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "Get Credit" +msgstr "" + +#. Translators: link_to_provider_site is a link to an external webpage. The +#. text of the link will be the name of a credit provider, such as 'State +#. University' or 'Happy Fun Company'. +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"Thank you for your payment. To receive course credit, you must now request " +"credit at the {link_to_provider_site} website. Select Request Credit " +"to get started." +msgstr "" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "Request Credit" +msgstr "" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"{provider_name} has received your course credit request. We will update you " +"when credit processing is complete." +msgstr "" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "View Details" +msgstr "" + +#. Translators: link_to_provider_site is a link to an external webpage. The +#. text of the link will be the name of a credit provider, such as 'State +#. University' or 'Happy Fun Company'. provider_name is the name of credit +#. provider. +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"Congratulations! {provider_name} has approved your request for course" +" credit. To see your course credit, visit the {link_to_provider_site} " +"website." +msgstr "" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "View Credit" +msgstr "" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"{provider_name} did not approve your request for course credit. For more " +"information, contact {link_to_provider_site} directly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"An error occurred with this transaction. For help, contact {support_email}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_entitlement_actions.html +msgid "Course options for {courseName}" +msgstr "" + +#: lms/templates/dashboard/_dashboard_show_consent.html +msgid "Consent to share your data" +msgstr "" + +#: lms/templates/dashboard/_dashboard_show_consent.html +msgid "" +"To access this course, you must first consent to share your learning " +"achievements with {enterprise_customer_name}." +msgstr "" + +#: lms/templates/dashboard/_dashboard_show_consent.html +msgid "View Consent" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Current Verification Status: Approved" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your edX verification has been approved. Your verification is effective for " +"one year after submission." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Current Verification Status: Pending" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your edX ID verification is pending. Your verification information has been " +"submitted and will be reviewed shortly." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Current Verification Status: Denied" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification submission was not accepted. To receive a verified " +"certificate, you must submit a new photo of yourself and your government-" +"issued photo ID before the verification deadline for your course." +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Your verification was denied for the following reasons:" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Resubmit Verification" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Current Verification Status: Expired" +msgstr "" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification has expired. To receive a verified certificate, you must " +"submit a new photo of yourself and your government-issued photo ID before " +"the verification deadline for your course." +msgstr "" + +#: lms/templates/dashboard/_dashboard_third_party_error.html +msgid "Could Not Link Accounts" +msgstr "" + +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard/_dashboard_third_party_error.html +msgid "" +"The {provider_name} account you selected is already linked to another " +"{platform_name} account." +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "" +"We're sorry to see you go! Please share your main reason for unenrolling." +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I just wanted to browse the material" +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "This won't help me reach my goals" +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I don't have the time" +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I don't have the academic or language prerequisites" +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I don't have enough support" +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I am not happy with the quality of the content" +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "The course material was too hard" +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "The course material was too easy" +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Something was broken" +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Other" +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Thank you for sharing your reasons for unenrolling." +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "You are unenrolled from" +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Return To Dashboard" +msgstr "" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Browse Courses" +msgstr "" + +#: lms/templates/debug/run_python_form.html +msgid "Results:" +msgstr "" + +#: lms/templates/discussion/_discussion_inline.html +msgid "Topic:" +msgstr "" + +#: lms/templates/discussion/_discussion_inline.html +msgid "Show Discussion" +msgstr "" + +#: lms/templates/discussion/_discussion_inline_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "" + +#: lms/templates/discussion/_discussion_inline_studio.html +msgid "Discussion ID: {discussion_id}" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "Discussion topics list" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "Filter Topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "filter topics" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "All Discussions" +msgstr "" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "Posts I'm Following" +msgstr "" + +#. Translators: This labels a filter menu in forum navigation +#: lms/templates/discussion/_thread_list_template.html +msgid "Filter:" +msgstr "" + +#. Translators: This is a menu option for showing all forum threads unfiltered +#: lms/templates/discussion/_thread_list_template.html +msgid "Show all posts" +msgstr "" + +#. Translators: This is a menu option for showing only unread forum threads +#: lms/templates/discussion/_thread_list_template.html +msgid "Unread posts" +msgstr "" + +#. Translators: This is a menu option for showing only unanswered forum +#. question threads +#: lms/templates/discussion/_thread_list_template.html +msgid "Unanswered posts" +msgstr "" + +#. Translators: This is a menu option for showing only forum threads flagged +#. for abuse +#: lms/templates/discussion/_thread_list_template.html +msgid "Flagged" +msgstr "" + +#. Translators: This labels a group menu in forum navigation +#: lms/templates/discussion/_thread_list_template.html +msgid "Group:" +msgstr "" + +#: lms/templates/discussion/_thread_list_template.html +msgid "in all groups" +msgstr "" + +#. Translators: This labels a sort menu in forum navigation +#: lms/templates/discussion/_thread_list_template.html +msgid "Sort:" +msgstr "" + +#. Translators: This is a menu option for sorting forum threads +#: lms/templates/discussion/_thread_list_template.html +msgid "by recent activity" +msgstr "" + +#. Translators: This is a menu option for sorting forum threads +#: lms/templates/discussion/_thread_list_template.html +msgid "by most activity" +msgstr "" + +#. Translators: This is a menu option for sorting forum threads +#: lms/templates/discussion/_thread_list_template.html +msgid "by most votes" +msgstr "" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Student Notes" +msgstr "" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Highlights and notes you've made in course content" +msgstr "" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Search notes for:" +msgstr "" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Search notes for..." +msgstr "" + +#: lms/templates/edxnotes/edxnotes.html +msgid "View notes by:" +msgstr "" + +#: lms/templates/edxnotes/edxnotes.html +msgid "" +"You have not made any notes in this course yet. Other students in this " +"course are using notes to:" +msgstr "" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Mark a passage or concept so that it's easy to find later." +msgstr "" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Record thoughts about a specific passage or concept." +msgstr "" + +#: lms/templates/edxnotes/edxnotes.html +msgid "" +"Highlight important information to review later in the course or in future " +"courses." +msgstr "" + +#: lms/templates/edxnotes/edxnotes.html +msgid "" +"Get started by making a note in something you just read, like " +"{section_link}." +msgstr "" + +#: lms/templates/edxnotes/toggle_notes.html +msgid "Hide notes" +msgstr "" + +#: lms/templates/edxnotes/toggle_notes.html +msgid "Show notes" +msgstr "" + +#: lms/templates/emails/activation_email.txt +msgid "" +"You're almost there! Use the link to activate your account to access " +"engaging, high-quality {platform_name} courses. Note that you will not be " +"able to log back into your account until you have activated it." +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "Enjoy learning with {platform_name}." +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "" +"If you need help, please use our web form at {support_url} or email " +"{support_email}." +msgstr "" + +#: lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "" +"This email message was automatically sent by {lms_url} because someone " +"attempted to create an account on {platform_name} using this email address." +msgstr "" + +#: lms/templates/emails/activation_email_subject.txt +msgid "Action Required: Activate your {platform_name} account" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Thank you for your purchase of " +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Your payment was successful." +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "" +"If you have billing questions, please read the FAQ ({faq_url}) or contact " +"{billing_email}." +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "If you have billing questions, please contact {billing_email}." +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"{order_placed_by} placed an order and mentioned your name as the " +"Organization contact." +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"{order_placed_by} placed an order and mentioned your name as the additional " +"receipt recipient." +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "The items in your order are:" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "Quantity - Description - Price" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Company Name:" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Purchase Order Number:" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Company Contact Name:" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Company Contact Email:" +msgstr "" + +#. Translators: this will be the name of a person receiving an email +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Recipient Name:" +msgstr "" + +#. Translators: this will be the email address of a person receiving an email +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Recipient Email:" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "#:" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Order Number: {order_number}" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"A CSV file of your registration URLs is attached. Please distribute " +"registration URLs to each student planning to enroll using the email " +"template below." +msgstr "" + +#. Translators: This is followed by the instructor or course team name (so +#. could be singular or plural) +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Warm regards," +msgstr "" + +#. Translators: The
    is a line break (empty line), please keep this html +#. in +#. the string after the sign off. +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Warm regards,
    The {platform_name} Team" +msgstr "" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Dear [[Name]]" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"To enroll in {course_names} we have provided a registration URL for you. " +"Please follow the instructions below to claim your access." +msgstr "" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Your redeem url is: [[Enter Redeem URL here from the attached CSV]]" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "(1) Register for an account at {site_name}" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"(2) Once registered, copy the redeem URL and paste it in your web browser." +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"(3) On the enrollment confirmation page, Click the 'Activate Enrollment " +"Code' button. This will show the enrollment confirmation." +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"(4) You should be able to click on 'view course' button or see your course " +"on your student dashboard at {url}" +msgstr "" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"(5) Course materials will not be available until the course start date." +msgstr "" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. Please also keep the

    and

    HTML +#. tags in place. +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "

    Sincerely,

    [[Your Signature]]

    " +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +#: themes/elitemba-theme/lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us immediately. Contact information is listed at:" +msgstr "" + +#: lms/templates/emails/confirm_email_change.txt +#: themes/elitemba-theme/lms/templates/emails/confirm_email_change.txt +#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "" + +#: lms/templates/emails/email_change_subject.txt +msgid "Request to change {platform_name} account e-mail" +msgstr "" + +#: lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +msgid "" +"Sorry! The photos you submitted for ID verification were not accepted, for " +"the following reason(s):" +msgstr "" + +#: lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +msgid "The photo(s) of you:" +msgstr "" + +#: lms/templates/emails/failed_verification_email.txt +msgid "The photo of you:" +msgstr "" + +#: lms/templates/emails/failed_verification_email.txt +msgid "The photo of your ID:" +msgstr "" + +#: lms/templates/emails/failed_verification_email.txt +msgid "Other Reasons:" +msgstr "" + +#: lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +msgid "Resubmit Verification: {reverify_url}" +msgstr "" + +#: lms/templates/emails/failed_verification_email.txt +msgid "ID Verification FAQ: {faq_url}" +msgstr "" + +#: lms/templates/emails/failed_verification_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/emails/passed_verification_email.txt +#: lms/templates/emails/photo_submission_confirmation.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/photo_submission_review.txt +msgid "Thank you," +msgstr "" + +#: lms/templates/emails/failed_verification_email.txt +#: lms/templates/emails/passed_verification_email.txt +#: lms/templates/emails/photo_submission_confirmation.txt +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/photo_submission_review.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "The {platform_name} team" +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "" +"Your payment was successful. You will see the charge below on your next " +"credit or debit card statement under the company name {merchant_name}." +msgstr "" + +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "Your order number is: {order_number}" +msgstr "" + +#: lms/templates/emails/passed_verification_email.txt +msgid "Hi {full_name}" +msgstr "" + +#: lms/templates/emails/passed_verification_email.txt +msgid "Congratulations! Your ID verification process was successful." +msgstr "" + +#: lms/templates/emails/passed_verification_email.txt +msgid "" +"Your verification is effective for one year. It will expire on {expiry_date}" +msgstr "" + +#: lms/templates/emails/photo_submission_confirmation.txt +msgid "Hi {full_name}," +msgstr "" + +#: lms/templates/emails/photo_submission_confirmation.txt +msgid "Thanks for submitting your photos!" +msgstr "" + +#: lms/templates/emails/photo_submission_confirmation.txt +msgid "" +"We've received your information and the ID verification process has " +"begun.Check for an email from us in the next few days to confirm whether " +"your verification was successful.You can also check the status of the " +"verification process on your dashboard." +msgstr "" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "Thank you for purchasing enrollments in {course_name}." +msgstr "" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"An invoice for {currency_symbol}{total_price} is attached. Payment is due " +"upon receipt. You can find information about payment methods on the invoice." +msgstr "" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"A .csv file that lists your enrollment codes is attached. You can use the " +"email template below to distribute enrollment codes to your students. Each " +"student must use a separate enrollment code." +msgstr "" + +#. Translators: This is the signature of an email. "\n" is a newline +#. character +#. and should be placed between the closing word and the signature. +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"Thanks,\n" +"The {platform_name} Team" +msgstr "" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "Dear [[Name]]:" +msgstr "" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"We have provided a course enrollment code for you in {course_name}. To " +"enroll in the course, click the following link:" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "HTML link from the attached CSV file" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"After you enroll, you can see the course on your student dashboard. You can " +"see course materials after the course start date." +msgstr "" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#. This is the signature of an email. "\n" is a newline character +#. and should be placed between the closing word and the signature. +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"Sincerely,\n" +"[[Your Signature]]" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "INVOICE" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Invoice No: {invoice_number}" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Terms: Due Upon Receipt" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Due Date: {date}" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Bill to:" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Customer Reference Number: {reference_number}" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Balance Due: {currency_symbol}{sale_price}" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Course: {course_name}" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "" +"Price: {currency_symbol}{course_price} Quantity: {quantity} " +"Sub-Total: {currency_symbol}{sub_total} Discount: " +"{currency_symbol}{discount}" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Total: {currency_symbol}{sale_price}" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Payment Instructions" +msgstr "" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "" +"If we do not receive payment, the learner enrollments that use these codes " +"will be canceled and learners will not be able to access course materials. " +"All purchases are final. For more information, see the {site_name} " +"cancellation policy." +msgstr "" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "For payment questions, contact {contact_email}" +msgstr "" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the course staff at {email}." +msgstr "" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"We have successfully verified your identity for the {assessment} assessment " +"in the {course_name} course." +msgstr "" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"We could not verify your identity for the {assessment} assessment in the " +"{course_name} course. You have used {used_attempts} out of " +"{allowed_attempts} attempts to verify your identity." +msgstr "" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"You must verify your identity before the assessment closes on {due_date}." +msgstr "" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "To try to verify your identity again, select the following link:" +msgstr "" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"We could not verify your identity for the {assessment} assessment in the " +"{course_name} course. You have used {used_attempts} out of " +"{allowed_attempts} attempts to verify your identity, and verification is no " +"longer possible." +msgstr "" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "To go to the courseware, select the following link:" +msgstr "" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"If you have any questions, you can contact student support at " +"{support_link}." +msgstr "" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "Thanks," +msgstr "" + +#: lms/templates/embargo/default_courseware.html +#: lms/templates/embargo/default_enrollment.html +#: lms/templates/static_templates/embargo.html +#: themes/stanford-style/lms/templates/embargo/default_courseware.html +#: themes/stanford-style/lms/templates/embargo/default_enrollment.html +#: themes/stanford-style/lms/templates/static_templates/embargo.html +msgid "This Course Unavailable In Your Country" +msgstr "" + +#: lms/templates/embargo/default_courseware.html +msgid "" +"Our system indicates that you are trying to access this {platform_name} " +"course from a country or region in which it is not currently available." +msgstr "" + +#: lms/templates/embargo/default_enrollment.html +msgid "" +"Our system indicates that you are trying to enroll in this {platform_name} " +"course from a country or region in which it is not currently available." +msgstr "" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "Enrollment Successful" +msgstr "" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "" +"Thank you for enrolling in {course_names}. We hope you enjoy the course." +msgstr "" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "Thank you for enrolling in:" +msgstr "" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "We hope you enjoy the course." +msgstr "" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "" +"{platform_name} is a nonprofit bringing high-quality education to everyone, " +"everywhere. Your help allows us to continuously improve the learning " +"experience for millions and make a better future one learner at a time." +msgstr "" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "Donation Actions" +msgstr "" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Financial Assistance Application" +msgstr "" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "A Note to Learners" +msgstr "" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "Dear edX Learner," +msgstr "" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "" +"EdX Financial Assistance is a program we created to give learners in all " +"financial circumstances a chance to earn a Verified Certificate upon " +"successful completion of an edX course." +msgstr "" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"If you are interested in working toward a Verified Certificate, but cannot " +"afford to pay the fee, please apply now. Please note that financial " +"assistance is limited and may not be awarded to all eligible candidates." +msgstr "" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "" +"In order to be eligible for edX Financial Assistance, you must demonstrate " +"that paying the Verified Certificate fee would cause you economic hardship. " +"To apply, you will be asked to answer a few questions about why you are " +"applying and how the Verified Certificate will benefit you." +msgstr "" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "" +"If your application is approved, we'll give you instructions for verifying " +"your identity on edx.org so you can start working toward completing your edX" +" course." +msgstr "" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "" +"EdX is committed to making it possible for you to take high quality courses " +"from leading institutions regardless of your financial situation, earn a " +"Verified Certificate, and share your success with others." +msgstr "" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Sincerely, Anant" +msgstr "" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Back to Student FAQs" +msgstr "" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Apply for Financial Assistance" +msgstr "" + +#: lms/templates/header/brand.html +#: lms/templates/header/navbar-logo-header.html +#: lms/templates/navigation/navbar-logo-header.html +#: lms/templates/navigation/bootstrap/navbar-logo-header.html +#: themes/elitemba-theme/lms/templates/header/navbar-logo-header.html +msgid "{platform_name} Home Page" +msgstr "" + +#: lms/templates/header/header.html lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Options Menu" +msgstr "" + +#: lms/templates/header/header.html lms/templates/navigation/navigation.html +msgid "" +"{begin_strong}Warning:{end_strong} Your browser is not fully supported. We " +"strongly recommend using {chrome_link} or {ff_link}." +msgstr "" + +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/learner_dashboard/programs.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Programs" +msgstr "" + +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Journals" +msgstr "" + +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/header/user_dropdown.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Profile" +msgstr "" + +#: lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Discover New" +msgstr "" + +#. Translators: This is short for "System administration". +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Sysadmin" +msgstr "" + +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: lms/templates/shoppingcart/shopping_cart.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Shopping Cart" +msgstr "" + +#: lms/templates/header/navbar-not-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Supplemental Links" +msgstr "" + +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "How it Works" +msgstr "" + +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Schools" +msgstr "" + +#: lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Resume your last course" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Add Coupon Code" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +msgid "Enter information about the coupon code below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +msgid "Discount Percentage" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +msgid "Add expiration date" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Example Certificates" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Generate example certificates for the course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Generate Example Certificates" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Status:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Generating example {name} certificate" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Error generating example {name} certificate: {error}" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "View {name} certificate" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Refresh Status" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Student-Generated Certificates" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Disable Student-Generated Certificates" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Enable Student-Generated Certificates" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"You must successfully generate example certificates before you enable " +"student-generated certificates." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Generate Certificates" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"Course certificate generation requires an activated web certificate " +"configuration." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"When you are ready to generate certificates for your course, click Generate " +"Certificates. You do not need to do this if you have set the certificate " +"mode to on-demand generation." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Pending Tasks" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "The status for any active tasks appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate Certificates" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"To regenerate certificates for your course, choose the learners who will " +"receive regenerated certificates and click Regenerate Certificates." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Choose learner types for regeneration" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"Regenerate for learners who have already received certificates. ({count})" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate for learners who have not received certificates. ({count})" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate for learners with audit passing state. ({count})" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate for learners with audit not passing state. ({count})" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate for learners in an error state. ({count})" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Certificate Generation History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Task name" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "SET CERTIFICATE EXCEPTIONS" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"Set exceptions to generate certificates for learners who did not qualify for" +" a certificate but have been given an exception by the course team. After " +"you add learners to the exception list, click Generate Exception " +"Certificates below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Invalidate Certificates" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Enrollment Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Number of enrollees (admins, staff, and students) by track" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Basic Course Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Name:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Start Date:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course End Date:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No end date set" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course started?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Yes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course ended?" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Number of sections:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Grade Cutoffs:" +msgstr "" + +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "" +"View detailed Git import logs for this course {link_start}by clicking " +"here{link_end}." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Warnings" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Grading Configuration" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Click to download a CSV of anonymized student IDs:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Get Student Anonymized IDs CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Reports" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"For large courses, generating some reports can take several hours. When " +"report generation is complete, a link that includes the date and time of " +"generation appears in the table below. These reports are generated in the " +"background, meaning it is OK to navigate away from this page while your " +"report is generating." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Please be patient and do not click these buttons multiple times. Clicking " +"these buttons multiple times will significantly slow the generation process." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Download profile information as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to generate a CSV file that lists learners who can enroll in the " +"course but have not yet done so." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Download a CSV of learners who can enroll" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to generate a CSV file of all proctored exam results in this course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Proctored Exam Results Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Click to generate a CSV file of survey results for this course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Survey Results Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Select a problem to generate a CSV file that lists all student answers to " +"the problem. You also select a section or chapter to include results of all " +"problems in that section or chapter." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "NOTE" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The generated report is limited to {max_entries} responses. If you expect " +"more than {max_entries} responses, try generating the report on a chapter-" +"by-chapter, or problem-by-problem basis, or contact your site administrator " +"to increase the limit." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Download a CSV of problem responses" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Click to list certificates that are issued for this course:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "View Certificates Issued" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Download CSV of Certificates Issued" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"For smaller courses, click to list profile information for enrolled students" +" directly on this page:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "List enrolled students' profile information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to generate a CSV grade report for all currently enrolled students." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Grade Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Problem Grade Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate ORA Data Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports Available for Download" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The reports listed below are available for download. A link to every report " +"remains available on this page, identified by the UTC date and time of " +"generation. Reports are not deleted, so you will always be able to access " +"previously generated reports from this page." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" +" or email these links for direct access. Copies of links expire within 5 " +"minutes." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enrollment Codes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Create one or more pre-paid course enrollment codes. Students can use these " +"codes to enroll in the course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Cancel, restore, or mark an enrollment code as unused." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Change Enrollment Code Status" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download a .csv file of all enrollment codes for this course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download All Enrollment Codes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download a .csv file of all unused enrollment codes for this course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download Unused Enrollment Codes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download a .csv file of all used enrollment codes for this course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download Used Enrollment Codes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Course price per seat: " +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Edit Price" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Course Seat Purchases" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Total Credit Card Purchases: " +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Download a .csv file for all credit card purchases or for all invoices, " +"regardless of status." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download All Invoices" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download All Credit Card Purchases" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "To cancel or resubmit an invoice, enter the invoice number below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Invoice Number" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Cancel Invoice" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Resubmit Invoice" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Create a .csv file that contains enrollment information for your course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Create Enrollment Report" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Create an HTML file that contains an executive summary for this course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Create Executive Summary" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Available Reports" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"The following reports are available for download. Reports are not deleted. A" +" link to every report remains available on this page, identified by the date" +" and time (in UTC) that the report was generated." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"{strong_start}Note{strong_end}: To help protect learner data, links to these" +" reports that you save outside of this page or that you send or receive in " +"email expire after five minutes." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Coupon Code List" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download a .csv file of all coupon codes for this course." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download Coupon Codes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Coupon Codes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Coupon (%)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Number Redeemed" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "{code}" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "{description}" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "{discount}" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The Invoice Number field cannot be empty." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "No Expiration Date" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the company name." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The company name cannot be a number." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the company contact name." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The company contact name cannot be a number." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the email address for the company contact." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter a valid email address." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the recipient name." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The recipient name cannot be a number." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the recipient email address." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the billing address." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the price per course seat." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Enter a numeric value for the price per course seat. Do not include currency" +" symbols." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the number of enrollment codes." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter a numeric value for the number of enrollment codes." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Select a currency." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter a coupon code." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The discount percentage must be less than or equal to 100." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Enter a numeric value for the discount amount. Do not include the percent " +"sign." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Edit Coupon Code" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Edit Coupon Code Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Code" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "example: A123DS" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Percentage Discount" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Update Coupon Code" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Executive Summary for {display_name}" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Report Creation Date" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of Seats" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of Enrollments" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Gross Revenue Collected" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Gross Revenue Pending" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of Enrollment Refunds" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Amount Refunded" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Average Price per Seat" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Frequently Used Coupon Codes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of seats purchased using coupon codes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Rank" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Percent Discount" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Times Used" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Bulk and Single Seat Purchases" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of seats purchased individually" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of seats purchased in bulk" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of seats purchased with invoices" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Unused bulk purchase seats (revenue at risk)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Percentage of seats purchased individually" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Percentage of seats purchased in bulk" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Percentage of seats purchased with invoices" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Individual due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"In this section, you have the ability to grant extensions on specific units " +"to individual students. Please note that the latest date is always taken; " +"you cannot use this tool to make an assignment due earlier for a particular " +"student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the {platform_name} email address or username of a student here:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Student Email or Username" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Choose the graded unit:" +msgstr "" + +#. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the +#. format the system requires. +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the extension due date and time (in UTC; please specify " +"{format_string})." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Change due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Viewing granted extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Here you can see what extensions have been granted on particular units or " +"for a particular student." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Choose a graded unit and click the button to obtain a list of all students " +"who have extensions for the given unit." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List all students with due date extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Specify a student to see all of that student's extensions." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List date extensions for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Resetting extensions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Resetting a problem's due date rescinds a due date extension for a student " +"on a particular unit. This will revert the due date for the student back to " +"the problem's original due date." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reset due date for student" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Generate Registration Code Modal" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "* Required Information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The organization that purchased enrollments in the course" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/shoppingcart/billing_details.html +msgid "Organization Contact" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Organization Contact Name" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The primary contact at the organization" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Invoice Recipient" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The contact who should receive the invoice" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Organization Billing Address" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Address Line 1" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Address Line 2" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Address Line 3" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "State/Province" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Zip" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Unit Price" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The price per enrollment purchased" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Number of Enrollment Codes" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The total number of enrollment codes to create" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Course Team Internal Reference" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Internal reference information for the sale" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Customer Reference" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Customer's purchase order or other reference information" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Send me a copy of the invoice" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html +msgid "" +"For analytics about your course, go to " +"{link_start}{analytics_dashboard_name}{link_end}." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Instructor Dashboard" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +msgid "Enrollment Code Status" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +msgid "Change the status of an enrollment code." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +#: lms/templates/shoppingcart/receipt.html +msgid "Enrollment Code" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +msgid "Find Enrollment Code" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"You will not get notification for emails that bounce, so please double-check" +" spelling." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Role of the users being enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter the reason why the students are to be manually enrolled or unenrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"This cannot be left blank and will be recorded and presented in Enrollment " +"Reports." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Therefore, please give enough detail to account for this action." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/support/feature_based_enrollments.html +msgid "Reason" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Register/Enroll Students" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"To register and enroll a list of users in this course, choose a CSV file " +"that contains the following columns in this exact order: email, username, " +"name, and country. Please include one student per row and do not include any" +" headers, footers, or blank lines." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Upload a CSV for bulk enrollment" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Upload CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Beta Tester Addition" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Note: Users must have an activated {platform_name} account before they can " +"be enrolled as beta testers." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is {em_start}checked{em_end}, users who have not enrolled in " +"your course will be automatically enrolled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add beta testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Remove beta testers" +msgstr "" + +#. Translators: an "Administration List" is a list, such as Course Staff, that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Course Team Management" +msgstr "" + +#. Translators: an "Administrator Group" is a group, such as Course Staff, +#. that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Select a course team role:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Getting available lists..." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Staff cannot modify these lists. To manage course team membership, a course " +"Admin must give you the Admin role to add Staff or Beta Testers, or the " +"Discussion Admin role to add discussion moderators and TAs." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course team members with the Staff role help you manage your course. Staff " +"can enroll and unenroll learners, as well as modify their grades and access " +"all course data. Staff also have access to your course in Studio and " +"Insights. You can only give course team roles to enrolled users." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Staff" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Admin" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course team members with the Admin role help you manage your course. They " +"can do all of the tasks that Staff can do, and can also add and remove the " +"Staff and Admin roles, discussion moderation roles, and the beta tester role" +" to manage course team membership. You can only give course team roles to " +"enrolled users." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Admin" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Beta Testers" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Beta Testers can see course content before other learners. They can make " +"sure that the content works, but have no additional privileges. You can only" +" give course team roles to enrolled users." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Beta Tester" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Admins" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion Admins can edit or delete any post, clear misuse flags, close and" +" re-open threads, endorse responses, and see posts from all groups. Their " +"posts are marked as 'staff'. They can also add and remove the discussion " +"moderation roles to manage course team membership. Only enrolled users can " +"be added as Discussion Admins." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Discussion Admin" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Moderators" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion Moderators can edit or delete any post, clear misuse flags, close" +" and re-open threads, endorse responses, and see posts from all groups. " +"Their posts are marked as 'staff'. They cannot manage course team membership" +" by adding or removing discussion moderation roles. Only enrolled users can " +"be added as Discussion Moderators." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Moderator" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Group Community TA" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Group Community TAs are members of the community who help course teams " +"moderate discussions. Group Community TAs see only posts by learners in " +"their assigned group. They can edit or delete posts, clear flags, close and " +"re-open threads, and endorse responses, but only for posts by learners in " +"their group. Their posts are marked as 'Community TA'. Only enrolled " +"learners can be added as Group Community TAs." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Group Community TA" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Community TAs are members of the community who help course teams moderate " +"discussions. They can see posts by learners in their assigned cohort or " +"enrollment track, and can edit or delete posts, clear flags, close or re-" +"open threads, and endorse responses. Their posts are marked as 'Community " +"TA'. Only enrolled learners can be added as Community TAs." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Community TA" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "CCX Coaches" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"CCX Coaches are able to create their own Custom Courses based on this " +"course, which they can use to provide personalized instruction to their own " +"students based in this course material." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add CCX Coach" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There is no data available to display at this time." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Use Reload Graphs to refresh the graphs." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Reload Graphs" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Subsection Data" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Each bar shows the number of students that opened the subsection." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"You can click on any of the bars to list the students that opened the " +"subsection." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "You can also download this data as a CSV file." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Subsection Data for all Subsections as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution Data" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Each bar shows the grade distribution for that problem." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"You can click on any of the bars to list the students that attempted the " +"problem, along with the grades they received." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Problem Data for all Problems as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution per Problem" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There are no problems in this section." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send to:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Myself" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Staff and Administrators" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "All Learners" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Cohort: " +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Learners not explicitly assigned to a cohort)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Learners in the {track_name} Track" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Subject: " +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Maximum 128 characters)" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Message:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"We recommend sending learners no more than one email message per week. " +"Before you send your email, review the text carefully and send it to " +"yourself first, so that you can preview the formatting and make sure " +"embedded images and links work correctly." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "CAUTION!" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"When you select Send Email, your email message is added to the queue for " +"sending, and cannot be cancelled." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send Email" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Email actions run in the background. The status for any active tasks - " +"including email tasks - appears in a table below." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "To see the content of previously sent emails, click this button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Sent Email History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "To read a sent email message, click its subject." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"To see the status for all email tasks submitted for this course, click this " +"button:" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Email Task History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Set Course Mode Price" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Please enter Course Mode detail below" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Set Price" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Allowance Section" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Student Special Exam Attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Review Dashboard" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View gradebook for enrolled learners" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Note: This feature is available only to courses with a small number of " +"enrolled learners." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View Gradebook" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View a specific learner's enrollment status" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Learner's {platform_name} email address or username *" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Learner email address or username" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View Enrollment Status" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View a specific learner's grades and progress" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Learner's {platform_name} email address or username" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View Progress Page" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Adjust a learner's grade for a specific problem" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Location of problem in course" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Example" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem location" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Attempts" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Allow a learner who has used up all attempts to work on the problem again." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset Attempts to Zero" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"For the specified problem, rescore the learner's responses. The 'Rescore " +"Only If Score Improves' option updates the learner's score only if it " +"improves in the learner's favor." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Score Override" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "For the specified problem, override the learner's score." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"New score for problem, out of the total points available for the problem" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Override Learner's Score" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"For the specified problem, permanently and completely delete the learner's " +"answers and scores from the database." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Task Status" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Show the status for the rescoring tasks that you submitted for this learner " +"and problem." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Task Status" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Adjust a learner's entrance exam results" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Allow the learner to take the exam again." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Allow Skip" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Waive the requirement for the learner to take the exam." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Let Learner Skip Entrance Exam" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescore any responses that have been submitted. The 'Rescore All Problems " +"Only If Score Improves' option updates the learner's scores only if it " +"improves in the learner's favor." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore All Problems" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore All Problems Only If Score Improves" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Entrance Exam History" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"For the entire entrance exam, permanently and completely delete the " +"learner's answers and scores from the database." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Show the status for the rescoring tasks that you submitted for this learner " +"and entrance exam." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Adjust all enrolled learners' grades for a specific problem" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Allows all learners to work on the problem again." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescore submitted responses. The 'Rescore Only If Scores Improve' option " +"updates a learner's score only if it improves in the learner's favor." +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore All Learners' Submissions" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Only If Scores Improve" +msgstr "" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show the status for the tasks that you submitted for this problem." +msgstr "" + +#: lms/templates/learner_dashboard/_dashboard_navigation_courses.html +#: themes/edx.org/lms/templates/dashboard.html +msgid "My Courses" +msgstr "" + +#: lms/templates/learner_dashboard/_dashboard_navigation_journals.html +msgid "My Journals" +msgstr "" + +#: lms/templates/learner_dashboard/program_details.html +msgid "Program Details" +msgstr "" + +#: lms/templates/learner_dashboard/text-me-fragment.html +msgid "Get the {platform_name} Mobile App!" +msgstr "" + +#: lms/templates/learner_dashboard/text-me-fragment.html +msgid "We'll send you a one time SMS with a link to download the app." +msgstr "" + +#: lms/templates/learner_dashboard/text-me-fragment.html +msgid "Mobile phone number" +msgstr "" + +#: lms/templates/learner_dashboard/text-me-fragment.html +msgid "Send me a text with the link" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Change Preferred Language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Please choose your preferred language" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Save Language Settings" +msgstr "" + +#: lms/templates/modal/_modal-settings-language.html +msgid "" +"Don't see your preferred language? {link_start}Volunteer to become a " +"translator!{link_end}" +msgstr "" + +#: lms/templates/navigation/navbar-not-authenticated.html +#: membership/templates/membership/index.html +msgid "Explore Courses" +msgstr "" + +#: lms/templates/navigation/navigation.html +msgid "Global" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"\n" +"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" +"{ul_tag}\n" +"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" +"{li_tag}The course team needs to score the essays that are used to help you better understand the grading\n" +"criteria.{end_li_tag}\n" +"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"Here is a list of problems that need to be peer graded for this course." +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Problem Name" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Graded" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/shoppingcart/receipt.html +msgid "Available" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Required" +msgstr "" + +#: lms/templates/peer_grading/peer_grading.html +msgid "No due date" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "" +"The due date has passed, and peer grading for this problem is closed at this" +" time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "The due date has passed, and peer grading is closed at this time." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to Grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Hide Question" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Student Response" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Written Feedback" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Please include some written feedback as well." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"This submission has explicit, offensive, or (I suspect) plagiarized content." +" " +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "How did I do?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Ready to grade!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You have finished learning to grade, which means that you are now ready to " +"start grading." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start Grading!" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "You have not yet finished learning to grade this problem." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You will now be shown a series of instructor-scored essays, and will be " +"asked to score them yourself." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"Once you can score the essays similarly to an instructor, you will be ready " +"to grade your peers." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start learning to grade" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Are you sure that you want to flag this submission?" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You are about to flag a submission. You should only flag a submission that " +"contains explicit, offensive, or (suspected) plagiarized content. If the " +"submission is not addressed to the question or is incorrect, you should give" +" it a score of zero and accompanying feedback instead of flagging it." +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Remove Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Keep Flag" +msgstr "" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Go Back" +msgstr "" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "" +"{start_strong}{application_name}{end_strong} would like to access your data " +"with the following permissions:" +msgstr "" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read your user ID" +msgstr "" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read your user profile" +msgstr "" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read your email address" +msgstr "" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read the list of courses in which you are a staff member." +msgstr "" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read the list of courses in which you are an instructor." +msgstr "" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "To see if you are a global staff user" +msgstr "" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Manage your data: {permission}" +msgstr "" + +#: lms/templates/registration/account_activation_sidebar_notice.html +msgid "Account Activation Info" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +msgid "Your Password Reset is Complete" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +msgid "Password Reset Complete" +msgstr "" + +#: lms/templates/registration/password_reset_complete.html +msgid "" +"Your password has been reset. {start_link}Sign-in to your account.{end_link}" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: themes/elitemba-theme/lms/templates/registration/password_reset_confirm.html +msgid "Reset Your {platform_name} Password" +msgstr "" + +#: lms/templates/registration/password_reset_confirm.html +#: themes/elitemba-theme/lms/templates/registration/password_reset_confirm.html +msgid "Invalid Password Reset Link" +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "Password reset successful" +msgstr "" + +#: lms/templates/registration/password_reset_done.html +msgid "" +"We've e-mailed you instructions for setting your password to the e-mail " +"address you submitted. You should be receiving it shortly." +msgstr "" + +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Billing Details" +msgstr "" + +#: lms/templates/shoppingcart/billing_details.html +msgid "" +"You can proceed to payment at any point in time. Any additional information " +"you provide will be included in your receipt." +msgstr "" + +#: lms/templates/shoppingcart/billing_details.html +msgid "Purchasing Organizational Details" +msgstr "" + +#: lms/templates/shoppingcart/billing_details.html +msgid "Purchasing organization" +msgstr "" + +#: lms/templates/shoppingcart/billing_details.html +msgid "Purchase order number (if any)" +msgstr "" + +#: lms/templates/shoppingcart/billing_details.html +msgid "email@example.com" +msgstr "" + +#: lms/templates/shoppingcart/billing_details.html +msgid "Additional Receipt Recipient" +msgstr "" + +#: lms/templates/shoppingcart/billing_details.html +msgid "" +"If no additional billing details are populated the payment confirmation will" +" be sent to the user making the purchase." +msgstr "" + +#: lms/templates/shoppingcart/billing_details.html +msgid "Payment processing occurs on a separate secure site." +msgstr "" + +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Your Shopping cart is currently empty." +msgstr "" + +#: lms/templates/shoppingcart/cybersource_form.html +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "Payment" +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Reports" +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Data" +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"There was an error in your date input. It should be formatted as YYYY-MM-DD" +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "These reports are delimited by start and end dates." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Date: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"These reports are delimited alphabetically by university name. i.e., " +"generating a report with 'Start Letter' A and 'End Letter' C will generate " +"reports for all universities starting with A, B, and C." +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Letter: " +msgstr "" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Letter: " +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "Payment Error" +msgstr "" + +#: lms/templates/shoppingcart/error.html +msgid "There was an error processing your order!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your purchase!" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "View Dashboard" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"You have successfully been enrolled for {course_names}. The following " +"receipt has been emailed to {receipient_emails}" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"You have successfully purchased {number} course registration code for" +" {course_names}." +msgid_plural "" +"You have successfully purchased {number} course registration codes " +"for {course_names}." +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/shoppingcart/receipt.html +msgid "The following receipt has been emailed to {receipient_emails}" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please send each professional one of these unique registration codes to " +"enroll into the course. The confirmation/receipt email you will receive has " +"an example email template with directions for the individuals enrolling." +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Enrollment Link" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Used" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Invalid" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Date of purchase" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Print Receipt" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Billed To Details" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "N/A" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Purchase Order Number" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Company Contact Name" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Company Contact Email" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Recipient Name" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Recipient Email" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Card Type" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Credit Card Number" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Address 1" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Address 2" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "State" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Registration for:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Price per student:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Discount Applied:" +msgstr "" + +#: lms/templates/shoppingcart/receipt.html +msgid "Students" +msgstr "" + +#. Translators: Please keep the "" and "" tags around your +#. translation of the word "this" in your translation. +#: lms/templates/shoppingcart/receipt.html +msgid "Note: items with strikethough like this have been refunded." +msgstr "" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "Confirm Enrollment" +msgstr "" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "{site_name} - Confirm Enrollment" +msgstr "" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "{course_number} {course_title} Cover Image" +msgstr "" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "Confirm your enrollment for: {span_start}course dates{span_end}" +msgstr "" + +#: lms/templates/shoppingcart/registration_code_receipt.html +msgid "{course_name}" +msgstr "" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "" +"You've clicked a link for an enrollment code that has already been used. " +"Check your {link_start}course dashboard{link_end} to see if you're enrolled " +"in the course, or contact your company's administrator." +msgstr "" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "" +"You have successfully enrolled in {course_name}. This course has now been " +"added to your dashboard." +msgstr "" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "" +"You're already enrolled for this course. Visit your " +"{link_start}dashboard{link_end} to see the course." +msgstr "" + +#: lms/templates/shoppingcart/registration_code_receipt.html +msgid "The course you are enrolling for is full." +msgstr "" + +#: lms/templates/shoppingcart/registration_code_receipt.html +msgid "The course you are enrolling for is closed." +msgstr "" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "There was an error processing your redeem code." +msgstr "" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "" +"You're about to activate an enrollment code for {course_name} by " +"{site_name}. This code can only be used one time, so you should only " +"activate this code if you're its intended recipient." +msgstr "" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "Activate Course Enrollment" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "" +"{course_names} has been removed because the enrollment period has closed." +msgid_plural "" +"{course_names} have been removed because the enrollment period has closed." +msgstr[0] "" +msgstr[1] "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Cover Image" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Students:" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Input quantity and press enter." +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Increase" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Decrease" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "Remove" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Discount or activation code" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "discount or activation code" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Apply" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "code has been applied" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "TOTAL:" +msgstr "" + +#. Translators: currency_symbol is a symbol indicating type of currency, ex +#. "$". currency_abbr is +#. an abbreviation for the currency, ex "USD". This string would look like +#. this +#. when all variables are in: +#. "$500.00 USD" +#: lms/templates/shoppingcart/shopping_cart.html +msgid "{currency_symbol}{price} {currency_abbr}" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "" +"After this purchase is complete, a receipt is generated with relative " +"billing details and registration codes for students." +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "" +"After this purchase is complete, {username} will be enrolled in this course." +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Empty Cart" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "Shopping cart" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "{platform_name} - Shopping Cart" +msgstr "" + +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "Confirmation" +msgstr "" + +#: lms/templates/static_templates/404.html +#: themes/elitemba-theme/lms/templates/static_templates/404.html +msgid "" +"The page that you were looking for was not found. Go back to the " +"{link_start}homepage{link_end} or let us know about any pages that may have " +"been moved at {email}." +msgstr "" + +#: lms/templates/static_templates/about.html +#: lms/templates/static_templates/blog.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/donate.html +#: lms/templates/static_templates/faq.html +#: lms/templates/static_templates/help.html +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/news.html +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/tos.html +#: themes/elitemba-theme/lms/templates/static_templates/privacy_policy.html +msgid "This page left intentionally blank. Feel free to add your own content." +msgstr "" + +#: lms/templates/static_templates/embargo.html +msgid "" +"Our system indicates that you are trying to access this {platform_name} " +"course from a country or region currently subject to U.S. economic and trade" +" sanctions.Unfortunately, because {platform_name} is required to comply with" +" export controls,we cannot allow you to access this course at this time." +msgstr "" + +#: lms/templates/static_templates/faq.html +msgid "FAQ" +msgstr "" + +#: lms/templates/static_templates/jobs.html +msgid "Jobs" +msgstr "" + +#: lms/templates/static_templates/news.html +#: lms/templates/static_templates/press.html +msgid "In the Press" +msgstr "" + +#: lms/templates/static_templates/server-down.html +msgid "Currently the {platform_name} servers are down" +msgstr "" + +#: lms/templates/static_templates/server-down.html +#: lms/templates/static_templates/server-overloaded.html +msgid "" +"Our staff is currently working to get the site back up as soon as possible. " +"Please email us at {tech_support_email} to report any problems or downtime." +msgstr "" + +#: lms/templates/static_templates/server-error.html +#: themes/elitemba-theme/lms/templates/static_templates/server-error.html +msgid "There has been a 500 error on the {platform_name} servers" +msgstr "" + +#: lms/templates/static_templates/server-error.html +#: themes/elitemba-theme/lms/templates/static_templates/server-error.html +msgid "" +"Please wait a few seconds and then reload the page. If the problem persists," +" please email us at {email}." +msgstr "" + +#: lms/templates/static_templates/server-overloaded.html +msgid "Currently the {platform_name} servers are overloaded" +msgstr "" + +#: lms/templates/student_account/account_settings.html +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Account Settings" +msgstr "" + +#: lms/templates/student_account/finish_auth.html +#: themes/elitemba-theme/lms/templates/student_account/finish_auth.html +msgid "Please Wait" +msgstr "" + +#: lms/templates/student_account/login_and_register.html +msgid "Sign in or Register" +msgstr "" + +#: lms/templates/support/certificates.html lms/templates/support/index.html +msgid "Student Support" +msgstr "" + +#: lms/templates/support/certificates.html +msgid "Student Support: Certificates" +msgstr "" + +#: lms/templates/support/contact_us.html +msgid "Contact {platform_name} Support" +msgstr "" + +#: lms/templates/support/enrollment.html +msgid "Student Support: Enrollment" +msgstr "" + +#: lms/templates/support/feature_based_enrollments.html +msgid "Student Support: Feature Based Enrollments" +msgstr "" + +#: lms/templates/support/feature_based_enrollments.html +msgid "Is Enabled" +msgstr "" + +#: lms/templates/support/feature_based_enrollments.html +msgid "No results found" +msgstr "" + +#: lms/templates/support/manage_user.html +msgid "Student Support: Manage User" +msgstr "" + +#: lms/templates/support/refund.html +msgid "About to refund this order:" +msgstr "" + +#: lms/templates/support/refund.html +msgid "Order Id:" +msgstr "" + +#: lms/templates/support/refund.html +msgid "Enrollment:" +msgstr "" + +#: lms/templates/support/refund.html +msgid "enrolled" +msgstr "" + +#: lms/templates/support/refund.html +msgid "unenrolled" +msgstr "" + +#: lms/templates/support/refund.html +msgid "Cost:" +msgstr "" + +#: lms/templates/support/refund.html +msgid "CertificateItem Status:" +msgstr "" + +#: lms/templates/support/refund.html +msgid "Order Status:" +msgstr "" + +#: lms/templates/support/refund.html +msgid "Fulfilled Time:" +msgstr "" + +#: lms/templates/support/refund.html +msgid "Refund Request Time:" +msgstr "" + +#: lms/templates/survey/survey.html +msgid "User Survey" +msgstr "" + +#: lms/templates/survey/survey.html +msgid "Pre-Course Survey" +msgstr "" + +#: lms/templates/survey/survey.html +msgid "" +"You can begin your course as soon as you complete the following form. " +"Required fields are marked with an asterisk (*). This information is for the" +" use of {platform_name} only. It will not be linked to your public profile " +"in any way." +msgstr "" + +#: lms/templates/survey/survey.html +msgid "You are missing the following required fields:" +msgstr "" + +#: lms/templates/survey/survey.html +msgid "Cancel and Return to Dashboard" +msgstr "" + +#: lms/templates/survey/survey.html +msgid "Why do I need to complete this information?" +msgstr "" + +#: lms/templates/survey/survey.html +msgid "" +"We use the information you provide to improve our course for both current " +"and future students. The more we know about your specific needs, the better " +"we can make your course experience." +msgstr "" + +#: lms/templates/survey/survey.html +msgid "Who can I contact if I have questions?" +msgstr "" + +#: lms/templates/survey/survey.html +msgid "" +"If you have any questions about this course or this form, you can contact " +"{link_start}{mail_to_link}{link_end}." +msgstr "" + +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Skeleton Page" +msgstr "" + +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +#: openedx/features/course_search/templates/course_search/course-search-fragment.html +msgid "Search the course" +msgstr "" + +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Start Course" +msgstr "" + +#: lms/templates/verify_student/_verification_help.html +msgid "Have questions?" +msgstr "" + +#: lms/templates/verify_student/_verification_help.html +msgid "" +"Please read {a_start}our FAQs to view common questions about our " +"certificates{a_end}." +msgstr "" + +#: lms/templates/verify_student/incourse_reverify.html +msgid "Re-Verify for {course_name}" +msgstr "" + +#: lms/templates/verify_student/missed_deadline.html +msgid "Verification Deadline Has Passed" +msgstr "" + +#: lms/templates/verify_student/missed_deadline.html +msgid "Upgrade Deadline Has Passed" +msgstr "" + +#: lms/templates/verify_student/missed_deadline.html +msgid "" +"The verification deadline for {course_name} was {{date}}. Verification is no" +" longer available." +msgstr "" + +#: lms/templates/verify_student/missed_deadline.html +msgid "" +"The deadline to upgrade to a verified certificate for this course has " +"passed." +msgstr "" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Upgrade Your Enrollment For {course_name}." +msgstr "" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Receipt For {course_name}" +msgstr "" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Verify For {course_name}" +msgstr "" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Enroll In {course_name}" +msgstr "" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Technical Requirements" +msgstr "" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "" +"Please make sure your browser is updated to the {strong_start}{a_start}most " +"recent version possible{a_end}{strong_end}. Also, please make sure your " +"{strong_start}webcam is plugged in, turned on, and allowed to function in " +"your web browser (commonly adjustable in your browser settings).{strong_end}" +msgstr "" + +#: lms/templates/verify_student/reverify.html +msgid "Re-Verification" +msgstr "" + +#: lms/templates/verify_student/reverify_not_allowed.html +msgid "Identity Verification" +msgstr "" + +#: lms/templates/verify_student/reverify_not_allowed.html +msgid "" +"You have already submitted your verification information. You will see a " +"message on your dashboard when the verification process is complete (usually" +" within 1-2 days)." +msgstr "" + +#: lms/templates/verify_student/reverify_not_allowed.html +msgid "You cannot verify your identity at this time." +msgstr "" + +#: lms/templates/verify_student/reverify_not_allowed.html +msgid "Return to Your Dashboard" +msgstr "" + +#: lms/templates/widgets/cookie-consent.html +msgid "" +"This website uses cookies to ensure you get the best experience on our " +"website. If you continue browsing this site, we understand that you accept " +"the use of cookies." +msgstr "" + +#: lms/templates/widgets/cookie-consent.html +msgid "Got it!" +msgstr "" + +#: lms/templates/widgets/cookie-consent.html +msgid "Learn more" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}(active){span_end}" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +#: wiki/templates/wiki/includes/article_menu.html +msgid "Changes" +msgstr "" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}active{span_end}" +msgstr "" + +#: lms/templates/wiki/includes/breadcrumbs.html +msgid "Course Wiki" +msgstr "" + +#: lms/templates/wiki/includes/breadcrumbs.html wiki/templates/wiki/dir.html +msgid "Add article" +msgstr "" + +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +msgid "Preview Language Setting" +msgstr "" + +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +msgid "Language Code" +msgstr "" + +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +msgid "e.g. en for English" +msgstr "" + +#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html +msgid "Preview Theme" +msgstr "" + +#: openedx/core/lib/license/templates/license.html +msgid "All Rights Reserved" +msgstr "" + +#: openedx/core/lib/license/templates/license.html +msgid "Attribution" +msgstr "" + +#: openedx/core/lib/license/templates/license.html +msgid "Noncommercial" +msgstr "" + +#: openedx/core/lib/license/templates/license.html +msgid "No Derivatives" +msgstr "" + +#: openedx/core/lib/license/templates/license.html +msgid "Share Alike" +msgstr "" + +#: openedx/core/lib/license/templates/license.html +msgid "Creative Commons licensed content, with terms as follow:" +msgstr "" + +#: openedx/core/lib/license/templates/license.html +msgid "Some Rights Reserved" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-dates-fragment.html +msgid "Important Course Dates" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Goal: " +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Edit your course goal:" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Pursue a verified certificate" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Upgrade ({price})" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "Expand All" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "Prerequisite: " +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "{subsection_format} due {{date}}" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Learn About Verified Certificates" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "{platform_name} Verified Certificate" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Why upgrade?" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Official proof of completion" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Easily shareable certificate" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Proven motivator to complete the course" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "" +"Certificate purchases help {platform_name} continue to offer free courses" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "How it works" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Pay the Verified Certificate upgrade fee" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Verify your identity with a webcam and government-issued ID" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Study hard and pass the course" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Share your certificate with friends, employers, and others" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "edX Learner Stories" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "" +"My certificate has helped me showcase my knowledge on my" +" resume - I feel like this certificate could " +"really help me land my dream job!" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "{learner_name}, EliteMBA Learner" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "" +"I wanted to include a verified certificate on my resume and my profile to" +" illustrate that I am working towards this goal " +"I have and that I have achieved something while " +"I was unemployed." +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Upgrade ({course_price})" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/course-updates-fragment.html +msgid "This course does not have any updates." +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/dates-summary.html +msgid "Today is {date}" +msgstr "" + +#: openedx/features/course_experience/templates/course_experience/latest-update-fragment.html +msgid "Latest Update" +msgstr "" + +#: openedx/features/course_search/templates/course_search/course-search-fragment.html +msgid "Search Results" +msgstr "" + +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Purchase the Bundle (" +msgstr "" + +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Courses included" +msgstr "" + +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Journals included" +msgstr "" + +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "{access_length} Day Access" +msgstr "" + +#: openedx/features/journals/templates/journals/bundle_about.html +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "View Journal" +msgstr "" + +#: openedx/features/journals/templates/journals/bundle_card.html +msgid "Bundle" +msgstr "" + +#: openedx/features/journals/templates/journals/journal_card.html +msgid "Journal" +msgstr "" + +#: openedx/features/journals/templates/journals/journal_card.html +msgid "{num_months} month" +msgid_plural "{num_months} months" +msgstr[0] "" +msgstr[1] "" + +#: openedx/features/journals/templates/journals/journal_card.html +msgid "unlimited" +msgstr "" + +#: openedx/features/journals/templates/journals/journal_card.html +msgid "Access Length" +msgstr "" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Journal Dashboard" +msgstr "" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "{journal_title} Cover Image" +msgstr "" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Access Expired: {date}" +msgstr "" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Access Expires: {date}" +msgstr "" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Renew Access" +msgstr "" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "You have not purchased access to any journals yet." +msgstr "" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Explore journals and courses" +msgstr "" + +#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html +msgid "My Stats (Beta)" +msgstr "" + +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Connected Accounts" +msgstr "" + +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Linked" +msgstr "" + +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Not Linked" +msgstr "" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Unlink" +msgstr "" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Link" +msgstr "" + +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +msgid "Completed {completion_date_html}" +msgstr "" + +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +msgid "{course_mode} certificate" +msgstr "" + +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +msgid "You haven't earned any certificates yet." +msgstr "" + +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +#: themes/edx.org/lms/templates/dashboard.html +msgid "Explore New Courses" +msgstr "" + +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "View My Records" +msgstr "" + +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "My Profile" +msgstr "" + +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "" +"Build out your profile to personalize your identity on {platform_name}." +msgstr "" + +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "An error occurred. Try loading the page again." +msgstr "" + +#: cms/templates/404.html +msgid "The page that you were looking for was not found." +msgstr "" + +#: cms/templates/404.html +msgid "" +"Go back to the {homepage} or let us know about any pages that may have been " +"moved at {email}." +msgstr "" + +#: cms/templates/500.html +msgid "{studio_name} Server Error" +msgstr "" + +#: cms/templates/500.html +msgid "The {em_start}{studio_name}{em_end} servers encountered an error" +msgstr "" + +#: cms/templates/500.html +msgid "" +"An error occurred in {studio_name} and the page could not be loaded. Please " +"try again in a few moments." +msgstr "" + +#: cms/templates/500.html +msgid "" +"We've logged the error and our staff is currently working to resolve this " +"error as soon as possible." +msgstr "" + +#: cms/templates/500.html +msgid "If the problem persists, please email us at {email_link}." +msgstr "" + +#: cms/templates/accessibility.html +msgid "Studio Accessibility Policy" +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +#: cms/templates/activation_invalid.html +msgid "{studio_name} Account Activation" +msgstr "" + +#: cms/templates/activation_active.html +msgid "Your account is already active" +msgstr "" + +#: cms/templates/activation_active.html +msgid "" +"This account, set up using {email}, has already been activated. Please sign " +"in to start working within {studio_name}." +msgstr "" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +msgid "Sign into {studio_name}" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "Your account activation is complete!" +msgstr "" + +#: cms/templates/activation_complete.html +msgid "" +"Thank you for activating your account. You may now sign in and start using " +"{studio_name} to author courses." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "Your account activation is invalid" +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"We're sorry. Something went wrong with your activation. Check to make sure " +"the URL you went to was correct, as e-mail programs will sometimes split it " +"into two lines." +msgstr "" + +#: cms/templates/activation_invalid.html +msgid "" +"If you still have issues, contact {platform_name} Support. In the meantime, " +"you can also return to {link_start}the {studio_name} homepage.{link_end}" +msgstr "" + +#: cms/templates/asset_index.html cms/templates/widgets/header.html +msgid "Files & Uploads" +msgstr "" + +#: cms/templates/certificates.html +msgid "This module is not enabled." +msgstr "" + +#: cms/templates/certificates.html +msgid "This course does not use a mode that offers certificates." +msgstr "" + +#: cms/templates/certificates.html +msgid "Working with Certificates" +msgstr "" + +#: cms/templates/certificates.html +msgid "" +"Specify a course title to use on the certificate if the course's official " +"title is too long to be displayed well." +msgstr "" + +#: cms/templates/certificates.html +msgid "" +"For verified certificates, specify between one and four signatories and " +"upload the associated images." +msgstr "" + +#: cms/templates/certificates.html +msgid "" +"To edit or delete a certificate before it is activated, hover over the top " +"right corner of the form and select {em_start}Edit{em_end} or the delete " +"icon." +msgstr "" + +#: cms/templates/certificates.html +msgid "" +"To view a sample certificate, choose a course mode and select " +"{em_start}Preview Certificate{em_end}." +msgstr "" + +#: cms/templates/certificates.html +msgid "Issuing Certificates to Learners" +msgstr "" + +#: cms/templates/certificates.html +msgid "" +"To begin issuing course certificates, a course team member with either the " +"Staff or Admin role selects {em_start}Activate{em_end}. Only course team " +"members with these roles can edit or delete an activated certificate." +msgstr "" + +#: cms/templates/certificates.html +msgid "" +"{em_start}Do not{em_end} delete certificates after a course has started; " +"learners who have already earned certificates will no longer be able to " +"access them." +msgstr "" + +#: cms/templates/certificates.html +msgid "Learn more about certificates" +msgstr "" + +#: cms/templates/certificates.html cms/templates/settings_graders.html +msgid "Details & Schedule" +msgstr "" + +#: cms/templates/checklists.html cms/templates/widgets/header.html +msgid "Checklists" +msgstr "" + +#: cms/templates/checklists.html cms/templates/export.html +#: cms/templates/export_git.html cms/templates/import.html +#: cms/templates/widgets/header.html +msgid "Tools" +msgstr "" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +msgid "Duplicate" +msgstr "" + +#: cms/templates/component.html +msgid "Duplicate this component" +msgstr "" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +msgid "Move" +msgstr "" + +#: cms/templates/component.html +msgid "Delete this component" +msgstr "" + +#: cms/templates/component.html cms/templates/edit-tabs.html +#: cms/templates/studio_xblock_wrapper.html +msgid "Drag to reorder" +msgstr "" + +#: cms/templates/container.html cms/templates/course-create-rerun.html +#: cms/templates/course_info.html cms/templates/course_outline.html +#: cms/templates/edit-tabs.html cms/templates/index.html +#: cms/templates/library.html cms/templates/manage_users.html +#: cms/templates/manage_users_lib.html cms/templates/textbooks.html +#: cms/templates/videos_index.html +msgid "Page Actions" +msgstr "" + +#: cms/templates/container.html +msgid "Open the courseware in the LMS" +msgstr "" + +#: cms/templates/container.html +msgid "View Live Version" +msgstr "" + +#: cms/templates/container.html +msgid "Preview the courseware in the LMS" +msgstr "" + +#: cms/templates/container.html +msgid "Adding components" +msgstr "" + +#: cms/templates/container.html +msgid "" +"Select a component type under {strong_start}Add New Component{strong_end}. " +"Then select a template." +msgstr "" + +#: cms/templates/container.html +msgid "" +"The new component is added at the bottom of the page or group. You can then " +"edit and move the component." +msgstr "" + +#: cms/templates/container.html +msgid "Editing components" +msgstr "" + +#: cms/templates/container.html +msgid "" +"Click the {strong_start}Edit{strong_end} icon in a component to edit its " +"content." +msgstr "" + +#: cms/templates/container.html +msgid "Reorganizing components" +msgstr "" + +#: cms/templates/container.html +msgid "Drag components to new locations within this component." +msgstr "" + +#: cms/templates/container.html +msgid "For content experiments, you can drag components to other groups." +msgstr "" + +#: cms/templates/container.html +msgid "Working with content experiments" +msgstr "" + +#: cms/templates/container.html +msgid "" +"Confirm that you have properly configured content in each of your experiment" +" groups." +msgstr "" + +#: cms/templates/container.html +msgid "Learn more about component containers" +msgstr "" + +#: cms/templates/container.html +msgid "Unit Location" +msgstr "" + +#: cms/templates/container.html +msgid "Location ID" +msgstr "" + +#: cms/templates/container.html +msgid "" +"To create a link to this unit from an HTML component in this course, enter " +"\"/jump_to_id/\" as the URL value." +msgstr "" + +#: cms/templates/container.html +msgid "Location in Course Outline" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "Create a Course Rerun of:" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "Create a re-run of a course" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "You are creating a re-run from:" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "" +"Provide identifying information for this re-run of the course. The original " +"course is not affected in any way by a re-run." +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "" +"Note: Together, the organization, course number, and course run must " +"uniquely identify this new course instance." +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "Required Information to Create a re-run of a course" +msgstr "" + +#. Translators: This is an example name for a new course, seen when +#. filling out the form to create a new course. +#: cms/templates/course-create-rerun.html cms/templates/index.html +msgid "e.g. Introduction to Computer Science" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "" +"The public display name for the new course. (This name is often the same as " +"the original course name.)" +msgstr "" + +#. Translators: This is an example for the name of the organization sponsoring +#. a course, seen when filling out the form to create a new course. The +#. organization name cannot contain spaces. +#. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed +#. when user put no data into this field. +#: cms/templates/course-create-rerun.html cms/templates/index.html +msgid "e.g. UniversityX or OrganizationX" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "" +"The name of the organization sponsoring the new course. (This name is often " +"the same as the original organization name.)" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "Note: No spaces or special characters are allowed." +msgstr "" + +#. Translators: This is an example for the number used to identify a course, +#. seen when filling out the form to create a new course. The number here is +#. short for "Computer Science 101". It can contain letters but cannot contain +#. spaces. +#: cms/templates/course-create-rerun.html cms/templates/index.html +msgid "e.g. CS101" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "" +"The unique number that identifies the new course within the organization. " +"(This number will be the same as the original course number and cannot be " +"changed.)" +msgstr "" + +#. Translators: This is an example for the "run" used to identify different +#. instances of a course, seen when filling out the form to create a new +#. course. +#: cms/templates/course-create-rerun.html cms/templates/index.html +msgid "e.g. 2014_T1" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "" +"The term in which the new course will run. (This value is often different " +"than the original course run value.)" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "Create Re-run" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "When will my course re-run start?" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "The new course is set to start on January 1, 2030 at midnight (UTC)." +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "What transfers from the original course?" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "" +"The new course has the same course outline and content as the original " +"course. All problems, videos, announcements, and other files are duplicated " +"to the new course." +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "What does not transfer from the original course?" +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "" +"You are the only member of the new course's staff. No students are enrolled " +"in the course, and there is no student data. There is no content in the " +"discussion topics or wiki." +msgstr "" + +#: cms/templates/course-create-rerun.html +msgid "Learn more about Course Re-runs" +msgstr "" + +#: cms/templates/course_info.html +msgid "Course Updates" +msgstr "" + +#: cms/templates/course_info.html +msgid "New Update" +msgstr "" + +#: cms/templates/course_info.html +msgid "" +"Use course updates to notify students of important dates or exams, highlight" +" particular discussions in the forums, announce schedule changes, and " +"respond to student questions. You add or edit updates in HTML." +msgstr "" + +#: cms/templates/course_outline.html +msgid "" +"This course was created as a re-run. Some manual configuration is needed." +msgstr "" + +#: cms/templates/course_outline.html +msgid "" +"No course content is currently visible, and no learners are enrolled. Be " +"sure to review and reset all dates, including the Course Start Date; set up " +"the course team; review course updates and other assets for dated material; " +"and seed the discussions and wiki." +msgstr "" + +#: cms/templates/course_outline.html +msgid "Warning" +msgstr "" + +#: cms/templates/course_outline.html +msgid "This course uses features that are no longer supported." +msgstr "" + +#: cms/templates/course_outline.html +msgid "You must delete or replace the following components." +msgstr "" + +#: cms/templates/course_outline.html +msgid "Unsupported Components" +msgstr "" + +#: cms/templates/course_outline.html +msgid "Deprecated Component" +msgstr "" + +#: cms/templates/course_outline.html +msgid "" +"To avoid errors, {platform_name} strongly recommends that you remove " +"unsupported features from the course advanced settings. To do this, go to " +"the {link_start}Advanced Settings page{link_end}, locate the \"Advanced " +"Module List\" setting, and then delete the following modules from the list." +msgstr "" + +#: cms/templates/course_outline.html +msgid "Unsupported Advance Modules" +msgstr "" + +#: cms/templates/course_outline.html +msgid "Click to add a new section" +msgstr "" + +#: cms/templates/course_outline.html +msgid "New Section" +msgstr "" + +#: cms/templates/course_outline.html +msgid "Reindex current course" +msgstr "" + +#: cms/templates/course_outline.html +msgid "Reindex" +msgstr "" + +#: cms/templates/course_outline.html +msgid "Collapse All Sections" +msgstr "" + +#: cms/templates/course_outline.html +msgid "Expand All Sections" +msgstr "" + +#: cms/templates/course_outline.html +msgid "Click to open the courseware in the LMS in a new tab" +msgstr "" + +#: cms/templates/course_outline.html cms/templates/edit-tabs.html +msgid "View Live" +msgstr "" + +#: cms/templates/course_outline.html +msgid "Creating your course organization" +msgstr "" + +#: cms/templates/course_outline.html +msgid "You add sections, subsections, and units directly in the outline." +msgstr "" + +#: cms/templates/course_outline.html +msgid "" +"Create a section, then add subsections and units. Open a unit to add course " +"components." +msgstr "" + +#: cms/templates/course_outline.html +msgid "Reorganizing your course" +msgstr "" + +#: cms/templates/course_outline.html +msgid "Drag sections, subsections, and units to new locations in the outline." +msgstr "" + +#: cms/templates/course_outline.html +msgid "Learn more about the course outline" +msgstr "" + +#: cms/templates/course_outline.html +msgid "Setting release dates and grading policies" +msgstr "" + +#: cms/templates/course_outline.html +msgid "" +"Select the Configure icon for a section or subsection to set its release " +"date. When you configure a subsection, you can also set the grading policy " +"and due date." +msgstr "" + +#: cms/templates/course_outline.html +msgid "Learn more about grading policy settings" +msgstr "" + +#: cms/templates/course_outline.html +msgid "Changing the content learners see" +msgstr "" + +#: cms/templates/course_outline.html +msgid "" +"To publish draft content, select the Publish icon for a section, subsection," +" or unit." +msgstr "" + +#: cms/templates/course_outline.html +msgid "" +"To make a section, subsection, or unit unavailable to learners, select the " +"Configure icon for that level, then select the appropriate " +"{em_start}Hide{em_end} option. Grades for hidden sections, subsections, and " +"units are not included in grade calculations." +msgstr "" + +#: cms/templates/course_outline.html +msgid "" +"To hide the content of a subsection from learners after the subsection due " +"date has passed, select the Configure icon for a subsection, then select " +"{em_start}Hide content after due date{em_end}. Grades for the subsection " +"remain included in grade calculations." +msgstr "" + +#: cms/templates/course_outline.html +msgid "Learn more about content visibility settings" +msgstr "" + +#. Translators: Pages refer to the tabs that appear in the top navigation of +#. each course. +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html +msgid "Pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "New Page" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Show this page" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Show/hide page" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "This page cannot be reordered" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "You can add additional custom pages to your course." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Add a New Page" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "What are pages?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages are listed horizontally at the top of your course. Default pages " +"(Home, Course, Discussion, Wiki, and Progress) are followed by textbooks and" +" custom pages that you create." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Custom pages" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"You can create and edit custom pages to provide students with additional " +"course content. For example, you can create pages for the grading policy, " +"course slides, and a course calendar. " +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "How do pages look to students in my course?" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Students see the default and custom pages at the top of your course and use " +"these links to navigate." +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "See an example" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Pages in Your Course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "Preview of Pages in your course" +msgstr "" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages appear in your course's top navigation bar. The default pages (Home, " +"Course, Discussion, Wiki, and Progress) are followed by textbooks and custom" +" pages." +msgstr "" + +#: cms/templates/edit-tabs.html cms/templates/howitworks.html +msgid "close modal" +msgstr "" + +#: cms/templates/error.html +msgid "Internal Server Error" +msgstr "" + +#: cms/templates/error.html +msgid "The Page You Requested Page Cannot be Found" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. We couldn't find the {studio_name} page you're looking for. You" +" may want to return to the {studio_name} Dashboard and try again. If you are" +" still having problems accessing things, please feel free to " +"{link_start}contact {studio_name} support{link_end} for further help." +msgstr "" + +#: cms/templates/error.html +msgid "The Server Encountered an Error" +msgstr "" + +#: cms/templates/error.html +msgid "" +"We're sorry. There was a problem with the server while trying to process " +"your last request. You may want to return to the {studio_name} Dashboard or " +"try this request again. If you are still having problems accessing things, " +"please feel free to {link_start}contact {studio_name} support{link_end} for " +"further help." +msgstr "" + +#: cms/templates/error.html +msgid "Back to dashboard" +msgstr "" + +#: cms/templates/export.html +msgid "Library Export" +msgstr "" + +#: cms/templates/export.html +msgid "Course Export" +msgstr "" + +#: cms/templates/export.html +msgid "About Exporting Libraries" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export libraries and edit them outside of {studio_name}. The " +"exported file is a .tar.gz file (that is, a .tar file compressed with GNU " +"Zip) that contains the library structure and content. You can also re-import" +" libraries that you've exported." +msgstr "" + +#: cms/templates/export.html +msgid "About Exporting Courses" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export courses and edit them outside of {studio_name}. The exported " +"file is a .tar.gz file (that is, a .tar file compressed with GNU Zip) that " +"contains the course structure and content. You can also re-import courses " +"that you've exported." +msgstr "" + +#: cms/templates/export.html +msgid "" +"{em_start}Caution:{em_end} When you export a course, information such as " +"MATLAB API keys, LTI passports, annotation secret token strings, and " +"annotation storage URLs are included in the exported data. If you share your" +" exported files, you may also be sharing sensitive or license-specific " +"information." +msgstr "" + +#: cms/templates/export.html +msgid "Export My Library Content" +msgstr "" + +#: cms/templates/export.html +msgid "Export My Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Export Library Content" +msgstr "" + +#: cms/templates/export.html +msgid "Export Course Content" +msgstr "" + +#: cms/templates/export.html +msgid "Library Export Status" +msgstr "" + +#: cms/templates/export.html +msgid "Course Export Status" +msgstr "" + +#: cms/templates/export.html +msgid "Preparing" +msgstr "" + +#: cms/templates/export.html +msgid "Preparing to start the export" +msgstr "" + +#: cms/templates/export.html +msgid "Exporting" +msgstr "" + +#: cms/templates/export.html +msgid "" +"Creating the export data files (You can now leave this page safely, but " +"avoid making drastic changes to content until this export is complete)" +msgstr "" + +#: cms/templates/export.html +msgid "Compressing" +msgstr "" + +#: cms/templates/export.html +msgid "Compressing the exported data and preparing it for download" +msgstr "" + +#: cms/templates/export.html +msgid "Your exported library can now be downloaded" +msgstr "" + +#: cms/templates/export.html +msgid "Your exported course can now be downloaded" +msgstr "" + +#: cms/templates/export.html +msgid "Download Exported Library" +msgstr "" + +#: cms/templates/export.html +msgid "Download Exported Course" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}exported with{em_end} your course:" +msgstr "" + +#: cms/templates/export.html +msgid "" +"Values from Advanced Settings, including MATLAB API keys and LTI passports" +msgstr "" + +#: cms/templates/export.html +msgid "Course Content (all Sections, Sub-sections, and Units)" +msgstr "" + +#: cms/templates/export.html +msgid "Course Structure" +msgstr "" + +#: cms/templates/export.html +msgid "Individual Problems" +msgstr "" + +#: cms/templates/export.html +msgid "Course Assets" +msgstr "" + +#: cms/templates/export.html +msgid "Course Settings" +msgstr "" + +#: cms/templates/export.html +msgid "Data {em_start}not exported{em_end} with your course:" +msgstr "" + +#: cms/templates/export.html +msgid "User Data" +msgstr "" + +#: cms/templates/export.html +msgid "Course Team Data" +msgstr "" + +#: cms/templates/export.html +msgid "Forum/discussion Data" +msgstr "" + +#: cms/templates/export.html +msgid "Why export a library?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your library directly, outside of " +"{studio_name}. You may want to create a backup copy of your library. Or, you" +" may want to create a copy of your library that you can later import into " +"another library instance and customize." +msgstr "" + +#: cms/templates/export.html +msgid "Opening the downloaded file" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the library.xml file, as well as subfolders that contain " +"library content." +msgstr "" + +#: cms/templates/export.html +msgid "Learn more about exporting a library" +msgstr "" + +#: cms/templates/export.html +msgid "Why export a course?" +msgstr "" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your course directly, outside of " +"{studio_name}. You may want to create a backup copy of your course. Or, you " +"may want to create a copy of your course that you can later import into " +"another course instance and customize." +msgstr "" + +#: cms/templates/export.html +msgid "What content is exported?" +msgstr "" + +#: cms/templates/export.html +msgid "The following content is exported." +msgstr "" + +#: cms/templates/export.html cms/templates/import.html +msgid "Course content and structure" +msgstr "" + +#: cms/templates/export.html cms/templates/import.html +msgid "Course dates" +msgstr "" + +#: cms/templates/export.html cms/templates/import.html +msgid "Grading policy" +msgstr "" + +#: cms/templates/export.html cms/templates/import.html +msgid "Any group configurations" +msgstr "" + +#: cms/templates/export.html cms/templates/import.html +msgid "" +"Settings on the Advanced Settings page, including MATLAB API keys and LTI " +"passports" +msgstr "" + +#: cms/templates/export.html +msgid "The following content is not exported." +msgstr "" + +#: cms/templates/export.html cms/templates/import.html +msgid "" +"Learner-specific content, such as learner grades and discussion forum data" +msgstr "" + +#: cms/templates/export.html cms/templates/import.html +msgid "The course team" +msgstr "" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the course.xml file, as well as subfolders that contain course" +" content." +msgstr "" + +#: cms/templates/export.html +msgid "Learn more about exporting a course" +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git" +msgstr "" + +#: cms/templates/export_git.html cms/templates/widgets/header.html +msgid "Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "About Export to Git" +msgstr "" + +#: cms/templates/export_git.html +msgid "Use this to export your course to its git repository." +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"This will then trigger an automatic update of the main LMS site and update " +"the contents of your course visible there to students if automatic git " +"imports are configured." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Course to Git:" +msgstr "" + +#: cms/templates/export_git.html +msgid "" +"giturl must be defined in your course settings before you can export to git." +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Failed" +msgstr "" + +#: cms/templates/export_git.html +msgid "Export Succeeded" +msgstr "" + +#: cms/templates/export_git.html +msgid "Your course:" +msgstr "" + +#: cms/templates/export_git.html +msgid "Course git url:" +msgstr "" + +#: cms/templates/group_configurations.html +msgid "Experiment Group Configurations" +msgstr "" + +#: cms/templates/group_configurations.html +msgid "This module is disabled at the moment." +msgstr "" + +#: cms/templates/group_configurations.html +msgid "" +"Enrollment track groups allow you to offer different course content to " +"learners in each enrollment track. Learners enrolled in each enrollment " +"track in your course are automatically included in the corresponding " +"enrollment track group." +msgstr "" + +#: cms/templates/group_configurations.html +msgid "" +"On unit pages in the course outline, you can restrict access to components " +"to learners based on their enrollment track." +msgstr "" + +#: cms/templates/group_configurations.html +msgid "" +"You cannot edit enrollment track groups, but you can expand each group to " +"view details of the course content that is designated for learners in the " +"group." +msgstr "" + +#: cms/templates/group_configurations.html +msgid "" +"If you have cohorts enabled in your course, you can use content groups to " +"create cohort-specific courseware. In other words, you can customize the " +"content that particular cohorts see in your course." +msgstr "" + +#: cms/templates/group_configurations.html +msgid "" +"Each content group that you create can be associated with one or more " +"cohorts. In addition to making course content available to all learners, you" +" can restrict access to some content to learners in specific content groups." +" Only learners in the cohorts that are associated with the specified content" +" groups see the additional content." +msgstr "" + +#: cms/templates/group_configurations.html +msgid "" +"Click {em_start}New content group{em_end} to add a new content group. To " +"edit the name of a content group, hover over its box and click " +"{em_start}Edit{em_end}. You can delete a content group only if it is not in " +"use by a unit. To delete a content group, hover over its box and click the " +"delete icon." +msgstr "" + +#: cms/templates/group_configurations.html +msgid "" +"Use experiment group configurations if you are conducting content " +"experiments, also known as A/B testing, in your course. Experiment group " +"configurations define how many groups of learners are in a content " +"experiment. When you create a content experiment for a course, you select " +"the group configuration to use." +msgstr "" + +#: cms/templates/group_configurations.html +msgid "" +"Click {em_start}New Group Configuration{em_end} to add a new configuration. " +"To edit a configuration, hover over its box and click " +"{em_start}Edit{em_end}. You can delete a group configuration only if it is " +"not in use in an experiment. To delete a configuration, hover over its box " +"and click the delete icon." +msgstr "" + +#: cms/templates/group_configurations.html +#: cms/templates/settings_advanced.html +msgid "Details & Schedule" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Welcome to {studio_name}" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} helps manage your online courses, so you can focus on teaching" +" them" +msgstr "" + +#: cms/templates/howitworks.html +msgid "{studio_name}'s Many Features" +msgstr "" + +#: cms/templates/howitworks.html +msgid "{studio_name} Helps You Keep Your Courses Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Enlarge image" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Keeping Your Course Organized" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"The backbone of your course is how it is organized. {studio_name} offers an " +"{strong_start}Outline{strong_end} editor, providing a simple hierarchy and " +"easy drag and drop to help you and your students stay organized." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple Organization For Content" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} uses a simple hierarchy of {strong_start}sections{strong_end} " +"and {strong_start}subsections{strong_end} to organize your content." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Change Your Mind Anytime" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Draft your outline and build content anywhere. Simple drag and drop tools " +"let you reorganize quickly." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Go A Week Or A Semester At A Time" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Build and release {strong_start}sections{strong_end} to your students " +"incrementally. You don't have to have it all done at once." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Learning is More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} lets you weave your content together in a way that reinforces " +"learning. Insert videos, discussions, and a wide variety of exercises with " +"just a few clicks." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Create Learning Pathways" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Help your students understand one concept at a time with multimedia, HTML, " +"and exercises." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work Visually, Organize Quickly" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Work visually and see exactly what your students will see. Reorganize all " +"your content with drag and drop." +msgstr "" + +#: cms/templates/howitworks.html +msgid "A Broad Library of Problem Types" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"It's more than just multiple choice. {studio_name} supports more than a " +"dozen types of problems to challenge your learners." +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " +"Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Simple, Fast, and Incremental Publishing. With Friends." +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} works like web applications you already know, yet understands " +"how you build curriculum. Instant publishing to the web when you want it, " +"incremental release when it makes sense. And with co-authors, you can have a" +" whole team building a course, together." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Instant Changes" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Caught a bug? No problem. When you want, your changes go live when you click" +" Save." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Release-On Date Publishing" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"When you've finished a {strong_start}section{strong_end}, pick when you want" +" it to go live and {studio_name} takes care of the rest. Build your course " +"incrementally." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Work in Teams" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Co-authors have full access to all the same authoring tools. Make your " +"course better through a team effort." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up for {studio_name} Today!" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Sign Up & Start Making Your {platform_name} Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Already have a {studio_name} Account? Sign In" +msgstr "" + +#: cms/templates/howitworks.html +msgid "Outlining Your Course" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simple two-level outline to organize your course. Drag and drop, and see " +"your course at a glance." +msgstr "" + +#: cms/templates/howitworks.html +msgid "More than Just Lectures" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Quickly create videos, text snippets, inline discussions, and a variety of " +"problem types." +msgstr "" + +#: cms/templates/howitworks.html +msgid "Publishing on Date" +msgstr "" + +#: cms/templates/howitworks.html +msgid "" +"Simply set the date of a section or subsection, and {studio_name} will " +"publish it to your students for you." +msgstr "" + +#: cms/templates/html_error.html +msgid "We're having trouble rendering your component" +msgstr "" + +#: cms/templates/html_error.html +msgid "" +"Students will not be able to access this component. Re-edit your component " +"to fix the error." +msgstr "" + +#: cms/templates/import.html +msgid "Library Import" +msgstr "" + +#: cms/templates/import.html +msgid "Course Import" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a library before continuing. The contents of the " +"imported library will replace the contents of the existing library. " +"{em_start}You cannot undo a library import{em_end}. Before you proceed, we " +"recommend that you export the current library, so that you have a backup " +"copy of it." +msgstr "" + +#: cms/templates/import.html +msgid "" +"The library that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a library.xml file." +" It may also contain other files." +msgstr "" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your library until the import operation has completed." +msgstr "" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a course before continuing. The contents of the " +"imported course will replace the contents of the existing course. " +"{em_start}You cannot undo a course import{em_end}. Before you proceed, we " +"recommend that you export the current course, so that you have a backup copy" +" of it." +msgstr "" + +#: cms/templates/import.html +msgid "" +"The course that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " +"It may also contain other files." +msgstr "" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your course until the import operation has completed." +msgstr "" + +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Library Content" +msgstr "" + +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Course Content" +msgstr "" + +#: cms/templates/import.html +msgid "Choose a File to Import" +msgstr "" + +#: cms/templates/import.html +msgid "File Chosen:" +msgstr "" + +#: cms/templates/import.html +msgid "Replace my library with the selected file" +msgstr "" + +#: cms/templates/import.html +msgid "Replace my course with the selected file" +msgstr "" + +#: cms/templates/import.html +msgid "Library Import Status" +msgstr "" + +#: cms/templates/import.html +msgid "Course Import Status" +msgstr "" + +#: cms/templates/import.html +msgid "Transferring your file to our servers" +msgstr "" + +#: cms/templates/import.html +msgid "Unpacking" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Expanding and preparing folder/file structure (You can now leave this page " +"safely, but avoid making drastic changes to content until this import is " +"complete)" +msgstr "" + +#: cms/templates/import.html +msgid "Verifying" +msgstr "" + +#: cms/templates/import.html +msgid "Reviewing semantics, syntax, and required data" +msgstr "" + +#: cms/templates/import.html +msgid "Updating Library" +msgstr "" + +#: cms/templates/import.html +msgid "Updating Course" +msgstr "" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this library. This process might take" +" longer with larger libraries." +msgstr "" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this course. This process might take " +"longer with larger courses." +msgstr "" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this library" +msgstr "" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this course" +msgstr "" + +#: cms/templates/import.html +msgid "View Updated Library" +msgstr "" + +#: cms/templates/import.html +msgid "View Updated Outline" +msgstr "" + +#: cms/templates/import.html +msgid "Why import a library?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"You might want to update an existing library to a new version, or replace an" +" existing library entirely. You might also have developed a library outside " +"of {studio_name}." +msgstr "" + +#: cms/templates/import.html +msgid "Note: Library content is not automatically updated in courses" +msgstr "" + +#: cms/templates/import.html +msgid "" +"If you change and import a library that is referenced by randomized content " +"blocks in one or more courses, those courses do not automatically use the " +"updated content. You must manually refresh the randomized content blocks to " +"bring them up to date with the latest library content." +msgstr "" + +#: cms/templates/import.html +msgid "Learn more about importing a library" +msgstr "" + +#: cms/templates/import.html +msgid "Why import a course?" +msgstr "" + +#: cms/templates/import.html +msgid "" +"You may want to run a new version of an existing course, or replace an " +"existing course altogether. Or, you may have developed a course outside " +"{studio_name}." +msgstr "" + +#: cms/templates/import.html +msgid "What content is imported?" +msgstr "" + +#: cms/templates/import.html +msgid "The following content is imported." +msgstr "" + +#: cms/templates/import.html +msgid "The following content is not imported." +msgstr "" + +#: cms/templates/import.html +msgid "Warning: Importing while a course is running" +msgstr "" + +#: cms/templates/import.html +msgid "" +"If you perform an import while your course is running, and you change the " +"URL names (or url_name nodes) of any Problem components, the student data " +"associated with those Problem components may be lost. This data includes " +"students' problem scores." +msgstr "" + +#: cms/templates/import.html +msgid "Learn more about importing a course" +msgstr "" + +#: cms/templates/index.html cms/templates/widgets/user_dropdown.html +msgid "{studio_name} Home" +msgstr "" + +#: cms/templates/index.html +msgid "New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Email staff to create course" +msgstr "" + +#: cms/templates/index.html +msgid "New Library" +msgstr "" + +#: cms/templates/index.html +msgid "Please correct the highlighted fields below." +msgstr "" + +#: cms/templates/index.html +msgid "Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "Required Information to Create a New Course" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The public display name for your course. This cannot be changed, but you can" +" set a different display name in Advanced Settings later." +msgstr "" + +#: cms/templates/index.html +msgid "" +"The name of the organization sponsoring the course. {strong_start}Note: The " +"organization name is part of the course URL.{strong_end} This cannot be " +"changed, but you can set a different display name in Advanced Settings " +"later." +msgstr "" + +#: cms/templates/index.html +msgid "" +"The unique number that identifies your course within your organization. " +"{strong_start}Note: This is part of your course URL, so no spaces or special" +" characters are allowed and it cannot be changed.{strong_end}" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The term in which your course will run. {strong_start}Note: This is part of " +"your course URL, so no spaces or special characters are allowed and it " +"cannot be changed.{strong_end}" +msgstr "" + +#: cms/templates/index.html +msgid "Create" +msgstr "" + +#: cms/templates/index.html +msgid "Create a New Library" +msgstr "" + +#: cms/templates/index.html +msgid "Required Information to Create a New Library" +msgstr "" + +#: cms/templates/index.html +msgid "Library Name" +msgstr "" + +#. Translators: This is an example name for a new content library, seen when +#. filling out the form to create a new library. +#. (A library is a collection of content or problems.) +#: cms/templates/index.html +msgid "e.g. Computer Science Problems" +msgstr "" + +#: cms/templates/index.html +msgid "The public display name for your library." +msgstr "" + +#: cms/templates/index.html +msgid "The public organization name for your library." +msgstr "" + +#: cms/templates/index.html +msgid "This cannot be changed." +msgstr "" + +#: cms/templates/index.html +msgid "Library Code" +msgstr "" + +#. Translators: This is an example for the "code" used to identify a library, +#. seen when filling out the form to create a new library. This example is +#. short +#. for "Computer Science Problems". The example number may contain letters +#. but must not contain spaces. +#: cms/templates/index.html +msgid "e.g. CSPROB" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The unique code that identifies this library. {strong_start}Note: This is " +"part of your library URL, so no spaces or special characters are " +"allowed.{strong_end} This cannot be changed." +msgstr "" + +#: cms/templates/index.html +msgid "Organization and Library Settings" +msgstr "" + +#: cms/templates/index.html +msgid "Show all courses in organization:" +msgstr "" + +#: cms/templates/index.html +msgid "For example, MITx" +msgstr "" + +#: cms/templates/index.html +msgid "Courses Being Processed" +msgstr "" + +#: cms/templates/index.html +msgid "This course run is currently being created." +msgstr "" + +#. Translators: This is a status message, used to inform the user of +#. what the system is doing. This status means that the user has +#. requested to re-run an existing course, and the system is currently +#. in the process of duplicating and configuring the existing course +#. so that it can be re-run. +#: cms/templates/index.html +msgid "Configuring as re-run" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The new course will be added to your course list in 5-10 minutes. Return to " +"this page or {link_start}refresh it{link_end} to update the course list. The" +" new course will need some manual configuration." +msgstr "" + +#. Translators: This is a status message for the course re-runs feature. +#. When a course admin indicates that a course should be re-run, the system +#. needs to process the request and prepare the new course. The status of +#. the process will follow this text. +#: cms/templates/index.html +msgid "This re-run processing status:" +msgstr "" + +#: cms/templates/index.html +msgid "Configuration Error" +msgstr "" + +#: cms/templates/index.html +msgid "" +"A system error occurred while your course was being processed. Please go to " +"the original course to try the re-run again, or contact your PM for " +"assistance." +msgstr "" + +#: cms/templates/index.html +msgid "Archived Courses" +msgstr "" + +#: cms/templates/index.html +msgid "Libraries" +msgstr "" + +#: cms/templates/index.html +msgid "Are you staff on an existing {studio_name} course?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The course creator must give you access to the course. Contact the course " +"creator or administrator for the course you are helping to author." +msgstr "" + +#: cms/templates/index.html +msgid "Create Your First Course" +msgstr "" + +#: cms/templates/index.html +msgid "Your new course is just a click away!" +msgstr "" + +#: cms/templates/index.html +msgid "Becoming a Course Creator in {studio_name}" +msgstr "" + +#: cms/templates/index.html +msgid "" +"{studio_name} is a hosted solution for our xConsortium partners and selected" +" guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by {platform_name}. Our " +"team will evaluate your request and provide you feedback within 24 hours " +"during the work week." +msgstr "" + +#: cms/templates/index.html +msgid "Your Course Creator Request Status:" +msgstr "" + +#: cms/templates/index.html +msgid "Request the Ability to Create Courses" +msgstr "" + +#: cms/templates/index.html +msgid "Your Course Creator Request Status" +msgstr "" + +#: cms/templates/index.html +msgid "" +"{studio_name} is a hosted solution for our xConsortium partners and selected" +" guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by {platform_name}. Our " +"team is has completed evaluating your request." +msgstr "" + +#: cms/templates/index.html +msgid "Your Course Creator request is:" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request did not meet the criteria/guidelines specified by " +"{platform_name} Staff." +msgstr "" + +#: cms/templates/index.html +msgid "" +"{studio_name} is a hosted solution for our xConsortium partners and selected" +" guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by {platform_name}. Our " +"team is currently evaluating your request." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request is currently being reviewed by {platform_name} staff and should" +" be updated shortly." +msgstr "" + +#: cms/templates/index.html +msgid "Were you expecting to see a particular library here?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"The library creator must give you access to the library. Contact the library" +" creator or administrator for the library you are helping to author." +msgstr "" + +#: cms/templates/index.html +msgid "Create Your First Library" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Libraries hold a pool of components that can be re-used across multiple " +"courses. Create your first library with the click of a button!" +msgstr "" + +#: cms/templates/index.html +msgid "New to {studio_name}?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Click Help in the upper-right corner to get more information about the " +"{studio_name} page you are viewing. You can also use the links at the bottom" +" of the page to access our continually updated documentation and other " +"{studio_name} resources." +msgstr "" + +#: cms/templates/index.html +msgid "Getting Started with {studio_name}" +msgstr "" + +#: cms/templates/index.html +msgid "Can I create courses in {studio_name}?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"In order to create courses in {studio_name}, you must {link_start}contact " +"{platform_name} staff to help you create a course{link_end}." +msgstr "" + +#: cms/templates/index.html +msgid "" +"In order to create courses in {studio_name}, you must have course creator " +"privileges to create your own course." +msgstr "" + +#: cms/templates/index.html +msgid "" +"Your request to author courses in {studio_name} has been denied. Please " +"{link_start}contact {platform_name} Staff with further questions{link_end}." +msgstr "" + +#: cms/templates/index.html +msgid "Thanks for signing up, {name}!" +msgstr "" + +#: cms/templates/index.html +msgid "We need to verify your email address" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Almost there! In order to complete your sign up we need you to verify your " +"email address ({email}). An activation message and next steps should be " +"waiting for you there." +msgstr "" + +#: cms/templates/index.html +msgid "Need help?" +msgstr "" + +#: cms/templates/index.html +msgid "" +"Please check your Junk or Spam folders in case our email isn't in your " +"INBOX. Still can't find the verification email? Request help via the link " +"below." +msgstr "" + +#: cms/templates/library.html +msgid "Content Library" +msgstr "" + +#: cms/templates/library.html +msgid "Add Component" +msgstr "" + +#: cms/templates/library.html +msgid "Adding content to your library" +msgstr "" + +#: cms/templates/library.html +msgid "" +"Add components to your library for use in courses, using Add New Component " +"at the bottom of this page." +msgstr "" + +#: cms/templates/library.html +msgid "" +"Components are listed in the order in which they are added, with the most " +"recently added at the bottom. Use the pagination arrows to navigate from " +"page to page if you have more than one page of components in your library." +msgstr "" + +#: cms/templates/library.html +msgid "Using library content in courses" +msgstr "" + +#: cms/templates/library.html +msgid "" +"Use library content in courses by adding the " +"{em_start}library_content{em_end} policy key to the Advanced Module List in " +"the course's Advanced Settings, then adding a Randomized Content Block to " +"your courseware. In the settings for each Randomized Content Block, select " +"this library as the source library, and specify the number of problems to be" +" randomly selected and displayed to each student." +msgstr "" + +#: cms/templates/library.html +msgid "Learn more about content libraries" +msgstr "" + +#: cms/templates/login.html +msgid "Sign In to {studio_name}" +msgstr "" + +#: cms/templates/login.html +msgid "Don't have a {studio_name} Account? Sign up!" +msgstr "" + +#: cms/templates/login.html +msgid "Required Information to Sign In to {studio_name}" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Settings" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +msgid "New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a User to Your Course's Team" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +msgid "New Team Member Information" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +msgid "User's Email Address" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Provide the email address of the user you want to add as Staff" +msgstr "" + +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +msgid "Add User" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add Team Members to This Course" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Adding team members makes course authoring collaborative. Users must be " +"signed up for {studio_name} and have an active account." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Add a New Team Member" +msgstr "" + +#: cms/templates/manage_users.html +msgid "Course Team Roles" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Course team members with the Staff role are course co-authors. They have " +"full writing and editing privileges on all course content." +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Admins are course team members who can add and remove other course team " +"members." +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"All course team members can access content in Studio, the LMS, and Insights," +" but are not automatically enrolled in the course." +msgstr "" + +#: cms/templates/manage_users.html +msgid "Transferring Ownership" +msgstr "" + +#: cms/templates/manage_users.html +msgid "" +"Every course must have an Admin. If you are the Admin and you want to " +"transfer ownership of the course, click Add admin access to" +" make another user the Admin, then ask that user to remove you from the " +"Course Team list." +msgstr "" + +#: cms/templates/manage_users_lib.html +msgid "Library User Access" +msgstr "" + +#: cms/templates/manage_users_lib.html cms/templates/widgets/header.html +msgid "User Access" +msgstr "" + +#: cms/templates/manage_users_lib.html +msgid "Grant Access to This Library" +msgstr "" + +#: cms/templates/manage_users_lib.html +msgid "Provide the email address of the user you want to add" +msgstr "" + +#: cms/templates/manage_users_lib.html +msgid "Add More Users to This Library" +msgstr "" + +#: cms/templates/manage_users_lib.html +msgid "" +"Grant other members of your course team access to this library. New library " +"users must have an active {studio_name} account." +msgstr "" + +#: cms/templates/manage_users_lib.html +msgid "Add a New User" +msgstr "" + +#: cms/templates/manage_users_lib.html +msgid "Library Access Roles" +msgstr "" + +#: cms/templates/manage_users_lib.html +msgid "There are three access roles for libraries: User, Staff, and Admin." +msgstr "" + +#: cms/templates/manage_users_lib.html +msgid "" +"Library Users can view library content and can reference or use library " +"components in their courses, but they cannot edit the contents of a library." +msgstr "" + +#: cms/templates/manage_users_lib.html +msgid "" +"Library Staff are content co-authors. They have full editing privileges on " +"the contents of a library." +msgstr "" + +#: cms/templates/manage_users_lib.html +msgid "" +"Library Admins have full editing privileges and can also add and remove " +"other team members. There must be at least one user with the Admin role in a" +" library." +msgstr "" + +#: cms/templates/settings.html +msgid "Contact your edX partner manager to update these settings." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Your policy changes have been saved." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "There was an error saving your information. Please see below." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Manual Policy Definition" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"{strong_start}Warning{strong_end}: Do not modify these policies unless you " +"are familiar with their purpose." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "Show Deprecated Settings" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "What do advanced settings do?" +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Advanced settings control specific course functionality. On this page, you " +"can edit manual policies, which are JSON-based key and value pairs that " +"control specific course settings." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"Any policies you modify here override all other information you've defined " +"elsewhere in {studio_name}. Do not edit policies unless you are familiar " +"with both their purpose and syntax." +msgstr "" + +#: cms/templates/settings_advanced.html +msgid "" +"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" +" you use double quotation marks (\") around the string. Do not use single " +"quotation marks (')." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Settings" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Overall Grade Range" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Your overall grading scale for student final grades" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Add grade" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Credit Eligibility" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Settings for course credit eligibility" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Minimum Credit-Eligible Grade:" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Must be greater than or equal to the course passing grade" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grading Rules & Policies" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Deadlines, requirements, and logistics around grading student work" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Grace Period on Deadline:" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Leeway on due dates" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Assignment Types" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "Categories and labels for any exercises that are gradable" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "New Assignment Type" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "What can I do on this page?" +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can use the slider under Overall Grade Range to specify whether your " +"course is pass/fail or graded by letter, and to establish the thresholds for" +" each grade." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can specify whether your course offers students a grace period for late " +"assignments." +msgstr "" + +#: cms/templates/settings_graders.html +msgid "" +"You can also create assignment types, such as homework, labs, quizzes, and " +"exams, and specify how much of a student's grade each assignment type is " +"worth." +msgstr "" + +#: cms/templates/studio_xblock_wrapper.html +msgid "Expand or Collapse" +msgstr "" + +#: cms/templates/studio_xblock_wrapper.html +msgid "Access Settings" +msgstr "" + +#: cms/templates/studio_xblock_wrapper.html +msgid "Set Access" +msgstr "" + +#: cms/templates/studio_xblock_wrapper.html +msgid "This block contains multiple components." +msgstr "" + +#: cms/templates/textbooks.html +msgid "New Textbook" +msgstr "" + +#: cms/templates/textbooks.html +msgid "Why should I break my textbook into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"Breaking your textbook into multiple chapters reduces loading times for " +"students, especially those with slow Internet connections. Breaking up " +"textbooks into chapters can also help students more easily find topic-based " +"information." +msgstr "" + +#: cms/templates/textbooks.html +msgid "What if my book isn't divided into chapters?" +msgstr "" + +#: cms/templates/textbooks.html +msgid "" +"If your textbook doesn't have individual chapters, you can upload the entire" +" text as a single chapter and enter a name of your choice in the Chapter " +"Name field." +msgstr "" + +#: cms/templates/textbooks.html +msgid "Learn more about textbooks" +msgstr "" + +#: cms/templates/videos_index.html cms/templates/widgets/header.html +msgid "Video Uploads" +msgstr "" + +#: cms/templates/videos_index.html +msgid "Course Video Settings" +msgstr "" + +#: cms/templates/videos_index_pagination.html +msgid "Changing.." +msgstr "" + +#: cms/templates/videos_index_pagination.html +msgid "Videos per page:" +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "Access is not restricted" +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "" +"Access to this unit is not restricted, but visibility might be affected by " +"inherited settings." +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "" +"Access to this component is not restricted, but visibility might be affected" +" by inherited settings." +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "" +"You can restrict access to this unit to learners in specific enrollment " +"tracks or content groups." +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "" +"You can restrict access to this component to learners in specific enrollment" +" tracks or content groups." +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "" +"You can restrict access to this unit to learners in specific content groups." +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "" +"You can restrict access to this component to learners in specific content " +"groups." +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "Manage content groups" +msgstr "" + +#. Translators: Any text between {screen_reader_start} and {screen_reader_end} +#. is only read by screen readers and never shown in the browser. +#: cms/templates/visibility_editor.html +msgid "" +"{screen_reader_start}Warning:{screen_reader_end} The unit that contains this" +" component is hidden from learners. The unit setting overrides the component" +" access settings defined here." +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "Access is restricted to:" +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "Restrict access to:" +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "Select a group type" +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "All Learners and Staff" +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "Select one or more groups:" +msgstr "" + +#: cms/templates/visibility_editor.html +msgid "" +"This group no longer exists. Choose another group or remove the access " +"restriction." +msgstr "" + +#: cms/templates/emails/activation_email_subject.txt +msgid "Your account for {studio_name}" +msgstr "" + +#: cms/templates/emails/course_creator_admin_subject.txt +msgid "{email} has requested {studio_name} course creator privileges on edge" +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "" +"User '{user}' with e-mail {email} has requested {studio_name} course creator" +" privileges on edge." +msgstr "" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "To grant or deny this request, use the course creator admin table." +msgstr "" + +#: cms/templates/emails/course_creator_denied.txt +msgid "" +"Your request for course creation rights to {studio_name} have been denied. " +"If you believe this was in error, please contact {email}" +msgstr "" + +#: cms/templates/emails/course_creator_granted.txt +msgid "" +"Your request for course creation rights to {studio_name} have been granted. To create your first course, visit\n" +"\n" +"{url}" +msgstr "" + +#: cms/templates/emails/course_creator_revoked.txt +msgid "" +"Your course creation rights to {studio_name} have been revoked. If you " +"believe this was in error, please contact {email}" +msgstr "" + +#: cms/templates/emails/course_creator_subject.txt +msgid "Your course creator status for {studio_name}" +msgstr "" + +#: cms/templates/emails/user_task_complete_email.txt +msgid "" +"Your {task_name} task has completed with the status '{task_status}'. Use " +"this URL to view task details or download any files created: {detail_url}" +msgstr "" + +#: cms/templates/emails/user_task_complete_email.txt +msgid "" +"Your {task_name} task has completed with the status '{task_status}'. Sign in" +" to view the details of your task or download any files created." +msgstr "" + +#: cms/templates/emails/user_task_complete_email_subject.txt +msgid "{platform_name} {studio_name}: Task Status Update" +msgstr "" + +#: cms/templates/maintenance/_force_publish_course.html +msgid "Required data to force publish course." +msgstr "" + +#: cms/templates/maintenance/_force_publish_course.html +msgid "course-v1:edX+DemoX+Demo_Course" +msgstr "" + +#: cms/templates/maintenance/_force_publish_course.html +msgid "Reset values" +msgstr "" + +#: cms/templates/maintenance/base.html cms/templates/maintenance/index.html +msgid "Maintenance Dashboard" +msgstr "" + +#: cms/templates/registration/activation_complete.html +msgid "Thanks for activating your account." +msgstr "" + +#: cms/templates/registration/activation_complete.html +msgid "This account has already been activated." +msgstr "" + +#: cms/templates/registration/activation_complete.html +msgid "Visit your {link_start}dashboard{link_end} to see your courses." +msgstr "" + +#: cms/templates/registration/activation_complete.html +msgid "You can now {link_start}sign in{link_end}." +msgstr "" + +#: cms/templates/registration/activation_invalid.html +msgid "Activation Invalid" +msgstr "" + +#: cms/templates/registration/activation_invalid.html +msgid "" +"Something went wrong. Email programs sometimes split URLs into two lines, so" +" make sure the URL you're using is formatted correctly. If you still have " +"issues, send us an email message at {email_start}{email}{email_end}." +msgstr "" + +#: cms/templates/registration/activation_invalid.html +msgid "Return to the {link_start}home page{link_end}." +msgstr "" + +#: cms/templates/registration/reg_complete.html +msgid "" +"We've sent an email message to {email} with instructions for activating your" +" account." +msgstr "" + +#: cms/templates/widgets/footer.html +msgid "Policies" +msgstr "" + +#: cms/templates/widgets/footer.html +msgid "Accessibility Accommodation Request" +msgstr "" + +#: cms/templates/widgets/footer.html +msgid "LMS" +msgstr "" + +#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX +#. Inc.'. Please do not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +msgid "" +"EdX, Open edX, Studio, and the edX and Open edX logos are registered " +"trademarks or trademarks of {link_start}edX Inc.{link_end}" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Current Course:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Course Navigation" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Outline" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Import" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Export" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Current Library:" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Language preference" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Account Navigation" +msgstr "" + +#: cms/templates/widgets/header.html +msgid "Contextual Online Help" +msgstr "" + +#: cms/templates/widgets/metadata-edit.html +msgid "Launch Latex Source Compiler" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Heading" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Insert a heading" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Add a multiple choice question" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Add a question with checkboxes" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Insert a text response" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Insert a numerical response" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Insert a dropdown response" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Explanation" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Add an explanation for this question" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Advanced Editor" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Toggle Cheatsheet" +msgstr "" + +#: cms/templates/widgets/problem-edit.html +msgid "Label" +msgstr "" + +#: cms/templates/widgets/sock_links.html +msgid "Access the Open edX Portal" +msgstr "" + +#: cms/templates/widgets/sock_links.html +msgid "Open edX Portal" +msgstr "" + +#: cms/templates/widgets/user_dropdown.html +msgid "Currently signed in as:" +msgstr "" + +#: cms/templates/widgets/user_dropdown.html +msgid "Maintenance" +msgstr "" + +#: wiki/apps.py +msgid "Wiki notifications" +msgstr "" + +#: wiki/apps.py +msgid "Wiki images" +msgstr "" + +#: wiki/apps.py +msgid "Wiki attachments" +msgstr "" + +#: wiki/forms.py +msgid "Only localhost... muahahaha" +msgstr "" + +#: wiki/forms.py +msgid "Initial title of the article. May be overridden with revision titles." +msgstr "" + +#: wiki/forms.py +msgid "Type in some contents" +msgstr "" + +#: wiki/forms.py +msgid "" +"This is just the initial contents of your article. After creating it, you " +"can use more complex features like adding plugins, meta data, related " +"articles etc..." +msgstr "" + +#: wiki/forms.py +msgid "Contents" +msgstr "" + +#: wiki/forms.py +msgid "Summary" +msgstr "" + +#: wiki/forms.py +msgid "" +"Give a short reason for your edit, which will be stated in the revision log." +msgstr "" + +#: wiki/forms.py +msgid "" +"While you were editing, someone else changed the revision. Your contents " +"have been automatically merged with the new contents. Please review the text" +" below." +msgstr "" + +#: wiki/forms.py +msgid "No changes made. Nothing to save." +msgstr "" + +#: wiki/forms.py wiki/templates/wiki/dir.html +msgid "Slug" +msgstr "" + +#: wiki/forms.py +msgid "" +"This will be the address where your article can be found. Use only " +"alphanumeric characters and - or _. Note that you cannot change the slug " +"after creating the article." +msgstr "" + +#: wiki/forms.py +msgid "Write a brief message for the article's history log." +msgstr "" + +#: wiki/forms.py +msgid "A slug may not begin with an underscore." +msgstr "" + +#: wiki/forms.py +#, python-format +msgid "A deleted article with slug \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +#, python-format +msgid "A slug named \"%s\" already exists." +msgstr "" + +#: wiki/forms.py +msgid "Yes, I am sure" +msgstr "" + +#: wiki/forms.py wiki/templates/wiki/deleted.html +msgid "Purge" +msgstr "" + +#: wiki/forms.py +msgid "" +"Purge the article: Completely remove it (and all its contents) with no undo." +" Purging is a good idea if you want to free the slug such that users can " +"create new articles in its place." +msgstr "" + +#: wiki/forms.py wiki/plugins/attachments/forms.py +#: wiki/plugins/images/forms.py +msgid "You are not sure enough!" +msgstr "" + +#: wiki/forms.py +msgid "While you tried to delete this article, it was modified. TAKE CARE!" +msgstr "" + +#: wiki/forms.py +msgid "Lock article" +msgstr "" + +#: wiki/forms.py +msgid "Deny all users access to edit this article." +msgstr "" + +#: wiki/forms.py +msgid "Permissions" +msgstr "" + +#: wiki/forms.py +msgid "Owner" +msgstr "" + +#: wiki/forms.py +msgid "Enter the username of the owner." +msgstr "" + +#: wiki/forms.py +msgid "(none)" +msgstr "" + +#: wiki/forms.py +msgid "Inherit permissions" +msgstr "" + +#: wiki/forms.py +msgid "" +"Check here to apply the above permissions recursively to articles under this" +" one." +msgstr "" + +#: wiki/forms.py +msgid "Permission settings for the article were updated." +msgstr "" + +#: wiki/forms.py +msgid "Your permission settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/forms.py +msgid "No user with that username" +msgstr "" + +#: wiki/forms.py +msgid "Article locked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Article unlocked for editing" +msgstr "" + +#: wiki/forms.py +msgid "Filter" +msgstr "" + +#: wiki/core/plugins/base.py +msgid "Settings for plugin" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +#: wiki/plugins/attachments/models.py +msgid "current revision" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The revision being displayed for this article. If you need to do a roll-" +"back, simply change the value of this field." +msgstr "" + +#: wiki/models/article.py +msgid "modified" +msgstr "" + +#: wiki/models/article.py +msgid "Article properties last modified" +msgstr "" + +#: wiki/models/article.py +msgid "owner" +msgstr "" + +#: wiki/models/article.py +msgid "" +"The owner of the article, usually the creator. The owner always has both " +"read and write access." +msgstr "" + +#: wiki/models/article.py +msgid "group" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Like in a UNIX file system, permissions can be given to a user according to " +"group membership. Groups are handled through the Django auth system." +msgstr "" + +#: wiki/models/article.py +msgid "group read access" +msgstr "" + +#: wiki/models/article.py +msgid "group write access" +msgstr "" + +#: wiki/models/article.py +msgid "others read access" +msgstr "" + +#: wiki/models/article.py +msgid "others write access" +msgstr "" + +#: wiki/models/article.py +#, python-format +msgid "Article without content (%(id)d)" +msgstr "" + +#: wiki/models/article.py +msgid "content type" +msgstr "" + +#: wiki/models/article.py +msgid "object ID" +msgstr "" + +#: wiki/models/article.py +msgid "Article for object" +msgstr "" + +#: wiki/models/article.py +msgid "Articles for object" +msgstr "" + +#: wiki/models/article.py +msgid "revision number" +msgstr "" + +#: wiki/models/article.py +msgid "IP address" +msgstr "" + +#: wiki/models/article.py +msgid "user" +msgstr "" + +#: wiki/models/article.py wiki/templates/wiki/article.html +#: wiki/templates/wiki/includes/revision_info.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "locked" +msgstr "" + +#: wiki/models/article.py wiki/models/pluginbase.py +msgid "article" +msgstr "" + +#: wiki/models/article.py +msgid "article contents" +msgstr "" + +#: wiki/models/article.py +msgid "article title" +msgstr "" + +#: wiki/models/article.py +msgid "" +"Each revision contains a title field that must be filled out, even if the " +"title has not changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "original article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "Permissions are inherited from this article" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "A plugin was changed" +msgstr "" + +#: wiki/models/pluginbase.py +msgid "" +"The revision being displayed for this plugin.If you need to do a roll-back, " +"simply change the value of this field." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Cache lookup value for articles" +msgstr "" + +#: wiki/models/urlpath.py +msgid "slug" +msgstr "" + +#: wiki/models/urlpath.py +msgid "(root)" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL path" +msgstr "" + +#: wiki/models/urlpath.py +msgid "URL paths" +msgstr "" + +#: wiki/models/urlpath.py +msgid "Sorry but you cannot have a root article with a slug." +msgstr "" + +#: wiki/models/urlpath.py +msgid "A non-root note must always have a slug." +msgstr "" + +#: wiki/models/urlpath.py +#, python-format +msgid "There is already a root node on %s" +msgstr "" + +#: wiki/models/urlpath.py +msgid "" +"Articles who lost their parents\n" +"===============================\n" +"\n" +"The children of this article have had their parents deleted. You should probably find a new home for them." +msgstr "" + +#: wiki/models/urlpath.py +msgid "Lost and found" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "A short summary of what the file contains" +msgstr "" + +#: wiki/plugins/attachments/forms.py +msgid "Yes I am sure..." +msgstr "" + +#: wiki/plugins/attachments/markdown_extensions.py +msgid "Click to download file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "" +"The revision of this attachment currently in use (on all articles using the " +"attachment)" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "original filename" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachments" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "file" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revision" +msgstr "" + +#: wiki/plugins/attachments/models.py +msgid "attachment revisions" +msgstr "" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "%s was successfully added." +msgstr "" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "Your file could not be saved: %s" +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your file could not be saved, probably because of a permission error on the " +"web server." +msgstr "" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "%s uploaded and replaces old attachment." +msgstr "" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your new file will automatically be renamed to match the file already " +"present. Files with different extensions are not allowed." +msgstr "" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "Current revision changed for %s." +msgstr "" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." +msgstr "" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "The file %s was deleted." +msgstr "" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "This article is no longer related to the file %s." +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +#, python-format +msgid "A file was changed: %s" +msgstr "" + +#: wiki/plugins/attachments/wiki_plugin.py +#, python-format +msgid "A file was deleted: %s" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "" +"The file may be referenced on other articles. Deleting it means that they " +"will loose their references to this file. The following articles reference " +"this file:" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "Delete it!" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "" +"You can remove a reference to a file, but it will retain its references on " +"other articles." +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "Remove reference" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +msgid "History of" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +msgid "User" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "File" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Action" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "No description" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Download" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +msgid "Use this!" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#, python-format +msgid "" +"Replacing an attachment means adding a new file that will be used in its " +"place. All references to the file will be replaced by the one you upload and" +" the file will be downloaded as %(filename)s. Please note " +"that this attachment is in use on other articles, you may distort contents. " +"However, do not hestitate to take advantage of this and make replacements " +"for the listed articles where necessary. This way of working is more " +"efficient...." +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +msgid "Articles using" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#, python-format +msgid "" +"Replacing an attachment means adding a new file that will be used in its " +"place. All references to the file will be replaced by the one you upload and" +" the file will be downloaded as %(filename)s." +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html +msgid "Upload replacement" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Add file to" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Add attachment from other article" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Main article" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Add to article" +msgstr "" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Your search did not return any results" +msgstr "" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "Adding new articles" +msgstr "" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "An external link" +msgstr "" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "Headers" +msgstr "" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "" +"Use these codes for headers and to automatically generate Tables of " +"Contents." +msgstr "" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "Typography" +msgstr "" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "Lists" +msgstr "" + +#: wiki/plugins/images/forms.py +#, python-format +msgid "" +"New image %s was successfully uploaded. You can use it by selecting it from " +"the list of available images." +msgstr "" + +#: wiki/plugins/images/forms.py +msgid "Are you sure?" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "images" +msgstr "" + +#: wiki/plugins/images/models.py +#, python-format +msgid "Image: %s" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "Current revision not set!!" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revision" +msgstr "" + +#: wiki/plugins/images/models.py +msgid "image revisions" +msgstr "" + +#: wiki/plugins/images/models.py +#, python-format +msgid "Image Revsion: %d" +msgstr "" + +#: wiki/plugins/images/views.py +#, python-format +msgid "%s has been restored" +msgstr "" + +#: wiki/plugins/images/views.py +#, python-format +msgid "%s has been marked as deleted" +msgstr "" + +#: wiki/plugins/images/views.py +#, python-format +msgid "%(file)s has been changed to revision #%(revision)d" +msgstr "" + +#: wiki/plugins/images/views.py +#, python-format +msgid "%(file)s has been saved." +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Images" +msgstr "" + +#: wiki/plugins/images/wiki_plugin.py +#, python-format +msgid "An image was added: %s" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "" +"The following images are available for this article. Copy the markdown tag " +"to directly refer to an image from the article text." +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Back to edit page" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "No file" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Upload new image" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Restore image" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Remove image" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Completely delete" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Revert to this version" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "There are no images for this article." +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/purge.html +#: wiki/templates/wiki/deleted.html +msgid "Purge deletion" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/purge.html +msgid "Purge image: Completely remove image file and all revisions." +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/purge.html +msgid "Remove it completely!" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/render.html +msgid "Image not found" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html +msgid "Replace image" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html +msgid "Choose an image file to replace current image." +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Image id" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "Insert" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "No images found for this article" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Manage images" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Add new image" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Add image" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "You do not have permissions to add images." +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "How to use images" +msgstr "" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "" +"After uploading an image, it is attached to this particular artice and can " +"be used only here. Other users may replace the image, but older versions are" +" kept. You probably want to show the image with a nice caption. To achieve " +"this, press the Insert button and fill in the caption fields and possibly " +"choose to have you image floating right or left of the content. You can use " +"Markdown in the caption. The markdown code syntax for images looks like " +"this, possible values for align are left/center/right:" +msgstr "" + +#: wiki/plugins/links/wiki_plugin.py +msgid "Links" +msgstr "" + +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "Link to another wiki page" +msgstr "" + +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "" +"Type in something from another wiki page's title and auto-complete will help" +" you create a tag for you wiki link. Tags for links look like this:" +msgstr "" + +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "" +"You can link to another website simply by inserting an address example.com " +"or http://example.com or by using the markdown syntax:" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Notifications" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "When this article is edited" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Also receive emails about article edits" +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were updated." +msgstr "" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were unchanged, so nothing saved." +msgstr "" + +#: wiki/plugins/notifications/models.py +#, python-format +msgid "%(user)s subscribing to %(article)s (%(type)s)" +msgstr "" + +#: wiki/plugins/notifications/models.py +#, python-format +msgid "Article deleted: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +#, python-format +msgid "Article modified: %s" +msgstr "" + +#: wiki/plugins/notifications/models.py +#, python-format +msgid "New article created: %s" +msgstr "" + +#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html +msgid "notifications" +msgstr "" + +#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html +msgid "No notifications" +msgstr "" + +#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html +msgid "Clear notifications list" +msgstr "" + +#: wiki/templates/wiki/base.html +msgid "Search..." +msgstr "" + +#: wiki/templates/wiki/base.html wiki/templates/wiki/accounts/login.html +#: wiki/templates/wiki/accounts/signup.html +msgid "Sign up" +msgstr "" + +#: wiki/templates/wiki/deleted.html +msgid "Article deleted" +msgstr "" + +#: wiki/templates/wiki/deleted.html +msgid "Article Deleted" +msgstr "" + +#: wiki/templates/wiki/deleted.html +msgid "The article you were looking for has been deleted." +msgstr "" + +#: wiki/templates/wiki/deleted.html +msgid "You may restore this article and its children by clicking restore." +msgstr "" + +#: wiki/templates/wiki/deleted.html +msgid "" +"You may remove this article and any children permanently and free their " +"slugs by clicking the below button. This action cannot be undone." +msgstr "" + +#: wiki/templates/wiki/dir.html +msgid "Listing articles in" +msgstr "" + +#: wiki/templates/wiki/dir.html +msgid "Up one level" +msgstr "" + +#: wiki/templates/wiki/dir.html +msgid "clear" +msgstr "" + +#: wiki/templates/wiki/dir.html +msgid "article,articles" +msgstr "" + +#: wiki/templates/wiki/dir.html +msgid "matches,match" +msgstr "" + +#: wiki/templates/wiki/dir.html +#, python-format +msgid "%(cnt)s %(articles_plur)s in this level %(match_plur)s your search." +msgstr "" + +#: wiki/templates/wiki/dir.html +msgid "is,are" +msgstr "" + +#: wiki/templates/wiki/dir.html +#, python-format +msgid "There %(articles_plur_verb)s %(cnt)s %(articles_plur)s in this level." +msgstr "" + +#: wiki/templates/wiki/dir.html +msgid "Last modified" +msgstr "" + +#: wiki/templates/wiki/history.html +msgid "no log message" +msgstr "" + +#: wiki/templates/wiki/permission_denied.html +msgid "Sorry, you don't have permission to view this page." +msgstr "" + +#: wiki/templates/wiki/preview_inline.html +msgid "Previewing revision" +msgstr "" + +#: wiki/templates/wiki/preview_inline.html +msgid "Previewing merge between" +msgstr "" + +#: wiki/templates/wiki/preview_inline.html +msgid "and" +msgstr "" + +#: wiki/templates/wiki/source.html +msgid "Source of" +msgstr "" + +#: wiki/templates/wiki/source.html +msgid "This article is currently locked for editing." +msgstr "" + +#: wiki/templates/wiki/accounts/login.html +msgid "Log me in..." +msgstr "" + +#: wiki/templates/wiki/accounts/login.html +msgid "Don't have an account?" +msgstr "" + +#: wiki/templates/wiki/accounts/signup.html +msgid "Sign me up..." +msgstr "" + +#: wiki/templates/wiki/article/create_root.html +msgid "Create root article" +msgstr "" + +#: wiki/templates/wiki/article/create_root.html +msgid "Congratulations!" +msgstr "" + +#: wiki/templates/wiki/article/create_root.html +msgid "" +"You have django-wiki installed... but there are no articles. So it's time to" +" create the first one, the root article. In the beginning, it will only be " +"editable by administrators, but you can define permissions after." +msgstr "" + +#: wiki/templates/wiki/article/create_root.html +msgid "Root article" +msgstr "" + +#: wiki/templates/wiki/article/create_root.html +msgid "Create root" +msgstr "" + +#: wiki/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in og sign up to use this function." +msgstr "" + +#: wiki/templates/wiki/includes/article_menu.html +msgid "View Source" +msgstr "" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "Sub-articles for" +msgstr "" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "No sub-articles" +msgstr "" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "...and more" +msgstr "" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "Browse articles in this level" +msgstr "" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "New article next to" +msgstr "" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "New article below" +msgstr "" + +#: wiki/templates/wiki/includes/revision_info.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "by" +msgstr "" + +#: wiki/templates/wiki/includes/revision_info.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "restored" +msgstr "" + +#: wiki/templates/wiki/includes/revision_info.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "unlocked" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now sign up... and now you can sign in!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are no longer logged in. Bye bye!" +msgstr "" + +#: wiki/views/accounts.py +msgid "You are now logged in! Have fun!" +msgstr "" + +#: wiki/views/article.py +#, python-format +msgid "New article '%s' created." +msgstr "" + +#: wiki/views/article.py +#, python-format +msgid "There was an error creating this article: %s" +msgstr "" + +#: wiki/views/article.py +msgid "There was an error creating this article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article cannot be deleted because it has children or is a root article." +msgstr "" + +#: wiki/views/article.py +msgid "" +"This article together with all its contents are now completely gone! Thanks!" +msgstr "" + +#: wiki/views/article.py +#, python-format +msgid "" +"The article \"%s\" is now marked as deleted! Thanks for keeping the site " +"free from unwanted material!" +msgstr "" + +#: wiki/views/article.py +msgid "Your changes were saved." +msgstr "" + +#: wiki/views/article.py +msgid "A new revision of the article was successfully added." +msgstr "" + +#: wiki/views/article.py +msgid "Restoring article" +msgstr "" + +#: wiki/views/article.py +#, python-format +msgid "The article \"%s\" and its children are now restored." +msgstr "" + +#: wiki/views/article.py +#, python-format +msgid "" +"The article %(title)s is now set to display revision #%(revision_number)d" +msgstr "" + +#: wiki/views/article.py +msgid "New title" +msgstr "" + +#: wiki/views/article.py +#, python-format +msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" +msgstr "" + +#: wiki/views/article.py +#, python-format +msgid "" +"A new revision was created: Merge between Revision #%(r1)d and Revision " +"#%(r2)d" +msgstr "" + +#: membership/models.py +msgid "1 Month" +msgstr "" + +#: membership/models.py +msgid "3 Months" +msgstr "" + +#: membership/models.py +msgid "6 Months" +msgstr "" + +#: membership/models.py +msgid "12 Months" +msgstr "" + +#: membership/models.py +msgid "24 Months" +msgstr "" + +#: membership/models.py +msgid "Awaiting for payment" +msgstr "" + +#: membership/models.py +msgid "Paid" +msgstr "" + +#: membership/models.py +msgid "Refunded" +msgstr "" + +#: membership/models.py +msgid "Offline" +msgstr "" + +#: membership/models.py membership/templates/membership/card.html +#: membership/templates/membership/result.html +#: membership/templates/membership/wechat_paying.html +msgid "WeChat" +msgstr "" + +#: membership/models.py membership/templates/membership/card.html +msgid "Alipay" +msgstr "" + +#: membership/models.py +msgid "Union pay" +msgstr "" + +#: membership/models.py +msgid "Apple Pay" +msgstr "" + +#: membership/models.py +msgid "Apple Inpurasing" +msgstr "" + +#: membership/models.py +msgid "WeChat App" +msgstr "" + +#: membership/models.py +msgid "WeChat H5" +msgstr "" + +#: membership/models.py +msgid "Alipay App" +msgstr "" + +#: membership/models.py +msgid "subscribe normal" +msgstr "" + +#: membership/models.py +msgid "subscribe pay" +msgstr "" + +#: membership/templates/membership/card.html +msgid "VIP membership" +msgstr "" + +#: membership/templates/membership/card.html +msgid "EliteMBA VIP Membership" +msgstr "" + +#: membership/templates/membership/card.html +msgid "View Introduction" +msgstr "" + +#: membership/templates/membership/card.html +msgid "Select a Course" +msgstr "" + +#: membership/templates/membership/card.html +msgid "Choose a payment method" +msgstr "" + +#: membership/templates/membership/card.html +msgid "Membership Valid in " +msgstr "" + +#: membership/templates/membership/card.html +msgid " days" +msgstr "" + +#: membership/templates/membership/card.html +msgid "Tuition: " +msgstr "" + +#: membership/templates/membership/card.html +msgid "Go to Payment" +msgstr "" + +#: membership/templates/membership/card.html +msgid "Complete Payment in a New Page" +msgstr "" + +#: membership/templates/membership/card.html +msgid "" +"{span_start}Please do not close the page.{span_end} Please click the button " +"below accordingly after completing the payment." +msgstr "" + +#: membership/templates/membership/card.html +msgid "Choose Another Payment Method" +msgstr "" + +#: membership/templates/membership/card.html +msgid "Payment Completed" +msgstr "" + +#: membership/templates/membership/card.html +msgid "Encounter a problem?" +msgstr "" + +#: membership/templates/membership/card.html +msgid "Go to payment" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Membership of Prestige EMBA Courses in America" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Six Main Areas for Administration Learning" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Activate your potential to become a versatile leader" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Business Administration" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Innovation and Entrepreneurship" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Statistical Analysis" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Information Technology" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Sales and Marketing" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Retail Management" +msgstr "" + +#: membership/templates/membership/index.html +msgid "More Excellent Courses Coming Soon" +msgstr "" + +#: membership/templates/membership/index.html +msgid "International Business Law" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Dr. Ling Zhu" +msgstr "" + +#: membership/templates/membership/index.html +msgid "PhD in Management Information Systems, the University of Arizona, USA" +msgstr "" + +#: membership/templates/membership/index.html +msgid "J.D., Fordham University, USA" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Marketing Management and Applications" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Dr. Tung-lung Steven Chang" +msgstr "" + +#: membership/templates/membership/index.html +msgid "" +"PhD. in International Business/Marketing, the George Washington University, " +"USA" +msgstr "" + +#: membership/templates/membership/index.html +msgid "PhD. in Management, National Chengchi University, Taiwan" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Macroeconomics" +msgstr "" + +#: membership/templates/membership/index.html +msgid "(Davidson College)" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Dr. Clark Ross" +msgstr "" + +#: membership/templates/membership/index.html +msgid "PhD. in Economics, Boston College, USA" +msgstr "" + +#: membership/templates/membership/index.html +msgid "" +"*EliteMBA reserves the right of final interpretation for all course updates." +msgstr "" + +#: membership/templates/membership/index.html +msgid "World-Class Faculty" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Professors from leading Business Schools in America" +msgstr "" + +#: membership/templates/membership/index.html +msgid "" +"Learn systematically, create a full knowledge matrix of administration from " +"zero to one" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Dr. Baichun Xiao" +msgstr "" + +#: membership/templates/membership/index.html +msgid "" +"Tenured Professor and Chairman of the Department of Management at LIU Post, " +"USA" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Lloyd Shefsky" +msgstr "" + +#: membership/templates/membership/index.html +msgid "" +"Former Clinical Professor of Family Enterprises at Kellogg School of " +"Management at NU, USA" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Tim Smithe" +msgstr "" + +#: membership/templates/membership/index.html +msgid "" +"Vice President & CMO of International Finance Education Association (IFEA)" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Dr. Wei Yang" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Tenured Professor of the School of Business at LIU Post, USA" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Dr. Weichun Zhu" +msgstr "" + +#: membership/templates/membership/index.html +msgid "" +"Former Assistant Professor of School of Labor and Employment Relations at " +"Penn State, USA" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Dr. Jiamin Wang" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Dr. Tianning Li" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Associate Professor of Finance at Hood College, USA" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Dr. Jianjun Shi" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Former President and Professor at UIBE" +msgstr "" + +#: membership/templates/membership/index.html +msgid "" +"The Frontis W. Johnston Professor of Economics at Davidson College, USA" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Dr. Elia Kacapyr" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Professor of Economics at Ithaca College, USA" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Dr. Robert Graham" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Professor of Economics at Hanover College, USA" +msgstr "" + +#: membership/templates/membership/index.html +msgid "View More" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Join EliteMBA Membership" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Choose a membership plan that fits your needs" +msgstr "" + +#: membership/templates/membership/index.html +msgid "" +"Have unlimited access to all courses at EliteMBA during membership period, " +"including newly released courses" +msgstr "" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "Full Year" +msgstr "" + +#: membership/templates/membership/index.html +msgid "average per month" +msgstr "" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "Professional" +msgstr "" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "Half-Year" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Senior" +msgstr "" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "Three-Month" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Explorer" +msgstr "" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "One-Month" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Beginner" +msgstr "" + +#: membership/templates/membership/index.html +msgid "" +"*Sign up NOW and get the most of your membership. More info on the payment " +"page." +msgstr "" + +#: membership/templates/membership/index.html +msgid "Learning Feature" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Group Chat" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Live Lecture" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Exam" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Credential" +msgstr "" + +#: membership/templates/membership/index.html +msgid "Become a Member" +msgstr "" + +#: membership/templates/membership/index.html +msgid "" +"Self-disciplined learning off work decides how competitive you are. Let’s " +"discipline ourselves and gain advantage!" +msgstr "" + +#: membership/templates/membership/result.html +#: membership/templates/membership/wechat_paying.html +msgid "EliteMBA school cashier" +msgstr "" + +#: membership/templates/membership/result.html +msgid "EliteMBA school cashier payment success" +msgstr "" + +#: membership/templates/membership/result.html +#: membership/templates/membership/wechat_paying.html +msgid "Return to EliteMBA school in 3 seconds" +msgstr "" + +#: membership/templates/membership/result.html +#: membership/templates/membership/wechat_paying.html +msgid "Return Now" +msgstr "" + +#: membership/templates/membership/wechat_paying.html +msgid "Amount paid: " +msgstr "" + +#: membership/templates/membership/wechat_paying.html +msgid "" +"Please complete the payment within 2 hours, otherwise the purchase may fail." +msgstr "" + +#: membership/templates/membership/wechat_paying.html +msgid "Please scan Wechat QR code" +msgstr "" + +#: membership/templates/membership/wechat_paying.html +msgid "to complete payment" +msgstr "" + +#: membership/templates/membership/wechat_paying.html +msgid "Payment Success" +msgstr "" + +msgid "email address" +msgstr "" + +msgid "English" +msgstr "" + +msgid "Chinese" +msgstr "" + +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/footer.html +msgid "" +"Guangdong Elite International Education & Technology Co., Ltd. All Rights" +" Reserved" +msgstr "" + +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/return_to_course_cta.html +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/confirm_email_change.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/photo_submission_review.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"(If the link is invalid, try to copy and paste it into the address bar of " +"your web browser, and press \"Enter\" to open the page.)" +msgstr "" + +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#, python-format +msgid "" +"You have been unenrolled from the course %(course_name)s by a member of the " +"course staff. Please ignore the invitation previously sent." +msgstr "" + +#: themes/elitemba-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s, and other courses on " +"EliteMBA.cn? We do, and we’re glad to have you! Come see what everyone is " +"learning." +msgstr "" + +#: themes/elitemba-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s on EliteMBA.cn? We do, and " +"we’re glad to have you! Come see what everyone is learning." +msgstr "" + +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "anonymous (IP not logged)" +msgstr "" + +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "" +"Access Course Staff Support on the Partner Portal to submit or review " +"support tickets" +msgstr "" + +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "edX Partner Portal" +msgstr "" + +#: themes/edx.org/lms/templates/dashboard.html +msgid "" +"Browse recently launched courses and see what's new in your favorite " +"subjects." +msgstr "" + +#: themes/edx.org/lms/templates/footer.html +msgid "Page Footer" +msgstr "" + +#: themes/edx.org/lms/templates/footer.html +msgid "edX Home Page" +msgstr "" + +#: themes/edx.org/lms/templates/footer.html +msgid "© 2012–{year} edX Inc. " +msgstr "" + +#: themes/edx.org/lms/templates/footer.html +msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgstr "" + +#: themes/edx.org/lms/templates/certificates/_about-accomplishments.html +msgid "About edX Verified Certificates" +msgstr "" + +#: themes/edx.org/lms/templates/certificates/_about-accomplishments.html +msgid "" +"An edX Verified Certificate signifies that the learner has agreed to abide " +"by the edX honor code and completed all of the required tasks of this course" +" under its guidelines, as well as having their photo ID checked to verify " +"their identity." +msgstr "" + +#: themes/edx.org/lms/templates/certificates/_about-edx.html +msgid "About edX" +msgstr "" + +#: themes/edx.org/lms/templates/certificates/_about-edx.html +msgid "" +"{link_start}edX{link_end} offers interactive online classes and MOOCs from " +"the world's best universities, including MIT, Harvard, Berkeley, University " +"of Texas, and many others. edX is a non-profit online initiative created by " +"founding partners Harvard and MIT." +msgstr "" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Congratulations, {user_name}!" +msgstr "" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "" +"You worked hard to earn your certificate from " +"{accomplishment_copy_course_org} {dash} share it with colleagues, friends, " +"and family to get the word out about what you mastered in " +"{accomplishment_course_title}." +msgstr "" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Share this certificate on Facebook (opens a new tab/window)" +msgstr "" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Tweet this certificate (opens a new tab/window)" +msgstr "" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Add this certificate to your LinkedIn profile (opens a new tab/window)" +msgstr "" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Print" +msgstr "" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Print this certificate" +msgstr "" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +msgid "edX Inc." +msgstr "" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +msgid "" +"All rights reserved except where noted. edX, Open edX and the edX and Open " +"edX logos are registered trademarks or trademarks of edX Inc." +msgstr "" + +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Support our Mission: {b_end}EdX, a non-profit, relies on verified " +"certificates to help fund affordable education to everyone globally." +msgstr "" + +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Support our Mission: {b_end} EdX, a non-profit, relies on verified " +"certificates to help fund free education for everyone globally" +msgstr "" + +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have access to course materials and " +"discussions forums. {b_start}This track does not include graded " +"assignments.{b_end}" +msgstr "" + +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have access to course materials and " +"discussions forums. {b_start}This track does not include unlimited course " +"access.{b_end}" +msgstr "" + +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +msgid "Find Courses" +msgstr "" + +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +msgid "Schools & Partners" +msgstr "" + +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Contact your EliteMBA partner manager to update these settings." +msgstr "" + +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "VIP Expiry Date" +msgstr "" + +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Subscription will soon be overdue. Please recharge in time." +msgstr "" + +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "" +"Sorry, your EliteMBA VIP has expired. In order not to disrupt your learning " +"schedule, please recharge in time." +msgstr "" + +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Renew VIP" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Learn to Change · Change to Improve" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "About Us" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Join Us" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "About Platform" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "Manual" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/help.html +msgid "Help and Complaint" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Terms Description" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Partners" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "NetEase Study" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Tencent Classroom" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "iQIYI Knowledge" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Scan WeChat QR Code" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "to find out more" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "" +"edX and Open edX are registered trademarks of edX Inc. All Rights Reserved." +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Bind Your Account to Your Mobile Number" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Mobile number" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Verify" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "incorrect cellphone number format" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Reminder" +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "" +"To meet the requirements of national policies and regulations of using a " +"real legal name, please bind your account to your cellphone number before " +"proceeding." +msgstr "" + +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Bind Mobile" +msgstr "" + +#. Translators: 'Open edX' is a registered trademark, please keep this +#. untranslated. See http://open.edx.org for more information. +#: themes/elitemba-theme/lms/templates/index_overlay.html +msgid "Learn to Change · Change to Improve —— EliteMBA" +msgstr "" + +#. Translators: 'Open edX' is a registered trademark, please keep this +#. untranslated. See http://open.edx.org for more information. +#: themes/elitemba-theme/lms/templates/index_overlay.html +msgid "Enjoy high-value MBA curriculum with ¥99.84 monthly payment!" +msgstr "" + +#: themes/elitemba-theme/lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/_accomplishment-banner.html +msgid "Download Certificate" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/_accomplishment-rendering.html +msgid ":" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/_accomplishment-rendering.html +msgid "Verification Address:" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/valid.html +msgid "About EliteMBA Certificates" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Trustworthy Certificate" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Certificated Learner" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Certificate No." +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Affiliation" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Learning Time" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Learning Type" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Certificate Issuing Date" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Electronic Certificate" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgctxt "Certificate" +msgid "View" +msgstr "" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Enroll {price}" +msgstr "" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "Free Enroll Course" +msgid "Enroll" +msgstr "" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Enrolled" +msgstr "" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Free Enrollment for VIP" +msgstr "" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "CourseAbout" +msgid "Description" +msgstr "" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "CourseAbout" +msgid "Instructor" +msgstr "" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "CourseAbout" +msgid "Outline" +msgstr "" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "" +"A wonderful course is rare to find and must be shared! I'm taking {title} on" +" EliteMBA. Check it out! {url}" +msgstr "" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "weibo" +msgstr "" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "qq" +msgstr "" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "weixin" +msgstr "" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "WeChat Scan Code" +msgstr "" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "" +"Share your experience by clicking the button on the above right corner of " +"the screen" +msgstr "" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid ". " +msgstr "" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Subscription Due" +msgstr "" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "EliteMBA has verified your identity!" +msgstr "" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your EliteMBA verification has been approved. Your verification is effective" +" for one year after submission." +msgstr "" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your EliteMBA ID verification is pending. Your verification information has " +"been submitted and will be reviewed shortly." +msgstr "" + +#: themes/elitemba-theme/lms/templates/elitemba/hmm.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Harvard ManageMentor" +msgstr "" + +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "" +"You're almost there! Use the link to activate your account to access high-" +"quality {platform_name} courses. Note that you will not be able to log back " +"into your account until you have activated it." +msgstr "" + +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "Initial password:{third_party_auth_pw}" +msgstr "" + +#: themes/elitemba-theme/lms/templates/emails/photo_submission_review.txt +msgid "Review ID Verification Photos" +msgstr "" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Dear EliteMBA Learner," +msgstr "" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"EliteMBA Financial Assistance is a program we created to give learners in " +"all financial circumstances a chance to earn a Verified Certificate upon " +"successful completion of an EliteMBA course." +msgstr "" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"In order to be eligible for EliteMBA Financial Assistance, you must " +"demonstrate that paying the Verified Certificate fee would cause you " +"economic hardship. To apply, you will be asked to answer a few questions " +"about why you are applying and how the Verified Certificate will benefit " +"you." +msgstr "" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"If your application is approved, we'll give you instructions for verifying " +"your identity on EliteMBA.cn so you can start working toward completing your" +" EliteMBA course." +msgstr "" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"EliteMBA is committed to making it possible for you to take high quality " +"courses from leading institutions regardless of your financial situation, " +"earn a Verified Certificate, and share your success with others." +msgstr "" + +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Professors" +msgstr "" + +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Expiry: " +msgstr "" + +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "VIP Center" +msgstr "" + +#: themes/elitemba-theme/lms/templates/professors/detail.html +msgid "Professor details" +msgstr "" + +#: themes/elitemba-theme/lms/templates/professors/detail.html +msgctxt "Professor" +msgid "View Courses" +msgstr "" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "Professors List" +msgstr "" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "Purpose of Education" +msgstr "" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "" +"Education is much more than teaching and learning. It also involves " +"inspiring learners to dig deep into their potential. Not only do we present " +"practical knowledge of administration, we’re also dedicated to the " +"cultivation of wisdom -- the ability to apply knowledge in real life." +msgstr "" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "" +"We sincerely invite all remarkable professionals in business management to " +"join us in developing excellent courses, and educating more learners into " +"business professionals." +msgstr "" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "More" +msgstr "" + +#: themes/elitemba-theme/lms/templates/registration/password_reset_confirm.html +msgid "" +"This password reset link is invalid. It may have been used already. To reset" +" your password, go to the {start_link}sign-in{end_link} page and select " +"{start_strong}Forgot password{end_strong}." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"EliteMBA (www.EliteMBA.cn) is a sub-brand of Guangdong Elite International " +"Education & Technology Co., Ltd. focusing on the development of MBA online " +"classroom." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"EliteMBA teams up with senior professors and experts in business management " +"academics at home and abroad to design and produce high quality and " +"knowledgeable systematic online courses. At the same time, we select and " +"introduce high-quality foreign educational content to provide learners with " +"a localized learning experience created by EliteMBA." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"It is the common pursuit of educators to transfer knowledge to more learners" +" as much as possible. EliteMBA expects to provide educators with more " +"effective means of transmission and increase the reach of knowledge. Here, " +"we would like to offer sincere invitations to experts and professors, and " +"look forward to creating and introducing more high-quality curriculum " +"resources, so that knowledge can generate more value in a diverse world. " +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "For course cooperation, please contact: " +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "Education should guide and shape a society, not follow it" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"Mr. Cai Yuanpei said that education should guide the society, rather than " +"follow it. Elite Education abandons the ideas of upholding the pursuit of " +"society, and advocates learners' self-achievement and their ambition in " +"leading the society. EliteMBA courses advocate, instead of the rote of " +"knowledge input, the motivation for pursuing wisdom and solving practical " +"problems." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "Our Mission" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"Providing individuals, organizations with the knowledge, technology and " +"platform for lifelong learning." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "Our Vision" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "To become a reputable brand of digital education in China." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Elite Education" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "" +"Address: Room 1005, CITIC Plaza, No. 233 Tianhe North Road, Tianhe District," +" Guangzhou, China" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Telephone: 400-931-8118 (Monday to Friday at 9:00-18:00)" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Course Cooperation" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Contact: Mr. Chen" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Human Resources and Recruitment" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Feedback and Technical Support" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Media Communication" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Business Cooperation" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Enterprise Procurement" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Contact: Ms. Liao" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "System Bugs" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅰ. Terms of Service" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The products and services of Elite Education (www.elitemba.cn) are provided" +" by Guangdong Elite International Education & Technology Co., Ltd " +"(hereinafter referred to as \"EliteMBA\" or \"we\"). This User Agreement " +"(hereinafter referred to as \"Agreement\") is applicable to EliteMBA " +"websites, EliteMBA applications and other related products and services on " +"computer/mobile phone/tablet or other devices. EliteMBA has the right to " +"modify the terms hereof at any time. Upon the occurrence of any modification" +" is applied, we would update the Agreement and modify effective date " +"accordingly and the old version of the Agreement will be invalid and the new" +" version will be in effect immediately upon its publishing on the page " +"herein. Users shall regularly review the terms of service and check for " +"upgrades. The action of continual usage of our services is an implied " +"agreement on any updated version of Agreement that is in effect. In " +"addition, when Users use other EliteMBA services (including but not limited " +"to periodical marketing services other than basic services provided the " +"website), the aforementioned user shall adhere to the guidelines and rules " +"published by EliteMBA related to those services. All of the aforementioned " +"guidelines and rules shall be considered as a part of this Agreement." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"You should read this User Agreement carefully before using the services " +"provided by EliteMBA. If you do not agree to the User Agreement and/or " +"modify it at any time, please stop using all services provided by EliteMBA " +"immediately; once you use EliteMBA service, you are deemed to have " +"understood and fully agreed to the contents of this agreement, including any" +" changes made by EliteMBA to the User Agreement at any time, and become an " +"EliteMBA User (hereinafter referred to as \"User\")." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅱ. Service Description" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA currently offers users a range of course services (including but " +"not limited to course videos, test questions, exams, course materials, notes" +" and teaching assistant services). Except as otherwise explicitely expressed" +" in this Agreement, any new features of the Service that are added or " +"enhanced by EliteMBA, including new products introduced, are subject to the " +"terms of this Agreement. The User understands and agrees that the Service is" +" provided only in accordance with the current conditions and that EliteMBA " +"is not responsible for any user information or personalization settings, " +"such as timeliness, deletion, delivery errors, non-storage or any other " +"issues. EliteMBA reserves the right to suspend any part of the Service for " +"any maintenance, upgrade or other purpose without prior notice." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅲ. Abidance by Law" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User agrees to abide by all the provisions of the relevant laws and " +"regulations of the People's Republic of China and assumes full " +"responsibility for any actions and results of the use of the Service by any " +"means and password. If the user's behavior violates any provisions of " +"national laws and regulations and may constitute a crime, he will be held " +"criminally liable and the user shall bear full legal responsibility." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"At the same time, if EliteMBA has the reason to believe that any of the " +"User's actions, including but not limited to any of the User's statements " +"and other acts violates or may violate any of the provisions of national " +"laws and regulations, EliteMBA may terminate to offer service to the User at" +" any time without prior notice. " +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅳ. User Registration Obligation" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"In order to use the service, the User agrees to provide correct registered " +"account (email address and/or mobile phone number) and password according to" +" the service prompt, and ensure the validity and legality of the login " +"account, Avatar and other materials updated in the future. If the User " +"provides any material that is illegal, unethical, or that is deemed " +"unsuitable for display on this website, or that has reason to suspect that " +"the User's data is a program or malicious operation, EliteMBA has the right " +"to suspend or terminate the User's account and refuse the User to use all or" +" any part of the Service now and in the future. " +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA is not responsible for any registration of any user, including but " +"not limited to the identification, verification of the authenticity, " +"correctness, completeness, suitability and/or responsibility of any " +"registration information." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "V. User Accounts, Passwords and Security" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"After completing the registration process for this service and successfully " +"registered, the User can log in to the account of EliteMBA (hereinafter " +"referred to as the \"account\") using their email address and/or mobile " +"number and password. Users are responsible for protecting the security of " +"their accounts." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The user is solely responsible for all passwords used and the activities of " +"the account. User agrees:" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. Upon the occurrence of noticing any unauthorized account activity or " +"other security issue, User shall contact and notify E-ducation immediately;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. If the user does not keep his/her own account number and password, and " +"therefore any loss or damage caused by the User, EliteMBA cannot and will " +"not bear any responsibility;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. User is solely responsible for all the activities and issues that occur " +"in their account. Upon the occurrence of any loss or damage to other Users, " +"Elite or any other third party due to the failure by the User in securing " +"their own Account and password, the aforementioned User shall take full " +"responsible." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "VI. Privacy Policy of Elite Education " +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The registration information provided by the User and certain other " +"information about the User retained by the company will be subject to the " +"laws of China's privacy and the company's Privacy Policy." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "VII. Responsibility of the Provider/User" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"In accordance with relevant laws and regulations, EliteMBA hereby notify all" +" Users solemnly that, the Provider of any content released or sent either " +"publicly or privately via Elite Education platform, including the publishing" +" or uploading of any text, information, data, picture, graphic, video or " +"other data (hereinafter referred to as \"Content\"), shall take full " +"responsibility for the Content they released or sent. EliteMBA only provides" +" storage space for Users, and cannot control the content transmitted through" +" the server, therefore we shall hold no responsibility for the validity, " +"integrity or quality of the Content. User shall be aware that there might be" +" unpleasant, inappropriate or disturbing Content upon the usage of the " +"service. In any case, EliteMBA shall hold no responsibility for any " +"aforementioned Content, and shall reserve the right to cease the " +"transmission of any of the aforementioned Content and take corresponding " +"actions by law, including but not limited to partially or entirely suspend " +"User from using this service, to keep relevant record and report to " +"authorities concerned." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "VIII. User Behavior" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User agrees that the Service will not be used for any illegal or " +"improper activities, including but not limited to the following:" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. Publish or otherwise transmit information that contains one of the " +"following:" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Opposing to the basic principles established by the Constitution;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Endanger national security, disclose state secrets, subvert state power or " +"sabotage state unification; " +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Damage to national honours and interests;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Inciting national hatred, ethnic discrimination, and undermining national " +"unity;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Destroy the national religious policy and promote cults and feudal " +"superstitions;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Spread rumors, disrupting social order or endanger social stability;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Spreading obscenity, eroticism, gambling, violence, murder and terrorism or " +"instigating others to commit crime;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Insulting or slandering others, infringing on the legal rights of others;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Contains false, fraudulent, harmful, coercive, infringing on the privacy of " +"others, harassment, infringement, slander, vulgarity, jealousy, or other " +"morally offensive content;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Contains other content restricted or prohibited by Chinese laws, " +"regulations, rules, regulations, and any legally binding norm;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Content considered by EliteMBA to be unsuitable for display on EliteMBA " +"platforms;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "2. Harm the legitimate rights and interests of others in any way;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. Pretend to be any other person or institution, or to make a false " +"statement about or lied to any person or institution;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Any content that is known but not authorized to be transmitted, sent by " +"e-mail or otherwise in accordance with any law or contract or legal " +"relationship. (e.g., due to employment relationships and internal " +"information, proprietary and confidential information known or disclosed " +"under a confidentiality contract);" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"5. Publish or otherwise transmit the content of copyrights, patents, " +"trademarks, trade secrets, or other proprietary rights (hereinafter referred" +" to as \"exclusive rights\") that infringe upon others;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"6. Publish, send or otherwise transmit any advertising letter, promotional " +"material, \"spam\", \"spamming\", \"chain mail\", \"direct sales\" or any " +"other form of persuasive material;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"7. Publishing, sending or by any other means transmitting computer viruses " +"(hereinafter referred to as \"Viruses\"), including but not limited to " +"Trojan horses, worms, time bombs, Cancelbots, or other computer codes, files" +" and programs designed to interfere with, damage or limit the functionality " +"of any computer software, hardware or communication equipment;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"8. Interfere with or disrupt this service or server and network connected to" +" the Service, or violate any rules, procedures, policies or specifications " +"regarding the network connection service;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "9. Tracking, cyber manhunting or harassing others in any other ways;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"10. Deliberate or unintentional violate any applicable local and/or national" +" law and any legally binding rules;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"11. Intercept, tamper with, collect, store or delete personal information, " +"on-site mail or other data without legal authorization, or use such " +"information for any illegal or improper purpose. " +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User has acknowledged that EliteMBA does not have full control over the " +"User's use. When the User uses any content, including relying on the " +"correctness, completeness or practicability of the foregoing content, the " +"User agrees to judge and assume all risks without relying on EliteMBA. " +"However, in its sole discretion, EliteMBA may refuse and remove any content " +"provided by the Service that violates these Terms or any other content that " +"is controversial to EliteMBA." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"User understands and agrees that EliteMBA might save or disclose contents in" +" adherence of the requirements of laws and regulations, integrity or the " +"following purposes:" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "1. Comply with legal procedures;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "3. Execute the implementation of this agreement;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "3. Respond to any claims made by third parties;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Protect the rights, property or personal safety of Elite Education, its " +"users and the public;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "5. Other conditions that EliteMBA deems necessary." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "IX. Special Warning for International Use" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Users are aware of the borderless nature of the Internet and agree to abide " +"by all local laws and regulations regarding online conduct and content. The " +"User specifically agrees to comply with all applicable laws and regulations " +"regarding the transmission of information from China or the country in which" +" the user is located." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "X. Public information published on EliteMBA" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. In this User Agreement, \"the area in which the service is used " +"publicly\" means the area that the general public can use;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. For the content uploaded or published by the user in EliteMBA, the user " +"shall guarantee that he or she is the copyright owner or has obtained legal " +"authorization, and the content does not infringe the legal rights of any " +"third party, and the user agrees to grant all the aforementioned content to " +"EliteMBA for worldwide free, irrevocable, permanent, sublicensable or " +"transferable license use, under which license will have the right to use the" +" foregoing in a manner that is displayed, promoted and otherwise not " +"prohibited by our laws." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XI. Compensation" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Any third party's claim or request, including a reasonable attorney fee, due" +" to the content provided, posted or transmitted by the User, the User's " +"connection to the Service, the User's breach of the User Agreement, or any " +"infringement of the User's rights, the user agrees to indemnify EliteMBA and" +" its subsidiaries, affiliates, senior employees, agents, brand owners or " +"other partners and employees against damage, and assume all legal " +"liabilities arising therefrom." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XII. About Use" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User agrees not to copy, copy, sell, resell or use it for any other " +"commercial purpose for the use or acquisition of any part of the Service or " +"the Service." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XIII. About Storage" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User agrees that EliteMBA shall be liable for any information, " +"communication materials and other content posted or transmitted through the " +"Service, if it is deleted or not stored." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XIV. Modification of Service" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA reserves the right to modify or terminate the Service (or any part " +"thereof) temporarily or permanently at any time, with or without notice. The" +" User agrees that the User shall not be liable to the User and any third " +"party for any modification, suspension or termination of the Service." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XV. Termination of Service" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"User agrees that EliteMBA can, in its sole discretion, terminate the User " +"account or the use of this service (or any part thereof) for any reason " +"(including but not limited to long-term inactive account, or EliteMBA " +"believes that User has violated the letters and spirit of this User " +"Agreement), and remove and delete any content of the User within the " +"service. User agrees that the service provided under any term of this User " +"Agreement can be suspended or terminated without prior notification. User " +"acknowledges and agrees that EliteMBA can immediately close or delete User " +"account and all the related data and files, and/or prohibit continued use of" +" the above files or this service. In addition, User agrees that if the use " +"of this service is suspended or terminated, or the User's account and " +"related data and files are closed or deleted, EliteMBA does not assume any " +"liability to the User or any third party." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XVI. Dealing with Advertisers and Other Third Parties" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Users engage in any form of communication or business dealings with " +"advertisers and other third parties through this website, or participate in " +"promotional activities, including payment and delivery of related goods or " +"services, and any other relevant terms, conditions, warranties or " +"representations reached, they are the fully behavior between users and " +"advertisers and other third parties. EliteMBA is not liable for any loss or " +"damage of any nature suffered by the user in connection with any of the " +"foregoing transactions or the aforementioned advertisers and other third " +"parties." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XVII. Exclusive Rights of EliteMBA" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User also understands and agrees that the content of the sponsored " +"advertisements or information presented to the User via the Service or the " +"Advertiser is also protected by copyright, trademark, service mark, patent " +"or other proprietary rights. Users may not modify, rent, lend, sell, " +"distribute any part or all of the Service or the Software, or create " +"derivative works, or use unauthorized software, including but not without " +"the express authorization of EliteMBA or the advertiser. Limited to the " +"purpose of using the Service for unauthorized purposes. EliteMBA only grants" +" the user personal, non-transferable and non-exclusive right to use, so that" +" the User can use the purpose code of the software on a stand-alone " +"computer, but the User may not (and must not allow any third person) to " +"copy, modify, create derivative works, perform restoration work, reverse " +"translation, or otherwise discover the source code, or sell, transfer, " +"sublicense or provide software to set a warranty, or otherwise transfer any " +"rights in the software. The User agrees to use the Service through the " +"interface provided by EliteMBA and not in any other way." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XVIII. Guarantee and Warranty" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "The User clearly understands and agrees:" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. No provision of this agreement will relieve EliteMBA of any liability for" +" the User's personal injury or damage or property loss resulting from " +"intentional misconduct or gross negligence;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. The use of the Service is at the User's own risk. The Service is provided" +" on the basis of \"status quo\" and \"existing\". EliteMBA does not provide " +"any warranty or guarantee, either express or implied, including but not " +"limited to commercial marketability, applicability for particular purpose " +"and non-infringement upon others' rights, etc.;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "3. Any statement or conduct by any third party in the Service;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Other matters related to the Service, except as explicitely provided in " +"this Agreement of Use;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"5. Elite Education does not accept any responsibility for the posting or " +"delivery of fraudulent information by any third party or for inducing users " +"to suffer financial losses." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "ⅩⅨ. EliteMBA Trademarks Information" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Elite Education, EliteMBA and other EliteMBA registered trademarks, logos " +"and products and service names are trademarks of EliteMBA (hereinafter " +"referred to as \"EliteMBA Mark\"). The User agrees not to display or use or " +"otherwise process the EliteMBA Mark in any manner without the prior written " +"consent of EliteMBA, or to indicate that the User has the right to display, " +"use or otherwise process the EliteMBA Mark." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XX. Exclusive User Rights" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Elite Education respects the intellectual property rights of others and " +"calls on users to respect intellectual property rights as well." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The services and materials of EliteMBA are provided on an \"as is\" basis " +"and expressly disclaims any express or implied warranties of \"service\", " +"\"material\" or \"product\", including but not limited to for commercial use" +" or fitness Guarantee for a specific purpose. EliteMBA is not responsible " +"for any direct, indirect, incidental or consequential damages arising out of" +" the Services, the materials or the products." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"If the User infringes upon the intellectual property rights of others, " +"EliteMBA will, according to the provisions of the national laws and " +"regulations or under appropriate circumstances, delete specific contents or " +"even terminate the User's account according to Terms of Service or related " +"provisions." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA respects any rights (including intellectual property rights) of " +"others and also requires our users to respect the rights of others. In the " +"appropriate circumstances, EliteMBA may, at its discretion, terminate the " +"account of the User who infringes or violates the rights of others." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"If the User believes that the copyright of his/her work has been infringed " +"or the User's intellectual property rights have been violated, according to " +"the Regulations on the Protection of Information Network Communication " +"Rights, users should contact EliteMBA and provide detailed evidence. Or " +"please go to the National Copyright Administration of the People's Republic " +"of China to download the \"Notice of Deleting or Disconnecting the " +"Infringing Web Content\" (hereinafter referred to as the \"Delete Notice\")." +" If the user does not understand the content of the \"Delete Notice\", " +"please log in to the National Copyright Administration of the People's " +"Republic of China and looks for the instructions for \"Notice to Remove or " +"Disconnect the Content of the Infringing Web Link\"." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XXI. General Terms" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. This User Agreement, Privacy Policy and Disclaimer constitute the entire " +"agreement between the User and EliteMBA, and regulate the User's use of the " +"Service. Additional terms and conditions apply when users use related " +"services and use content or software provided by third parties;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. The User Agreement and the relationship between the User and EliteMBA are" +" governed by the laws of the People's Republic of China. The dispute between" +" the user and EliteMBA on the service, the Agreement or other related " +"matters shall be settled through negotiation first. If the negotiation " +"fails, it shall be submitted to the China International Economic and Trade " +"Arbitration Commission for arbitration. The arbitral award is final and " +"binding on both parties;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. The failure of EliteMBA to exercise or enforce any rights or provisions " +"of this agreement shall not constitute the waiver of aforementioned rights;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. If any provision of this Terms of Use is ineffective due to conflicts " +"with the laws of the People's Republic of China, the User agrees that, in " +"accordance with the law, efforts shall be made to make the parties' " +"intentions reflected in the Regulations effectively, and that other " +"provisions of this User Agreement shall remain in full force;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"5. The title of this User Agreement is for convenience only and does not " +"have any legal or contractual effect;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"6. Elite Education has the final interpretation of this User Agreement." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Users are advised to notify EliteMBA of any violation of the Terms of " +"Service and/or any other announcements of EliteMBA." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Effective on Nov 30th, 2018" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The Products and services of EliteMBA(www.elitemba.cn)are provided by " +"Guangzhou Elite Education & Technology Co., Ltd (hereinafter referred to as " +"\"we\", \"Company\" or \"Elite\"). This User Agreement is applicable to " +"E-ducation websites, E-ducation applications and other related products and " +"services on computer/mobile phone/tablet or other devices. EliteMBA attaches" +" great importance to the protection of the privacy of EliteMBA Users " +"(hereinafter referred to as \"Users\"). Sometimes we need certain " +"information to provide users with the requested services. This policy " +"explains the data collection and use under these circumstances." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"This policy applies to all relevant services in EliteMBA. As the scope of " +"the EliteMBA services expands, the content of the policy may be amended or " +"changed at any time by EliteMBA. EliteMBA will publish and update the " +"effective date. Once the updated Privacy Policy is published, it effectively" +" replaces the original Privacy Policy. By continuing to use EliteMBA " +"Service, the User agrees to and accepts this Policy and any updated versions" +" thereof." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅰ. The Information that We Collect" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Normally, you can visit EliteMBA and browse the information anonymously. " +"When your Personally Identifiable Information or contact details are needed," +" we will ask for your prior consent. Information such as Name, E-mail " +"Address, Residence Address and Mobile Number might be collected when " +"registering on EliteMBA or applying for new features and your confirmation " +"is needed. " +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅱ. About User's Personal Information" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA strictly protects the security of Users' personal information. We " +"use a variety of security technologies and procedures to protect our " +"personal information from unauthorized access, use or disclosure." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA will not disclose the personal information of the User to third " +"parties without the User's permission. The following conditions are listed " +"in this statement: the legal requirements or the User's violation of the " +"relevant terms of service of EliteMBA, the software license agreement, or " +"EliteMBA has good reasons to believe that this must be done in order to:" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"(a) Meet the requirements of laws or administrative regulations that are " +"explicitely listed, or comply with applicable legal procedures to Elite " +"Education websites;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"(b) Comply with the terms of EliteMBA related service terms and software " +"license agreement;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "(c) Protection of the rights or property of EliteMBA;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"(d) Under urgent emergencies, ensure the safety of EliteMBA employees, " +"product or service users, or the public." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"This information will not be shared with third parties by EliteMBA without " +"the user's permission, except as outlined above in this statement." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "III.Use of Cookie" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Using cookies helps users personalize their online experience. Users can " +"accept or reject cookies. Most web browsers automatically accept cookies, " +"but users can often modify their browser settings to reject cookies based on" +" their needs." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA will use cookies sometimes to capture the websites to learn which " +"websites are popular in order to provide better services to User when they " +"are visiting E-ducation." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA cookie is also used when the user registers for EliteMBA. In this " +"case, EliteMBA collects and stores useful information, and when the user " +"visits EliteMBA again, we can identify the user. Cookies from EliteMBA can " +"only be read by EliteMBA." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"If the User's browser is set to reject cookies, the User will still be able " +"to access most of the web pages of EliteMBA." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "IV. About Disclaimer" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA does not assume any legal responsibility for the occurrence of the " +"following related matters:" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. The leakage of any personal information caused by the User's notification" +" of the User's password or sharing the registered account with others, or " +"the leakage of other personal information that is not caused by EliteMBA " +"reasons; " +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. According to the provisions of the law or relevant government policy " +"requirements, Elitemba providing User's personal information;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. Disputes caused by any third party using User's personal information " +"under various circumstances listed in the terms of service and the " +"Disclaimer of EliteMBA;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Any temporary website closure due to hacking, computer virus intrusion or" +" government regulation;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "5. Any consequences caused by force majeure;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"6. Ways of use or disclaimer circumstances listed by EliteMBA in terms of " +"service and this Disclaimer." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "General Terms" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The products and services of Elite Education (www.elitemba.cn) are provided " +"by Guangdong Elite International Education & Technology Co., Ltd. " +"(hereinafter referred to as \"EliteMBA\" or \"We\"). This Disclaimer " +"Statement(hereinafter referred to as \"Disclaimer\") applies to EliteMBA " +"website, other applications used on computers, mobile phones/tablets or " +"other devices and other products and services. EliteMBA User (hereinafter " +"referred to as \"User\") must carefully read these terms and agree to this " +"statement before accepting EliteMBA service." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"User who directly or (such as off-site API references, etc.) indirectly uses" +" EliteMBA services and data through various means will be regarded as having" +" unconditionally accepted all the contents involved in this Disclaimer; if " +"user objects any of the terms in this Disclaimer, please stop using all " +"services provided by EliteMBA. " +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"This disclaimer may be amended or changed at any time by EliteMBA. The " +"EliteMBA will announce and updated the effective date. The updated " +"disclaimer will effectively replace the original statement once it is " +"published. By continuing to use EliteMBA service, the user agrees to and " +"accepts this statement and any updated versions thereof." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Article 1" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Users may not use EliteMBA to directly or indirectly engage in breaches of " +"EliteMBA services and data (including but not limited to publication, " +"promotion, reprint, browsing, and use of EliteMBA or its users) in various " +"ways. Laws and regulations of the People's Republic of China, as well as the" +" behavior of social morality. Users should abide by the following " +"commitments:" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. Content published, reprinted or provided should comply with Chinese laws " +"and regulations and social morality;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. Cannot interfere with, damage or violate the various legal rights and " +"interests of Elite Education;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. Shall not interfere with, damage and infringe upon the various legal " +"rights and interests of other EliteMBA users;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Compliance with the rules and guidelines, management rules, etc. of Elite" +" Education website and other network related services;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"5. Elite Education has the right to remove content that violates the above " +"commitments." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Article 2" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. EliteMBA only provides storage space for content posted by users. " +"EliteMBA does not provide any form of guarantee for the content posted or " +"reprinted by the User: there is no guarantee that the content will meet the " +"requirements of users, and there is no guarantee that the services of " +"EliteMBA will not be interrupted. EliteMBA does not assume any legal " +"responsibility for any reason that the user cannot use the website due to " +"any conditions such as network conditions, communication lines, third-party " +"websites or management requirements." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. The content published by Elite User (including but not limited to the " +"contents of the current product features of Elite) only indicates their " +"personal position and views, and does not represent the position or opinion " +"of Elite. As the content publisher, it is the responsibility of the content " +"to be published. All the disputes arising from the published content shall " +"be the legal and joint responsibility of the publisher of the content. " +"EliteMBA does not assume any legal and joint responsibility. " +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. if the user publishes content suspected of infringing on the intellectual" +" property rights or other legitimate rights and interests of others through " +"EliteMBA, after the relevant parties provide prima facie evidence, EliteMBA " +"has the right to delete it first and retain the right to transfer it to the " +"judicial authorities. Referring to the investigation results of the relevant" +" judicial authorities, EliteMBA has the final decision on the disposal of " +"the content posted on the website. " +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. User should inform Elite when he/she discovers any violation of this " +"Service Agreement, the terms of service of any other individual service, and" +" various announcements made by Elite Education. " +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Supplementary" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA reserves the rights to interpret, modify and update the Disclaimer." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "Join us" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "Let Yourself be More Valuable" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "" +"EliteMBA pays attention to employee development and attaches importance to " +"the power of communication. We continue to learn, inspire each other, and " +"constantly discover industry inspiration at work, and open our eyes as a " +"whole community. Here, work is an organic combination of enjoyment and hard " +"work." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "" +"We will release job information as soon as possible, so stay tuned. Of " +"course, this does not mean that we want to miss any future members. Feel " +"free to contact us through email directly" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "Become a Lecturer" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "" +"Standing on the platform, educators can impart wisdom to learners. EliteMBA " +"completely breaks the geographical restrictions of teaching and learning and" +" provides a broader platform for educators. We sincerely invite all elite " +"professors, scholars and experts who have been deeply involved in business " +"management disciplines to develop more outstanding business talents by " +"transforming intangible wisdom into a collectible course." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "Please contact" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "directly or call 400-931-8118." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To know more about courses" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Click the course to view the course introduction video, browse the course " +"introduction, instructor introduction and course outline, etc." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To join as a member" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Membership\" page, choose your learning duration and payment method." +" After payment is completed, you can enjoy learning all courses on EliteMBA " +"during the study period." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To view the end-date of membership" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "Enter \"Membership\" page to view the VIP open date and remaining days." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To enroll as a member" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Discover New\" page, click the course or search key words to select " +"courses you are interested in, click \"Free Enrollment for VIP\" button, " +"then the enrollment is fulfilled." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To purchase a course" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Discover New\" page, click the course or search key words to select " +"courses you are interested in, click \"Enroll\" button, then you can start " +"learning after payment is completed." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To start a course" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Click your avatar in the upper right corner of the page, enter \"Dashboard\"" +" to view the course introduction, watch videos and complete assignments." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To participate in discussion" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Dashboard - View Course\" page, click \"Discussion\". You can view " +"discussions, engage with posts and receive updates." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To view and download handouts" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Dashboard - View Course\" page, find \"Course Handouts\" on the " +"right side. You can view handout content and download." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "How do I change or reset my password?" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To change your password" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"1. At the top of any page, select the dropdown menu icon next to your " +"username." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "2. Select \"Account\"." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "3. Select \"Reset Password\"." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"The system sends a confirmation message to the email address in the \"Email " +"Address\" field." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "4. Select the confirmation link in the email message." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "Passwords must contain:" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "At least 6 characters" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "How do I change my email address?" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"You can change your email address on any site page. You use your email " +"address to sign in to your account. In addition, communications from your " +"course teams are sent to this address." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To change your email address" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"1. At the top of any page, select the dropdown menu icon next to your " +"username;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "2. Select \"Account\";" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"3. In the \"Email Address\" field, select your current email address and " +"replace it with the new address;" +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"4. To save your changes, click anywhere on the page outside of the \"Email " +"Address\" field, or navigate to a different page." +msgstr "" + +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Mobile" +msgstr "" + +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Mobile Phone No.:" +msgstr "" + +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Bind your EliteMBA account to your cellphone number." +msgstr "" + +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Copyright" +msgstr "" + +#: themes/stanford-style/lms/templates/footer.html +msgid "Copyright {year}. All rights reserved." +msgstr "" + +#: themes/stanford-style/lms/templates/index.html +msgid "For anyone, anywhere, anytime" +msgstr "" + +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "" +"You will receive an activation email. You must click on the activation link" +" to complete the process. Don't see the email? Check your spam folder and " +"mark emails from class.stanford.edu as 'not spam', since you'll want to be " +"able to receive email from your courses." +msgstr "" + +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Need help in registering with {platform_name}?" +msgstr "" + +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "" +"Once registered, most questions can be answered in the course specific " +"discussion forums or through the FAQs." +msgstr "" + +#: themes/stanford-style/lms/templates/emails/activation_email.txt +msgid "Thank you for signing up for {platform_name}." +msgstr "" + +#: themes/stanford-style/lms/templates/emails/activation_email.txt +msgid "" +"Change your life and start learning today by activating your {platform_name}" +" account. Click on the link below or copy and paste it into your browser's " +"address bar." +msgstr "" + +#: themes/stanford-style/lms/templates/emails/activation_email.txt +#: themes/stanford-style/lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the about section of the {platform_name} Courses web site." +msgstr "" + +#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us at" +msgstr "" + +#: themes/stanford-style/lms/templates/emails/email_change.txt +msgid "" +"We received a request to change the e-mail associated with your " +"{platform_name} account from {old_email} to {new_email}. If this is correct," +" please confirm your new e-mail address by visiting:" +msgstr "" + +#: themes/stanford-style/lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the tech support at {email}" +msgstr "" + +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Put your Terms of Service here!" +msgstr "" + +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Put your Privacy Policy here!" +msgstr "" + +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Put your Honor Code here!" +msgstr "" + +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Put your Copyright Text here!" +msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/djangojs-partial.po b/conf/locale/en/LC_MESSAGES/djangojs-partial.po deleted file mode 100644 index 75e40356f250..000000000000 --- a/conf/locale/en/LC_MESSAGES/djangojs-partial.po +++ /dev/null @@ -1,5041 +0,0 @@ -# edX translation file. -# Copyright (C) 2019 EdX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:53+0000\n" -"PO-Revision-Date: 2019-05-16 10:53:15.586280\n" -"Last-Translator: \n" -"Language-Team: openedx-translation \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: cms/static/cms/js/xblock/cms.runtime.v1.js -#: cms/static/js/certificates/views/signatory_details.js -#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js -#: cms/static/js/views/asset.js cms/static/js/views/container.js -#: cms/static/js/views/course_info_handout.js -#: cms/static/js/views/course_info_update.js -#: cms/static/js/views/edit_textbook.js -#: cms/static/js/views/list_item_editor.js -#: cms/static/js/views/modals/edit_xblock.js cms/static/js/views/tabs.js -#: cms/static/js/views/tabs.js cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js lms/static/js/ccx/schedule.js -#: lms/static/js/views/fields.js -msgid "Saving" -msgstr "" - -#: cms/static/js/certificates/views/signatory_editor.js -#: cms/static/js/views/asset.js cms/static/js/views/list_item.js -#: cms/static/js/views/manage_users_and_roles.js -#: cms/static/js/views/show_textbook.js -#: lms/djangoapps/teams/static/teams/js/views/instructor_tools.js -msgid "Delete" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/certificates/views/signatory_editor.js -#: cms/static/js/views/asset.js cms/static/js/views/course_info_update.js -#: cms/static/js/views/export.js cms/static/js/views/manage_users_and_roles.js -#: cms/static/js/views/modals/base_modal.js -#: cms/static/js/views/modals/course_outline_modals.js -#: cms/static/js/views/modals/course_outline_modals.js -#: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js -#: cms/static/js/views/validation.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/common/js/components/utils/view_utils.js -#: lms/static/js/Markdown.Editor.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Cancel" -msgstr "" - -#. Translators: This is the status of an active video upload -#: cms/static/js/models/active_video_upload.js cms/static/js/views/assets.js -#: cms/static/js/views/video_thumbnail.js lms/static/js/views/image_field.js -msgid "Uploading" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/active_video_upload.js -#: cms/static/js/views/modals/edit_xblock.js -#: cms/static/js/views/video_transcripts.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -#: lms/static/js/student_account/tos_modal.js -msgid "Close" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/assets.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Name" -msgstr "" - -#: cms/static/js/views/assets.js lms/static/js/Markdown.Editor.js -msgid "Choose File" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/course_info_update.js cms/static/js/views/tabs.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: lms/static/js/Markdown.Editor.js -msgid "OK" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/course_video_settings.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "None" -msgstr "" - -#: cms/static/js/views/course_video_settings.js -#: cms/static/js/views/metadata.js -#: cms/static/js/views/previous_video_upload.js -#: cms/static/js/views/video_transcripts.js -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -#: lms/static/js/views/image_field.js -msgid "Remove" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/manage_users_and_roles.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Ok" -msgstr "" - -#: cms/static/js/views/manage_users_and_roles.js -#: lms/static/js/instructor_dashboard/util.js -msgid "Unknown" -msgstr "" - -#: cms/static/js/views/manage_users_and_roles.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Are you sure?" -msgstr "" - -#: cms/static/js/views/metadata.js lms/static/js/views/file_uploader.js -msgid "Upload File" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/modals/base_modal.js -#: cms/static/js/views/modals/course_outline_modals.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Save" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/modals/course_outline_modals.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Advanced" -msgstr "" - -#: cms/static/js/views/previous_video_upload.js -#: cms/static/js/views/video/translations_editor.js -#: cms/static/js/views/video_transcripts.js lms/static/js/views/image_field.js -msgid "Removing" -msgstr "" - -#: cms/static/js/views/validation.js -#: lms/static/js/discussions_management/views/divided_discussions_course_wide.js -#: lms/static/js/discussions_management/views/divided_discussions_inline.js -#: lms/static/js/views/fields.js -msgid "Your changes have been saved." -msgstr "" - -#. Translators: This message will be added to the front of messages of type -#. error, -#. e.g. "Error: required field is missing". -#: cms/static/js/views/xblock_validation.js -#: common/static/common/js/discussion/utils.js -#: common/static/common/js/discussion/utils.js -#: common/static/common/js/discussion/views/discussion_inline_view.js -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -#: common/static/common/js/discussion/views/discussion_thread_view.js -#: common/static/common/js/discussion/views/discussion_thread_view.js -#: common/static/common/js/discussion/views/discussion_thread_view.js -#: common/static/common/js/discussion/views/response_comment_view.js -#: lms/static/js/student_account/views/FinishAuthView.js -#: lms/static/js/verify_student/views/payment_confirmation_step_view.js -#: lms/static/js/verify_student/views/step_view.js -#: lms/static/js/views/fields.js -msgid "Error" -msgstr "" - -#: common/lib/xmodule/xmodule/assets/library_content/public/js/library_content_edit.js -#: common/lib/xmodule/xmodule/js/public/js/library_content_edit.js -msgid "Updating with latest library content" -msgstr "" - -#: common/lib/xmodule/xmodule/assets/split_test/public/js/split_test_author_view.js -#: common/lib/xmodule/xmodule/js/public/js/split_test_author_view.js -msgid "Creating missing groups" -msgstr "" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "{start_strong}{total}{end_strong} words submitted in total." -msgstr "" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "text_word_{uniqueId} title_word_{uniqueId}" -msgstr "" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "title_word_{uniqueId}" -msgstr "" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "text_word_{uniqueId}" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -msgid "Show Annotations" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -msgid "Hide Annotations" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -msgid "Expand Instructions" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -msgid "Collapse Instructions" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -msgid "Commentary" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -msgid "Reply to Annotation" -msgstr "" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "%(num_points)s point possible (graded, results hidden)" -msgid_plural "%(num_points)s points possible (graded, results hidden)" -msgstr[0] "" -msgstr[1] "" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "%(num_points)s point possible (ungraded, results hidden)" -msgid_plural "%(num_points)s points possible (ungraded, results hidden)" -msgstr[0] "" -msgstr[1] "" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "%(num_points)s point possible (graded)" -msgid_plural "%(num_points)s points possible (graded)" -msgstr[0] "" -msgstr[1] "" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "%(num_points)s point possible (ungraded)" -msgid_plural "%(num_points)s points possible (ungraded)" -msgstr[0] "" -msgstr[1] "" - -#. Translators: %(earned)s is the number of points earned. %(possible)s is the -#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of -#. points will always be at least 1. We pluralize based on the total number of -#. points (example: 0/1 point; 1/2 points); -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "%(earned)s/%(possible)s point (graded)" -msgid_plural "%(earned)s/%(possible)s points (graded)" -msgstr[0] "" -msgstr[1] "" - -#. Translators: %(earned)s is the number of points earned. %(possible)s is the -#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of -#. points will always be at least 1. We pluralize based on the total number of -#. points (example: 0/1 point; 1/2 points); -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "%(earned)s/%(possible)s point (ungraded)" -msgid_plural "%(earned)s/%(possible)s points (ungraded)" -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "The grading process is still running. Refresh the page to see updates." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "Could not grade your answer. The submission was aborted." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "" -"Submission aborted! Sorry, your browser does not support file uploads. If " -"you can, please use Chrome or Safari which have been verified to support " -"file uploads." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "You submitted {filename}; only {allowedFiles} are allowed." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "Your file {filename} is too large (max size: {maxSize}MB)." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "You did not submit the required files: {requiredFiles}." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "You did not select any files to submit." -msgstr "" - -#. Translators: This is only translated to allow for reordering of label and -#. associated status.; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "{label}: {status}" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "This problem has been reset." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "unsubmitted" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Paragraph" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Preformatted" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Heading 3" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Heading 4" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Heading 5" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Heading 6" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Add to Dictionary" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Align center" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Align left" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Align right" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Alignment" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Alternative source" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Anchor" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Anchors" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Author" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Background color" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: lms/static/js/Markdown.Editor.js -msgid "Blockquote" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Blocks" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Body" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Bold" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Border color" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Border" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Bottom" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Bullet list" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Caption" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cell padding" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cell properties" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cell spacing" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cell type" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cell" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Center" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Circle" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Clear formatting" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#. Translators: this is a toolbar button tooltip from the raw HTML editor -#. displayed in the browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Code block" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Code" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Color" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cols" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Column group" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Column" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Constrain proportions" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Copy row" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Copy" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Could not find the specified string." -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Custom color" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Custom..." -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cut row" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cut" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Decrease indent" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Default" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Delete column" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Delete row" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Delete table" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Description" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Dimensions" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Disc" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Div" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Document properties" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Edit HTML" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Edit" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Embed" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Emoticons" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Encoding" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "File" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Find and replace" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Find next" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Find previous" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Find" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Finish" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Font Family" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Font Sizes" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Footer" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Format" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Formats" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Fullscreen" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "General" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "H Align" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header 1" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header 2" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header 3" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header 4" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header 5" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header 6" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header cell" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "Header" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Headers" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Heading 1" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Heading 2" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Headings" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Height" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Horizontal line" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Horizontal space" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "HTML source code" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Ignore all" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Ignore" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Image description" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Increase indent" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Inline" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert column after" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert column before" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert date/time" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert image" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert link" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert row after" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert row before" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert table" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert template" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert video" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert/edit image" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert/edit link" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert/edit video" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Italic" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Justify" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Keywords" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Left to right" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Left" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Lower Alpha" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Lower Greek" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Lower Roman" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Match case" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Merge cells" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Middle" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "New document" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "New window" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Next" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "No color" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Nonbreaking space" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Numbered list" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Page break" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Paste as text" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "" -"Paste is now in plain text mode. Contents will now be pasted as plain text " -"until you toggle this option off." -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Paste row after" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Paste row before" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Paste your embed code below:" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Paste" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Poster" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Pre" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Prev" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js lms/static/js/customwmd.js -msgid "Preview" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Print" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Redo" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Remove link" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Replace all" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Replace with" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Replace" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Restore last draft" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "" -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press " -"ALT-0 for help" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Right to left" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Right" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Robots" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Row group" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Row properties" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Row type" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Row" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Rows" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Scope" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Select all" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Show blocks" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Show invisible characters" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Source code" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Source" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Special character" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Spellcheck" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Split cell" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Square" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Start search" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Strikethrough" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Style" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Subscript" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Superscript" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Table properties" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Table" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Target" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Templates" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Text color" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Text to display" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "" -"The URL you entered seems to be an email address. Do you want to add the " -"required mailto: prefix?" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "" -"The URL you entered seems to be an external link. Do you want to add the " -"required http:// prefix?" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Title" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Tools" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Top" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Underline" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Undo" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Upper Alpha" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Upper Roman" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Url" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "V Align" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Vertical space" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "View" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Visual aids" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Whole words" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Width" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Words: {0}" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "You have unsaved changes are you sure you want to navigate away?" -msgstr "" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "" -"Your browser doesn't support direct access to the clipboard. Please use the " -"Ctrl+X/C/V keyboard shortcuts instead." -msgstr "" - -#. Translators: this is a toolbar button tooltip from the raw HTML editor -#. displayed in the browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert/Edit Image" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -msgid "" -"Click OK to have your username and e-mail address sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -msgid "" -"Click OK to have your username sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -msgid "" -"Click OK to have your e-mail address sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "incorrect" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "correct" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "answer" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "Short explanation" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "" -"If you use the Advanced Editor, this problem will be converted to XML and you will not be able to return to the Simple Editor Interface.\n" -"\n" -"Proceed to the Advanced Editor and convert this problem to XML?" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "Explanation" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/sequence/display.js -msgid "" -"Sequence error! Cannot navigate to %(tab_name)s in the current " -"SequenceModule. Please contact the course staff." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/sequence/display.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -msgid "Bookmarked" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js -msgid "Play" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js -msgid "Pause" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Mute" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Unmute" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js -msgid "Exit full browser" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js -#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js -msgid "Fill browser" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -msgid "Speed" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/08_video_auto_advance_control.js -msgid "Auto-advance" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -msgid "Volume" -msgstr "" - -#. Translators: Volume level equals 0%. -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Muted" -msgstr "" - -#. Translators: Volume level in range ]0,20]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Very low" -msgstr "" - -#. Translators: Volume level in range ]20,40]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Low" -msgstr "" - -#. Translators: Volume level in range ]40,60]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Average" -msgstr "" - -#. Translators: Volume level in range ]60,80]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Loud" -msgstr "" - -#. Translators: Volume level in range ]80,99]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Very loud" -msgstr "" - -#. Translators: Volume level equals 100%. -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Maximum" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js -msgid "This browser cannot play .mp4, .ogg, or .webm files." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js -msgid "Try using a different browser, such as Google Chrome." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -msgid "High Definition" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -msgid "off" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -msgid "on" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -msgid "Video position. Press space to toggle playback" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -msgid "Video ended" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -msgid "Video position" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -msgid "%(value)s hour" -msgid_plural "%(value)s hours" -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -msgid "%(value)s minute" -msgid_plural "%(value)s minutes" -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -msgid "%(value)s second" -msgid_plural "%(value)s seconds" -msgstr[0] "" -msgstr[1] "" - -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -msgid "" -"Click on this button to mute or unmute this video or press UP or DOWN " -"buttons to increase or decrease volume level." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -msgid "Adjust video volume" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -msgid "" -"Press UP to enter the speed menu then use the UP and DOWN arrow keys to " -"navigate the different speeds, then press ENTER to change to the selected " -"speed." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -msgid "Adjust video speed" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -msgid "Video speed: " -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js -msgid "Skip" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_poster.js -msgid "Play video" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_skip_control.js -msgid "Do not show again" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Open language menu" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Transcript will be displayed when you start playing the video." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "" -"Activating a link in this group will skip to the corresponding point in the " -"video." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Video transcript" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Start of transcript. Skip to the end." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "End of transcript. Skip to the start." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "" -"Press the UP arrow key to enter the language menu then use UP and DOWN arrow" -" keys to navigate language options. Press ENTER to change to the selected " -"language." -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Hide closed captions" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "(Caption will be displayed when you start playing the video.)" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Turn on closed captioning" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Turn on transcripts" -msgstr "" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Turn off transcripts" -msgstr "" - -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "View child items" -msgstr "" - -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Navigate up" -msgstr "" - -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Browsing" -msgstr "" - -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Select" -msgstr "" - -#: common/static/common/js/components/utils/view_utils.js -msgid "Required field." -msgstr "" - -#: common/static/common/js/components/utils/view_utils.js -msgid "Please do not use any spaces in this field." -msgstr "" - -#: common/static/common/js/components/utils/view_utils.js -msgid "Please do not use any spaces or special characters in this field." -msgstr "" - -#: common/static/common/js/components/views/paginated_view.js -#: common/static/common/js/components/views/paging_footer.js -msgid "Pagination" -msgstr "" - -#: common/static/common/js/components/views/paginated_view.js -msgid "" -"Your request could not be completed. Reload the page and try again. If the " -"issue persists, click the Help tab to report the problem." -msgstr "" - -#: common/static/common/js/components/views/paging_header.js -msgid "Showing {firstIndex} out of {numItems} total" -msgstr "" - -#: common/static/common/js/components/views/paging_header.js -msgid "Showing {firstIndex}-{lastIndex} out of {numItems} total" -msgstr "" - -#: common/static/common/js/discussion/utils.js -msgid "Loading content" -msgstr "" - -#: common/static/common/js/discussion/utils.js -msgid "Your request could not be processed. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/utils.js -#: common/static/common/js/discussion/utils.js -msgid "…" -msgstr "" - -#: common/static/common/js/discussion/utils.js -msgid "Some images in this post have been omitted" -msgstr "" - -#: common/static/common/js/discussion/utils.js -msgid "image omitted" -msgstr "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "there is currently {numVotes} vote" -msgid_plural "there are currently {numVotes} votes" -msgstr[0] "" -msgstr[1] "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "{numVotes} Vote" -msgid_plural "{numVotes} Votes" -msgstr[0] "" -msgstr[1] "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"You could not be subscribed to this post. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"You could not be unsubscribed from this post. Refresh the page and try " -"again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"This response could not be marked as an answer. Refresh the page and try " -"again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"This response could not be unmarked as an answer. Refresh the page and try " -"again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"This response could not be marked as endorsed. Refresh the page and try " -"again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "This response could not be unendorsed. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "This vote could not be processed. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "This post could not be pinned. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "This post could not be unpinned. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"This post could not be flagged for abuse. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"This post could not be unflagged for abuse. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "This post could not be closed. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "This post could not be reopened. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_inline_view.js -#: common/static/common/js/discussion/views/discussion_inline_view.js -msgid "Hide Discussion" -msgstr "" - -#: common/static/common/js/discussion/views/discussion_inline_view.js -msgid "This discussion could not be loaded. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_inline_view.js -msgid "Show Discussion" -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "There are no posts in this topic yet." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "Loading more threads" -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "Additional posts could not be loaded. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "Current conversation" -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "Loading posts list" -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "" -"No results found for {original_query}. Showing results for " -"{suggested_query}." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "No posts matched your query." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "Show posts by {username}." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "The post you selected has been deleted." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "Responses could not be loaded. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "" -"Additional responses could not be loaded. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "{numResponses} other response" -msgid_plural "{numResponses} other responses" -msgstr[0] "" -msgstr[1] "" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "{numResponses} response" -msgid_plural "{numResponses} responses" -msgstr[0] "" -msgstr[1] "" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "Showing all responses" -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "Showing first response" -msgid_plural "Showing first {numResponses} responses" -msgstr[0] "" -msgstr[1] "" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "Load all responses" -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "Load next {numResponses} responses" -msgstr "" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "Are you sure you want to delete this post?" -msgstr "" - -#: common/static/common/js/discussion/views/new_post_view.js -msgid "Your post will be discarded." -msgstr "" - -#: common/static/common/js/discussion/views/response_comment_show_view.js -msgid "anonymous" -msgstr "" - -#: common/static/common/js/discussion/views/response_comment_view.js -msgid "Are you sure you want to delete this comment?" -msgstr "" - -#: common/static/common/js/discussion/views/response_comment_view.js -msgid "This comment could not be deleted. Refresh the page and try again." -msgstr "" - -#: common/static/common/js/discussion/views/thread_response_view.js -msgid "Are you sure you want to delete this response?" -msgstr "" - -#: common/static/common/js/utils/edx.utils.validate.js -msgid "Incorrect format." -msgstr "" - -#: common/static/common/js/utils/edx.utils.validate.js -msgid "%(field)s must have at least %(count)d characters." -msgstr "" - -#: common/static/common/js/utils/edx.utils.validate.js -msgid "%(field)s can only contain up to %(count)d characters." -msgstr "" - -#: common/static/common/js/utils/edx.utils.validate.js -msgid "Please enter your %(field)s." -msgstr "" - -#: common/static/js/capa/drag_and_drop/base_image.js -msgid "Drop target image" -msgstr "" - -#: common/static/js/capa/drag_and_drop/draggable_events.js -msgid "dragging out of slider" -msgstr "" - -#: common/static/js/capa/drag_and_drop/draggable_events.js -msgid "dragging" -msgstr "" - -#: common/static/js/capa/drag_and_drop/draggable_events.js -msgid "dropped in slider" -msgstr "" - -#: common/static/js/capa/drag_and_drop/draggable_events.js -msgid "dropped on target" -msgstr "" - -#. Translators: %s will be a time quantity, such as "4 minutes" or "1 day" -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%s ago" -msgstr "" - -#. Translators: %s will be a time quantity, such as "4 minutes" or "1 day" -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%s from now" -msgstr "" - -#: common/static/js/src/jquery.timeago.locale.js -msgid "less than a minute" -msgstr "" - -#: common/static/js/src/jquery.timeago.locale.js -msgid "about a minute" -msgstr "" - -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: common/static/js/src/jquery.timeago.locale.js -msgid "about an hour" -msgstr "" - -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "about %d hour" -msgid_plural "about %d hours" -msgstr[0] "" -msgstr[1] "" - -#: common/static/js/src/jquery.timeago.locale.js -msgid "a day" -msgstr "" - -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%d day" -msgid_plural "%d days" -msgstr[0] "" -msgstr[1] "" - -#: common/static/js/src/jquery.timeago.locale.js -msgid "about a month" -msgstr "" - -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "" -msgstr[1] "" - -#: common/static/js/src/jquery.timeago.locale.js -msgid "about a year" -msgstr "" - -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "" -msgstr[1] "" - -#: lms/djangoapps/discussion/static/discussion/js/views/discussion_board_view.js -#: lms/static/js/edxnotes/views/tabs/search_results.js -msgid "Search Results" -msgstr "" - -#: lms/djangoapps/instructor/static/instructor/ProblemBrowser/components/Main/Main.jsx -msgid "Select a section or problem" -msgstr "" - -#: lms/djangoapps/support/static/support/js/views/certificates.js -msgid "An unexpected error occurred. Please try again." -msgstr "" - -#: lms/djangoapps/support/static/support/js/views/enrollment.js -msgid "Financial Assistance" -msgstr "" - -#: lms/djangoapps/support/static/support/js/views/enrollment.js -msgid "Upset Learner" -msgstr "" - -#: lms/djangoapps/support/static/support/js/views/enrollment.js -msgid "Teaching Assistant" -msgstr "" - -#: lms/djangoapps/support/static/support/js/views/enrollment_modal.js -msgid "Please specify a reason." -msgstr "" - -#: lms/djangoapps/support/static/support/js/views/enrollment_modal.js -msgid "Something went wrong changing this enrollment. Please try again." -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/errors_list.jsx -msgid "Please fix the following errors:" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Files that you upload must be smaller than 5MB in size." -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "" -"Files that you upload must be PDFs or image files in .gif, .jpg, .jpeg, or " -".png format." -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Something went wrong. Please try again later." -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Add Attachment" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "(Optional)" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Remove file" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Course Name" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Not specific to a course" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "What can we help you with, {username}?" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -#: lms/static/js/instructor_dashboard/util.js -msgid "Subject" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Details" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "The more you tell us, the more quickly and helpfully we can respond!" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Submit" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -msgid "Sign in to {platform} so we can help you better." -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -msgid "" -"If you are unable to access your account contact us via email using {email}." -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "" -"Select a course or select \"Not specific to a course\" for your support " -"request." -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Enter a subject for your support request." -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Enter some details for your support request." -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Contact Us" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Find answers to the top questions asked by learners." -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Search the {platform} Help Center" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Go to my Dashboard" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Go to {platform} Home" -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "" -"Thank you for submitting a request! We will contact you within 24 hours." -msgstr "" - -#: lms/djangoapps/support/static/support/jsx/upload_progress.jsx -msgid "Cancel upload" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/collections/team.js -msgid "last activity" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/collections/team.js -msgid "open slots" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/collections/topic.js -msgid "name" -msgstr "" - -#. Translators: This refers to the number of teams (a count of how many teams -#. there are) -#: lms/djangoapps/teams/static/teams/js/collections/topic.js -msgid "team count" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/teams_tab_factory.js -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Teams" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Create" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Update" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Team Name (Required) *" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "A name that identifies your team (maximum 255 characters)." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Team Description (Required) *" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "" -"A short description of the team to help other learners understand the goals " -"or direction of the team (maximum 300 characters)." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -#: lms/static/js/student_account/views/account_settings_factory.js -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Language" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "" -"The language that team members primarily use to communicate with each other." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Country" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "The country that team members primarily identify with." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -#: lms/static/js/views/fields.js -msgid "An error occurred. Please try again." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Check the highlighted fields below and try again." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Enter team name." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Team name cannot have more than 255 characters." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Enter team description." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Team description cannot have more than 300 characters." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -msgid "An error occurred while removing the member from the team. Try again." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -msgid "This team does not have any members." -msgstr "" - -#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: -#. https://github.com/rmm5t/jquery-timeago) -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -msgid "Joined %(date)s" -msgstr "" - -#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: -#. https://github.com/rmm5t/jquery-timeago) -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -msgid "Last Activity %(date)s" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -msgid "Remove this team member?" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -msgid "" -"This learner will be removed from the team, allowing another learner to take" -" the available spot." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/instructor_tools.js -msgid "Delete this team?" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/instructor_tools.js -msgid "" -"Deleting a team is permanent and cannot be undone. All members are removed " -"from the team, and team discussions can no longer be accessed." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/instructor_tools.js -msgid "Team \"{team}\" successfully deleted." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/my_teams.js -msgid "You are not currently a member of any team." -msgstr "" - -#. Translators: "and others" refers to fact that additional members of a team -#. exist that are not displayed. -#: lms/djangoapps/teams/static/teams/js/views/team_card.js -msgid "and others" -msgstr "" - -#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: -#. http://momentjs.com/) -#: lms/djangoapps/teams/static/teams/js/views/team_card.js -msgid "Last activity %(date)s" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/team_card.js -msgid "View %(span_start)s %(team_name)s %(span_end)s" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/team_profile.js -#: lms/djangoapps/teams/static/teams/js/views/team_profile_header_actions.js -msgid "An error occurred. Try again." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/team_profile.js -msgid "Leave this team?" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/team_profile.js -msgid "" -"If you leave, you can no longer post in this team's discussions. Your place " -"will be available to another learner." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/team_profile.js -#: lms/static/js/verify_student/views/reverify_view.js -msgid "Confirm" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/team_profile_header_actions.js -msgid "You already belong to another team." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/team_profile_header_actions.js -msgid "This team is full." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/team_utils.js -msgid "%(memberCount)s / %(maxMemberCount)s Member" -msgid_plural "%(memberCount)s / %(maxMemberCount)s Members" -msgstr[0] "" -msgstr[1] "" - -#: lms/djangoapps/teams/static/teams/js/views/teams.js -msgid "All teams" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams.js -msgid "Teams Pagination" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Topics" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "" -"See all teams in your course, organized by topic. Join a team to collaborate" -" with other learners who are interested in the same topic as you are." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "My Team" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Browse" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Your request could not be completed. Reload the page and try again." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "" -"Your request could not be completed due to a server problem. Reload the page" -" and try again. If the issue persists, click the Help tab to report the " -"problem." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Team Search" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Showing results for \"{searchString}\"" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Create a New Team" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "" -"Create a new team if you can't find an existing team to join, or if you " -"would like to learn with friends you know." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Edit Team" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "" -"If you make significant changes, make sure you notify members of the team " -"before making these changes." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Membership" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "" -"You can remove members from this team, especially if they have not " -"participated in the team's activity." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Search teams" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "All Topics" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "The page \"{route}\" could not be found." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "The topic \"{topic}\" could not be found." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "The team \"{team}\" could not be found." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/topic_card.js -msgid "%(team_count)s Team" -msgid_plural "%(team_count)s Teams" -msgstr[0] "" -msgstr[1] "" - -#: lms/djangoapps/teams/static/teams/js/views/topic_card.js -msgid "Topic" -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/topic_card.js -msgid "View Teams in the %(topic_name)s Topic" -msgstr "" - -#. Translators: this string is shown at the bottom of the teams page -#. to find a team to join or else to create a new one. There are three -#. links that need to be included in the message: -#. 1. Browse teams in other topics -#. 2. search teams -#. 3. create a new team -#. Be careful to start each link with the appropriate start indicator -#. (e.g. {browse_span_start} for #1) and finish it with {span_end}. -#: lms/djangoapps/teams/static/teams/js/views/topic_teams.js -msgid "" -"{browse_span_start}Browse teams in other topics{span_end} or " -"{search_span_start}search teams{span_end} in this topic. If you still can't " -"find a team to join, {create_span_start}create a new team in this " -"topic{span_end}." -msgstr "" - -#: lms/djangoapps/teams/static/teams/js/views/topics.js -msgid "All topics" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Insert Hyperlink" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "e.g. 'http://google.com'" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Link Description" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "e.g. 'google'" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Please provide a description of the link destination." -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Insert Image (upload file or type URL)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "" -"Type in a URL or use the \"Choose File\" button to upload a file from your " -"machine. (e.g. 'http://example.com/img/clouds.jpg')" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Image Description" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "" -"Please describe this image or agree that it has no contextual value by " -"checking the checkbox." -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "" -"e.g. 'Sky with clouds'. The description is helpful for users who cannot see " -"the image." -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "How to create useful text alternatives." -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "" -"This image is for decorative purposes only and does not require a " -"description." -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Markdown Editing Help" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "URL" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Please provide a valid URL." -msgstr "" - -#. Translators: 'errorCount' is the number of errors found in the form. -#: lms/static/js/Markdown.Editor.js -msgid "%(errorCount)s error found in form." -msgid_plural "%(errorCount)s errors found in form." -msgstr[0] "" -msgstr[1] "" - -#: lms/static/js/Markdown.Editor.js -msgid "Bold (Ctrl+B)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Italic (Ctrl+I)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Hyperlink (Ctrl+L)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Blockquote (Ctrl+Q)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Code Sample (Ctrl+K)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Image (Ctrl+G)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Numbered List (Ctrl+O)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Bulleted List (Ctrl+U)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Heading (Ctrl+H)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Horizontal Rule (Ctrl+R)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Undo (Ctrl+Z)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Redo (Ctrl+Y)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Redo (Ctrl+Shift+Z)" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "strong text" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "emphasized text" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "enter link description here" -msgstr "" - -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js -msgid "enter code here" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "List item" -msgstr "" - -#: lms/static/js/Markdown.Editor.js -msgid "Heading" -msgstr "" - -#: lms/static/js/ajax-error.js -msgid "" -"You have been logged out of your EliteMBA account. Click Okay to log in " -"again now. Click Cancel to stay on this page (you must log in again to save " -"your work)." -msgstr "" - -#: lms/static/js/api_admin/views/catalog_preview.js -msgid "Preview this query" -msgstr "" - -#: lms/static/js/calculator.js -msgid "Open Calculator" -msgstr "" - -#: lms/static/js/calculator.js -msgid "Close Calculator" -msgstr "" - -#: lms/static/js/ccx/schedule.js -msgid "All subsections" -msgstr "" - -#: lms/static/js/ccx/schedule.js -msgid "All units" -msgstr "" - -#: lms/static/js/ccx/schedule.js lms/static/js/ccx/schedule.js -msgid "Click to change" -msgstr "" - -#: lms/static/js/ccx/schedule.js -msgid "Select a chapter" -msgstr "" - -#: lms/static/js/ccx/schedule.js lms/static/js/ccx/schedule.js -msgid "Save changes" -msgstr "" - -#: lms/static/js/ccx/schedule.js -msgid "Please enter valid start date and time." -msgstr "" - -#: lms/static/js/ccx/schedule.js -msgid "Due date cannot be before start date." -msgstr "" - -#: lms/static/js/ccx/schedule.js -msgid "Enter Due Date and Time" -msgstr "" - -#: lms/static/js/ccx/schedule.js -msgid "Enter Start Date and Time" -msgstr "" - -#: lms/static/js/certificates/models/certificate_exception.js -msgid "" -"Student username/email field is required and can not be empty. Kindly fill " -"in username/email and then press \"Add to Exception List\" button." -msgstr "" - -#: lms/static/js/certificates/models/certificate_invalidation.js -msgid "" -"Student username/email field is required and can not be empty. Kindly fill " -"in username/email and then press \"Invalidate Certificate\" button." -msgstr "" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid "Uploaded file issues. Click on \"+\" to view." -msgstr "" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learners are successfully added to exception list" -msgstr "" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learner is successfully added to the exception list" -msgstr "" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " records are not in correct format and not added to the exception list" -msgstr "" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " record is not in correct format and not added to the exception list" -msgstr "" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learners do not exist in LMS and not added to the exception list" -msgstr "" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learner does not exist in LMS and not added to the exception list" -msgstr "" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learners are already white listed and not added to the exception list" -msgstr "" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learner is already white listed and not added to the exception list" -msgstr "" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid "" -" learners are not enrolled in course and not added to the exception list" -msgstr "" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learner is not enrolled in course and not added to the exception list" -msgstr "" - -#: lms/static/js/certificates/views/certificate_invalidation_view.js -msgid "" -"Certificate of <%= user %> has already been invalidated. Please check your " -"spelling and retry." -msgstr "" - -#: lms/static/js/certificates/views/certificate_invalidation_view.js -msgid "Certificate has been successfully invalidated for <%= user %>." -msgstr "" - -#: lms/static/js/certificates/views/certificate_invalidation_view.js -#: lms/static/js/certificates/views/certificate_invalidation_view.js -#: lms/static/js/certificates/views/certificate_whitelist.js -#: lms/static/js/certificates/views/certificate_whitelist_editor.js -msgid "Server Error, Please refresh the page and try again." -msgstr "" - -#: lms/static/js/certificates/views/certificate_invalidation_view.js -msgid "" -"The certificate for this learner has been re-validated and the system is re-" -"running the grade for this learner." -msgstr "" - -#: lms/static/js/certificates/views/certificate_invalidation_view.js -msgid "" -"Could not find Certificate Invalidation in the list. Please refresh the page" -" and try again" -msgstr "" - -#: lms/static/js/certificates/views/certificate_whitelist.js -msgid "Student Removed from certificate white list successfully." -msgstr "" - -#: lms/static/js/certificates/views/certificate_whitelist.js -msgid "" -"Could not find Certificate Exception in white list. Please refresh the page " -"and try again" -msgstr "" - -#: lms/static/js/certificates/views/certificate_whitelist_editor.js -msgid "<%= user %> already in exception list." -msgstr "" - -#: lms/static/js/certificates/views/certificate_whitelist_editor.js -msgid "" -"<%= user %> has been successfully added to the exception list. Click " -"Generate Exception Certificate below to send the certificate." -msgstr "" - -#: lms/static/js/course_survey.js -msgid "There has been an error processing your survey." -msgstr "" - -#: lms/static/js/courseware/credit_progress.js -#: lms/static/js/courseware/credit_progress.js -msgid "More" -msgstr "" - -#: lms/static/js/courseware/credit_progress.js -msgid "Less" -msgstr "" - -#: lms/static/js/customwmd.js -msgid "HTML preview of post" -msgstr "" - -#: lms/static/js/customwmd.js -msgid "Your question or idea (required)" -msgstr "" - -#: lms/static/js/dashboard/donation.js -msgid "Please enter a valid donation amount." -msgstr "" - -#: lms/static/js/dashboard/donation.js -msgid "Your donation could not be submitted." -msgstr "" - -#: lms/static/js/dashboard/legacy.js lms/static/js/dashboard/legacy.js -msgid "You will be refunded the amount you paid." -msgstr "" - -#: lms/static/js/dashboard/legacy.js -msgid "You will not be refunded the amount you paid." -msgstr "" - -#: lms/static/js/dashboard/legacy.js -msgid "" -"Are you sure you want to unenroll from the purchased course %(courseName)s " -"(%(courseNumber)s)?" -msgstr "" - -#: lms/static/js/dashboard/legacy.js -msgid "" -"Are you sure you want to unenroll from %(courseName)s (%(courseNumber)s)?" -msgstr "" - -#: lms/static/js/dashboard/legacy.js -msgid "" -"Are you sure you want to unenroll from the verified %(certNameLong)s track " -"of %(courseName)s (%(courseNumber)s)?" -msgstr "" - -#: lms/static/js/dashboard/legacy.js -msgid "" -"Are you sure you want to unenroll from the verified %(certNameLong)s track " -"of %(courseName)s (%(courseNumber)s)?" -msgstr "" - -#: lms/static/js/dashboard/legacy.js -msgid "" -"The refund deadline for this course has passed,so you will not receive a " -"refund." -msgstr "" - -#: lms/static/js/dashboard/legacy.js lms/static/js/dashboard/legacy.js -#: lms/static/js/learner_dashboard/views/unenroll_view.js -msgid "" -"Unable to determine whether we should give you a refund because of System " -"Error. Please try again later." -msgstr "" - -#: lms/static/js/discovery/views/search_form.js -#, javascript-format -msgid "Viewing %s course" -msgid_plural "Viewing %s courses" -msgstr[0] "" -msgstr[1] "" - -#: lms/static/js/discovery/views/search_form.js -#, javascript-format -msgid "We couldn't find any results for \"%s\"." -msgstr "" - -#: lms/static/js/discovery/views/search_form.js -msgid "There was an error, try searching again." -msgstr "" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Not divided" -msgstr "" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "" -"Discussions are unified; all learners interact with posts from other " -"learners, regardless of the group they are in." -msgstr "" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Enrollment Tracks" -msgstr "" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "" -"Use enrollment tracks as the basis for dividing discussions. All learners, " -"regardless of their enrollment track, see the same discussion topics, but " -"within divided topics, only learners who are in the same enrollment track " -"see and respond to each others’ posts." -msgstr "" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Cohorts" -msgstr "" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "" -"Use cohorts as the basis for dividing discussions. All learners, regardless " -"of cohort, see the same discussion topics, but within divided topics, only " -"members of the same cohort see and respond to each others’ posts. " -msgstr "" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Discussion topics in the course are not divided." -msgstr "" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Any divided discussion topics are divided based on enrollment track." -msgstr "" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Any divided discussion topics are divided based on cohort." -msgstr "" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Your changes have been saved. {details}" -msgstr "" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "We have encountered an error. Refresh your browser and then try again." -msgstr "" - -#: lms/static/js/discussions_management/views/divided_discussions.js -#: lms/static/js/discussions_management/views/divided_discussions_course_wide.js -#: lms/static/js/discussions_management/views/divided_discussions_inline.js -#: lms/static/js/groups/views/cohort_form.js -#: lms/static/js/groups/views/cohorts.js -msgid "We've encountered an error. Refresh your browser and then try again." -msgstr "" - -#: lms/static/js/edxnotes/views/notes_visibility_factory.js -#: lms/static/js/edxnotes/views/search_box.js -msgid "" -"An error has occurred. Make sure that you are connected to the Internet, and" -" then try refreshing the page." -msgstr "" - -#: lms/static/js/edxnotes/views/notes_visibility_factory.js -msgid "Hide notes" -msgstr "" - -#: lms/static/js/edxnotes/views/notes_visibility_factory.js -msgid "Notes visible" -msgstr "" - -#: lms/static/js/edxnotes/views/notes_visibility_factory.js -msgid "Show notes" -msgstr "" - -#: lms/static/js/edxnotes/views/notes_visibility_factory.js -msgid "Notes hidden" -msgstr "" - -#: lms/static/js/edxnotes/views/search_box.js -msgid "Please enter a term in the {anchorStart} search field{anchorEnd}." -msgstr "" - -#: lms/static/js/edxnotes/views/tab_item.js -msgid "Current tab" -msgstr "" - -#: lms/static/js/edxnotes/views/tabs/course_structure.js -msgid "Location in Course" -msgstr "" - -#: lms/static/js/edxnotes/views/tabs/recent_activity.js -msgid "Recent Activity" -msgstr "" - -#: lms/static/js/edxnotes/views/tabs/search_results.js -msgid "No results found for \"%(query_string)s\". Please try searching again." -msgstr "" - -#. Translators: this is a title shown before all Notes that have no associated -#. tags. It is put within -#. brackets to differentiate it from user-defined tags, but it should still be -#. translated. -#: lms/static/js/edxnotes/views/tabs/tags.js -msgid "[no tags]" -msgstr "" - -#. Translators: 'Tags' is the name of the view (noun) within the Student Notes -#. page that shows all -#. notes organized by the tags the student has associated with them (if any). -#. When defining a -#. note in the courseware, the student can choose to associate 1 or more tags -#. with the note -#. in order to group similar notes together and help with search. -#: lms/static/js/edxnotes/views/tabs/tags.js -msgid "Tags" -msgstr "" - -#: lms/static/js/financial-assistance/views/financial_assistance_form_view.js -msgid "Unable to submit application" -msgstr "" - -#: lms/static/js/financial-assistance/views/financial_assistance_form_view.js -#: lms/static/js/student_account/views/LoginView.js -msgid "An error has occurred. Check your Internet connection and try again." -msgstr "" - -#: lms/static/js/financial-assistance/views/financial_assistance_form_view.js -msgid "Choose one" -msgstr "" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "Selected tab" -msgstr "" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "Saved cohort" -msgstr "" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "Error adding learners." -msgstr "" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "Enter a username or email." -msgstr "" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "{numUsersAdded} learner has been added to this cohort. " -msgid_plural "{numUsersAdded} learners have been added to this cohort. " -msgstr[0] "" -msgstr[1] "" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "{numMoved} learner was moved from {prevCohort}" -msgid_plural "{numMoved} learners were moved from {prevCohort}" -msgstr[0] "" -msgstr[1] "" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "{numPresent} learner was already in the cohort" -msgid_plural "{numPresent} learners were already in the cohort" -msgstr[0] "" -msgstr[1] "" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "{email}" -msgstr "" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "" -"{numPreassigned} learner was pre-assigned for this cohort. This learner will" -" automatically be added to the cohort when they enroll in the course." -msgid_plural "" -"{numPreassigned} learners were pre-assigned for this cohort. These learners " -"will automatically be added to the cohort when they enroll in the course." -msgstr[0] "" -msgstr[1] "" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "Unknown username: {user}" -msgstr "" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "Invalid email address: {email}" -msgstr "" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "There was an error when trying to add learners:" -msgid_plural "{numErrors} learners could not be added to this cohort:" -msgstr[0] "" -msgstr[1] "" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "View all errors" -msgstr "" - -#: lms/static/js/groups/views/cohort_form.js -msgid "You must specify a name for the cohort" -msgstr "" - -#: lms/static/js/groups/views/cohort_form.js -msgid "You did not select a content group" -msgstr "" - -#: lms/static/js/groups/views/cohort_form.js -msgid "The selected content group does not exist" -msgstr "" - -#: lms/static/js/groups/views/cohort_form.js -msgid "The cohort cannot be saved" -msgstr "" - -#: lms/static/js/groups/views/cohort_form.js -msgid "The cohort cannot be added" -msgstr "" - -#: lms/static/js/groups/views/cohorts.js -msgid "You currently have no cohorts configured" -msgstr "" - -#: lms/static/js/groups/views/cohorts.js -msgid "Add Cohort" -msgstr "" - -#: lms/static/js/groups/views/cohorts.js -msgid "" -"The {cohortGroupName} cohort has been created. You can manually add students" -" to this cohort below." -msgstr "" - -#: lms/static/js/groups/views/cohorts.js -msgid "Assign students to cohorts by uploading a CSV file." -msgstr "" - -#: lms/static/js/groups/views/cohorts.js -msgid "Choose a .csv file" -msgstr "" - -#: lms/static/js/groups/views/cohorts.js -msgid "Only properly formatted .csv files will be accepted." -msgstr "" - -#: lms/static/js/groups/views/cohorts.js -msgid "Upload File and Assign Students" -msgstr "" - -#: lms/static/js/groups/views/cohorts.js -msgid "" -"Your file '{file}' has been uploaded. Allow a few minutes for processing." -msgstr "" - -#: lms/static/js/groups/views/course_cohort_settings_notification.js -msgid "Cohorts Enabled" -msgstr "" - -#: lms/static/js/groups/views/course_cohort_settings_notification.js -msgid "Cohorts Disabled" -msgstr "" - -#: lms/static/js/groups/views/verified_track_settings_notification.js -msgid "" -"This course uses automatic cohorting for verified track learners. You cannot" -" disable cohorts, and you cannot rename the manual cohort named " -"'{verifiedCohortName}'. To change the configuration for verified track " -"cohorts, contact your EliteMBA partner manager." -msgstr "" - -#: lms/static/js/groups/views/verified_track_settings_notification.js -msgid "" -"This course has automatic cohorting enabled for verified track learners, but" -" the required cohort does not exist. You must create a manually-assigned " -"cohort named '{verifiedCohortName}' for the feature to work." -msgstr "" - -#: lms/static/js/groups/views/verified_track_settings_notification.js -msgid "" -"This course has automatic cohorting enabled for verified track learners, but" -" cohorts are disabled. You must enable cohorts for the feature to work." -msgstr "" - -#: lms/static/js/instructor_dashboard/certificates.js -msgid "Allow students to generate certificates for this course?" -msgstr "" - -#: lms/static/js/instructor_dashboard/certificates.js -msgid "Prevent students from generating certificates in this course?" -msgstr "" - -#: lms/static/js/instructor_dashboard/certificates.js -msgid "Start generating certificates for all students in this course?" -msgstr "" - -#: lms/static/js/instructor_dashboard/certificates.js -msgid "Error while generating certificates. Please try again." -msgstr "" - -#: lms/static/js/instructor_dashboard/certificates.js -msgid "Start regenerating certificates for students in this course?" -msgstr "" - -#: lms/static/js/instructor_dashboard/certificates.js -msgid "Error while regenerating certificates. Please try again." -msgstr "" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Loading data..." -msgstr "" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error getting issued certificates list." -msgstr "" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating proctored exam results. Please try again." -msgstr "" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating survey results. Please try again." -msgstr "" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating student profile information. Please try again." -msgstr "" - -#: lms/static/js/instructor_dashboard/data_download.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmarks_list.js -msgid "Loading" -msgstr "" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error getting student list." -msgstr "" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating list of students who may enroll. Please try again." -msgstr "" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error retrieving grading configuration." -msgstr "" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating grades. Please try again." -msgstr "" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating problem grade report. Please try again." -msgstr "" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating ORA data report. Please try again." -msgstr "" - -#: lms/static/js/instructor_dashboard/ecommerce.js -#: lms/static/js/instructor_dashboard/ecommerce.js -msgid "" -"There was a problem creating the report. Select \"Create Executive Summary\"" -" to try again." -msgstr "" - -#: lms/static/js/instructor_dashboard/ecommerce.js -msgid "Enter the enrollment code." -msgstr "" - -#: lms/static/js/instructor_dashboard/ecommerce.js -msgid "Cancel enrollment code" -msgstr "" - -#: lms/static/js/instructor_dashboard/ecommerce.js -msgid "Restore enrollment code" -msgstr "" - -#: lms/static/js/instructor_dashboard/ecommerce.js -msgid "Mark enrollment code as unused" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/student_account/views/account_settings_factory.js -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Username" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/instructor_dashboard/membership.js -msgid "Email" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/instructor_dashboard/membership.js -msgid "Revoke access" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Group" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Enter username or email" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Please enter a username or email." -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/instructor_dashboard/membership.js -msgid "This role requires a divided discussions scheme." -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/instructor_dashboard/membership.js -msgid "Error changing user's permissions." -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"Could not find a user with username or email address '<%- identifier %>'." -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"Error: User '<%- username %>' has not yet activated their account. Users " -"must create and activate their accounts before they can be assigned a role." -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Error: You cannot remove yourself from the Instructor group!" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Errors" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "The following errors were generated:" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Warnings" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "The following warnings were generated:" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/views/fields.js -msgid "Success" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "All accounts were created successfully." -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Error adding/removing users as beta testers." -msgstr "" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "These users were successfully added as beta testers:" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"These users could not be added as beta testers because their accounts are " -"not yet activated:" -msgstr "" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "These users were successfully removed as beta testers:" -msgstr "" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "These users were not added as beta testers:" -msgstr "" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "These users were not removed as beta testers:" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"Users must create and activate their account before they can be promoted to " -"beta tester." -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Could not find users associated with the following identifiers:" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Reason field should not be left blank." -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Role field should not be left unselected." -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Error enrolling/unenrolling users." -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "The following email addresses and/or usernames are invalid:" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Successfully enrolled and sent email to the following users:" -msgstr "" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "Successfully enrolled the following users:" -msgstr "" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"Successfully sent enrollment emails to the following users. They will be " -"allowed to enroll once they register:" -msgstr "" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "These users will be allowed to enroll once they register:" -msgstr "" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"Successfully sent enrollment emails to the following users. They will be " -"enrolled once they register:" -msgstr "" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "These users will be enrolled once they register:" -msgstr "" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"Emails successfully sent. The following users are no longer enrolled in the " -"course:" -msgstr "" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "The following users are no longer enrolled in the course:" -msgstr "" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"These users were not affiliated with the course so could not be unenrolled:" -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Your message must have a subject." -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Your message cannot be blank." -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Your message must have at least one target." -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "" -"There are invalid keywords in your email. Check the following keywords and " -"try again." -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Yourself" -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Everyone who has staff privileges in this course" -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "All learners who are enrolled in this course" -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "All learners in the {cohort_name} cohort" -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "All learners in the {track_name} track" -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "" -"Your email message was successfully queued for sending. In courses with a " -"large number of learners, email messages to learners might take up to an " -"hour to be sent." -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "" -"You are sending an email message with the subject {subject} to the following" -" recipients." -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Is this OK?" -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Error sending email." -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -#: lms/static/js/instructor_dashboard/send_email.js -msgid "There is no email history for this course." -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "There was an error obtaining email task history for this course." -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "There was an error obtaining email content history for this course." -msgstr "" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Send to:" -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Please enter a student email address or username." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error getting enrollment status for '<%- student_id %>'. Make sure that the " -"student identifier is spelled correctly." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Retrieving enrollment status..." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error getting student progress url for '<%- student_id %>'. Make sure that " -"the student identifier is spelled correctly." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Please enter a problem location." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Success! Problem attempts reset for problem '<%- problem_id %>' and student " -"'<%- student_id %>'." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error resetting problem attempts for problem '<%= problem_id %>' and student" -" '<%- student_id %>'. Make sure that the problem and student identifiers are" -" complete and correct." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Delete student '<%- student_id %>'s state on problem '<%- problem_id %>'?" -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error deleting student '<%- student_id %>'s state on problem '<%- problem_id" -" %>'. Make sure that the problem and student identifiers are complete and " -"correct." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Module state successfully deleted." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error getting task history for problem '<%- problem_id %>' and student '<%- " -"student_id %>'. Make sure that the problem and student identifiers are " -"complete and correct." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Entrance exam attempts is being reset for student '{student_id}'." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error resetting entrance exam attempts for student '{student_id}'. Make sure" -" student identifier is correct." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Enter a student's username or email address." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Do you want to allow this student ('{student_id}') to skip the entrance " -"exam?" -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"An error occurred. Make sure that the student's username or email address is" -" correct and try again." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Entrance exam state is being deleted for student '{student_id}'." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error deleting entrance exam state for student '{student_id}'. Make sure " -"student identifier is correct." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error getting entrance exam task history for student '{student_id}'. Make " -"sure student identifier is correct." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Reset attempts for all students on problem '<%- problem_id %>'?" -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Successfully started task to reset attempts for problem '<%- problem_id %>'." -" Click the 'Show Task Status' button to see the status of the task." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error starting a task to reset attempts for all students on problem '<%- " -"problem_id %>'. Make sure that the problem identifier is complete and " -"correct." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Error listing task history for this student and problem." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Started rescore problem task for problem '<%- problem_id %>' and student " -"'<%- student_id %>'. Click the 'Show Task Status' button to see the status " -"of the task." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error starting a task to rescore problem '<%- problem_id %>' for student " -"'<%- student_id %>'. Make sure that the the problem and student identifiers " -"are complete and correct." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Please enter a score." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Started task to override the score for problem '<%- problem_id %>' and " -"student '<%- student_id %>'. Click the 'Show Task Status' button to see the " -"status of the task." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error starting a task to override score for problem '<%- problem_id %>' for " -"student '<%- student_id %>'. Make sure that the the score and the problem " -"and student identifiers are complete and correct." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Started entrance exam rescore task for student '{student_id}'. Click the " -"'Show Task Status' button to see the status of the task." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error starting a task to rescore entrance exam for student '{student_id}'. " -"Make sure that entrance exam has problems in it and student identifier is " -"correct." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Rescore problem '<%- problem_id %>' for all students?" -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Successfully started task to rescore problem '<%- problem_id %>' for all " -"students. Click the 'Show Task Status' button to see the status of the task." -msgstr "" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error starting a task to rescore problem '<%- problem_id %>'. Make sure that" -" the problem identifier is complete and correct." -msgstr "" - -#. Translators: a "Task" is a background process such as grading students or -#. sending email -#: lms/static/js/instructor_dashboard/util.js -msgid "Task Type" -msgstr "" - -#. Translators: a "Task" is a background process such as grading students or -#. sending email -#: lms/static/js/instructor_dashboard/util.js -msgid "Task inputs" -msgstr "" - -#. Translators: a "Task" is a background process such as grading students or -#. sending email -#: lms/static/js/instructor_dashboard/util.js -msgid "Task ID" -msgstr "" - -#. Translators: a "Requester" is a username that requested a task such as -#. sending email -#: lms/static/js/instructor_dashboard/util.js -msgid "Requester" -msgstr "" - -#. Translators: A timestamp of when a task (eg, sending email) was submitted -#. appears after this -#: lms/static/js/instructor_dashboard/util.js -msgid "Submitted" -msgstr "" - -#. Translators: The length of a task (eg, sending email) in seconds appears -#. this -#: lms/static/js/instructor_dashboard/util.js -msgid "Duration (sec)" -msgstr "" - -#. Translators: The state (eg, "In progress") of a task (eg, sending email) -#. appears after this. -#: lms/static/js/instructor_dashboard/util.js -msgid "State" -msgstr "" - -#. Translators: a "Task" is a background process such as grading students or -#. sending email -#: lms/static/js/instructor_dashboard/util.js -msgid "Task Status" -msgstr "" - -#. Translators: a "Task" is a background process such as grading students or -#. sending email -#: lms/static/js/instructor_dashboard/util.js -msgid "Task Progress" -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "" -"An error occurred retrieving your email. Please try again later, and contact" -" technical support if the problem persists." -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Sent By" -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Sent To" -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Time Sent" -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Number Sent" -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Copy Email To Editor" -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Subject:" -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Sent By:" -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Time Sent:" -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Sent To:" -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Message:" -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "No tasks currently running." -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "File Name" -msgstr "" - -#: lms/static/js/instructor_dashboard/util.js -msgid "" -"Links are generated on demand and expire within 5 minutes due to the " -"sensitive nature of student information." -msgstr "" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Starts {start}" -msgstr "" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Started {start}" -msgstr "" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Ends {end}" -msgstr "" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Ended {end}" -msgstr "" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Starts {start}" -msgstr "" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Started {start}" -msgstr "" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Ends {end}" -msgstr "" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "You must select a session to access the course." -msgstr "" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "There was an error. Please reload the page and try again." -msgstr "" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Change Session" -msgstr "" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Select Session" -msgstr "" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Leave Current Session" -msgstr "" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure you want to select this session?" -msgstr "" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure you want to change to a different session?" -msgstr "" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Any course progress or grades from your current session will be lost." -msgstr "" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure that you want to leave this session?" -msgstr "" - -#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js -msgid "" -"Your unenrollment request could not be processed. Please try again later." -msgstr "" - -#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js -msgid "" -"Are you sure you want to unenroll from {courseName} ({courseNumber})? You " -"will be refunded the amount you paid." -msgstr "" - -#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js -msgid "{type} Progress" -msgstr "" - -#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js -#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js -msgid "Earned Certificates" -msgstr "" - -#: lms/static/js/learner_dashboard/views/program_details_view.js -msgid "Enrolled" -msgstr "" - -#: lms/static/js/staff_debug_actions.js -msgid "Successfully reset the attempts for user {user}" -msgstr "" - -#: lms/static/js/staff_debug_actions.js -msgid "Failed to reset attempts for user." -msgstr "" - -#: lms/static/js/staff_debug_actions.js -msgid "Successfully deleted student state for user {user}" -msgstr "" - -#: lms/static/js/staff_debug_actions.js -msgid "Failed to delete student state for user." -msgstr "" - -#: lms/static/js/staff_debug_actions.js -msgid "Successfully rescored problem for user {user}" -msgstr "" - -#: lms/static/js/staff_debug_actions.js -msgid "Failed to rescore problem for user." -msgstr "" - -#: lms/static/js/staff_debug_actions.js -msgid "Successfully rescored problem to improve score for user {user}" -msgstr "" - -#: lms/static/js/staff_debug_actions.js -msgid "Failed to rescore problem to improve score for user." -msgstr "" - -#: lms/static/js/staff_debug_actions.js -msgid "Successfully overrode problem score for {user}" -msgstr "" - -#: lms/static/js/staff_debug_actions.js -msgid "Could not override problem score for {user}." -msgstr "" - -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Enter and confirm your new password." -msgstr "" - -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "New Password" -msgstr "" - -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Confirm Password" -msgstr "" - -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Passwords do not match." -msgstr "" - -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Reset My Password" -msgstr "" - -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Reset Your Password" -msgstr "" - -#: lms/static/js/student_account/components/PasswordResetInput.jsx -msgid "Error: " -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"You may also lose access to verified certificates and other program " -"credentials. If you want to make a copy of these for your records before " -"proceeding with deletion, please go to {htmlStart}Dashboard{htmlEnd} to view" -" your certificates." -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"Before proceeding, please {htmlStart}unlink all social media " -"accounts{htmlEnd}." -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "Before proceeding, please {htmlStart}activate your account{htmlEnd}." -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"{htmlStart}Want to change your email, name, or password instead?{htmlEnd}" -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"{strongStart}Warning: Account deletion is permanent.{strongEnd} Please read " -"the above carefully before proceeding. This is an irreversible action, and " -"{strongStart}you will no longer be able to use the same email on " -"EliteMBA.{strongEnd}" -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "We’re sorry to see you go!" -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"Please note: Deletion of your account and personal data is permanent and " -"cannot be undone. EliteMBA will not be able to recover your account or the " -"data that is deleted." -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"Once your account is deleted, you cannot use it to take courses on the " -"EliteMBA app, elitemba.cn, or any other site hosted by EliteMBA." -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Delete My Account" -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Password is incorrect" -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Unable to delete account" -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Please re-enter your password." -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"Sorry, there was an error trying to process your request. Please try again " -"later." -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "A Password is required" -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"You have selected “Delete my account.” Deletion of your account and personal" -" data is permanent and cannot be undone. EliteMBA will not be able to " -"recover your account or the data that is deleted." -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"If you still wish to continue and delete your account, please enter your " -"account password:" -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Password" -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Yes, Delete" -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "We're sorry to see you go! Your account will be deleted shortly." -msgstr "" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"Account deletion, including removal from email lists, may take a few weeks " -"to fully process through our system." -msgstr "" - -#: lms/static/js/student_account/tos_modal.js -msgid "Terms of Service and Honor Code" -msgstr "" - -#: lms/static/js/student_account/views/FinishAuthView.js -msgid "Saving your email preference" -msgstr "" - -#: lms/static/js/student_account/views/FinishAuthView.js -msgid "Enrolling you in the selected course" -msgstr "" - -#: lms/static/js/student_account/views/FinishAuthView.js -msgid "Adding the selected course to your cart" -msgstr "" - -#: lms/static/js/student_account/views/FinishAuthView.js -msgid "Loading your courses" -msgstr "" - -#: lms/static/js/student_account/views/FormView.js -#: lms/static/js/student_account/views/RegisterView.js -msgid "An error occurred." -msgstr "" - -#. Translators: This string is appended to optional field labels on the -#. student login, registration, and -#. profile forms. -#: lms/static/js/student_account/views/FormView.js -msgid "(optional)" -msgstr "" - -#: lms/static/js/student_account/views/LoginView.js -msgid "We couldn't sign you in." -msgstr "" - -#: lms/static/js/student_account/views/LoginView.js -#, javascript-format -msgid "An error occurred when signing you in to %s." -msgstr "" - -#: lms/static/js/student_account/views/LoginView.js -msgid "Check Your Email" -msgstr "" - -#: lms/static/js/student_account/views/LoginView.js -msgid "" -"{paragraphStart}You entered {boldStart}{email}{boldEnd}. If this email " -"address is associated with your {platform_name} account, we will send a " -"message with password reset instructions to this email " -"address.{paragraphEnd}{paragraphStart}If you do not receive a password reset" -" message, verify that you entered the correct email address, or check your " -"spam folder.{paragraphEnd}{paragraphStart}If you need further assistance, " -"{anchorStart}contact technical support{anchorEnd}.{paragraphEnd}" -msgstr "" - -#: lms/static/js/student_account/views/LoginView.js -msgid "" -"An error has occurred. Try refreshing the page, or check your Internet " -"connection." -msgstr "" - -#: lms/static/js/student_account/views/LoginView.js -msgid "" -"You have successfully signed into %(currentProvider)s, but your " -"%(currentProvider)s account does not have a linked %(platformName)s account." -" To link your accounts, sign in now using your %(platformName)s password." -msgstr "" - -#: lms/static/js/student_account/views/RegisterView.js -msgid "We couldn't create your account." -msgstr "" - -#: lms/static/js/student_account/views/RegisterView.js -msgid "Create Account" -msgstr "" - -#: lms/static/js/student_account/views/RegisterView.js -msgid "(required)" -msgstr "" - -#: lms/static/js/student_account/views/RegisterView.js -msgid "You've successfully signed into %(currentProvider)s." -msgstr "" - -#: lms/static/js/student_account/views/RegisterView.js -msgid "" -"We just need a little more information before you start learning with " -"%(platformName)s." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"Your profile settings are managed by {enterprise_name}. Contact your " -"administrator or {link_start}EliteMBA Support{link_end} for help." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Email Address (Sign In)" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"You receive messages from {platform_name} and course teams at this address." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"You have joined Harvard ManageMentor. Email Modification is not supported." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Secondary Email Address" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "You may access your account when single-sign on is not available." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Full Name" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"The name that is used for ID verification and that appears on your " -"certificates." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Country or Region of Residence" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "The country or region where you live." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Basic Account Information" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "These settings include basic information about your account." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"The name that identifies you on {platform_name}. You cannot change your " -"username." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Check your email account for instructions to reset your password." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"The language used throughout this site. This site is currently available in " -"a limited number of languages. Changing the value of this field will cause " -"the page to refresh." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Time Zone" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"Select the time zone for displaying course dates. If you do not specify a " -"time zone, course dates, including assignment deadlines, will be displayed " -"in your browser's local time zone." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "All Time Zones" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Default (Local Time Zone)" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Additional Information" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Education Completed" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Gender" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Year of Birth" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Preferred Language" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"We've sent a confirmation message to {new_secondary_email_address}. Click " -"the link in the message to update your secondary email address." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Social Media Links" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"Optionally, link your personal accounts to the social media icons on your " -"EliteMBA profile." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -#, javascript-format -msgid "" -"Enter your %s username or the URL to your %s page. Delete the URL to remove " -"the link." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid " Link" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Linked Accounts" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"You can link your social media accounts to simplify signing in to " -"{platform_name}." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "ORDER NAME" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "ORDER PLACED" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "TOTAL" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "ORDER NUMBER" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "My Orders" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"This page contains information about orders that you have placed with " -"{platform_name}." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "" -"We've sent a confirmation message to {new_email_address}. Click the link in " -"the message to update your email address." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "" -"You must sign out and sign back in before your language changes take effect." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "" -"We've sent a message to {email}. Click the link in the message to reset your" -" password. Didn't receive the message? Contact {anchorStart}technical " -"support{anchorEnd}." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Link your {accountName} account" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Unlink This Account" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "" -"You can use your {accountName} account to sign in to your {platformName} " -"account." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Unlink your {accountName} account" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Link Your Account" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "" -"Link your {accountName} account to your {platformName} account and use " -"{accountName} to sign in to {platformName}." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Unlinking" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Linking" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Successfully unlinked." -msgstr "" - -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Account Information" -msgstr "" - -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Order History" -msgstr "" - -#: lms/static/js/verify_student/views/image_input_view.js -msgid "Image Upload Error" -msgstr "" - -#: lms/static/js/verify_student/views/image_input_view.js -msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." -msgstr "" - -#: lms/static/js/verify_student/views/incourse_reverify_view.js -#: lms/static/js/verify_student/views/review_photos_step_view.js -msgid "An error has occurred. Please try again later." -msgstr "" - -#: lms/static/js/verify_student/views/incourse_reverify_view.js -#: lms/static/js/verify_student/views/review_photos_step_view.js -msgid "Could not submit photos" -msgstr "" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Professional Education Verified Certificate" -msgstr "" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Professional Education" -msgstr "" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Verified Certificate upgrade" -msgstr "" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Verified Certificate" -msgstr "" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Checkout" -msgstr "" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Checkout with PayPal" -msgstr "" - -#. Translators: 'processor' is the name of a third-party payment processing -#. vendor (example: "PayPal") -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Checkout with {processor}" -msgstr "" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "All payment options are currently unavailable." -msgstr "" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Try the transaction again in a few minutes." -msgstr "" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmarks_list.js -msgid "An error has occurred. Please try again." -msgstr "" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Could not submit order" -msgstr "" - -#: lms/static/js/verify_student/views/payment_confirmation_step_view.js -msgid "Could not retrieve payment information" -msgstr "" - -#: lms/static/js/verify_student/views/reverify_view.js -msgid "Take a photo of your ID" -msgstr "" - -#: lms/static/js/verify_student/views/reverify_view.js -msgid "Review your info" -msgstr "" - -#: lms/static/js/verify_student/views/step_view.js -msgid "An error has occurred. Please try reloading the page." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Video Capture Error" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "" -"Please verify that your webcam is connected and that you have allowed your " -"browser to access it." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "No Webcam Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have a webcam connected." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Double-check that your webcam is connected and working to continue." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Photo Captured successfully." -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "No Flash Detected" -msgstr "" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "" -"You don't seem to have Flash installed. Get Flash to continue your " -"verification." -msgstr "" - -#: lms/static/js/views/fields.js -msgid "Editable" -msgstr "" - -#: lms/static/js/views/fields.js -msgid "Validation Error" -msgstr "" - -#: lms/static/js/views/fields.js -msgid "In Progress" -msgstr "" - -#: lms/static/js/views/fields.js -msgid "Placeholder" -msgstr "" - -#: lms/static/js/views/file_uploader.js -msgid "Your upload of '{file}' succeeded." -msgstr "" - -#: lms/static/js/views/file_uploader.js -msgid "Your upload of '{file}' failed." -msgstr "" - -#: lms/static/js/views/image_field.js -msgid "Upload an image" -msgstr "" - -#: lms/static/js/views/image_field.js -msgid "Change image" -msgstr "" - -#: lms/static/js/views/image_field.js -msgid "Image" -msgstr "" - -#: lms/static/js/views/image_field.js -msgid "An error has occurred. Refresh the page, and then try again." -msgstr "" - -#: lms/static/js/views/image_field.js -msgid "The file must be at least {size} in size." -msgstr "" - -#: lms/static/js/views/image_field.js -msgid "The file must be smaller than {size} in size." -msgstr "" - -#: lms/static/js/views/image_field.js -msgid "" -"Upload is in progress. To avoid errors, stay on this page until the process " -"is complete." -msgstr "" - -#: lms/static/js/views/image_field.js -msgid "" -"Removal is in progress. To avoid errors, stay on this page until the process" -" is complete." -msgstr "" - -#: lms/static/js/views/image_field.js -msgid "bytes" -msgstr "" - -#: lms/static/js/views/image_field.js -msgid "KB" -msgstr "" - -#: lms/static/js/views/image_field.js -msgid "MB" -msgstr "" - -#: lms/static/lms/js/preview/preview_factory.js -msgid "Course is not yet visible to students." -msgstr "" - -#: lms/static/lms/js/preview/preview_factory.js -msgid "" -"You cannot view the course as a student or beta tester before the course " -"release date." -msgstr "" - -#: lms/templates/class_dashboard/d3_stacked_bar_graph.js -msgid "%(num_students)s student opened Subsection" -msgid_plural "%(num_students)s students opened Subsection" -msgstr[0] "" -msgstr[1] "" - -#: lms/templates/class_dashboard/d3_stacked_bar_graph.js -msgid "%(num_students)s student" -msgid_plural "%(num_students)s students" -msgstr[0] "" -msgstr[1] "" - -#: lms/templates/class_dashboard/d3_stacked_bar_graph.js -msgid "%(num_questions)s question" -msgid_plural "%(num_questions)s questions" -msgstr[0] "" -msgstr[1] "" - -#: lms/templates/class_dashboard/d3_stacked_bar_graph.js -msgid "Number of Students" -msgstr "" - -#: lms/templates/courseware/progress_graph.js -msgid "Overall Score" -msgstr "" - -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -msgid "Bookmark this page" -msgstr "" - -#: openedx/features/course_experience/static/course_experience/js/CourseGoals.js -msgid "Thank you for setting your course goal to {goal}!" -msgstr "" - -#: openedx/features/course_experience/static/course_experience/js/CourseHome.js -msgid "You have successfully updated your goal." -msgstr "" - -#: openedx/features/course_experience/static/course_experience/js/CourseHome.js -msgid "There was an error updating your goal." -msgstr "" - -#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js -msgid "Expand All" -msgstr "" - -#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js -msgid "Collapse All" -msgstr "" - -#: openedx/features/course_search/static/course_search/js/views/search_results_view.js -msgid "{total_results} result" -msgid_plural "{total_results} results" -msgstr[0] "" -msgstr[1] "" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Profile Visibility:" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Limited Profile" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Full Profile" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Joined" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Joined Date" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Location" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Add Country" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Add language" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "About me" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "" -"Tell other learners a little about yourself: where you live, what your " -"interests are, why you're taking courses, or what you hope to learn." -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/views/badge_list_container.js -msgid "Accomplishments Pagination" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js -msgid "Account Settings page." -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js -msgid "" -"You must specify your birth year before you can share your full profile. To " -"specify your birth year, go to the {account_settings_page_link}" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js -msgid "" -"You must be over 13 to share a full profile. If you are over 13, make sure " -"that you have specified a birth year on the {account_settings_page_link}" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js -msgid "Profile Image" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js -msgid "Profile image for {username}" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_view.js -msgid "About Me" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_view.js -msgid "Accomplishments" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_view.js -msgid "Profile" -msgstr "" - -#: themes/normal-theme/lms/static/js/binding.js -#, javascript-format -msgid "%s s" -msgstr "" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Get the verification code" -msgstr "" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Cell phone number cannot be blanked" -msgstr "" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "incorrect cellphone number format" -msgstr "" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Cellphone number binding successfully" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To know more about courses" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Click the course to view the course introduction video, browse the course " -"introduction, instructor introduction and course outline, etc." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To join as a member" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Enter \"Membership\" page, choose your learning duration and payment method." -" After payment is completed, you can enjoy learning all courses on EliteMBA " -"during the study period." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To view the end-date of membership" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "Enter \"Membership\" page to view the VIP open date and remaining days." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To enroll as a member" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Enter \"Discover New\" page, click the course or search key words to select " -"courses you are interested in, click \"Free Enrollment for VIP\" button, " -"then the enrollment is fulfilled." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To purchase a course" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Enter \"Discover New\" page, click the course or search key words to select " -"courses you are interested in, click \"Enroll\" button, then you can start " -"learning after payment is completed." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To start a course" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Click your avatar in the upper right corner of the page, enter \"Dashboard\"" -" to view the course introduction, watch videos and complete assignments." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To participate in discussion" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Enter \"Dashboard - View Course\" page, click \"Discussion\". You can view " -"discussions, engage with posts and receive updates." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To view and download handouts" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Enter \"Dashboard - View Course\" page, find \"Course Handouts\" on the " -"right side. You can view handout content and download." -msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/djangojs-studio.po b/conf/locale/en/LC_MESSAGES/djangojs-studio.po deleted file mode 100644 index e82d067de1ae..000000000000 --- a/conf/locale/en/LC_MESSAGES/djangojs-studio.po +++ /dev/null @@ -1,1420 +0,0 @@ -# edX translation file. -# Copyright (C) 2019 EdX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:53+0000\n" -"PO-Revision-Date: 2019-05-16 10:53:15.627353\n" -"Last-Translator: \n" -"Language-Team: openedx-translation \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: cms/static/cms/js/main.js cms/static/js/views/active_video_upload_list.js -#: cms/static/js/views/video_transcripts.js -msgid "" -"This may be happening because of an error with our server or your internet " -"connection. Try refreshing the page or making sure you are online." -msgstr "" - -#: cms/static/cms/js/main.js -msgid "Studio's having trouble saving your work" -msgstr "" - -#: cms/static/cms/js/xblock/cms.runtime.v1.js -msgid "OpenAssessment Save Error" -msgstr "" - -#: cms/static/js/base.js -msgid "This link will open in a new browser window/tab" -msgstr "" - -#: cms/static/js/base.js -msgid "This link will open in a modal window" -msgstr "" - -#: cms/static/js/certificates/models/certificate.js -msgid "Certificate name is required." -msgstr "" - -#: cms/static/js/certificates/models/certificate.js -msgid "Signatory field(s) has invalid data." -msgstr "" - -#: cms/static/js/certificates/views/certificate_details.js -msgid "Edit this certificate?" -msgstr "" - -#: cms/static/js/certificates/views/certificate_details.js -msgid "" -"This certificate has already been activated and is live. Are you sure you " -"want to continue editing?" -msgstr "" - -#: cms/static/js/certificates/views/certificate_details.js -msgid "Yes, allow edits to the active Certificate" -msgstr "" - -#. Translators: This field pertains to the custom label for a certificate. -#. Translators: this refers to a collection of certificates. -#: cms/static/js/certificates/views/certificate_item.js -#: cms/static/js/certificates/views/certificates_list.js -msgid "certificate" -msgstr "" - -#: cms/static/js/certificates/views/certificates_list.js -msgid "Set up your certificate" -msgstr "" - -#. Translators: This line refers to the initial state of the form when no data -#. has been inserted -#: cms/static/js/certificates/views/certificates_list.js -msgid "You have not created any certificates yet." -msgstr "" - -#: cms/static/js/certificates/views/signatory_editor.js -msgid "Delete \"<%= signatoryName %>\" from the list of signatories?" -msgstr "" - -#: cms/static/js/certificates/views/signatory_editor.js -#: cms/static/js/views/course_info_update.js -msgid "This action cannot be undone." -msgstr "" - -#: cms/static/js/certificates/views/signatory_editor.js -#: cms/static/js/views/course_info_update.js cms/static/js/views/list_item.js -#: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js -#: cms/static/js/views/utils/xblock_utils.js -msgid "Deleting" -msgstr "" - -#: cms/static/js/certificates/views/signatory_editor.js -msgid "Upload signature image." -msgstr "" - -#: cms/static/js/certificates/views/signatory_editor.js -msgid "Image must be in PNG format." -msgstr "" - -#: cms/static/js/collections/group.js -#, javascript-format -msgid "Group %s" -msgstr "" - -#. Translators: Dictionary used for creation ids that are used in -#. default group names. For example: A, B, AA in Group A, -#. Group B, ..., Group AA, etc. -#: cms/static/js/collections/group.js -msgid "ABCDEFGHIJKLMNOPQRSTUVWXYZ" -msgstr "" - -#: cms/static/js/factories/export.js -msgid "Your export has failed." -msgstr "" - -#: cms/static/js/factories/manage_users.js -msgid "Already a course team member" -msgstr "" - -#: cms/static/js/factories/manage_users.js -msgid "" -"Are you sure you want to delete {email} from the course team for " -"“{container}”?" -msgstr "" - -#: cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users_lib.js -msgid "Staff" -msgstr "" - -#: cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users_lib.js -msgid "Admin" -msgstr "" - -#: cms/static/js/factories/manage_users_lib.js -msgid "Already a library team member" -msgstr "" - -#: cms/static/js/factories/manage_users_lib.js -msgid "" -"Are you sure you want to delete {email} from the library “{container}”?" -msgstr "" - -#: cms/static/js/factories/manage_users_lib.js -msgid "Library User" -msgstr "" - -#: cms/static/js/factories/settings_advanced.js -msgid "Hide Deprecated Settings" -msgstr "" - -#: cms/static/js/factories/settings_advanced.js -msgid "Show Deprecated Settings" -msgstr "" - -#: cms/static/js/factories/textbooks.js -#: cms/static/js/views/pages/group_configurations.js -msgid "You have unsaved changes. Do you really want to leave this page?" -msgstr "" - -#: cms/static/js/features/import/factories/import.js -msgid "There was an error during the upload process." -msgstr "" - -#: cms/static/js/features/import/factories/import.js -msgid "There was an error while unpacking the file." -msgstr "" - -#: cms/static/js/features/import/factories/import.js -msgid "There was an error while verifying the file you submitted." -msgstr "" - -#: cms/static/js/features/import/factories/import.js -msgid "Choose new file" -msgstr "" - -#: cms/static/js/features/import/factories/import.js -msgid "" -"File format not supported. Please upload a file with a {ext} extension." -msgstr "" - -#: cms/static/js/features/import/factories/import.js -msgid "There was an error while importing the new library to our database." -msgstr "" - -#: cms/static/js/features/import/factories/import.js -msgid "There was an error while importing the new course to our database." -msgstr "" - -#: cms/static/js/features/import/factories/import.js -msgid "Your import has failed." -msgstr "" - -#: cms/static/js/features/import/views/import.js -msgid "Your import is in progress; navigating away will abort it." -msgstr "" - -#: cms/static/js/features/import/views/import.js -msgid "Error importing course" -msgstr "" - -#: cms/static/js/features/import/views/import.js -msgid "There was an error with the upload" -msgstr "" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -msgid "Organization:" -msgstr "" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -msgid "Course Number:" -msgstr "" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -msgid "Course Run:" -msgstr "" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -msgid "(Read-only)" -msgstr "" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -msgid "Re-run Course" -msgstr "" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -msgid "View Live" -msgstr "" - -#: cms/static/js/maintenance/force_publish_course.js -msgid "Internal Server Error." -msgstr "" - -#. Translators: This is the status of a video upload that is queued -#. waiting for other uploads to complete -#: cms/static/js/models/active_video_upload.js -msgid "Queued" -msgstr "" - -#. Translators: This is the status of a video upload that has -#. completed successfully -#: cms/static/js/models/active_video_upload.js -msgid "Upload completed" -msgstr "" - -#. Translators: This is the status of a video upload that has failed -#: cms/static/js/models/active_video_upload.js -msgid "Upload failed" -msgstr "" - -#: cms/static/js/models/chapter.js -msgid "Chapter name and asset_path are both required" -msgstr "" - -#: cms/static/js/models/chapter.js -msgid "Chapter name is required" -msgstr "" - -#: cms/static/js/models/chapter.js -msgid "asset_path is required" -msgstr "" - -#: cms/static/js/models/course.js cms/static/js/models/section.js -msgid "You must specify a name" -msgstr "" - -#: cms/static/js/models/course_update.js -msgid "Action required: Enter a valid date." -msgstr "" - -#: cms/static/js/models/group.js -msgid "Group name is required" -msgstr "" - -#: cms/static/js/models/group_configuration.js -msgid "Group A" -msgstr "" - -#: cms/static/js/models/group_configuration.js -msgid "Group B" -msgstr "" - -#: cms/static/js/models/group_configuration.js -msgid "Group Configuration name is required." -msgstr "" - -#: cms/static/js/models/group_configuration.js -msgid "There must be at least one group." -msgstr "" - -#: cms/static/js/models/group_configuration.js -msgid "All groups must have a name." -msgstr "" - -#: cms/static/js/models/group_configuration.js -msgid "All groups must have a unique name." -msgstr "" - -#: cms/static/js/models/settings/course_details.js -msgid "The course must have an assigned start date." -msgstr "" - -#: cms/static/js/models/settings/course_details.js -msgid "The course end date must be later than the course start date." -msgstr "" - -#: cms/static/js/models/settings/course_details.js -msgid "The course start date must be later than the enrollment start date." -msgstr "" - -#: cms/static/js/models/settings/course_details.js -msgid "The enrollment start date cannot be after the enrollment end date." -msgstr "" - -#: cms/static/js/models/settings/course_details.js -msgid "The enrollment end date cannot be after the course end date." -msgstr "" - -#: cms/static/js/models/settings/course_details.js -msgid "The certificate available date must be later than the course end date." -msgstr "" - -#: cms/static/js/models/settings/course_details.js -msgid "Key should only contain letters, numbers, _, or -" -msgstr "" - -#: cms/static/js/models/settings/course_details.js -msgid "Please enter an integer between %(min)s and %(max)s." -msgstr "" - -#: cms/static/js/models/settings/course_grader.js -msgid "The assignment type must have a name." -msgstr "" - -#: cms/static/js/models/settings/course_grader.js -msgid "There's already another assignment type with this name." -msgstr "" - -#: cms/static/js/models/settings/course_grader.js -msgid "Please enter an integer between 0 and 100." -msgstr "" - -#: cms/static/js/models/settings/course_grader.js -msgid "Please enter an integer greater than 0." -msgstr "" - -#: cms/static/js/models/settings/course_grader.js -msgid "Please enter non-negative integer." -msgstr "" - -#: cms/static/js/models/settings/course_grader.js -msgid "Cannot drop more <%= types %> assignments than are assigned." -msgstr "" - -#: cms/static/js/models/settings/course_grading_policy.js -msgid "Grace period must be specified in HH:MM format." -msgstr "" - -#: cms/static/js/models/settings/course_grading_policy.js -msgid "Not able to set passing grade to less than %(minimum_grade_cutoff)s%." -msgstr "" - -#: cms/static/js/models/textbook.js -msgid "Textbook name is required" -msgstr "" - -#: cms/static/js/models/textbook.js -msgid "Please add at least one chapter" -msgstr "" - -#: cms/static/js/models/textbook.js -msgid "All chapters must have a name and asset" -msgstr "" - -#: cms/static/js/models/uploads.js -msgid "" -"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " -"<%= fileExtensions %> to upload." -msgstr "" - -#: cms/static/js/models/uploads.js -msgid "or" -msgstr "" - -#: cms/static/js/models/xblock_validation.js -msgid "This unit has validation issues." -msgstr "" - -#: cms/static/js/models/xblock_validation.js -msgid "This component has validation issues." -msgstr "" - -#: cms/static/js/views/active_video_upload.js cms/static/js/views/assets.js -msgid "Your file could not be uploaded" -msgstr "" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Upload Videos" -msgstr "" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Drag and drop or {spanStart}browse your computer{spanEnd}." -msgstr "" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Maximum file size: {maxFileSize} GB" -msgstr "" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Supported file types: {supportedVideoTypes}" -msgstr "" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Your video uploads are not complete." -msgstr "" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Upload completed for video {fileName}" -msgstr "" - -#: cms/static/js/views/active_video_upload_list.js -#: cms/static/js/views/active_video_upload_list.js -msgid "Upload failed for video {fileName}" -msgstr "" - -#: cms/static/js/views/active_video_upload_list.js -msgid "" -"{filename} is not in a supported file format. Supported file formats are " -"{supportedFileFormats}." -msgstr "" - -#: cms/static/js/views/active_video_upload_list.js -msgid "{filename} exceeds maximum size of {maxFileSizeInGB} GB." -msgstr "" - -#: cms/static/js/views/active_video_upload_list.js -msgid ": video upload complete." -msgstr "" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Previous Uploads table has been updated." -msgstr "" - -#: cms/static/js/views/asset.js -msgid "Delete File Confirmation" -msgstr "" - -#: cms/static/js/views/asset.js -msgid "" -"Are you sure you wish to delete this item. It cannot be reversed!\n" -"\n" -"Also any content that links/refers to this item will no longer work (e.g. broken images and/or links)" -msgstr "" - -#: cms/static/js/views/asset.js -msgid "Your file has been deleted." -msgstr "" - -#: cms/static/js/views/assets.js -msgid "Date Added" -msgstr "" - -#: cms/static/js/views/assets.js -msgid "Type" -msgstr "" - -#: cms/static/js/views/assets.js -msgid "File {filename} exceeds maximum size of {maxFileSizeInMBs} MB" -msgstr "" - -#: cms/static/js/views/assets.js -msgid "" -"Please follow the instructions here to upload a file elsewhere and link to " -"it: {maxFileSizeRedirectUrl}" -msgstr "" - -#: cms/static/js/views/assets.js -msgid "Max file size exceeded" -msgstr "" - -#: cms/static/js/views/assets.js cms/static/js/views/assets.js -msgid "Upload New File" -msgstr "" - -#: cms/static/js/views/assets.js cms/static/js/views/assets.js -msgid "Load Another File" -msgstr "" - -#: cms/static/js/views/components/add_xblock.js -#: cms/static/js/views/utils/xblock_utils.js -msgid "Adding" -msgstr "" - -#: cms/static/js/views/course_info_update.js -msgid "Are you sure you want to delete this update?" -msgstr "" - -#: cms/static/js/views/course_rerun.js -msgid "Create Re-run" -msgstr "" - -#: cms/static/js/views/course_rerun.js -msgid "Processing Re-run Request" -msgstr "" - -#: cms/static/js/views/course_video_settings.js -msgid "An error has occurred. Wait a few minutes, and then try again." -msgstr "" - -#: cms/static/js/views/course_video_settings.js -msgid "Select turnaround" -msgstr "" - -#: cms/static/js/views/course_video_settings.js -msgid "Select fidelity" -msgstr "" - -#: cms/static/js/views/course_video_settings.js -#: cms/static/js/views/course_video_settings.js -msgid "Select language" -msgstr "" - -#: cms/static/js/views/course_video_settings.js -msgid "Press Remove to remove language" -msgstr "" - -#: cms/static/js/views/course_video_settings.js -msgid "Settings updated" -msgstr "" - -#: cms/static/js/views/course_video_settings.js -msgid "Last updated" -msgstr "" - -#: cms/static/js/views/course_video_settings.js -msgid "Required" -msgstr "" - -#: cms/static/js/views/course_video_settings.js -msgid "Automatic transcripts are disabled." -msgstr "" - -#: cms/static/js/views/course_video_settings.js -msgid "{selectedProvider} credentials saved" -msgstr "" - -#: cms/static/js/views/edit_chapter.js -msgid "Upload a new PDF to “<%= name %>”" -msgstr "" - -#: cms/static/js/views/edit_chapter.js -msgid "Please select a PDF file to upload." -msgstr "" - -#: cms/static/js/views/export.js -msgid "There has been an error while exporting." -msgstr "" - -#: cms/static/js/views/export.js -msgid "" -"There has been a failure to export to XML at least one component. It is " -"recommended that you go to the edit page and repair the error before " -"attempting another export. Please check that all components on the page are " -"valid and do not display any error messages." -msgstr "" - -#: cms/static/js/views/export.js -msgid "Correct failed component" -msgstr "" - -#: cms/static/js/views/export.js -msgid "Return to Export" -msgstr "" - -#: cms/static/js/views/export.js -msgid "" -"Your library could not be exported to XML. There is not enough information " -"to identify the failed component. Inspect your library to identify any " -"problematic components and try again." -msgstr "" - -#: cms/static/js/views/export.js -msgid "Take me to the main library page" -msgstr "" - -#: cms/static/js/views/export.js -msgid "" -"Your course could not be exported to XML. There is not enough information to" -" identify the failed component. Inspect your course to identify any " -"problematic components and try again." -msgstr "" - -#: cms/static/js/views/export.js -msgid "Take me to the main course page" -msgstr "" - -#: cms/static/js/views/export.js -msgid "The raw error message is:" -msgstr "" - -#: cms/static/js/views/export.js -msgid "There has been an error with your export." -msgstr "" - -#. Translators: 'count' is number of groups that the group -#. configuration contains. -#: cms/static/js/views/group_configuration_details.js -msgid "Contains {count} group" -msgid_plural "Contains {count} groups" -msgstr[0] "" -msgstr[1] "" - -#: cms/static/js/views/group_configuration_details.js -#: cms/static/js/views/partition_group_details.js -msgid "Not in Use" -msgstr "" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#. Translators: 'count' is number of locations that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -#: cms/static/js/views/partition_group_details.js -msgid "Used in {count} location" -msgid_plural "Used in {count} locations" -msgstr[0] "" -msgstr[1] "" - -#. Translators: this refers to a collection of groups. -#: cms/static/js/views/group_configuration_item.js -#: cms/static/js/views/group_configurations_list.js -msgid "group configuration" -msgstr "" - -#: cms/static/js/views/group_configurations_list.js -msgid "Add your first group configuration" -msgstr "" - -#: cms/static/js/views/group_configurations_list.js -msgid "You have not created any group configurations yet." -msgstr "" - -#: cms/static/js/views/instructor_info.js -msgid "Upload instructor image." -msgstr "" - -#: cms/static/js/views/instructor_info.js cms/static/js/views/settings/main.js -msgid "Files must be in JPEG or PNG format." -msgstr "" - -#: cms/static/js/views/license.js -msgid "All Rights Reserved" -msgstr "" - -#: cms/static/js/views/license.js -msgid "You reserve all rights for your work" -msgstr "" - -#: cms/static/js/views/license.js -msgid "Creative Commons" -msgstr "" - -#: cms/static/js/views/license.js -msgid "You waive some rights for your work, such that others can use it too" -msgstr "" - -#: cms/static/js/views/license.js -msgid "Version" -msgstr "" - -#: cms/static/js/views/license.js -msgid "Attribution" -msgstr "" - -#: cms/static/js/views/license.js -msgid "" -"Allow others to copy, distribute, display and perform your copyrighted work " -"but only if they give credit the way you request. Currently, this option is " -"required." -msgstr "" - -#: cms/static/js/views/license.js -msgid "Noncommercial" -msgstr "" - -#: cms/static/js/views/license.js -msgid "" -"Allow others to copy, distribute, display and perform your work - and " -"derivative works based upon it - but for noncommercial purposes only." -msgstr "" - -#: cms/static/js/views/license.js -msgid "No Derivatives" -msgstr "" - -#: cms/static/js/views/license.js -msgid "" -"Allow others to copy, distribute, display and perform only verbatim copies " -"of your work, not derivative works based upon it. This option is " -"incompatible with \"Share Alike\"." -msgstr "" - -#: cms/static/js/views/license.js -msgid "Share Alike" -msgstr "" - -#: cms/static/js/views/license.js -msgid "" -"Allow others to distribute derivative works only under a license identical " -"to the license that governs your work. This option is incompatible with \"No" -" Derivatives\"." -msgstr "" - -#. Translators: "item_display_name" is the name of the item to be deleted. -#: cms/static/js/views/list_item.js -msgid "Delete this %(item_display_name)s?" -msgstr "" - -#. Translators: "item_display_name" is the name of the item to be deleted. -#: cms/static/js/views/list_item.js -msgid "Deleting this %(item_display_name)s is permanent and cannot be undone." -msgstr "" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "There was an error changing the user's role" -msgstr "" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "Error adding user" -msgstr "" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "Error removing user" -msgstr "" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "A valid email address is required" -msgstr "" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "You must enter a valid email address in order to add a new team member" -msgstr "" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "Return and add email address" -msgstr "" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "Already a member" -msgstr "" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "" -"{email} is already on the {container} team. Recheck the email address if you" -" want to add a new member." -msgstr "" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "Return to team listing" -msgstr "" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "Are you sure you want to restrict {email} access to “{container}”?" -msgstr "" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "{display_name} Settings" -msgstr "" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Publish {display_name}" -msgstr "" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Publish all unpublished changes for this {item}?" -msgstr "" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Publish" -msgstr "" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Highlights for {display_name}" -msgstr "" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Enable Weekly Highlight Emails" -msgstr "" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Enable" -msgstr "" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Not yet" -msgstr "" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "All Learners and Staff" -msgstr "" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Basic" -msgstr "" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Visibility" -msgstr "" - -#. Translators: "title" is the name of the current component being edited. -#: cms/static/js/views/modals/edit_xblock.js -msgid "Editing: {title}" -msgstr "" - -#: cms/static/js/views/modals/edit_xblock.js -msgid "Plugins" -msgstr "" - -#: cms/static/js/views/modals/edit_xblock.js -msgid "Unit" -msgstr "" - -#: cms/static/js/views/modals/edit_xblock.js -msgid "Component" -msgstr "" - -#: cms/static/js/views/modals/move_xblock_modal.js -msgid "Move" -msgstr "" - -#: cms/static/js/views/modals/move_xblock_modal.js -msgid "Choose a location to move your component to" -msgstr "" - -#: cms/static/js/views/modals/move_xblock_modal.js -msgid "Move: {displayName}" -msgstr "" - -#: cms/static/js/views/modals/validation_error_modal.js -msgid "Validation Error While Saving" -msgstr "" - -#: cms/static/js/views/modals/validation_error_modal.js -msgid "Undo Changes" -msgstr "" - -#: cms/static/js/views/modals/validation_error_modal.js -msgid "Change Manually" -msgstr "" - -#: cms/static/js/views/move_xblock_list.js -msgid "Sections" -msgstr "" - -#: cms/static/js/views/move_xblock_list.js -msgid "Subsections" -msgstr "" - -#: cms/static/js/views/move_xblock_list.js -msgid "Units" -msgstr "" - -#: cms/static/js/views/move_xblock_list.js -msgid "Components" -msgstr "" - -#: cms/static/js/views/move_xblock_list.js -msgid "Groups" -msgstr "" - -#: cms/static/js/views/move_xblock_list.js -msgid "This {parentCategory} has no {childCategory}" -msgstr "" - -#: cms/static/js/views/move_xblock_list.js -msgid "Course Outline" -msgstr "" - -#: cms/static/js/views/paged_container.js -msgid "Date added" -msgstr "" - -#. Translators: "title" is the name of the current component or unit being -#. edited. -#: cms/static/js/views/pages/container.js -msgid "Editing access for: %(title)s" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -msgid "Publishing" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -#: cms/static/js/views/pages/container_subviews.js -msgid "Discard Changes" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -msgid "" -"Are you sure you want to revert to the last published version of the unit? " -"You cannot undo this action." -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -msgid "Discarding Changes" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -msgid "Hiding from Students" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -msgid "Explicitly Hiding from Students" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -msgid "Inheriting Student Visibility" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -#: cms/static/js/views/pages/container_subviews.js -msgid "Make Visible to Students" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -msgid "" -"If the unit was previously published and released to students, any changes " -"you made to the unit when it was hidden will now be visible to students. Do " -"you want to proceed?" -msgstr "" - -#: cms/static/js/views/pages/container_subviews.js -msgid "Making Visible to Students" -msgstr "" - -#: cms/static/js/views/pages/course_outline.js -msgid "Course Index" -msgstr "" - -#: cms/static/js/views/pages/course_outline.js -msgid "There were errors reindexing course." -msgstr "" - -#: cms/static/js/views/pages/paged_container.js -msgid "Hide Previews" -msgstr "" - -#: cms/static/js/views/pages/paged_container.js -msgid "Show Previews" -msgstr "" - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added -#. ascending" -#: cms/static/js/views/paging_header.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, filtered by " -"{assetType}, sorted by {sortName} ascending" -msgstr "" - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added -#. descending" -#: cms/static/js/views/paging_header.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, filtered by " -"{assetType}, sorted by {sortName} descending" -msgstr "" - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, sorted by Date Added ascending" -#: cms/static/js/views/paging_header.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " -"ascending" -msgstr "" - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " -"descending" -msgstr "" - -#. Translators: turns into "25 total" to be used in other sentences, e.g. -#. "Showing 0-9 out of 25 total". -#: cms/static/js/views/paging_header.js -msgid "{totalItems} total" -msgstr "" - -#. Translators: This refers to a content group that can be linked to a student -#. cohort. -#: cms/static/js/views/partition_group_item.js -#: cms/static/js/views/partition_group_list.js -msgid "content group" -msgstr "" - -#: cms/static/js/views/partition_group_list.js -msgid "Add your first content group" -msgstr "" - -#: cms/static/js/views/partition_group_list.js -msgid "You have not created any content groups yet." -msgstr "" - -#: cms/static/js/views/previous_video_upload.js -msgid "Are you sure you want to remove this video from the list?" -msgstr "" - -#: cms/static/js/views/previous_video_upload.js -msgid "" -"Removing a video from this list does not affect course content. Any content " -"that uses a previously uploaded video ID continues to display in the course." -msgstr "" - -#: cms/static/js/views/settings/advanced.js -msgid "" -"Your changes will not take effect until you save your progress. Take care " -"with key and value formatting, as validation is not implemented." -msgstr "" - -#: cms/static/js/views/settings/advanced.js -msgid "Your policy changes have been saved." -msgstr "" - -#: cms/static/js/views/settings/advanced.js -msgid "" -"No validation is performed on policy keys or value pairs. If you are having " -"difficulties, check your formatting." -msgstr "" - -#: cms/static/js/views/settings/grader.js -msgid "" -"For grading to work, you must change all {oldName} subsections to {newName}." -msgstr "" - -#: cms/static/js/views/settings/main.js -msgid "Course Credit Requirements" -msgstr "" - -#: cms/static/js/views/settings/main.js -msgid "The minimum grade for course credit is not set." -msgstr "" - -#: cms/static/js/views/settings/main.js -msgid "Course pacing cannot be changed once a course has started." -msgstr "" - -#: cms/static/js/views/settings/main.js -msgid "{hours}:{minutes} (current UTC time)" -msgstr "" - -#: cms/static/js/views/settings/main.js -msgid "Upload your course image." -msgstr "" - -#: cms/static/js/views/settings/main.js -msgid "Upload your banner image." -msgstr "" - -#: cms/static/js/views/settings/main.js -msgid "Upload your video thumbnail image." -msgstr "" - -#: cms/static/js/views/show_textbook.js -msgid "Delete “<%= name %>”?" -msgstr "" - -#: cms/static/js/views/show_textbook.js -msgid "" -"Deleting a textbook cannot be undone and once deleted any reference to it in" -" your courseware's navigation will also be removed." -msgstr "" - -#: cms/static/js/views/tabs.js -msgid "Delete Page Confirmation" -msgstr "" - -#: cms/static/js/views/tabs.js -msgid "" -"Are you sure you want to delete this page? This action cannot be undone." -msgstr "" - -#: cms/static/js/views/uploads.js -msgid "Upload" -msgstr "" - -#: cms/static/js/views/uploads.js -msgid "We're sorry, there was an error" -msgstr "" - -#: cms/static/js/views/utils/create_course_utils.js -msgid "" -"The combined length of the organization, course number, and course run " -"fields cannot be more than <%=limit%> characters." -msgstr "" - -#: cms/static/js/views/utils/create_library_utils.js -msgid "" -"The combined length of the organization and library code fields cannot be " -"more than <%=limit%> characters." -msgstr "" - -#: cms/static/js/views/utils/move_xblock_utils.js -msgid "Success! \"{displayName}\" has been moved." -msgstr "" - -#: cms/static/js/views/utils/move_xblock_utils.js -msgid "" -"Move cancelled. \"{sourceDisplayName}\" has been moved back to its original " -"location." -msgstr "" - -#: cms/static/js/views/utils/move_xblock_utils.js -msgid "Undo move" -msgstr "" - -#: cms/static/js/views/utils/move_xblock_utils.js -msgid "Take me to the new location" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "Duplicating" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "Undo moving" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "Moving" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "Deleting this {xblock_type} is permanent and cannot be undone." -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "" -"Any content that has listed this content as a prerequisite will also have " -"access limitations removed." -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "Delete this {xblock_type} (and prerequisite)?" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js -msgid "Yes, delete this {xblock_type}" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "Delete this {xblock_type}?" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "section" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "subsection" -msgstr "" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "unit" -msgstr "" - -#: cms/static/js/views/validation.js -msgid "You've made some changes" -msgstr "" - -#: cms/static/js/views/validation.js -msgid "Your changes will not take effect until you save your progress." -msgstr "" - -#: cms/static/js/views/validation.js -msgid "You've made some changes, but there are some errors" -msgstr "" - -#: cms/static/js/views/validation.js -msgid "" -"Please address the errors on this page first, and then save your progress." -msgstr "" - -#: cms/static/js/views/validation.js -msgid "Save Changes" -msgstr "" - -#: cms/static/js/views/video/transcripts/file_uploader.js -msgid "Please select a file in .srt format." -msgstr "" - -#: cms/static/js/views/video/transcripts/file_uploader.js -msgid "Error: Uploading failed." -msgstr "" - -#: cms/static/js/views/video/transcripts/message_manager.js -msgid "Error: Import failed." -msgstr "" - -#: cms/static/js/views/video/transcripts/message_manager.js -msgid "Error: Replacing failed." -msgstr "" - -#: cms/static/js/views/video/transcripts/message_manager.js -#: cms/static/js/views/video/transcripts/message_manager.js -msgid "Error: Choosing failed." -msgstr "" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -msgid "Error: Connection with server failed." -msgstr "" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -msgid "Link types should be unique." -msgstr "" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -msgid "Links should be unique." -msgstr "" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -msgid "Incorrect url format." -msgstr "" - -#: cms/static/js/views/video/translations_editor.js -msgid "" -"Sorry, there was an error parsing the subtitles that you uploaded. Please " -"check the format and try again." -msgstr "" - -#: cms/static/js/views/video/translations_editor.js -#: cms/static/js/views/video_transcripts.js -msgid "Are you sure you want to remove this transcript?" -msgstr "" - -#: cms/static/js/views/video/translations_editor.js -msgid "" -"If you remove this transcript, the transcript will not be available for this" -" component." -msgstr "" - -#: cms/static/js/views/video/translations_editor.js -msgid "Remove Transcript" -msgstr "" - -#: cms/static/js/views/video/translations_editor.js -msgid "Upload translation" -msgstr "" - -#: cms/static/js/views/video_thumbnail.js -msgid "Add Thumbnail" -msgstr "" - -#: cms/static/js/views/video_thumbnail.js -msgid "Edit Thumbnail" -msgstr "" - -#. Translators: This is a 2 part text which tells the image requirements. -#: cms/static/js/views/video_thumbnail.js -msgid "" -"{InstructionsSpanStart}{videoImageResoultion}{lineBreak} " -"{videoImageSupportedFileFormats}{spanEnd}" -msgstr "" - -#: cms/static/js/views/video_thumbnail.js -msgid "Image upload failed" -msgstr "" - -#. Translators: This is a 3 part text which tells the image requirements. -#: cms/static/js/views/video_thumbnail.js -msgid "" -"{ReqTextSpanStart}Requirements{spanEnd}{lineBreak}{InstructionsSpanStart}{videoImageResoultion}{lineBreak}" -" {videoImageSupportedFileFormats}{spanEnd}" -msgstr "" - -#. Translators: message will be like 1280x720 pixels -#: cms/static/js/views/video_thumbnail.js -msgid "{maxWidth}x{maxHeight} pixels" -msgstr "" - -#. Translators: message will be like Thumbnail for Arrow.mp4 -#: cms/static/js/views/video_thumbnail.js -msgid "Thumbnail for {videoName}" -msgstr "" - -#. Translators: message will be like Add Thumbnail - Arrow.mp4 -#: cms/static/js/views/video_thumbnail.js -msgid "Add Thumbnail - {videoName}" -msgstr "" - -#. Translators: humanizeDuration will be like 10 minutes, an hour and 20 -#. minutes etc -#: cms/static/js/views/video_thumbnail.js -msgid "Video duration is {humanizeDuration}" -msgstr "" - -#: cms/static/js/views/video_thumbnail.js -msgid "minutes" -msgstr "" - -#: cms/static/js/views/video_thumbnail.js -msgid "minute" -msgstr "" - -#. Translators: message will be like 15 minutes, 1 minute -#: cms/static/js/views/video_thumbnail.js -msgid "{minutes} {unit}" -msgstr "" - -#: cms/static/js/views/video_thumbnail.js -msgid "seconds" -msgstr "" - -#: cms/static/js/views/video_thumbnail.js -msgid "second" -msgstr "" - -#. Translators: message will be like 20 seconds, 1 second -#: cms/static/js/views/video_thumbnail.js -msgid "{seconds} {unit}" -msgstr "" - -#. Translators: `and` will be used to combine both miuntes and seconds like -#. `13 minutes and 45 seconds` -#: cms/static/js/views/video_thumbnail.js -msgid " and " -msgstr "" - -#: cms/static/js/views/video_thumbnail.js -msgid "Video image upload started" -msgstr "" - -#: cms/static/js/views/video_thumbnail.js -msgid "Video image upload completed" -msgstr "" - -#: cms/static/js/views/video_thumbnail.js -msgid "" -"This image file type is not supported. Supported file types are " -"{supportedFileFormats}." -msgstr "" - -#. Translators: maxFileSizeInMB will be like 2 MB. -#: cms/static/js/views/video_thumbnail.js -msgid "The selected image must be smaller than {maxFileSizeInMB}." -msgstr "" - -#. Translators: minFileSizeInKB will be like 2 KB. -#: cms/static/js/views/video_thumbnail.js -msgid "The selected image must be larger than {minFileSizeInKB}." -msgstr "" - -#: cms/static/js/views/video_thumbnail.js -msgid "Could not upload the video image file" -msgstr "" - -#: cms/static/js/views/video_thumbnail.js -msgid "Image upload failed. " -msgstr "" - -#: cms/static/js/views/video_transcripts.js -msgid "The file could not be uploaded." -msgstr "" - -#: cms/static/js/views/video_transcripts.js -msgid "Hide transcripts ({transcriptCount})" -msgstr "" - -#: cms/static/js/views/video_transcripts.js -msgid "Show transcripts ({transcriptCount})" -msgstr "" - -#: cms/static/js/views/video_transcripts.js -msgid "" -"This file type is not supported. Supported file type is " -"{supportedFileFormat}." -msgstr "" - -#: cms/static/js/views/video_transcripts.js -msgid "{transcriptClientTitle}_{transcriptLanguageCode}.{fileExtension}" -msgstr "" - -#: cms/static/js/views/video_transcripts.js -msgid "" -"If you remove this transcript, the transcript will not be available for any " -"components that use this video." -msgstr "" - -#: cms/static/js/views/xblock_editor.js -msgid "Editor" -msgstr "" - -#: cms/static/js/views/xblock_editor.js -msgid "Settings" -msgstr "" - -#: cms/static/js/views/xblock_outline.js -msgid "New {component_type}" -msgstr "" - -#. Translators: This message will be added to the front of messages of type -#. warning, -#. e.g. "Warning: this component has not been configured yet". -#: cms/static/js/views/xblock_validation.js -msgid "Warning" -msgstr "" - -#: cms/static/js/xblock_asides/structured_tags.js -msgid "Updating Tags" -msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/djangojs.po b/conf/locale/en/LC_MESSAGES/djangojs.po index 8692cfc71ca8..fcaf4a54ad0c 100644 --- a/conf/locale/en/LC_MESSAGES/djangojs.po +++ b/conf/locale/en/LC_MESSAGES/djangojs.po @@ -1,48 +1,59 @@ # #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# # edX translation file. -# Copyright (C) 2019 EdX +# Copyright (C) 2020 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # # #-#-#-#-# djangojs-studio.po (0.1a) #-#-#-#-# # edX translation file. -# Copyright (C) 2019 EdX +# Copyright (C) 2020 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # # #-#-#-#-# underscore.po (0.1a) #-#-#-#-# # edX translation file -# Copyright (C) 2019 edX +# Copyright (C) 2020 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # # #-#-#-#-# underscore-studio.po (0.1a) #-#-#-#-# # edX translation file -# Copyright (C) 2019 edX +# Copyright (C) 2020 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # -# #-#-#-#-# membership-js.po (0.1a) #-#-#-#-# +# #-#-#-#-# membership-js.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# #-#-#-#-# djangojs-theme.po (0.1a) #-#-#-#-# # edX translation file. -# Copyright (C) 2019 EdX +# Copyright (C) 2020 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. +# +# #-#-#-#-# underscore-theme.po (0.1a) #-#-#-#-# +# edX translation file +# Copyright (C) 2020 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. # msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-01-15 19:13+0800\n" -"PO-Revision-Date: 2019-01-15 11:13:08.364765\n" +"POT-Creation-Date: 2020-01-10 17:58+0800\n" +"PO-Revision-Date: 2020-01-10 09:58:51.361097\n" "Last-Translator: \n" "Language-Team: openedx-translation \n" "Language: en\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: Babel 1.3\n" -"#-#-#-#-# membership-js.po (0.1a) #-#-#-#-#\n" #: cms/static/cms/js/xblock/cms.runtime.v1.js #: cms/static/js/certificates/views/signatory_details.js @@ -152,6 +163,7 @@ msgstr "" #: cms/templates/js/previous-video-upload-list.underscore #: cms/templates/js/signatory-details.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Name" msgstr "" @@ -3464,6 +3476,31 @@ msgid "" " cohorts are disabled. You must enable cohorts for the feature to work." msgstr "" +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "span" +msgstr "" + +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "div" +msgstr "" + +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "p" +msgstr "" + +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "img" +msgstr "" + +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "li" +msgstr "" + #: lms/static/js/instructor_dashboard/certificates.js msgid "Allow students to generate certificates for this course?" msgstr "" @@ -3567,14 +3604,11 @@ msgstr "" #: cms/templates/js/transcript-organization-credentials.underscore #: lms/djangoapps/support/static/support/templates/manage_user.underscore #: lms/templates/financial-assistance/financial_assessment_form.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Username" msgstr "" #: lms/static/js/instructor_dashboard/membership.js #: lms/djangoapps/support/static/support/templates/manage_user.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore msgid "Email" msgstr "" @@ -5065,108 +5099,6 @@ msgstr "" msgid "Profile" msgstr "" -#: themes/normal-theme/lms/static/js/binding.js -#, javascript-format -msgid "%s s" -msgstr "" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Get the verification code" -msgstr "" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Cell phone number cannot be blanked" -msgstr "" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "incorrect cellphone number format" -msgstr "" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Cellphone number binding successfully" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To know more about courses" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Click the course to view the course introduction video, browse the course " -"introduction, instructor introduction and course outline, etc." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To join as a member" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Enter \"Membership\" page, choose your learning duration and payment method." -" After payment is completed, you can enjoy learning all courses on EliteMBA " -"during the study period." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To view the end-date of membership" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "Enter \"Membership\" page to view the VIP open date and remaining days." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To enroll as a member" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Enter \"Discover New\" page, click the course or search key words to select " -"courses you are interested in, click \"Free Enrollment for VIP\" button, " -"then the enrollment is fulfilled." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To purchase a course" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Enter \"Discover New\" page, click the course or search key words to select " -"courses you are interested in, click \"Enroll\" button, then you can start " -"learning after payment is completed." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To start a course" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Click your avatar in the upper right corner of the page, enter \"Dashboard\"" -" to view the course introduction, watch videos and complete assignments." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To participate in discussion" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Enter \"Dashboard - View Course\" page, click \"Discussion\". You can view " -"discussions, engage with posts and receive updates." -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "To view and download handouts" -msgstr "" - -#: themes/normal-theme/lms/static/js/manual.js -msgid "" -"Enter \"Dashboard - View Course\" page, find \"Course Handouts\" on the " -"right side. You can view handout content and download." -msgstr "" - #: cms/static/cms/js/main.js cms/static/js/views/active_video_upload_list.js #: cms/static/js/views/video_transcripts.js msgid "" @@ -5624,7 +5556,6 @@ msgstr "" #: cms/static/js/views/assets.js cms/templates/js/asset-library.underscore #: lms/djangoapps/support/static/support/templates/certificates_results.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Type" msgstr "" @@ -6471,7 +6402,6 @@ msgid "Video duration is {humanizeDuration}" msgstr "" #: cms/static/js/views/video_thumbnail.js -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore msgid "minutes" msgstr "" @@ -6591,16 +6521,9 @@ msgstr "" #: cms/templates/js/asset-library.underscore #: cms/templates/js/basic-modal.underscore #: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Actions" msgstr "" -#: cms/templates/js/course-outline.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Timed Exam" -msgstr "" - #: cms/templates/js/course-outline.underscore #: cms/templates/js/publish-xblock.underscore #: lms/templates/ccx/schedule.underscore @@ -6623,6 +6546,7 @@ msgstr "" #: lms/djangoapps/support/static/support/templates/manage_user.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Action" msgstr "" @@ -7029,6 +6953,7 @@ msgstr "" #: lms/djangoapps/support/static/support/templates/certificates_results.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "No results" msgstr "" @@ -7037,7 +6962,6 @@ msgid "Course Key" msgstr "" #: lms/djangoapps/support/static/support/templates/certificates_results.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore msgid "Status" msgstr "" @@ -7478,26 +7402,32 @@ msgid "Click to edit" msgstr "" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Order Number" msgstr "" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Date Placed" msgstr "" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Cost" msgstr "" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Order Details" msgstr "" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "for" msgstr "" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Product Name" msgstr "" @@ -7598,6 +7528,7 @@ msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Notes" msgstr "" @@ -7624,30 +7555,37 @@ msgid "Free text notes" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Generate Exception Certificates" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "All users on the Exception list who do not yet have a certificate" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "All users on the Exception list" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "User Email" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Exception Granted" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Certificate Generated" msgstr "" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Remove from List" msgstr "" @@ -7960,6 +7898,12 @@ msgstr "" msgid "Explore Programs" msgstr "" +#: lms/templates/learner_dashboard/expired_notification.underscore +msgid "" +"You enrolled in this course but did not earn the certificate required to " +"complete this program." +msgstr "" + #: lms/templates/learner_dashboard/explore_new_programs.underscore msgid "" "Browse recently launched courses and see what\\'s new in your favorite " @@ -8031,10 +7975,20 @@ msgstr "" msgid "Congratulations!" msgstr "" +#: lms/templates/learner_dashboard/program_details_view.underscore +msgid "" +"You have successfully completed all the requirements for the {title} {type}." +msgstr "" + #: lms/templates/learner_dashboard/program_details_view.underscore msgid "Your Program Journey" msgstr "" +#: lms/templates/learner_dashboard/program_details_view.underscore +msgid "" +"Track and plan your progress through the {count} courses in this program." +msgstr "" + #: lms/templates/learner_dashboard/program_details_view.underscore msgid "" "To complete the program, you must earn a verified certificate for each " @@ -8050,7 +8004,7 @@ msgid "{listPrice}" msgstr "" #: lms/templates/learner_dashboard/program_details_view.underscore -msgid " {price} {currency} )" +msgid "{price})" msgstr "" #: lms/templates/learner_dashboard/program_details_view.underscore @@ -8113,6 +8067,7 @@ msgid "Recover my account" msgstr "" #: lms/templates/student_account/account_settings.underscore +#: themes/elitemba-theme/lms/templates/student_account/account_settings.underscore msgid "Account Settings" msgstr "" @@ -8126,6 +8081,7 @@ msgstr "" #: lms/templates/student_account/hinted_login.underscore #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign in" msgstr "" @@ -8165,72 +8121,87 @@ msgid "Register through edX" msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "First time here?" msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Create an Account." msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign in to continue learning as {email}" msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign in to continue learning" msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "" "You already have an EliteMBA account with your {enterprise_name} email " "address." msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "" "Going forward, your account information will be updated and maintained by " "{enterprise_name}." msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "" "You can view your information or unlink from {enterprise_name} anytime in " "your Account Settings." msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "To continue learning with this account, sign in below." msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign In" msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "" "Sign in here using your email address and password, or use one of the " "providers listed below." msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign in here using your email address and password." msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "If you do not yet have an account, use the button below to register." msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "or sign in with" msgstr "" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore #, python-format msgid "Sign in with %(providerName)s" msgstr "" #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Use my institution/campus credentials" msgstr "" @@ -8768,75 +8739,6 @@ msgstr "" msgid "Take Photo" msgstr "" -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Add a New Allowance" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Special Exam" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -#, python-format -msgid " %(exam_display_name)s " -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Exam Type" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowance Type" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Additional Time (minutes)" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Value" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Username or Email" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowances" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Add Allowance" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Exam Name" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowance Value" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Time Limit" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Started At" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Completed At" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -#, python-format -msgid " %(username)s " -msgstr "" - #: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore msgid "Bookmarked on" msgstr "" @@ -9379,6 +9281,10 @@ msgstr "" msgid "Proctored Exam" msgstr "" +#: cms/templates/js/course-outline.underscore +msgid "Timed Exam" +msgstr "" + #: cms/templates/js/course-outline.underscore #: cms/templates/js/xblock-outline.underscore #, python-format @@ -10525,7 +10431,7 @@ msgid "Use Current Transcript" msgstr "" #: membership/static/membership/js/card.js -msgid "Open membership" +msgid "Join" msgstr "" #: membership/static/membership/js/card.js @@ -10537,15 +10443,11 @@ msgid "YYYY-MM-DD" msgstr "" #: membership/static/membership/js/card.js -msgid "Open date:" +msgid "Open date: " msgstr "" #: membership/static/membership/js/card.js -msgid "Expire:" -msgstr "" - -#: membership/static/membership/js/card.js -msgid "Last open date:" +msgid "Expire: " msgstr "" #: membership/static/membership/js/card.js @@ -10553,7 +10455,7 @@ msgid "Renew" msgstr "" #: membership/static/membership/js/index.js -msgid "Average per month" +msgid "/M" msgstr "" #: membership/static/membership/js/pay.js @@ -10564,3 +10466,28 @@ msgstr "" #, javascript-format msgid "Return to EliteMBA in %s seconds" msgstr "" + +#: themes/elitemba-theme/lms/static/js/binding.js +#, javascript-format +msgid "%s s" +msgstr "" + +#: themes/elitemba-theme/lms/static/js/binding.js +msgid "Get the verification code" +msgstr "" + +#: themes/elitemba-theme/lms/static/js/binding.js +msgid "Cell phone number cannot be blanked" +msgstr "" + +#: themes/elitemba-theme/lms/static/js/binding.js +msgid "incorrect cellphone number format" +msgstr "" + +#: themes/elitemba-theme/lms/static/js/binding.js +msgid "Cellphone number binding successfully" +msgstr "" + +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +msgid "Certificate exceptions group selection" +msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/edx_proctoring_proctortrack.po b/conf/locale/en/LC_MESSAGES/edx_proctoring_proctortrack.po deleted file mode 100644 index eb5c3a69dfc4..000000000000 --- a/conf/locale/en/LC_MESSAGES/edx_proctoring_proctortrack.po +++ /dev/null @@ -1,41 +0,0 @@ -# edX translation file -# Copyright (C) 2019 edX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:53+0000\n" -"PO-Revision-Date: 2019-05-16 10:53:15.870364\n" -"Last-Translator: \n" -"Language-Team: openedx-translation \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" - -#: edx_proctoring_proctortrack/backends/proctortrack_rest.py:31 -msgid "" -"Click on the \"Start System Check\" link below to download and run the " -"proctoring software." -msgstr "" - -#: edx_proctoring_proctortrack/backends/proctortrack_rest.py:32 -msgid "" -"Once you have verified your identity and reviewed the exam guidelines in " -"Proctortrack, you will be redirected back to this page." -msgstr "" - -#: edx_proctoring_proctortrack/backends/proctortrack_rest.py:33 -msgid "" -"To confirm that proctoring has started, make sure your webcam feed and the " -"blue Proctortrack box are both visible on your screen." -msgstr "" - -#: edx_proctoring_proctortrack/backends/proctortrack_rest.py:34 -msgid "Click on the \"Start Proctored Exam\" button below to continue." -msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/eliteu.po b/conf/locale/en/LC_MESSAGES/eliteu.po index 7e1963bee747..cd527087b59e 100644 --- a/conf/locale/en/LC_MESSAGES/eliteu.po +++ b/conf/locale/en/LC_MESSAGES/eliteu.po @@ -1,21 +1,24 @@ -# edX translation file. +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/en/). # Copyright (C) 2019 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. # EdX Team , 2019. # +# Translators: +# li ying , 2019 +# msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" "POT-Creation-Date: 2019-01-24 03:59+0000\n" -"PO-Revision-Date: 2019-01-24 04:00:16.839550\n" -"Last-Translator: \n" -"Language-Team: openedx-translation \n" +"PO-Revision-Date: 2019-05-16 12:40+0000\n" +"Last-Translator: li ying , 2019\n" +"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/en/)\n" "Language: en\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=1; plural=0;\n" msgid "email address" msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/mako-studio.po b/conf/locale/en/LC_MESSAGES/mako-studio.po deleted file mode 100644 index 6886906f6c5d..000000000000 --- a/conf/locale/en/LC_MESSAGES/mako-studio.po +++ /dev/null @@ -1,3298 +0,0 @@ -# edX translation file -# Copyright (C) 2019 edX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:52+0000\n" -"PO-Revision-Date: 2019-05-16 10:53:15.840656\n" -"Last-Translator: \n" -"Language-Team: openedx-translation \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" - -#: cms/templates/404.html -msgid "The page that you were looking for was not found." -msgstr "" - -#: cms/templates/404.html -msgid "" -"Go back to the {homepage} or let us know about any pages that may have been " -"moved at {email}." -msgstr "" - -#: cms/templates/500.html -msgid "{studio_name} Server Error" -msgstr "" - -#: cms/templates/500.html -msgid "The {em_start}{studio_name}{em_end} servers encountered an error" -msgstr "" - -#: cms/templates/500.html -msgid "" -"An error occurred in {studio_name} and the page could not be loaded. Please " -"try again in a few moments." -msgstr "" - -#: cms/templates/500.html -msgid "" -"We've logged the error and our staff is currently working to resolve this " -"error as soon as possible." -msgstr "" - -#: cms/templates/500.html -msgid "If the problem persists, please email us at {email_link}." -msgstr "" - -#: cms/templates/accessibility.html -msgid "Studio Accessibility Policy" -msgstr "" - -#: cms/templates/activation_active.html cms/templates/activation_complete.html -#: cms/templates/activation_invalid.html -msgid "{studio_name} Account Activation" -msgstr "" - -#: cms/templates/activation_active.html -msgid "Your account is already active" -msgstr "" - -#: cms/templates/activation_active.html -msgid "" -"This account, set up using {email}, has already been activated. Please sign " -"in to start working within {studio_name}." -msgstr "" - -#: cms/templates/activation_active.html cms/templates/activation_complete.html -msgid "Sign into {studio_name}" -msgstr "" - -#: cms/templates/activation_complete.html -msgid "Your account activation is complete!" -msgstr "" - -#: cms/templates/activation_complete.html -msgid "" -"Thank you for activating your account. You may now sign in and start using " -"{studio_name} to author courses." -msgstr "" - -#: cms/templates/activation_invalid.html -msgid "Your account activation is invalid" -msgstr "" - -#: cms/templates/activation_invalid.html -msgid "" -"We're sorry. Something went wrong with your activation. Check to make sure " -"the URL you went to was correct, as e-mail programs will sometimes split it " -"into two lines." -msgstr "" - -#: cms/templates/activation_invalid.html -msgid "" -"If you still have issues, contact {platform_name} Support. In the meantime, " -"you can also return to {link_start}the {studio_name} homepage.{link_end}" -msgstr "" - -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html -msgid "Files & Uploads" -msgstr "" - -#: cms/templates/certificates.html cms/templates/certificates.html -#: cms/templates/certificates.html cms/templates/export.html -#: cms/templates/widgets/header.html -msgid "Certificates" -msgstr "" - -#: cms/templates/certificates.html -msgid "This module is not enabled." -msgstr "" - -#: cms/templates/certificates.html -msgid "This course does not use a mode that offers certificates." -msgstr "" - -#: cms/templates/certificates.html -msgid "Working with Certificates" -msgstr "" - -#: cms/templates/certificates.html -msgid "" -"Specify a course title to use on the certificate if the course's official " -"title is too long to be displayed well." -msgstr "" - -#: cms/templates/certificates.html -msgid "" -"For verified certificates, specify between one and four signatories and " -"upload the associated images." -msgstr "" - -#: cms/templates/certificates.html -msgid "" -"To edit or delete a certificate before it is activated, hover over the top " -"right corner of the form and select {em_start}Edit{em_end} or the delete " -"icon." -msgstr "" - -#: cms/templates/certificates.html -msgid "" -"To view a sample certificate, choose a course mode and select " -"{em_start}Preview Certificate{em_end}." -msgstr "" - -#: cms/templates/certificates.html -msgid "Issuing Certificates to Learners" -msgstr "" - -#: cms/templates/certificates.html -msgid "" -"To begin issuing course certificates, a course team member with either the " -"Staff or Admin role selects {em_start}Activate{em_end}. Only course team " -"members with these roles can edit or delete an activated certificate." -msgstr "" - -#: cms/templates/certificates.html -msgid "" -"{em_start}Do not{em_end} delete certificates after a course has started; " -"learners who have already earned certificates will no longer be able to " -"access them." -msgstr "" - -#: cms/templates/certificates.html -msgid "Learn more about certificates" -msgstr "" - -#: cms/templates/certificates.html cms/templates/certificates.html -#: cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/settings_graders.html -msgid "Other Course Settings" -msgstr "" - -#: cms/templates/certificates.html cms/templates/settings_graders.html -msgid "Details & Schedule" -msgstr "" - -#: cms/templates/certificates.html cms/templates/group_configurations.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -msgid "Grading" -msgstr "" - -#: cms/templates/certificates.html cms/templates/group_configurations.html -#: cms/templates/manage_users.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html -msgid "Course Team" -msgstr "" - -#: cms/templates/certificates.html cms/templates/group_configurations.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html -msgid "Advanced Settings" -msgstr "" - -#: cms/templates/certificates.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html -msgid "Group Configurations" -msgstr "" - -#: cms/templates/checklists.html cms/templates/checklists.html -#: cms/templates/widgets/header.html -msgid "Checklists" -msgstr "" - -#: cms/templates/checklists.html cms/templates/export.html -#: cms/templates/export_git.html cms/templates/import.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -msgid "Tools" -msgstr "" - -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html -msgid "Duplicate" -msgstr "" - -#: cms/templates/component.html -msgid "Duplicate this component" -msgstr "" - -#: cms/templates/component.html cms/templates/component.html -#: cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html -msgid "Move" -msgstr "" - -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html -msgid "Delete" -msgstr "" - -#: cms/templates/component.html -msgid "Delete this component" -msgstr "" - -#: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html -msgid "Drag to reorder" -msgstr "" - -#: cms/templates/container.html cms/templates/library.html -msgid "Display Name" -msgstr "" - -#: cms/templates/container.html cms/templates/container.html -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html cms/templates/course_info.html -#: cms/templates/course_info.html cms/templates/course_outline.html -#: cms/templates/course_outline.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/index.html -#: cms/templates/index.html cms/templates/library.html -#: cms/templates/library.html cms/templates/manage_users.html -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -#: cms/templates/manage_users_lib.html cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/videos_index.html -#: cms/templates/videos_index.html -msgid "Page Actions" -msgstr "" - -#: cms/templates/container.html -msgid "Open the courseware in the LMS" -msgstr "" - -#: cms/templates/container.html -msgid "View Live Version" -msgstr "" - -#: cms/templates/container.html -msgid "Preview the courseware in the LMS" -msgstr "" - -#: cms/templates/container.html -msgid "Preview" -msgstr "" - -#: cms/templates/container.html -msgid "Adding components" -msgstr "" - -#: cms/templates/container.html -msgid "" -"Select a component type under {strong_start}Add New Component{strong_end}. " -"Then select a template." -msgstr "" - -#: cms/templates/container.html -msgid "" -"The new component is added at the bottom of the page or group. You can then " -"edit and move the component." -msgstr "" - -#: cms/templates/container.html -msgid "Editing components" -msgstr "" - -#: cms/templates/container.html -msgid "" -"Click the {strong_start}Edit{strong_end} icon in a component to edit its " -"content." -msgstr "" - -#: cms/templates/container.html -msgid "Reorganizing components" -msgstr "" - -#: cms/templates/container.html -msgid "Drag components to new locations within this component." -msgstr "" - -#: cms/templates/container.html -msgid "For content experiments, you can drag components to other groups." -msgstr "" - -#: cms/templates/container.html -msgid "Working with content experiments" -msgstr "" - -#: cms/templates/container.html -msgid "" -"Confirm that you have properly configured content in each of your experiment" -" groups." -msgstr "" - -#: cms/templates/container.html -msgid "Learn more about component containers" -msgstr "" - -#: cms/templates/container.html -msgid "Unit Location" -msgstr "" - -#: cms/templates/container.html -msgid "Location ID" -msgstr "" - -#: cms/templates/container.html -msgid "" -"To create a link to this unit from an HTML component in this course, enter " -"\"/jump_to_id/\" as the URL value." -msgstr "" - -#: cms/templates/container.html -msgid "Location in Course Outline" -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "Create a Course Rerun of:" -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "Create a re-run of a course" -msgstr "" - -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -#: cms/templates/videos_index_pagination.html -msgid "Cancel" -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "You are creating a re-run from:" -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "" -"Provide identifying information for this re-run of the course. The original " -"course is not affected in any way by a re-run." -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "" -"Note: Together, the organization, course number, and course run must " -"uniquely identify this new course instance." -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "Required Information to Create a re-run of a course" -msgstr "" - -#. Translators: This is an example name for a new course, seen when -#. filling out the form to create a new course. -#: cms/templates/course-create-rerun.html cms/templates/index.html -msgid "e.g. Introduction to Computer Science" -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "" -"The public display name for the new course. (This name is often the same as " -"the original course name.)" -msgstr "" - -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html -msgid "Organization" -msgstr "" - -#. Translators: This is an example for the name of the organization sponsoring -#. a course, seen when filling out the form to create a new course. The -#. organization name cannot contain spaces. -#. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed -#. when user put no data into this field. -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html -msgid "e.g. UniversityX or OrganizationX" -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "" -"The name of the organization sponsoring the new course. (This name is often " -"the same as the original organization name.)" -msgstr "" - -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html -msgid "Note: No spaces or special characters are allowed." -msgstr "" - -#. Translators: This is an example for the number used to identify a course, -#. seen when filling out the form to create a new course. The number here is -#. short for "Computer Science 101". It can contain letters but cannot contain -#. spaces. -#: cms/templates/course-create-rerun.html cms/templates/index.html -msgid "e.g. CS101" -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "" -"The unique number that identifies the new course within the organization. " -"(This number will be the same as the original course number and cannot be " -"changed.)" -msgstr "" - -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/settings.html -msgid "Course Run" -msgstr "" - -#. Translators: This is an example for the "run" used to identify different -#. instances of a course, seen when filling out the form to create a new -#. course. -#: cms/templates/course-create-rerun.html cms/templates/index.html -msgid "e.g. 2014_T1" -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "" -"The term in which the new course will run. (This value is often different " -"than the original course run value.)" -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "Create Re-run" -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "When will my course re-run start?" -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "The new course is set to start on January 1, 2030 at midnight (UTC)." -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "What transfers from the original course?" -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "" -"The new course has the same course outline and content as the original " -"course. All problems, videos, announcements, and other files are duplicated " -"to the new course." -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "What does not transfer from the original course?" -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "" -"You are the only member of the new course's staff. No students are enrolled " -"in the course, and there is no student data. There is no content in the " -"discussion topics or wiki." -msgstr "" - -#: cms/templates/course-create-rerun.html -msgid "Learn more about Course Re-runs" -msgstr "" - -#: cms/templates/course_info.html cms/templates/course_info.html -msgid "Course Updates" -msgstr "" - -#: cms/templates/course_info.html -msgid "New Update" -msgstr "" - -#: cms/templates/course_info.html -msgid "" -"Use course updates to notify students of important dates or exams, highlight" -" particular discussions in the forums, announce schedule changes, and " -"respond to student questions. You add or edit updates in HTML." -msgstr "" - -#: cms/templates/course_outline.html -msgid "" -"This course was created as a re-run. Some manual configuration is needed." -msgstr "" - -#: cms/templates/course_outline.html -msgid "" -"No course content is currently visible, and no learners are enrolled. Be " -"sure to review and reset all dates, including the Course Start Date; set up " -"the course team; review course updates and other assets for dated material; " -"and seed the discussions and wiki." -msgstr "" - -#: cms/templates/course_outline.html -msgid "Warning" -msgstr "" - -#: cms/templates/course_outline.html -msgid "This course uses features that are no longer supported." -msgstr "" - -#: cms/templates/course_outline.html -msgid "You must delete or replace the following components." -msgstr "" - -#: cms/templates/course_outline.html -msgid "Unsupported Components" -msgstr "" - -#: cms/templates/course_outline.html -msgid "Deprecated Component" -msgstr "" - -#: cms/templates/course_outline.html -msgid "" -"To avoid errors, {platform_name} strongly recommends that you remove " -"unsupported features from the course advanced settings. To do this, go to " -"the {link_start}Advanced Settings page{link_end}, locate the \"Advanced " -"Module List\" setting, and then delete the following modules from the list." -msgstr "" - -#: cms/templates/course_outline.html -msgid "Unsupported Advance Modules" -msgstr "" - -#: cms/templates/course_outline.html -msgid "Click to add a new section" -msgstr "" - -#: cms/templates/course_outline.html -msgid "New Section" -msgstr "" - -#: cms/templates/course_outline.html -msgid "Reindex current course" -msgstr "" - -#: cms/templates/course_outline.html -msgid "Reindex" -msgstr "" - -#: cms/templates/course_outline.html -msgid "Collapse All Sections" -msgstr "" - -#: cms/templates/course_outline.html -msgid "Expand All Sections" -msgstr "" - -#: cms/templates/course_outline.html -msgid "Click to open the courseware in the LMS in a new tab" -msgstr "" - -#: cms/templates/course_outline.html cms/templates/edit-tabs.html -msgid "View Live" -msgstr "" - -#: cms/templates/course_outline.html -msgid "Creating your course organization" -msgstr "" - -#: cms/templates/course_outline.html -msgid "You add sections, subsections, and units directly in the outline." -msgstr "" - -#: cms/templates/course_outline.html -msgid "" -"Create a section, then add subsections and units. Open a unit to add course " -"components." -msgstr "" - -#: cms/templates/course_outline.html -msgid "Reorganizing your course" -msgstr "" - -#: cms/templates/course_outline.html -msgid "Drag sections, subsections, and units to new locations in the outline." -msgstr "" - -#: cms/templates/course_outline.html -msgid "Learn more about the course outline" -msgstr "" - -#: cms/templates/course_outline.html -msgid "Setting release dates and grading policies" -msgstr "" - -#: cms/templates/course_outline.html -msgid "" -"Select the Configure icon for a section or subsection to set its release " -"date. When you configure a subsection, you can also set the grading policy " -"and due date." -msgstr "" - -#: cms/templates/course_outline.html -msgid "Learn more about grading policy settings" -msgstr "" - -#: cms/templates/course_outline.html -msgid "Changing the content learners see" -msgstr "" - -#: cms/templates/course_outline.html -msgid "" -"To publish draft content, select the Publish icon for a section, subsection," -" or unit." -msgstr "" - -#: cms/templates/course_outline.html -msgid "" -"To make a section, subsection, or unit unavailable to learners, select the " -"Configure icon for that level, then select the appropriate " -"{em_start}Hide{em_end} option. Grades for hidden sections, subsections, and " -"units are not included in grade calculations." -msgstr "" - -#: cms/templates/course_outline.html -msgid "" -"To hide the content of a subsection from learners after the subsection due " -"date has passed, select the Configure icon for a subsection, then select " -"{em_start}Hide content after due date{em_end}. Grades for the subsection " -"remain included in grade calculations." -msgstr "" - -#: cms/templates/course_outline.html -msgid "Learn more about content visibility settings" -msgstr "" - -#. Translators: Pages refer to the tabs that appear in the top navigation of -#. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html -msgid "Pages" -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "New Page" -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "" -"Note: Pages are publicly visible. If users know the URL of a page, they can " -"view the page even if they are not registered for or logged in to your " -"course." -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "Show this page" -msgstr "" - -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -msgid "Show/hide page" -msgstr "" - -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -msgid "This page cannot be reordered" -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "You can add additional custom pages to your course." -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "Add a New Page" -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "What are pages?" -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "" -"Pages are listed horizontally at the top of your course. Default pages " -"(Home, Course, Discussion, Wiki, and Progress) are followed by textbooks and" -" custom pages that you create." -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "Custom pages" -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "" -"You can create and edit custom pages to provide students with additional " -"course content. For example, you can create pages for the grading policy, " -"course slides, and a course calendar. " -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "How do pages look to students in my course?" -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "" -"Students see the default and custom pages at the top of your course and use " -"these links to navigate." -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "See an example" -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "Pages in Your Course" -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "Preview of Pages in your course" -msgstr "" - -#: cms/templates/edit-tabs.html -msgid "" -"Pages appear in your course's top navigation bar. The default pages (Home, " -"Course, Discussion, Wiki, and Progress) are followed by textbooks and custom" -" pages." -msgstr "" - -#: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html -msgid "close modal" -msgstr "" - -#: cms/templates/error.html -msgid "Internal Server Error" -msgstr "" - -#: cms/templates/error.html -msgid "The Page You Requested Page Cannot be Found" -msgstr "" - -#: cms/templates/error.html -msgid "" -"We're sorry. We couldn't find the {studio_name} page you're looking for. You" -" may want to return to the {studio_name} Dashboard and try again. If you are" -" still having problems accessing things, please feel free to " -"{link_start}contact {studio_name} support{link_end} for further help." -msgstr "" - -#: cms/templates/error.html -msgid "The Server Encountered an Error" -msgstr "" - -#: cms/templates/error.html -msgid "" -"We're sorry. There was a problem with the server while trying to process " -"your last request. You may want to return to the {studio_name} Dashboard or " -"try this request again. If you are still having problems accessing things, " -"please feel free to {link_start}contact {studio_name} support{link_end} for " -"further help." -msgstr "" - -#: cms/templates/error.html -msgid "Back to dashboard" -msgstr "" - -#: cms/templates/export.html cms/templates/export.html -msgid "Library Export" -msgstr "" - -#: cms/templates/export.html cms/templates/export.html -msgid "Course Export" -msgstr "" - -#: cms/templates/export.html -msgid "About Exporting Libraries" -msgstr "" - -#. Translators: ".tar.gz" is a file extension, and should not be translated -#: cms/templates/export.html -msgid "" -"You can export libraries and edit them outside of {studio_name}. The " -"exported file is a .tar.gz file (that is, a .tar file compressed with GNU " -"Zip) that contains the library structure and content. You can also re-import" -" libraries that you've exported." -msgstr "" - -#: cms/templates/export.html -msgid "About Exporting Courses" -msgstr "" - -#. Translators: ".tar.gz" is a file extension, and should not be translated -#: cms/templates/export.html -msgid "" -"You can export courses and edit them outside of {studio_name}. The exported " -"file is a .tar.gz file (that is, a .tar file compressed with GNU Zip) that " -"contains the course structure and content. You can also re-import courses " -"that you've exported." -msgstr "" - -#: cms/templates/export.html -msgid "" -"{em_start}Caution:{em_end} When you export a course, information such as " -"MATLAB API keys, LTI passports, annotation secret token strings, and " -"annotation storage URLs are included in the exported data. If you share your" -" exported files, you may also be sharing sensitive or license-specific " -"information." -msgstr "" - -#: cms/templates/export.html -msgid "Export My Library Content" -msgstr "" - -#: cms/templates/export.html -msgid "Export My Course Content" -msgstr "" - -#: cms/templates/export.html -msgid "Export Library Content" -msgstr "" - -#: cms/templates/export.html -msgid "Export Course Content" -msgstr "" - -#: cms/templates/export.html -msgid "Library Export Status" -msgstr "" - -#: cms/templates/export.html -msgid "Course Export Status" -msgstr "" - -#: cms/templates/export.html -msgid "Preparing" -msgstr "" - -#: cms/templates/export.html -msgid "Preparing to start the export" -msgstr "" - -#: cms/templates/export.html -msgid "Exporting" -msgstr "" - -#: cms/templates/export.html -msgid "" -"Creating the export data files (You can now leave this page safely, but " -"avoid making drastic changes to content until this export is complete)" -msgstr "" - -#: cms/templates/export.html -msgid "Compressing" -msgstr "" - -#: cms/templates/export.html -msgid "Compressing the exported data and preparing it for download" -msgstr "" - -#: cms/templates/export.html cms/templates/import.html -msgid "Success" -msgstr "" - -#: cms/templates/export.html -msgid "Your exported library can now be downloaded" -msgstr "" - -#: cms/templates/export.html -msgid "Your exported course can now be downloaded" -msgstr "" - -#: cms/templates/export.html -msgid "Download Exported Library" -msgstr "" - -#: cms/templates/export.html -msgid "Download Exported Course" -msgstr "" - -#: cms/templates/export.html -msgid "Data {em_start}exported with{em_end} your course:" -msgstr "" - -#: cms/templates/export.html -msgid "" -"Values from Advanced Settings, including MATLAB API keys and LTI passports" -msgstr "" - -#: cms/templates/export.html -msgid "Course Content (all Sections, Sub-sections, and Units)" -msgstr "" - -#: cms/templates/export.html -msgid "Course Structure" -msgstr "" - -#: cms/templates/export.html -msgid "Individual Problems" -msgstr "" - -#: cms/templates/export.html -msgid "Course Assets" -msgstr "" - -#: cms/templates/export.html -msgid "Course Settings" -msgstr "" - -#: cms/templates/export.html -msgid "Data {em_start}not exported{em_end} with your course:" -msgstr "" - -#: cms/templates/export.html -msgid "User Data" -msgstr "" - -#: cms/templates/export.html -msgid "Course Team Data" -msgstr "" - -#: cms/templates/export.html -msgid "Forum/discussion Data" -msgstr "" - -#: cms/templates/export.html -msgid "Why export a library?" -msgstr "" - -#: cms/templates/export.html -msgid "" -"You may want to edit the XML in your library directly, outside of " -"{studio_name}. You may want to create a backup copy of your library. Or, you" -" may want to create a copy of your library that you can later import into " -"another library instance and customize." -msgstr "" - -#: cms/templates/export.html cms/templates/export.html -msgid "Opening the downloaded file" -msgstr "" - -#. Translators: ".tar.gz" is a file extension, and should not be translated -#: cms/templates/export.html -msgid "" -"Use an archive program to extract the data from the .tar.gz file. Extracted " -"data includes the library.xml file, as well as subfolders that contain " -"library content." -msgstr "" - -#: cms/templates/export.html -msgid "Learn more about exporting a library" -msgstr "" - -#: cms/templates/export.html -msgid "Why export a course?" -msgstr "" - -#: cms/templates/export.html -msgid "" -"You may want to edit the XML in your course directly, outside of " -"{studio_name}. You may want to create a backup copy of your course. Or, you " -"may want to create a copy of your course that you can later import into " -"another course instance and customize." -msgstr "" - -#: cms/templates/export.html -msgid "What content is exported?" -msgstr "" - -#: cms/templates/export.html -msgid "The following content is exported." -msgstr "" - -#: cms/templates/export.html cms/templates/import.html -msgid "Course content and structure" -msgstr "" - -#: cms/templates/export.html cms/templates/import.html -msgid "Course dates" -msgstr "" - -#: cms/templates/export.html cms/templates/import.html -msgid "Grading policy" -msgstr "" - -#: cms/templates/export.html cms/templates/import.html -msgid "Any group configurations" -msgstr "" - -#: cms/templates/export.html cms/templates/import.html -msgid "" -"Settings on the Advanced Settings page, including MATLAB API keys and LTI " -"passports" -msgstr "" - -#: cms/templates/export.html -msgid "The following content is not exported." -msgstr "" - -#: cms/templates/export.html cms/templates/import.html -msgid "" -"Learner-specific content, such as learner grades and discussion forum data" -msgstr "" - -#: cms/templates/export.html cms/templates/import.html -msgid "The course team" -msgstr "" - -#. Translators: ".tar.gz" is a file extension, and should not be translated -#: cms/templates/export.html -msgid "" -"Use an archive program to extract the data from the .tar.gz file. Extracted " -"data includes the course.xml file, as well as subfolders that contain course" -" content." -msgstr "" - -#: cms/templates/export.html -msgid "Learn more about exporting a course" -msgstr "" - -#: cms/templates/export_git.html -msgid "Export Course to Git" -msgstr "" - -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html -msgid "Export to Git" -msgstr "" - -#: cms/templates/export_git.html -msgid "About Export to Git" -msgstr "" - -#: cms/templates/export_git.html -msgid "Use this to export your course to its git repository." -msgstr "" - -#: cms/templates/export_git.html -msgid "" -"This will then trigger an automatic update of the main LMS site and update " -"the contents of your course visible there to students if automatic git " -"imports are configured." -msgstr "" - -#: cms/templates/export_git.html -msgid "Export Course to Git:" -msgstr "" - -#: cms/templates/export_git.html -msgid "" -"giturl must be defined in your course settings before you can export to git." -msgstr "" - -#: cms/templates/export_git.html -msgid "Export Failed" -msgstr "" - -#: cms/templates/export_git.html -msgid "Export Succeeded" -msgstr "" - -#: cms/templates/export_git.html -msgid "Your course:" -msgstr "" - -#: cms/templates/export_git.html -msgid "Course git url:" -msgstr "" - -#: cms/templates/group_configurations.html -#: cms/templates/group_configurations.html -msgid "Experiment Group Configurations" -msgstr "" - -#: cms/templates/group_configurations.html -msgid "This module is disabled at the moment." -msgstr "" - -#: cms/templates/group_configurations.html -msgid "Enrollment Track Groups" -msgstr "" - -#: cms/templates/group_configurations.html -msgid "" -"Enrollment track groups allow you to offer different course content to " -"learners in each enrollment track. Learners enrolled in each enrollment " -"track in your course are automatically included in the corresponding " -"enrollment track group." -msgstr "" - -#: cms/templates/group_configurations.html -msgid "" -"On unit pages in the course outline, you can restrict access to components " -"to learners based on their enrollment track." -msgstr "" - -#: cms/templates/group_configurations.html -msgid "" -"You cannot edit enrollment track groups, but you can expand each group to " -"view details of the course content that is designated for learners in the " -"group." -msgstr "" - -#: cms/templates/group_configurations.html -msgid "Content Groups" -msgstr "" - -#: cms/templates/group_configurations.html -msgid "" -"If you have cohorts enabled in your course, you can use content groups to " -"create cohort-specific courseware. In other words, you can customize the " -"content that particular cohorts see in your course." -msgstr "" - -#: cms/templates/group_configurations.html -msgid "" -"Each content group that you create can be associated with one or more " -"cohorts. In addition to making course content available to all learners, you" -" can restrict access to some content to learners in specific content groups." -" Only learners in the cohorts that are associated with the specified content" -" groups see the additional content." -msgstr "" - -#: cms/templates/group_configurations.html -msgid "" -"Click {em_start}New content group{em_end} to add a new content group. To " -"edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. You can delete a content group only if it is not in " -"use by a unit. To delete a content group, hover over its box and click the " -"delete icon." -msgstr "" - -#: cms/templates/group_configurations.html -msgid "" -"Use experiment group configurations if you are conducting content " -"experiments, also known as A/B testing, in your course. Experiment group " -"configurations define how many groups of learners are in a content " -"experiment. When you create a content experiment for a course, you select " -"the group configuration to use." -msgstr "" - -#: cms/templates/group_configurations.html -msgid "" -"Click {em_start}New Group Configuration{em_end} to add a new configuration. " -"To edit a configuration, hover over its box and click " -"{em_start}Edit{em_end}. You can delete a group configuration only if it is " -"not in use in an experiment. To delete a configuration, hover over its box " -"and click the delete icon." -msgstr "" - -#: cms/templates/group_configurations.html -#: cms/templates/settings_advanced.html -msgid "Details & Schedule" -msgstr "" - -#: cms/templates/howitworks.html -msgid "Welcome" -msgstr "" - -#: cms/templates/howitworks.html -msgid "Welcome to {studio_name}" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"{studio_name} helps manage your online courses, so you can focus on teaching" -" them" -msgstr "" - -#: cms/templates/howitworks.html -msgid "{studio_name}'s Many Features" -msgstr "" - -#: cms/templates/howitworks.html cms/templates/howitworks.html -msgid "{studio_name} Helps You Keep Your Courses Organized" -msgstr "" - -#: cms/templates/howitworks.html cms/templates/howitworks.html -#: cms/templates/howitworks.html -msgid "Enlarge image" -msgstr "" - -#: cms/templates/howitworks.html -msgid "Keeping Your Course Organized" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"The backbone of your course is how it is organized. {studio_name} offers an " -"{strong_start}Outline{strong_end} editor, providing a simple hierarchy and " -"easy drag and drop to help you and your students stay organized." -msgstr "" - -#: cms/templates/howitworks.html -msgid "Simple Organization For Content" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"{studio_name} uses a simple hierarchy of {strong_start}sections{strong_end} " -"and {strong_start}subsections{strong_end} to organize your content." -msgstr "" - -#: cms/templates/howitworks.html -msgid "Change Your Mind Anytime" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"Draft your outline and build content anywhere. Simple drag and drop tools " -"let you reorganize quickly." -msgstr "" - -#: cms/templates/howitworks.html -msgid "Go A Week Or A Semester At A Time" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"Build and release {strong_start}sections{strong_end} to your students " -"incrementally. You don't have to have it all done at once." -msgstr "" - -#: cms/templates/howitworks.html cms/templates/howitworks.html -#: cms/templates/howitworks.html -msgid "Learning is More than Just Lectures" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"{studio_name} lets you weave your content together in a way that reinforces " -"learning. Insert videos, discussions, and a wide variety of exercises with " -"just a few clicks." -msgstr "" - -#: cms/templates/howitworks.html -msgid "Create Learning Pathways" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"Help your students understand one concept at a time with multimedia, HTML, " -"and exercises." -msgstr "" - -#: cms/templates/howitworks.html -msgid "Work Visually, Organize Quickly" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"Work visually and see exactly what your students will see. Reorganize all " -"your content with drag and drop." -msgstr "" - -#: cms/templates/howitworks.html -msgid "A Broad Library of Problem Types" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"It's more than just multiple choice. {studio_name} supports more than a " -"dozen types of problems to challenge your learners." -msgstr "" - -#: cms/templates/howitworks.html cms/templates/howitworks.html -msgid "" -"{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " -"Friends." -msgstr "" - -#: cms/templates/howitworks.html -msgid "Simple, Fast, and Incremental Publishing. With Friends." -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"{studio_name} works like web applications you already know, yet understands " -"how you build curriculum. Instant publishing to the web when you want it, " -"incremental release when it makes sense. And with co-authors, you can have a" -" whole team building a course, together." -msgstr "" - -#: cms/templates/howitworks.html -msgid "Instant Changes" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"Caught a bug? No problem. When you want, your changes go live when you click" -" Save." -msgstr "" - -#: cms/templates/howitworks.html -msgid "Release-On Date Publishing" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"When you've finished a {strong_start}section{strong_end}, pick when you want" -" it to go live and {studio_name} takes care of the rest. Build your course " -"incrementally." -msgstr "" - -#: cms/templates/howitworks.html -msgid "Work in Teams" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"Co-authors have full access to all the same authoring tools. Make your " -"course better through a team effort." -msgstr "" - -#: cms/templates/howitworks.html -msgid "Sign Up for {studio_name} Today!" -msgstr "" - -#: cms/templates/howitworks.html -msgid "Sign Up & Start Making Your {platform_name} Course" -msgstr "" - -#: cms/templates/howitworks.html -msgid "Already have a {studio_name} Account? Sign In" -msgstr "" - -#: cms/templates/howitworks.html -msgid "Outlining Your Course" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"Simple two-level outline to organize your course. Drag and drop, and see " -"your course at a glance." -msgstr "" - -#: cms/templates/howitworks.html -msgid "More than Just Lectures" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"Quickly create videos, text snippets, inline discussions, and a variety of " -"problem types." -msgstr "" - -#: cms/templates/howitworks.html -msgid "Publishing on Date" -msgstr "" - -#: cms/templates/howitworks.html -msgid "" -"Simply set the date of a section or subsection, and {studio_name} will " -"publish it to your students for you." -msgstr "" - -#: cms/templates/html_error.html -msgid "We're having trouble rendering your component" -msgstr "" - -#: cms/templates/html_error.html -msgid "" -"Students will not be able to access this component. Re-edit your component " -"to fix the error." -msgstr "" - -#: cms/templates/import.html cms/templates/import.html -msgid "Library Import" -msgstr "" - -#: cms/templates/import.html cms/templates/import.html -msgid "Course Import" -msgstr "" - -#: cms/templates/import.html -msgid "" -"Be sure you want to import a library before continuing. The contents of the " -"imported library will replace the contents of the existing library. " -"{em_start}You cannot undo a library import{em_end}. Before you proceed, we " -"recommend that you export the current library, so that you have a backup " -"copy of it." -msgstr "" - -#: cms/templates/import.html -msgid "" -"The library that you import must be in a .tar.gz file (that is, a .tar file " -"compressed with GNU Zip). This .tar.gz file must contain a library.xml file." -" It may also contain other files." -msgstr "" - -#: cms/templates/import.html -msgid "" -"The import process has five stages. During the first two stages, you must " -"stay on this page. You can leave this page after the Unpacking stage has " -"completed. We recommend, however, that you don't make important changes to " -"your library until the import operation has completed." -msgstr "" - -#: cms/templates/import.html -msgid "" -"Be sure you want to import a course before continuing. The contents of the " -"imported course will replace the contents of the existing course. " -"{em_start}You cannot undo a course import{em_end}. Before you proceed, we " -"recommend that you export the current course, so that you have a backup copy" -" of it." -msgstr "" - -#: cms/templates/import.html -msgid "" -"The course that you import must be in a .tar.gz file (that is, a .tar file " -"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " -"It may also contain other files." -msgstr "" - -#: cms/templates/import.html -msgid "" -"The import process has five stages. During the first two stages, you must " -"stay on this page. You can leave this page after the Unpacking stage has " -"completed. We recommend, however, that you don't make important changes to " -"your course until the import operation has completed." -msgstr "" - -#: cms/templates/import.html -msgid "Select a .tar.gz File to Replace Your Library Content" -msgstr "" - -#: cms/templates/import.html -msgid "Select a .tar.gz File to Replace Your Course Content" -msgstr "" - -#: cms/templates/import.html -msgid "Choose a File to Import" -msgstr "" - -#: cms/templates/import.html -msgid "File Chosen:" -msgstr "" - -#: cms/templates/import.html -msgid "Replace my library with the selected file" -msgstr "" - -#: cms/templates/import.html -msgid "Replace my course with the selected file" -msgstr "" - -#: cms/templates/import.html -msgid "Library Import Status" -msgstr "" - -#: cms/templates/import.html -msgid "Course Import Status" -msgstr "" - -#: cms/templates/import.html -msgid "Uploading" -msgstr "" - -#: cms/templates/import.html -msgid "Transferring your file to our servers" -msgstr "" - -#: cms/templates/import.html -msgid "Unpacking" -msgstr "" - -#: cms/templates/import.html -msgid "" -"Expanding and preparing folder/file structure (You can now leave this page " -"safely, but avoid making drastic changes to content until this import is " -"complete)" -msgstr "" - -#: cms/templates/import.html -msgid "Verifying" -msgstr "" - -#: cms/templates/import.html -msgid "Reviewing semantics, syntax, and required data" -msgstr "" - -#: cms/templates/import.html -msgid "Updating Library" -msgstr "" - -#: cms/templates/import.html -msgid "Updating Course" -msgstr "" - -#: cms/templates/import.html -msgid "" -"Integrating your imported content into this library. This process might take" -" longer with larger libraries." -msgstr "" - -#: cms/templates/import.html -msgid "" -"Integrating your imported content into this course. This process might take " -"longer with larger courses." -msgstr "" - -#: cms/templates/import.html -msgid "Your imported content has now been integrated into this library" -msgstr "" - -#: cms/templates/import.html -msgid "Your imported content has now been integrated into this course" -msgstr "" - -#: cms/templates/import.html -msgid "View Updated Library" -msgstr "" - -#: cms/templates/import.html -msgid "View Updated Outline" -msgstr "" - -#: cms/templates/import.html -msgid "Why import a library?" -msgstr "" - -#: cms/templates/import.html -msgid "" -"You might want to update an existing library to a new version, or replace an" -" existing library entirely. You might also have developed a library outside " -"of {studio_name}." -msgstr "" - -#: cms/templates/import.html -msgid "Note: Library content is not automatically updated in courses" -msgstr "" - -#: cms/templates/import.html -msgid "" -"If you change and import a library that is referenced by randomized content " -"blocks in one or more courses, those courses do not automatically use the " -"updated content. You must manually refresh the randomized content blocks to " -"bring them up to date with the latest library content." -msgstr "" - -#: cms/templates/import.html -msgid "Learn more about importing a library" -msgstr "" - -#: cms/templates/import.html -msgid "Why import a course?" -msgstr "" - -#: cms/templates/import.html -msgid "" -"You may want to run a new version of an existing course, or replace an " -"existing course altogether. Or, you may have developed a course outside " -"{studio_name}." -msgstr "" - -#: cms/templates/import.html -msgid "What content is imported?" -msgstr "" - -#: cms/templates/import.html -msgid "The following content is imported." -msgstr "" - -#: cms/templates/import.html -msgid "The following content is not imported." -msgstr "" - -#: cms/templates/import.html -msgid "Warning: Importing while a course is running" -msgstr "" - -#: cms/templates/import.html -msgid "" -"If you perform an import while your course is running, and you change the " -"URL names (or url_name nodes) of any Problem components, the student data " -"associated with those Problem components may be lost. This data includes " -"students' problem scores." -msgstr "" - -#: cms/templates/import.html -msgid "Learn more about importing a course" -msgstr "" - -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/user_dropdown.html -#: cms/templates/widgets/user_dropdown.html -msgid "{studio_name} Home" -msgstr "" - -#: cms/templates/index.html -msgid "New Course" -msgstr "" - -#: cms/templates/index.html -msgid "Email staff to create course" -msgstr "" - -#: cms/templates/index.html -msgid "New Library" -msgstr "" - -#: cms/templates/index.html cms/templates/index.html -msgid "Please correct the highlighted fields below." -msgstr "" - -#: cms/templates/index.html -msgid "Create a New Course" -msgstr "" - -#: cms/templates/index.html -msgid "Required Information to Create a New Course" -msgstr "" - -#: cms/templates/index.html -msgid "" -"The public display name for your course. This cannot be changed, but you can" -" set a different display name in Advanced Settings later." -msgstr "" - -#: cms/templates/index.html -msgid "" -"The name of the organization sponsoring the course. {strong_start}Note: The " -"organization name is part of the course URL.{strong_end} This cannot be " -"changed, but you can set a different display name in Advanced Settings " -"later." -msgstr "" - -#: cms/templates/index.html -msgid "" -"The unique number that identifies your course within your organization. " -"{strong_start}Note: This is part of your course URL, so no spaces or special" -" characters are allowed and it cannot be changed.{strong_end}" -msgstr "" - -#: cms/templates/index.html -msgid "" -"The term in which your course will run. {strong_start}Note: This is part of " -"your course URL, so no spaces or special characters are allowed and it " -"cannot be changed.{strong_end}" -msgstr "" - -#: cms/templates/index.html cms/templates/index.html -msgid "Create" -msgstr "" - -#: cms/templates/index.html -msgid "Create a New Library" -msgstr "" - -#: cms/templates/index.html -msgid "Required Information to Create a New Library" -msgstr "" - -#: cms/templates/index.html -msgid "Library Name" -msgstr "" - -#. Translators: This is an example name for a new content library, seen when -#. filling out the form to create a new library. -#. (A library is a collection of content or problems.) -#: cms/templates/index.html -msgid "e.g. Computer Science Problems" -msgstr "" - -#: cms/templates/index.html -msgid "The public display name for your library." -msgstr "" - -#: cms/templates/index.html -msgid "The public organization name for your library." -msgstr "" - -#: cms/templates/index.html -msgid "This cannot be changed." -msgstr "" - -#: cms/templates/index.html -msgid "Library Code" -msgstr "" - -#. Translators: This is an example for the "code" used to identify a library, -#. seen when filling out the form to create a new library. This example is -#. short -#. for "Computer Science Problems". The example number may contain letters -#. but must not contain spaces. -#: cms/templates/index.html -msgid "e.g. CSPROB" -msgstr "" - -#: cms/templates/index.html -msgid "" -"The unique code that identifies this library. {strong_start}Note: This is " -"part of your library URL, so no spaces or special characters are " -"allowed.{strong_end} This cannot be changed." -msgstr "" - -#: cms/templates/index.html -msgid "Organization and Library Settings" -msgstr "" - -#: cms/templates/index.html -msgid "Show all courses in organization:" -msgstr "" - -#: cms/templates/index.html -msgid "For example, MITx" -msgstr "" - -#: cms/templates/index.html -msgid "Courses Being Processed" -msgstr "" - -#: cms/templates/index.html -msgid "This course run is currently being created." -msgstr "" - -#. Translators: This is a status message, used to inform the user of -#. what the system is doing. This status means that the user has -#. requested to re-run an existing course, and the system is currently -#. in the process of duplicating and configuring the existing course -#. so that it can be re-run. -#: cms/templates/index.html -msgid "Configuring as re-run" -msgstr "" - -#: cms/templates/index.html -msgid "" -"The new course will be added to your course list in 5-10 minutes. Return to " -"this page or {link_start}refresh it{link_end} to update the course list. The" -" new course will need some manual configuration." -msgstr "" - -#. Translators: This is a status message for the course re-runs feature. -#. When a course admin indicates that a course should be re-run, the system -#. needs to process the request and prepare the new course. The status of -#. the process will follow this text. -#: cms/templates/index.html -msgid "This re-run processing status:" -msgstr "" - -#: cms/templates/index.html -msgid "Configuration Error" -msgstr "" - -#: cms/templates/index.html -msgid "" -"A system error occurred while your course was being processed. Please go to " -"the original course to try the re-run again, or contact your PM for " -"assistance." -msgstr "" - -#: cms/templates/index.html -msgid "Archived Courses" -msgstr "" - -#: cms/templates/index.html -msgid "Libraries" -msgstr "" - -#: cms/templates/index.html -msgid "Are you staff on an existing {studio_name} course?" -msgstr "" - -#: cms/templates/index.html -msgid "" -"The course creator must give you access to the course. Contact the course " -"creator or administrator for the course you are helping to author." -msgstr "" - -#: cms/templates/index.html cms/templates/index.html -msgid "Create Your First Course" -msgstr "" - -#: cms/templates/index.html -msgid "Your new course is just a click away!" -msgstr "" - -#: cms/templates/index.html -msgid "Becoming a Course Creator in {studio_name}" -msgstr "" - -#: cms/templates/index.html -msgid "" -"{studio_name} is a hosted solution for our xConsortium partners and selected" -" guests. Courses for which you are a team member appear above for you to " -"edit, while course creator privileges are granted by {platform_name}. Our " -"team will evaluate your request and provide you feedback within 24 hours " -"during the work week." -msgstr "" - -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html -msgid "Your Course Creator Request Status:" -msgstr "" - -#: cms/templates/index.html -msgid "Request the Ability to Create Courses" -msgstr "" - -#: cms/templates/index.html cms/templates/index.html -msgid "Your Course Creator Request Status" -msgstr "" - -#: cms/templates/index.html -msgid "" -"{studio_name} is a hosted solution for our xConsortium partners and selected" -" guests. Courses for which you are a team member appear above for you to " -"edit, while course creator privileges are granted by {platform_name}. Our " -"team is has completed evaluating your request." -msgstr "" - -#: cms/templates/index.html cms/templates/index.html -msgid "Your Course Creator request is:" -msgstr "" - -#: cms/templates/index.html -msgid "Denied" -msgstr "" - -#: cms/templates/index.html -msgid "" -"Your request did not meet the criteria/guidelines specified by " -"{platform_name} Staff." -msgstr "" - -#: cms/templates/index.html -msgid "" -"{studio_name} is a hosted solution for our xConsortium partners and selected" -" guests. Courses for which you are a team member appear above for you to " -"edit, while course creator privileges are granted by {platform_name}. Our " -"team is currently evaluating your request." -msgstr "" - -#: cms/templates/index.html -msgid "Pending" -msgstr "" - -#: cms/templates/index.html -msgid "" -"Your request is currently being reviewed by {platform_name} staff and should" -" be updated shortly." -msgstr "" - -#: cms/templates/index.html -msgid "Were you expecting to see a particular library here?" -msgstr "" - -#: cms/templates/index.html -msgid "" -"The library creator must give you access to the library. Contact the library" -" creator or administrator for the library you are helping to author." -msgstr "" - -#: cms/templates/index.html cms/templates/index.html -msgid "Create Your First Library" -msgstr "" - -#: cms/templates/index.html -msgid "" -"Libraries hold a pool of components that can be re-used across multiple " -"courses. Create your first library with the click of a button!" -msgstr "" - -#: cms/templates/index.html -msgid "New to {studio_name}?" -msgstr "" - -#: cms/templates/index.html -msgid "" -"Click Help in the upper-right corner to get more information about the " -"{studio_name} page you are viewing. You can also use the links at the bottom" -" of the page to access our continually updated documentation and other " -"{studio_name} resources." -msgstr "" - -#: cms/templates/index.html -msgid "Getting Started with {studio_name}" -msgstr "" - -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html -msgid "Can I create courses in {studio_name}?" -msgstr "" - -#: cms/templates/index.html -msgid "" -"In order to create courses in {studio_name}, you must {link_start}contact " -"{platform_name} staff to help you create a course{link_end}." -msgstr "" - -#: cms/templates/index.html -msgid "" -"In order to create courses in {studio_name}, you must have course creator " -"privileges to create your own course." -msgstr "" - -#: cms/templates/index.html -msgid "" -"Your request to author courses in {studio_name} has been denied. Please " -"{link_start}contact {platform_name} Staff with further questions{link_end}." -msgstr "" - -#: cms/templates/index.html -msgid "Thanks for signing up, {name}!" -msgstr "" - -#: cms/templates/index.html -msgid "We need to verify your email address" -msgstr "" - -#: cms/templates/index.html -msgid "" -"Almost there! In order to complete your sign up we need you to verify your " -"email address ({email}). An activation message and next steps should be " -"waiting for you there." -msgstr "" - -#: cms/templates/index.html -msgid "Need help?" -msgstr "" - -#: cms/templates/index.html -msgid "" -"Please check your Junk or Spam folders in case our email isn't in your " -"INBOX. Still can't find the verification email? Request help via the link " -"below." -msgstr "" - -#: cms/templates/library.html -msgid "Content Library" -msgstr "" - -#: cms/templates/library.html -msgid "Add Component" -msgstr "" - -#: cms/templates/library.html -msgid "Adding content to your library" -msgstr "" - -#: cms/templates/library.html -msgid "" -"Add components to your library for use in courses, using Add New Component " -"at the bottom of this page." -msgstr "" - -#: cms/templates/library.html -msgid "" -"Components are listed in the order in which they are added, with the most " -"recently added at the bottom. Use the pagination arrows to navigate from " -"page to page if you have more than one page of components in your library." -msgstr "" - -#: cms/templates/library.html -msgid "Using library content in courses" -msgstr "" - -#: cms/templates/library.html -msgid "" -"Use library content in courses by adding the " -"{em_start}library_content{em_end} policy key to the Advanced Module List in " -"the course's Advanced Settings, then adding a Randomized Content Block to " -"your courseware. In the settings for each Randomized Content Block, select " -"this library as the source library, and specify the number of problems to be" -" randomly selected and displayed to each student." -msgstr "" - -#: cms/templates/library.html -msgid "Learn more about content libraries" -msgstr "" - -#: cms/templates/login.html cms/templates/widgets/header.html -msgid "Sign In" -msgstr "" - -#: cms/templates/login.html cms/templates/login.html -msgid "Sign In to {studio_name}" -msgstr "" - -#: cms/templates/login.html -msgid "Don't have a {studio_name} Account? Sign up!" -msgstr "" - -#: cms/templates/login.html -msgid "Required Information to Sign In to {studio_name}" -msgstr "" - -#: cms/templates/manage_users.html -msgid "Course Team Settings" -msgstr "" - -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -msgid "New Team Member" -msgstr "" - -#: cms/templates/manage_users.html -msgid "Add a User to Your Course's Team" -msgstr "" - -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -msgid "New Team Member Information" -msgstr "" - -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -msgid "User's Email Address" -msgstr "" - -#: cms/templates/manage_users.html -msgid "Provide the email address of the user you want to add as Staff" -msgstr "" - -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -msgid "Add User" -msgstr "" - -#: cms/templates/manage_users.html -msgid "Add Team Members to This Course" -msgstr "" - -#: cms/templates/manage_users.html -msgid "" -"Adding team members makes course authoring collaborative. Users must be " -"signed up for {studio_name} and have an active account." -msgstr "" - -#: cms/templates/manage_users.html -msgid "Add a New Team Member" -msgstr "" - -#: cms/templates/manage_users.html -msgid "Course Team Roles" -msgstr "" - -#: cms/templates/manage_users.html -msgid "" -"Course team members with the Staff role are course co-authors. They have " -"full writing and editing privileges on all course content." -msgstr "" - -#: cms/templates/manage_users.html -msgid "" -"Admins are course team members who can add and remove other course team " -"members." -msgstr "" - -#: cms/templates/manage_users.html -msgid "" -"All course team members can access content in Studio, the LMS, and Insights," -" but are not automatically enrolled in the course." -msgstr "" - -#: cms/templates/manage_users.html -msgid "Transferring Ownership" -msgstr "" - -#: cms/templates/manage_users.html -msgid "" -"Every course must have an Admin. If you are the Admin and you want to " -"transfer ownership of the course, click Add admin access to" -" make another user the Admin, then ask that user to remove you from the " -"Course Team list." -msgstr "" - -#: cms/templates/manage_users_lib.html -msgid "Library User Access" -msgstr "" - -#: cms/templates/manage_users_lib.html cms/templates/widgets/header.html -msgid "User Access" -msgstr "" - -#: cms/templates/manage_users_lib.html -msgid "Grant Access to This Library" -msgstr "" - -#: cms/templates/manage_users_lib.html -msgid "Provide the email address of the user you want to add" -msgstr "" - -#: cms/templates/manage_users_lib.html -msgid "Add More Users to This Library" -msgstr "" - -#: cms/templates/manage_users_lib.html -msgid "" -"Grant other members of your course team access to this library. New library " -"users must have an active {studio_name} account." -msgstr "" - -#: cms/templates/manage_users_lib.html -msgid "Add a New User" -msgstr "" - -#: cms/templates/manage_users_lib.html -msgid "Library Access Roles" -msgstr "" - -#: cms/templates/manage_users_lib.html -msgid "There are three access roles for libraries: User, Staff, and Admin." -msgstr "" - -#: cms/templates/manage_users_lib.html -msgid "" -"Library Users can view library content and can reference or use library " -"components in their courses, but they cannot edit the contents of a library." -msgstr "" - -#: cms/templates/manage_users_lib.html -msgid "" -"Library Staff are content co-authors. They have full editing privileges on " -"the contents of a library." -msgstr "" - -#: cms/templates/manage_users_lib.html -msgid "" -"Library Admins have full editing privileges and can also add and remove " -"other team members. There must be at least one user with the Admin role in a" -" library." -msgstr "" - -#: cms/templates/register.html cms/templates/widgets/header.html -msgid "Sign Up" -msgstr "" - -#: cms/templates/register.html -msgid "Sign Up for {studio_name}" -msgstr "" - -#: cms/templates/register.html -msgid "Already have a {studio_name} Account? Sign in" -msgstr "" - -#: cms/templates/register.html -msgid "" -"Ready to start creating online courses? Sign up below and start creating " -"your first {platform_name} course today." -msgstr "" - -#: cms/templates/register.html -msgid "Required Information to Sign Up for {studio_name}" -msgstr "" - -#: cms/templates/register.html -msgid "" -"This will be used in public discussions with your courses and in our edX101 " -"support forums" -msgstr "" - -#: cms/templates/register.html -msgid "Your Location" -msgstr "" - -#: cms/templates/register.html -msgid "Preferred Language" -msgstr "" - -#: cms/templates/register.html -msgid "I agree to the {a_start} Terms of Service {a_end}" -msgstr "" - -#: cms/templates/register.html -msgid "Create My Account & Start Authoring Courses" -msgstr "" - -#: cms/templates/register.html -msgid "Common {studio_name} Questions" -msgstr "" - -#: cms/templates/register.html -msgid "Who is {studio_name} for?" -msgstr "" - -#: cms/templates/register.html -msgid "" -"{studio_name} is for anyone that wants to create online courses that " -"leverage the global {platform_name} platform. Our users are often faculty " -"members, teaching assistants and course staff, and members of instructional " -"technology groups." -msgstr "" - -#: cms/templates/register.html -msgid "" -"How technically savvy do I need to be to create courses in {studio_name}?" -msgstr "" - -#: cms/templates/register.html -msgid "" -"{studio_name} is designed to be easy to use by almost anyone familiar with " -"common web-based authoring environments (Wordpress, Moodle, etc.). No " -"programming knowledge is required, but for some of the more advanced " -"features, a technical background would be helpful. As always, we are here to" -" help, so don't hesitate to dive right in." -msgstr "" - -#: cms/templates/register.html -msgid "I've never authored a course online before. Is there help?" -msgstr "" - -#: cms/templates/register.html -msgid "" -"Absolutely. We have created an online course, edX101, that describes some " -"best practices: from filming video, creating exercises, to the basics of " -"running an online course. Additionally, we're always here to help, just drop" -" us a note." -msgstr "" - -#: cms/templates/settings.html -msgid "Schedule & Details Settings" -msgstr "" - -#: cms/templates/settings.html cms/templates/widgets/header.html -msgid "Schedule & Details" -msgstr "" - -#: cms/templates/settings.html -msgid "Basic Information" -msgstr "" - -#: cms/templates/settings.html -msgid "The nuts and bolts of your course" -msgstr "" - -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html -msgid "This field is disabled: this information cannot be changed." -msgstr "" - -#: cms/templates/settings.html -msgid "Course Summary Page" -msgstr "" - -#: cms/templates/settings.html -msgid "(for student enrollment and access)" -msgstr "" - -#: cms/templates/settings.html -msgid "Enroll in {course_display_name}" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"The course \"{course_display_name}\", provided by {platform_name}, is open " -"for enrollment. Please navigate to this course at {link_for_about_page} to " -"enroll." -msgstr "" - -#: cms/templates/settings.html -msgid "Send a note to students via email" -msgstr "" - -#: cms/templates/settings.html -msgid "Invite your students" -msgstr "" - -#: cms/templates/settings.html -msgid "Promoting Your Course with {platform_name}" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Your course summary page will not be viewable until your course has been " -"announced. To provide content for the page and preview it, follow the " -"instructions provided by your Program Manager." -msgstr "" - -#: cms/templates/settings.html -msgid "Course Credit Requirements" -msgstr "" - -#: cms/templates/settings.html -msgid "Steps required to earn course credit" -msgstr "" - -#: cms/templates/settings.html cms/templates/settings.html -msgid "Minimum Grade" -msgstr "" - -#: cms/templates/settings.html -msgid "Successful Proctored Exam" -msgstr "" - -#: cms/templates/settings.html -msgid "Proctored Exam {number}" -msgstr "" - -#: cms/templates/settings.html -msgid "ID Verification" -msgstr "" - -#: cms/templates/settings.html -msgid "In-Course Reverification {number}" -msgstr "" - -#: cms/templates/settings.html -msgid "Course Pacing" -msgstr "" - -#: cms/templates/settings.html -msgid "Set the pacing for this course" -msgstr "" - -#: cms/templates/settings.html -msgid "Instructor-Paced" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Instructor-paced courses progress at the pace that the course author sets. " -"You can configure release dates for course content and due dates for " -"assignments." -msgstr "" - -#: cms/templates/settings.html -msgid "Self-Paced" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Self-paced courses do not have release dates for course content or due dates" -" for assignments. Learners can complete course material at any time before " -"the course end date." -msgstr "" - -#: cms/templates/settings.html -msgid "Course Schedule" -msgstr "" - -#: cms/templates/settings.html -msgid "Dates that control when your course can be viewed" -msgstr "" - -#: cms/templates/settings.html -msgid "First day the course begins" -msgstr "" - -#: cms/templates/settings.html -msgid "Course Start Time" -msgstr "" - -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html -msgid "(UTC)" -msgstr "" - -#: cms/templates/settings.html -msgid "Last day your course is active" -msgstr "" - -#: cms/templates/settings.html -msgid "Course End Time" -msgstr "" - -#: cms/templates/settings.html -msgid "Certificates Available Date" -msgstr "" - -#: cms/templates/settings.html -msgid "By default, 48 hours after course end date" -msgstr "" - -#: cms/templates/settings.html -msgid "Enrollment Start Date" -msgstr "" - -#: cms/templates/settings.html -msgid "First day students can enroll" -msgstr "" - -#: cms/templates/settings.html -msgid "Enrollment Start Time" -msgstr "" - -#: cms/templates/settings.html -msgid "Enrollment End Date" -msgstr "" - -#: cms/templates/settings.html -msgid "Last day students can enroll." -msgstr "" - -#: cms/templates/settings.html -msgid "Contact your EliteMBA partner manager to update these settings." -msgstr "" - -#: cms/templates/settings.html -msgid "Enrollment End Time" -msgstr "" - -#: cms/templates/settings.html -msgid "Course Details" -msgstr "" - -#: cms/templates/settings.html -msgid "Provide useful information about your course" -msgstr "" - -#: cms/templates/settings.html -msgid "Course Language" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Identify the course language here. This is used to assist users find courses" -" that are taught in a specific language. It is also used to localize the " -"'From:' field in bulk emails." -msgstr "" - -#: cms/templates/settings.html -msgid "Introducing Your Course" -msgstr "" - -#: cms/templates/settings.html -msgid "Information for prospective students" -msgstr "" - -#: cms/templates/settings.html -msgid "Course Title" -msgstr "" - -#: cms/templates/settings.html -msgid "Displayed as title on the course details page. Limit to 50 characters." -msgstr "" - -#: cms/templates/settings.html -msgid "Course Subtitle" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Displayed as subtitle on the course details page. Limit to 150 characters." -msgstr "" - -#: cms/templates/settings.html -msgid "Course Duration" -msgstr "" - -#: cms/templates/settings.html -msgid "Displayed on the course details page. Limit to 50 characters." -msgstr "" - -#: cms/templates/settings.html -msgid "Course Description" -msgstr "" - -#: cms/templates/settings.html -msgid "Displayed on the course details page. Limit to 1000 characters." -msgstr "" - -#: cms/templates/settings.html -msgid "Course Short Description" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Appears on the course catalog page when students roll over the course name. " -"Limit to ~150 characters" -msgstr "" - -#: cms/templates/settings.html -msgid "Course Overview" -msgstr "" - -#: cms/templates/settings.html -msgid "HTML Code Editor" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Introductions, prerequisites, FAQs that are used on {a_link_start}your " -"course summary page{a_link_end} (formatted in HTML)" -msgstr "" - -#: cms/templates/settings.html -msgid "Course About Sidebar HTML" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Custom sidebar content for {a_link_start}your course summary " -"page{a_link_end} (formatted in HTML)" -msgstr "" - -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html -msgid "Course Card Image" -msgstr "" - -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html -msgid "" -"You can manage this image along with all of your other {a_link_start}files " -"and uploads{a_link_end}" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Your course currently does not have an image. Please upload one (JPEG or PNG" -" format, and minimum suggested dimensions are 375px wide by 200px tall)" -msgstr "" - -#. Translators: This is the placeholder text for a field that requests the URL -#. for a course image -#: cms/templates/settings.html -msgid "Your course image URL" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Please provide a valid path and name to your course image (Note: only JPEG " -"or PNG format supported)" -msgstr "" - -#: cms/templates/settings.html -msgid "Upload Course Card Image" -msgstr "" - -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html -msgid "Course Banner Image" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Your course currently does not have an image. Please upload one (JPEG or PNG" -" format, and minimum suggested dimensions are 1440px wide by 400px tall)" -msgstr "" - -#. Translators: This is the placeholder text for a field that requests the URL -#. for a course banner image -#: cms/templates/settings.html -msgid "Your banner image URL" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Please provide a valid path and name to your banner image (Note: only JPEG " -"or PNG format supported)" -msgstr "" - -#: cms/templates/settings.html -msgid "Upload Course Banner Image" -msgstr "" - -#: cms/templates/settings.html -msgid "Course Video Thumbnail Image" -msgstr "" - -#: cms/templates/settings.html cms/templates/settings.html -msgid "Video Thumbnail Image" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Your course currently does not have a video thumbnail image. Please upload " -"one (JPEG or PNG format, and minimum suggested dimensions are 375px wide by " -"200px tall)" -msgstr "" - -#. Translators: This is the placeholder text for a field that requests the URL -#. for a course video thumbnail image -#: cms/templates/settings.html -msgid "Your video thumbnail image URL" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Please provide a valid path and name to your video thumbnail image (Note: " -"only JPEG or PNG format supported)" -msgstr "" - -#: cms/templates/settings.html -msgid "Upload Video Thumbnail Image" -msgstr "" - -#: cms/templates/settings.html cms/templates/settings.html -msgid "Course Introduction Video" -msgstr "" - -#: cms/templates/settings.html -msgid "Delete Current Video" -msgstr "" - -#. Translators: This is the placeholder text for a field that requests a -#. YouTube video ID for a course video -#: cms/templates/settings.html -msgid "your YouTube video's ID" -msgstr "" - -#: cms/templates/settings.html -msgid "Enter your YouTube video's ID (along with any restriction parameters)" -msgstr "" - -#: cms/templates/settings.html -msgid "Learning Outcomes" -msgstr "" - -#: cms/templates/settings.html -msgid "Add the learning outcomes for this course" -msgstr "" - -#: cms/templates/settings.html -msgid "Add Learning Outcome" -msgstr "" - -#: cms/templates/settings.html -msgid "Add details about the instructors for this course" -msgstr "" - -#: cms/templates/settings.html -msgid "Add Instructor" -msgstr "" - -#: cms/templates/settings.html -msgid "Expectations of the students taking this course" -msgstr "" - -#: cms/templates/settings.html -msgid "Hours of Effort per Week" -msgstr "" - -#: cms/templates/settings.html -msgid "Time spent on all course work" -msgstr "" - -#: cms/templates/settings.html -msgid "Prerequisite Course" -msgstr "" - -#: cms/templates/settings.html -msgid "None" -msgstr "" - -#: cms/templates/settings.html -msgid "Course that students must complete before beginning this course" -msgstr "" - -#: cms/templates/settings.html -msgid "set pre-requisite course" -msgstr "" - -#: cms/templates/settings.html -msgid "Entrance Exam" -msgstr "" - -#: cms/templates/settings.html -msgid "Require students to pass an exam before beginning the course." -msgstr "" - -#: cms/templates/settings.html -msgid "" -"You can now view and author your course entrance exam from the " -"{link_start}Course Outline{link_end}." -msgstr "" - -#: cms/templates/settings.html -msgid "Grade Requirements" -msgstr "" - -#: cms/templates/settings.html -msgid " %" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"The score student must meet in order to successfully complete the entrance " -"exam. " -msgstr "" - -#: cms/templates/settings.html -msgid "Course Content License" -msgstr "" - -#. Translators: At the course settings, the editor is able to select the -#. default course content license. -#. The course content will have this license set, some assets can override the -#. license with their own. -#. In the form, the license selector for course content is described using the -#. following string: -#: cms/templates/settings.html -msgid "Select the default license for course content" -msgstr "" - -#: cms/templates/settings.html -msgid "How are these settings used?" -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Your course's schedule determines when students can enroll in and begin a " -"course." -msgstr "" - -#: cms/templates/settings.html -msgid "" -"Other information from this page appears on the About page for your course. " -"This information includes the course overview, course image, introduction " -"video, and estimated time requirements. Students use About pages to choose " -"new courses to take." -msgstr "" - -#: cms/templates/settings_advanced.html -msgid "Your policy changes have been saved." -msgstr "" - -#: cms/templates/settings_advanced.html -msgid "There was an error saving your information. Please see below." -msgstr "" - -#: cms/templates/settings_advanced.html -msgid "Manual Policy Definition" -msgstr "" - -#: cms/templates/settings_advanced.html -msgid "" -"{strong_start}Warning{strong_end}: Do not modify these policies unless you " -"are familiar with their purpose." -msgstr "" - -#: cms/templates/settings_advanced.html -msgid "Show Deprecated Settings" -msgstr "" - -#: cms/templates/settings_advanced.html -msgid "What do advanced settings do?" -msgstr "" - -#: cms/templates/settings_advanced.html -msgid "" -"Advanced settings control specific course functionality. On this page, you " -"can edit manual policies, which are JSON-based key and value pairs that " -"control specific course settings." -msgstr "" - -#: cms/templates/settings_advanced.html -msgid "" -"Any policies you modify here override all other information you've defined " -"elsewhere in {studio_name}. Do not edit policies unless you are familiar " -"with both their purpose and syntax." -msgstr "" - -#: cms/templates/settings_advanced.html -msgid "" -"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" -" you use double quotation marks (\") around the string. Do not use single " -"quotation marks (')." -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Grading Settings" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Overall Grade Range" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Your overall grading scale for student final grades" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Add grade" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Credit Eligibility" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Settings for course credit eligibility" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Minimum Credit-Eligible Grade:" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Must be greater than or equal to the course passing grade" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Grading Rules & Policies" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Deadlines, requirements, and logistics around grading student work" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Grace Period on Deadline:" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Leeway on due dates" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Assignment Types" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "Categories and labels for any exercises that are gradable" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "New Assignment Type" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "What can I do on this page?" -msgstr "" - -#: cms/templates/settings_graders.html -msgid "" -"You can use the slider under Overall Grade Range to specify whether your " -"course is pass/fail or graded by letter, and to establish the thresholds for" -" each grade." -msgstr "" - -#: cms/templates/settings_graders.html -msgid "" -"You can specify whether your course offers students a grace period for late " -"assignments." -msgstr "" - -#: cms/templates/settings_graders.html -msgid "" -"You can also create assignment types, such as homework, labs, quizzes, and " -"exams, and specify how much of a student's grade each assignment type is " -"worth." -msgstr "" - -#: cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html -msgid "Expand or Collapse" -msgstr "" - -#: cms/templates/studio_xblock_wrapper.html -msgid "Access Settings" -msgstr "" - -#: cms/templates/studio_xblock_wrapper.html -msgid "Set Access" -msgstr "" - -#: cms/templates/studio_xblock_wrapper.html -msgid "This block contains multiple components." -msgstr "" - -#: cms/templates/textbooks.html cms/templates/textbooks.html -#: cms/templates/widgets/header.html -msgid "Textbooks" -msgstr "" - -#: cms/templates/textbooks.html -msgid "New Textbook" -msgstr "" - -#: cms/templates/textbooks.html -msgid "Why should I break my textbook into chapters?" -msgstr "" - -#: cms/templates/textbooks.html -msgid "" -"Breaking your textbook into multiple chapters reduces loading times for " -"students, especially those with slow Internet connections. Breaking up " -"textbooks into chapters can also help students more easily find topic-based " -"information." -msgstr "" - -#: cms/templates/textbooks.html -msgid "What if my book isn't divided into chapters?" -msgstr "" - -#: cms/templates/textbooks.html -msgid "" -"If your textbook doesn't have individual chapters, you can upload the entire" -" text as a single chapter and enter a name of your choice in the Chapter " -"Name field." -msgstr "" - -#: cms/templates/textbooks.html -msgid "Learn more about textbooks" -msgstr "" - -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html -msgid "Video Uploads" -msgstr "" - -#: cms/templates/videos_index.html -msgid "Course Video Settings" -msgstr "" - -#: cms/templates/videos_index_pagination.html -msgid "Changing.." -msgstr "" - -#: cms/templates/videos_index_pagination.html -msgid "Videos per page:" -msgstr "" - -#: cms/templates/visibility_editor.html cms/templates/visibility_editor.html -msgid "Access is not restricted" -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "" -"Access to this unit is not restricted, but visibility might be affected by " -"inherited settings." -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "" -"Access to this component is not restricted, but visibility might be affected" -" by inherited settings." -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "" -"You can restrict access to this unit to learners in specific enrollment " -"tracks or content groups." -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "" -"You can restrict access to this component to learners in specific enrollment" -" tracks or content groups." -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "" -"You can restrict access to this unit to learners in specific content groups." -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "" -"You can restrict access to this component to learners in specific content " -"groups." -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "Manage content groups" -msgstr "" - -#. Translators: Any text between {screen_reader_start} and {screen_reader_end} -#. is only read by screen readers and never shown in the browser. -#: cms/templates/visibility_editor.html -msgid "" -"{screen_reader_start}Warning:{screen_reader_end} The unit that contains this" -" component is hidden from learners. The unit setting overrides the component" -" access settings defined here." -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "Access is restricted to:" -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "Restrict access to:" -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "Select a group type" -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "All Learners and Staff" -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "Select one or more groups:" -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "Deleted Group" -msgstr "" - -#: cms/templates/visibility_editor.html -msgid "" -"This group no longer exists. Choose another group or remove the access " -"restriction." -msgstr "" - -#: cms/templates/emails/activation_email.txt -msgid "" -"Thank you for signing up for {studio_name}! To activate your account, please" -" copy and paste this address into your web browser's address bar:" -msgstr "" - -#: cms/templates/emails/activation_email.txt -msgid "" -"If you didn't request this, you don't need to do anything; you won't receive" -" any more email from us. Please do not reply to this e-mail; if you require " -"assistance, check the help section of the {studio_name} web site." -msgstr "" - -#: cms/templates/emails/activation_email_subject.txt -msgid "Your account for {studio_name}" -msgstr "" - -#: cms/templates/emails/course_creator_admin_subject.txt -msgid "{email} has requested {studio_name} course creator privileges on edge" -msgstr "" - -#: cms/templates/emails/course_creator_admin_user_pending.txt -msgid "" -"User '{user}' with e-mail {email} has requested {studio_name} course creator" -" privileges on edge." -msgstr "" - -#: cms/templates/emails/course_creator_admin_user_pending.txt -msgid "To grant or deny this request, use the course creator admin table." -msgstr "" - -#: cms/templates/emails/course_creator_denied.txt -msgid "" -"Your request for course creation rights to {studio_name} have been denied. " -"If you believe this was in error, please contact {email}" -msgstr "" - -#: cms/templates/emails/course_creator_granted.txt -msgid "" -"Your request for course creation rights to {studio_name} have been granted. To create your first course, visit\n" -"\n" -"{url}" -msgstr "" - -#: cms/templates/emails/course_creator_revoked.txt -msgid "" -"Your course creation rights to {studio_name} have been revoked. If you " -"believe this was in error, please contact {email}" -msgstr "" - -#: cms/templates/emails/course_creator_subject.txt -msgid "Your course creator status for {studio_name}" -msgstr "" - -#: cms/templates/emails/user_task_complete_email.txt -msgid "" -"Your {task_name} task has completed with the status '{task_status}'. Use " -"this URL to view task details or download any files created: {detail_url}" -msgstr "" - -#: cms/templates/emails/user_task_complete_email.txt -msgid "" -"Your {task_name} task has completed with the status '{task_status}'. Sign in" -" to view the details of your task or download any files created." -msgstr "" - -#: cms/templates/emails/user_task_complete_email_subject.txt -msgid "{platform_name} {studio_name}: Task Status Update" -msgstr "" - -#: cms/templates/maintenance/_force_publish_course.html -msgid "Required data to force publish course." -msgstr "" - -#: cms/templates/maintenance/_force_publish_course.html -msgid "course-v1:edX+DemoX+Demo_Course" -msgstr "" - -#: cms/templates/maintenance/_force_publish_course.html -msgid "Force Publish Course" -msgstr "" - -#: cms/templates/maintenance/_force_publish_course.html -msgid "Reset values" -msgstr "" - -#: cms/templates/maintenance/base.html cms/templates/maintenance/index.html -msgid "Maintenance Dashboard" -msgstr "" - -#: cms/templates/registration/activation_complete.html -msgid "Thanks for activating your account." -msgstr "" - -#: cms/templates/registration/activation_complete.html -msgid "This account has already been activated." -msgstr "" - -#: cms/templates/registration/activation_complete.html -msgid "Visit your {link_start}dashboard{link_end} to see your courses." -msgstr "" - -#: cms/templates/registration/activation_complete.html -msgid "You can now {link_start}sign in{link_end}." -msgstr "" - -#: cms/templates/registration/activation_invalid.html -msgid "Activation Invalid" -msgstr "" - -#: cms/templates/registration/activation_invalid.html -msgid "" -"Something went wrong. Email programs sometimes split URLs into two lines, so" -" make sure the URL you're using is formatted correctly. If you still have " -"issues, send us an email message at {email_start}{email}{email_end}." -msgstr "" - -#: cms/templates/registration/activation_invalid.html -msgid "Return to the {link_start}home page{link_end}." -msgstr "" - -#: cms/templates/registration/reg_complete.html -msgid "" -"We've sent an email message to {email} with instructions for activating your" -" account." -msgstr "" - -#: cms/templates/widgets/footer.html -msgid "Policies" -msgstr "" - -#: cms/templates/widgets/footer.html -msgid "Accessibility Accommodation Request" -msgstr "" - -#: cms/templates/widgets/footer.html -msgid "LMS" -msgstr "" - -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" - -#: cms/templates/widgets/header.html -msgid "Current Course:" -msgstr "" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -msgid "Course Navigation" -msgstr "" - -#: cms/templates/widgets/header.html -msgid "Outline" -msgstr "" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -msgid "Import" -msgstr "" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -msgid "Export" -msgstr "" - -#: cms/templates/widgets/header.html -msgid "Current Library:" -msgstr "" - -#: cms/templates/widgets/header.html -msgid "Library" -msgstr "" - -#: cms/templates/widgets/header.html -msgid "Language preference" -msgstr "" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -msgid "Account Navigation" -msgstr "" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -msgid "Contextual Online Help" -msgstr "" - -#: cms/templates/widgets/metadata-edit.html -msgid "Launch Latex Source Compiler" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Heading" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Insert a heading" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Multiple Choice" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Add a multiple choice question" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Checkboxes" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Add a question with checkboxes" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Text Input" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Insert a text response" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Numerical Input" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Insert a numerical response" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Dropdown" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Insert a dropdown response" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Explanation" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Add an explanation for this question" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -msgid "Advanced Editor" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -msgid "Toggle Cheatsheet" -msgstr "" - -#: cms/templates/widgets/problem-edit.html -msgid "Label" -msgstr "" - -#: cms/templates/widgets/sock_links.html -msgid "Access the Open edX Portal" -msgstr "" - -#: cms/templates/widgets/sock_links.html -msgid "Open edX Portal" -msgstr "" - -#: cms/templates/widgets/user_dropdown.html -#: cms/templates/widgets/user_dropdown.html -msgid "Currently signed in as:" -msgstr "" - -#: cms/templates/widgets/user_dropdown.html -msgid "Maintenance" -msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/mako.po b/conf/locale/en/LC_MESSAGES/mako.po deleted file mode 100644 index e6c595a64782..000000000000 --- a/conf/locale/en/LC_MESSAGES/mako.po +++ /dev/null @@ -1,10614 +0,0 @@ -# edX translation file -# Copyright (C) 2019 edX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:52+0000\n" -"PO-Revision-Date: 2019-05-16 10:53:15.683511\n" -"Last-Translator: \n" -"Language-Team: openedx-translation \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" - -#: cms/templates/404.html cms/templates/error.html -#: lms/templates/static_templates/404.html -msgid "Page Not Found" -msgstr "" - -#: cms/templates/404.html lms/templates/static_templates/404.html -msgid "Page not found" -msgstr "" - -#: cms/templates/asset_index.html cms/templates/course_info.html -#: cms/templates/course_outline.html cms/templates/edit-tabs.html -#: cms/templates/textbooks.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html lms/templates/static_htmlbook.html -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html -msgid "Content" -msgstr "" - -#: cms/templates/base.html lms/templates/main.html -msgid "Skip to main content" -msgstr "" - -#: cms/templates/certificates.html -#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html -msgid "Course Certificates" -msgstr "" - -#: cms/templates/certificates.html cms/templates/group_configurations.html -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: cms/templates/certificates.html cms/templates/container.html -#: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -#: lms/templates/courseware/courses.html lms/templates/edxnotes/edxnotes.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html -msgid "Loading" -msgstr "" - -#: cms/templates/component.html cms/templates/container.html -#: cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Edit" -msgstr "" - -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/certificates/verify.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/support/feature_based_enrollments.html -msgid "Course Name" -msgstr "" - -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/settings.html lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Course Number" -msgstr "" - -#: cms/templates/course_outline.html cms/templates/course_outline.html -#: cms/templates/course_outline.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Course Outline" -msgstr "" - -#: cms/templates/course_outline.html cms/templates/index.html -#: openedx/features/course_experience/templates/course_experience/latest-update-fragment.html -#: openedx/features/course_experience/templates/course_experience/welcome-message-fragment.html -msgid "Dismiss" -msgstr "" - -#: cms/templates/course_outline.html lms/templates/seq_module.html -#: lms/templates/ccx/schedule.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Section" -msgstr "" - -#: cms/templates/group_configurations.html -#: cms/templates/group_configurations.html -#: cms/templates/group_configurations.html -#: lms/templates/courseware/program_marketing.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -#: themes/normal-theme/lms/templates/footer.html -msgid "Learn More" -msgstr "" - -#: cms/templates/html_error.html lms/templates/module-error.html -msgid "Error:" -msgstr "" - -#: cms/templates/index.html cms/templates/videos_index_pagination.html -#: lms/templates/help_modal.html lms/templates/manage_user_standing.html -#: lms/templates/register-shib.html -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -#: lms/templates/peer_grading/peer_grading_problem.html -#: lms/templates/survey/survey.html -#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html -#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Submit" -msgstr "" - -#: cms/templates/index.html cms/templates/index.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Organization:" -msgstr "" - -#: cms/templates/index.html cms/templates/index.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Course Number:" -msgstr "" - -#: cms/templates/index.html cms/templates/index.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Course Run:" -msgstr "" - -#: cms/templates/index.html lms/templates/sysadmin_dashboard.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/courseware/courses.html -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Courses" -msgstr "" - -#: cms/templates/login.html cms/templates/register.html -#: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-form.html lms/templates/register-form.html -#: lms/templates/register-shib.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "E-mail" -msgstr "" - -#. Translators: This is the placeholder text for a field that requests an -#. email -#. address. -#: cms/templates/login.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html cms/templates/register.html -#: lms/templates/login.html lms/templates/register-form.html -#: lms/templates/register-form.html lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "example: username@domain.com" -msgstr "" - -#: cms/templates/login.html cms/templates/register.html -#: lms/templates/login.html lms/templates/provider_login.html -#: lms/templates/provider_login.html lms/templates/register-form.html -#: lms/templates/register-form.html lms/templates/signup_modal.html -#: lms/templates/sysadmin_dashboard.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Password" -msgstr "" - -#: cms/templates/login.html lms/templates/login.html -msgid "Forgot password?" -msgstr "" - -#: cms/templates/register.html lms/templates/register-form.html -#: lms/templates/register-form.html lms/templates/register-shib.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Full Name" -msgstr "" - -#. Translators: This is the placeholder text for a field that requests the -#. user's full name. -#: cms/templates/register.html lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "example: Jane Doe" -msgstr "" - -#: cms/templates/register.html lms/templates/register-form.html -#: lms/templates/register-shib.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Public Username" -msgstr "" - -#. Translators: This is the placeholder text for a field that asks the user to -#. pick a username -#: cms/templates/register.html lms/templates/register-form.html -#: lms/templates/register-form.html lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "example: JaneDoe" -msgstr "" - -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course Start Date" -msgstr "" - -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "" - -#: cms/templates/settings.html lms/templates/courseware/program_marketing.html -msgid "Instructors" -msgstr "" - -#: cms/templates/settings.html lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Requirements" -msgstr "" - -#: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Details" -msgstr "" - -#. Translators: this is a verb describing the action of viewing more details -#: cms/templates/studio_xblock_wrapper.html -#: lms/templates/wiki/includes/article_menu.html -msgid "View" -msgstr "" - -#: cms/templates/videos_index_pagination.html -#: lms/templates/student_account/account_settings.html -msgid "Change" -msgstr "" - -#: cms/templates/maintenance/_force_publish_course.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -#: lms/templates/support/feature_based_enrollments.html -msgid "Course ID" -msgstr "" - -#: cms/templates/maintenance/_force_publish_course.html -#: lms/templates/problem.html lms/templates/shoppingcart/shopping_cart.html -#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html -#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html -msgid "Reset" -msgstr "" - -#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/tos.html -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Terms of Service" -msgstr "" - -#: cms/templates/widgets/footer.html -#: lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy_policy.html -#: lms/templates/static_templates/privacy_policy.html -#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Privacy Policy" -msgstr "" - -#: cms/templates/widgets/footer.html lms/templates/footer.html -#: lms/templates/footer.html -msgid "Legal" -msgstr "" - -#: cms/templates/widgets/footer.html cms/templates/widgets/footer.html -#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html -msgid "Powered by Open edX" -msgstr "" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html -#: lms/templates/courseware/course_navigation.html -#: lms/templates/courseware/courseware.html -#: lms/templates/courseware/courseware.html -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -msgid "Course" -msgstr "" - -#: cms/templates/widgets/header.html -#: lms/templates/api_admin/terms_of_service.html -#: openedx/features/course_experience/templates/course_experience/course-updates-fragment.html -#: openedx/features/course_experience/templates/course_experience/course-updates-fragment.html -msgid "Updates" -msgstr "" - -#: cms/templates/widgets/header.html lms/templates/header/header.html -#: lms/templates/navigation/navigation.html -#: lms/templates/widgets/footer-language-selector.html -msgid "Choose Language" -msgstr "" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/user_dropdown.html lms/templates/user_dropdown.html -#: lms/templates/user_dropdown.html lms/templates/header/user_dropdown.html -msgid "Account" -msgstr "" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: lms/templates/static_templates/help.html -#: lms/templates/static_templates/help.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Help" -msgstr "" - -#: cms/templates/widgets/sock.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Looking for help with {studio_name}?" -msgstr "" - -#: cms/templates/widgets/sock.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Hide {studio_name} Help" -msgstr "" - -#: cms/templates/widgets/sock.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "{studio_name} Documentation" -msgstr "" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Access documentation on http://docs.edx.org" -msgstr "" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "edX Documentation" -msgstr "" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Enroll in edX101: Overview of Creating an edX Course" -msgstr "" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Enroll in edX101" -msgstr "" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Enroll in StudioX: Creating a Course with edX Studio" -msgstr "" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Enroll in StudioX" -msgstr "" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Send an email to {email}" -msgstr "" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/contact.html -#: themes/stanford-style/lms/templates/static_templates/about.html -msgid "Contact Us" -msgstr "" - -#: cms/templates/widgets/tabs-aggregator.html -#: lms/templates/courseware/static_tab.html -#: lms/templates/courseware/tab-view-v2.html -#: lms/templates/courseware/tab-view.html -msgid "name" -msgstr "" - -#: cms/templates/widgets/user_dropdown.html -#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html -#: lms/templates/user_dropdown.html lms/templates/user_dropdown.html -msgid "Usermenu" -msgstr "" - -#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html -msgid "Usermenu dropdown" -msgstr "" - -#: cms/templates/widgets/user_dropdown.html -#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html -#: lms/templates/user_dropdown.html lms/templates/user_dropdown.html -#: lms/templates/user_dropdown.html lms/templates/header/user_dropdown.html -msgid "Sign Out" -msgstr "" - -#: common/lib/capa/capa/templates/codeinput.html -msgid "Code Editor" -msgstr "" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Feedback Form" -msgstr "" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Email: {email}" -msgstr "" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Full Name: {realname}" -msgstr "" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Inquiry Type: {inquiry_type}" -msgstr "" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Message: {message}" -msgstr "" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Tags: {tags}" -msgstr "" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Additional Info:" -msgstr "" - -#: common/templates/emails/contact_us_feedback_email_subject.txt -msgid "Feedback from user" -msgstr "" - -#: common/templates/emails/sync_learner_profile_data_email_change_body.txt -msgid "" -"The email associated with your {platform_name} account has changed from " -"{old_email} to {new_email}." -msgstr "" - -#: common/templates/emails/sync_learner_profile_data_email_change_body.txt -msgid "No action is needed on your part." -msgstr "" - -#: common/templates/emails/sync_learner_profile_data_email_change_body.txt -msgid "" -"If this change is not correct, contact {link_start}{platform_name} " -"Support{link_end} or your administrator." -msgstr "" - -#: common/templates/emails/sync_learner_profile_data_email_change_subject.txt -msgid "Your {platform_name} account email has been updated" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html -msgid "Discussions" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html -msgid "Add a Post" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html -msgid "New topic form" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html -msgid "Discussion thread list" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -msgid "Discussion" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html -#: lms/templates/discussion/_user_profile.html -#, python-format -msgid "%s discussion started" -msgid_plural "%s discussions started" -msgstr[0] "" -msgstr[1] "" - -#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html -#: lms/templates/discussion/_user_profile.html -#, python-format -msgid "%s comment" -msgid_plural "%s comments" -msgstr[0] "" -msgstr[1] "" - -#: lms/djangoapps/discussion/templates/discussion/maintenance_fragment.html -msgid "Discussion unavailable" -msgstr "" - -#: lms/djangoapps/discussion/templates/discussion/maintenance_fragment.html -msgid "" -"The discussions are currently undergoing maintenance. We'll have them back " -"up shortly!" -msgstr "" - -#: lms/djangoapps/teams/templates/teams/teams.html -msgid "Teams" -msgstr "" - -#: lms/templates/_gated_content.html lms/templates/_gated_content.html -#: lms/templates/seq_module.html -msgid "Content Locked" -msgstr "" - -#: lms/templates/_gated_content.html -msgid "" -"You must complete the prerequisites for '{prereq_section_name}' to access " -"this content." -msgstr "" - -#: lms/templates/_gated_content.html -msgid "Go to Prerequisite Section" -msgstr "" - -#: lms/templates/annotatable.html lms/templates/peer_grading/peer_grading.html -msgid "Instructions" -msgstr "" - -#: lms/templates/annotatable.html -msgid "Collapse Instructions" -msgstr "" - -#: lms/templates/annotatable.html -msgid "Guided Discussion" -msgstr "" - -#: lms/templates/annotatable.html -msgid "Hide Annotations" -msgstr "" - -#: lms/templates/bookmark_button.html lms/templates/seq_module.html -msgid "Bookmarked" -msgstr "" - -#: lms/templates/bookmark_button.html -msgid "Bookmark this page" -msgstr "" - -#: lms/templates/conditional_module.html -msgid "You do not have access to this dependency module." -msgstr "" - -#: lms/templates/course.html -#: openedx/features/journals/templates/journals/bundle_card.html -#: openedx/features/journals/templates/journals/journal_card.html -msgid "LEARN MORE" -msgstr "" - -#: lms/templates/course.html -msgid "Starts: {date}" -msgstr "" - -#: lms/templates/course.html lms/templates/course.html -msgid "Starts" -msgstr "" - -#: lms/templates/courses_list.html -msgid "View all Courses" -msgstr "" - -#: lms/templates/dashboard.html lms/templates/user_dropdown.html -#: lms/templates/user_dropdown.html lms/templates/user_dropdown.html -#: lms/templates/header/user_dropdown.html -#: themes/edx.org/lms/templates/dashboard.html -msgid "Dashboard" -msgstr "" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "You are not enrolled in any courses yet." -msgstr "" - -#: lms/templates/dashboard.html -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: themes/edx.org/lms/templates/dashboard.html -msgid "Explore courses" -msgstr "" - -#: lms/templates/dashboard.html -#: lms/templates/registration/account_activation_sidebar_notice.html -msgid "Activate your account!" -msgstr "" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Course-loading errors" -msgstr "" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Search Your Courses" -msgstr "" - -#: lms/templates/dashboard.html lms/templates/index.html -#: lms/templates/api_admin/catalogs/search.html -#: lms/templates/courseware/courses.html -#: lms/templates/courseware/courseware.html -#: lms/templates/edxnotes/edxnotes.html -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -#: openedx/features/course_search/templates/course_search/course-search-fragment.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/stanford-style/lms/templates/index.html -msgid "Search" -msgstr "" - -#: lms/templates/dashboard.html lms/templates/courseware/courseware.html -#: themes/edx.org/lms/templates/dashboard.html -msgid "Clear search" -msgstr "" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Account Status Info" -msgstr "" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Order History" -msgstr "" - -#: lms/templates/dashboard.html -msgid "VIP Expiry Date" -msgstr "" - -#: lms/templates/dashboard.html -msgid "Subscription will soon be overdue. Please recharge in time." -msgstr "" - -#: lms/templates/dashboard.html -msgid "" -"Sorry, your EliteMBA VIP has expired. In order not to disrupt your learning " -"schedule, please recharge in time." -msgstr "" - -#: lms/templates/dashboard.html -msgid "Renew VIP" -msgstr "" - -#. Translators: this is a control to allow users to exit out of this modal -#. interface (a menu or piece of UI that takes the full focus of the screen) -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html -#: lms/templates/signup_modal.html lms/templates/ccx/schedule.html -#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -#: lms/templates/modal/_modal-settings-language.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -msgid "Close" -msgstr "" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Email Settings for {course_number}" -msgstr "" - -#. Translators: this text gives status on if the modal interface (a menu or -#. piece of UI that takes the full focus of the screen) is open or not -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -#: lms/templates/modal/_modal-settings-language.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -msgid "window open" -msgstr "" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Receive course emails" -msgstr "" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Save Settings" -msgstr "" - -#: lms/templates/dashboard.html lms/templates/ccx/enrollment.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_entitlement_actions.html -#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -msgid "Unenroll" -msgstr "" - -#: lms/templates/edit_unit_link.html -msgid "View Unit in Studio" -msgstr "" - -#: lms/templates/email_change_failed.html lms/templates/email_exists.html -msgid "E-mail change failed" -msgstr "" - -#: lms/templates/email_change_failed.html -msgid "We were unable to send a confirmation email to {email}" -msgstr "" - -#: lms/templates/email_change_failed.html lms/templates/email_exists.html -#: lms/templates/invalid_email_key.html -#: lms/templates/secondary_email_change_failed.html -msgid "Go back to the {link_start}home page{link_end}." -msgstr "" - -#: lms/templates/email_change_successful.html -msgid "E-mail change successful!" -msgstr "" - -#: lms/templates/email_change_successful.html -msgid "You should see your new email in your {link_start}dashboard{link_end}." -msgstr "" - -#: lms/templates/email_exists.html -msgid "An account with the new e-mail address already exists." -msgstr "" - -#: lms/templates/enroll_staff.html -msgid "You should Register before trying to access the Unit" -msgstr "" - -#: lms/templates/enroll_staff.html lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgctxt "self" -msgid "Enroll" -msgstr "" - -#: lms/templates/enroll_staff.html -msgid "Don't enroll" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "Student Enrollment Form" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "Course: " -msgstr "" - -#: lms/templates/enroll_students.html -msgid "Add new students" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "Existing students:" -msgstr "" - -#: lms/templates/enroll_students.html -msgid "New students added: " -msgstr "" - -#: lms/templates/enroll_students.html -msgid "Students rejected: " -msgstr "" - -#: lms/templates/enroll_students.html -msgid "Debug: " -msgstr "" - -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html -msgid "External Authentication failed" -msgstr "" - -#: lms/templates/footer.html lms/templates/footer.html -#: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/about.html -#: themes/stanford-style/lms/templates/static_templates/about.html -#: themes/stanford-style/lms/templates/static_templates/about.html -msgid "About" -msgstr "" - -#: lms/templates/forgot_password_modal.html -#: lms/templates/forgot_password_modal.html -msgid "Password Reset" -msgstr "" - -#: lms/templates/forgot_password_modal.html -msgid "" -"Please enter your e-mail address below, and we will e-mail instructions for " -"setting a new password." -msgstr "" - -#: lms/templates/forgot_password_modal.html lms/templates/login.html -#: lms/templates/register-form.html lms/templates/register-shib.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Required Information" -msgstr "" - -#: lms/templates/forgot_password_modal.html -msgid "Your E-mail Address" -msgstr "" - -#: lms/templates/forgot_password_modal.html lms/templates/login.html -msgid "This is the e-mail address you used to register with {platform}" -msgstr "" - -#: lms/templates/forgot_password_modal.html -msgid "Reset My Password" -msgstr "" - -#: lms/templates/forgot_password_modal.html -msgid "Email is incorrect." -msgstr "" - -#: lms/templates/help_modal.html -msgid "Support" -msgstr "" - -#: lms/templates/help_modal.html -msgid "{platform_name} Support" -msgstr "" - -#: lms/templates/help_modal.html -msgid "" -"For {strong_start}questions on course lectures, homework, tools, or " -"materials for this course{strong_end}, post in the {link_start}course " -"discussion forum{link_end}." -msgstr "" - -#: lms/templates/help_modal.html -msgid "" -"Have {strong_start}general questions about {platform_name}{strong_end}? You " -"can find lots of helpful information in the {platform_name} " -"{link_start}FAQ{link_end}." -msgstr "" - -#: lms/templates/help_modal.html -msgid "" -"Have a {strong_start}question about something specific{strong_end}? You can " -"contact the {platform_name} general support team directly:" -msgstr "" - -#: lms/templates/help_modal.html -msgid "Report a problem" -msgstr "" - -#: lms/templates/help_modal.html -msgid "Make a suggestion" -msgstr "" - -#: lms/templates/help_modal.html -msgid "Ask a question" -msgstr "" - -#: lms/templates/help_modal.html -msgid "" -"Please note: The {platform_name} support team is English speaking. While we " -"will do our best to address your inquiry in any language, our responses will" -" be in English." -msgstr "" - -#: lms/templates/help_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/receipt.html -msgid "Name" -msgstr "" - -#: lms/templates/help_modal.html -msgid "Briefly describe your issue" -msgstr "" - -#: lms/templates/help_modal.html -msgid "Tell us the details" -msgstr "" - -#: lms/templates/help_modal.html -msgid "" -"Describe what you were doing when you encountered the issue. Include any " -"details that will help us to troubleshoot, including error messages that you" -" saw." -msgstr "" - -#: lms/templates/help_modal.html -msgid "Thank You!" -msgstr "" - -#: lms/templates/help_modal.html -msgid "" -"Thank you for your inquiry or feedback. We typically respond to a request " -"within one business day, Monday to Friday. In the meantime, please review " -"our {link_start}detailed FAQs{link_end} where most questions have already " -"been answered." -msgstr "" - -#: lms/templates/help_modal.html -msgid "- Select -" -msgstr "" - -#: lms/templates/help_modal.html -msgid "problem" -msgstr "" - -#: lms/templates/help_modal.html -msgid "Report a Problem" -msgstr "" - -#: lms/templates/help_modal.html -msgid "Brief description of the problem" -msgstr "" - -#: lms/templates/help_modal.html -msgid "Details of the problem you are encountering{asterisk}" -msgstr "" - -#: lms/templates/help_modal.html -msgid "suggestion" -msgstr "" - -#: lms/templates/help_modal.html -msgid "Make a Suggestion" -msgstr "" - -#: lms/templates/help_modal.html -msgid "Brief description of your suggestion" -msgstr "" - -#: lms/templates/help_modal.html -msgid "question" -msgstr "" - -#: lms/templates/help_modal.html -msgid "Ask a Question" -msgstr "" - -#: lms/templates/help_modal.html -msgid "Brief summary of your question" -msgstr "" - -#: lms/templates/help_modal.html -msgid "An error has occurred." -msgstr "" - -#: lms/templates/help_modal.html -msgid "Please {link_start}send us e-mail{link_end}." -msgstr "" - -#: lms/templates/help_modal.html -msgid "Please try again later." -msgstr "" - -#: lms/templates/hidden_content.html -msgid "The course has ended." -msgstr "" - -#: lms/templates/hidden_content.html -msgid "The due date for this assignment has passed." -msgstr "" - -#: lms/templates/hidden_content.html -msgid "" -"Because the course has ended, this assignment is no longer " -"available.{line_break}If you have completed this assignment, your grade is " -"available on the {link_start}progress page{link_end}." -msgstr "" - -#: lms/templates/hidden_content.html -msgid "" -"Because the due date has passed, this assignment is no longer " -"available.{line_break}If you have completed this assignment, your grade is " -"available on the {link_start}progress page{link_end}." -msgstr "" - -#: lms/templates/index.html lms/templates/courseware/courses.html -msgid "List of Courses" -msgstr "" - -#: lms/templates/index.html lms/templates/index.html -#: lms/templates/courseware/courses.html lms/templates/courseware/courses.html -#: themes/stanford-style/lms/templates/index.html -#: themes/stanford-style/lms/templates/index.html -msgid "Search for a course" -msgstr "" - -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "" - -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." -msgstr "" - -#: lms/templates/invalid_email_key.html -msgid "Invalid email change key" -msgstr "" - -#: lms/templates/invalid_email_key.html -msgid "This e-mail key is not valid. Please check:" -msgstr "" - -#: lms/templates/invalid_email_key.html -msgid "" -"Was this key already used? Check whether the e-mail change has already " -"happened." -msgstr "" - -#: lms/templates/invalid_email_key.html -msgid "Did your e-mail client break the URL into two lines?" -msgstr "" - -#: lms/templates/invalid_email_key.html -msgid "The keys are valid for a limited amount of time. Has the key expired?" -msgstr "" - -#: lms/templates/library-block-author-preview-header.html -msgid "" -"Showing all matching content eligible to be added into {display_name}. Each " -"student will be assigned {max_count} component drawn randomly from this " -"list." -msgid_plural "" -"Showing all matching content eligible to be added into {display_name}. Each " -"student will be assigned {max_count} components drawn randomly from this " -"list." -msgstr[0] "" -msgstr[1] "" - -#: lms/templates/login-sidebar.html -msgid "Helpful Information" -msgstr "" - -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html -msgid "Login via OpenID" -msgstr "" - -#: lms/templates/login-sidebar.html -msgid "" -"You can now start learning with {platform_name} by logging in with your OpenID account." -msgstr "" - -#: lms/templates/login-sidebar.html -msgid "Not Enrolled?" -msgstr "" - -#: lms/templates/login-sidebar.html -msgid "Sign up for {platform_name} today!" -msgstr "" - -#: lms/templates/login-sidebar.html lms/templates/register-sidebar.html -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "Need Help?" -msgstr "" - -#: lms/templates/login-sidebar.html -msgid "Looking for help signing in or with your {platform_name} account?" -msgstr "" - -#: lms/templates/login-sidebar.html -msgid "View our help section for answers to commonly asked questions." -msgstr "" - -#: lms/templates/login.html -msgid "Log into your {platform_name} Account" -msgstr "" - -#: lms/templates/login.html -msgid "Log into My {platform_name} Account" -msgstr "" - -#: lms/templates/login.html -msgid "Access My Courses" -msgstr "" - -#: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Processing your account information" -msgstr "" - -#: lms/templates/login.html -msgid "Please log in" -msgstr "" - -#: lms/templates/login.html -msgid "to access your account and courses" -msgstr "" - -#: lms/templates/login.html -msgid "We're Sorry, {platform_name} accounts are unavailable currently" -msgstr "" - -#: lms/templates/login.html -msgid "We couldn't log you in." -msgstr "" - -#: lms/templates/login.html -msgid "Your email or password is incorrect" -msgstr "" - -#: lms/templates/login.html -msgid "An error occurred when signing you in to {platform_name}." -msgstr "" - -#: lms/templates/login.html -msgid "" -"Please provide the following information to log into your {platform_name} " -"account. Required fields are noted by bold text " -"and an asterisk (*)." -msgstr "" - -#: lms/templates/login.html -msgid "Account Preferences" -msgstr "" - -#: lms/templates/login.html -msgid "Remember me" -msgstr "" - -#. Translators: this is the last choice of a number of choices of how to log -#. in -#. to the site. -#: lms/templates/login.html lms/templates/register-form.html -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "or" -msgstr "" - -#: lms/templates/login.html -msgid "Sign in with {provider_name}" -msgstr "" - -#. Translators: "External resource" means that this learning module is hosted -#. on a platform external to the edX LMS -#: lms/templates/lti.html -msgid "External resource" -msgstr "" - -#. Translators: "points" is the student's achieved score on this LTI unit, and -#. "total_points" is the maximum number of points achievable. -#: lms/templates/lti.html -msgid "{points} / {total_points} points" -msgstr "" - -#. Translators: "total_points" is the maximum number of points achievable on -#. this LTI unit -#: lms/templates/lti.html -msgid "{total_points} points possible" -msgstr "" - -#: lms/templates/lti.html -msgid "View resource in a new window" -msgstr "" - -#: lms/templates/lti.html -msgid "" -"Please provide launch_url. Click \"Edit\", and fill in the required fields." -msgstr "" - -#: lms/templates/lti.html -msgid "Feedback on your work from the grader:" -msgstr "" - -#: lms/templates/lti_form.html -msgid "Press to Launch" -msgstr "" - -#: lms/templates/manage_user_standing.html -msgid "Manage student accounts" -msgstr "" - -#: lms/templates/manage_user_standing.html -msgid "Username:" -msgstr "" - -#: lms/templates/manage_user_standing.html -msgid "Profile:" -msgstr "" - -#: lms/templates/manage_user_standing.html -msgid "Image:" -msgstr "" - -#: lms/templates/manage_user_standing.html -msgid "Name:" -msgstr "" - -#: lms/templates/manage_user_standing.html -msgid "Choose an action:" -msgstr "" - -#: lms/templates/manage_user_standing.html -msgid "View Profile" -msgstr "" - -#: lms/templates/manage_user_standing.html -msgid "Disable Account" -msgstr "" - -#: lms/templates/manage_user_standing.html -msgid "Reenable Account" -msgstr "" - -#: lms/templates/manage_user_standing.html -msgid "Remove Profile Image" -msgstr "" - -#: lms/templates/manage_user_standing.html -msgid "Students whose accounts have been disabled" -msgstr "" - -#: lms/templates/manage_user_standing.html -msgid "(reload your page to refresh)" -msgstr "" - -#: lms/templates/manage_user_standing.html -#: lms/templates/manage_user_standing.html -msgid "working" -msgstr "" - -#: lms/templates/module-error.html -#: lms/templates/courseware/courseware-error.html -msgid "There has been an error on the {platform_name} servers" -msgstr "" - -#: lms/templates/module-error.html -#: lms/templates/courseware/courseware-error.html -#: lms/templates/courseware/error-message.html -msgid "" -"We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to " -"report any problems or downtime." -msgstr "" - -#: lms/templates/module-error.html -msgid "Raw data:" -msgstr "" - -#: lms/templates/notes.html -msgid "My Notes" -msgstr "" - -#: lms/templates/notes.html -msgid "You do not have any notes." -msgstr "" - -#: lms/templates/preview_menu.html -msgid "Course View" -msgstr "" - -#: lms/templates/preview_menu.html -msgid "View this course as:" -msgstr "" - -#: lms/templates/preview_menu.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Staff" -msgstr "" - -#: lms/templates/preview_menu.html -msgid "Learner" -msgstr "" - -#: lms/templates/preview_menu.html -msgid "Specific learner" -msgstr "" - -#: lms/templates/preview_menu.html -msgid "Learner in {content_group}" -msgstr "" - -#: lms/templates/preview_menu.html -msgid "Username or email:" -msgstr "" - -#: lms/templates/preview_menu.html -msgid "Set preview mode" -msgstr "" - -#: lms/templates/preview_menu.html -msgid "You are now viewing the course as {i_start}{user_name}{i_end}." -msgstr "" - -#: lms/templates/problem.html -msgid "You have used {num_used} of {num_total} attempt" -msgid_plural "You have used {num_used} of {num_total} attempts" -msgstr[0] "" -msgstr[1] "" - -#: lms/templates/problem.html -msgid "" -"Some problems have options such as save, reset, hints, or show answer. These" -" options follow the Submit button." -msgstr "" - -#: lms/templates/problem.html -msgid "Hint" -msgstr "" - -#: lms/templates/problem.html lms/templates/problem.html -#: lms/templates/word_cloud.html -msgid "Save" -msgstr "" - -#: lms/templates/problem.html -msgid "Save your answer" -msgstr "" - -#: lms/templates/problem.html -msgid "Reset your answer" -msgstr "" - -#: lms/templates/problem.html -msgid "Show Answer" -msgstr "" - -#: lms/templates/problem.html -msgid "Answers are displayed within the problem" -msgstr "" - -#: lms/templates/problem_notifications.html -msgid "Next Hint" -msgstr "" - -#: lms/templates/problem_notifications.html -#: lms/templates/shoppingcart/shopping_cart_flow.html -msgid "Review" -msgstr "" - -#: lms/templates/provider_login.html -msgid "Log In" -msgstr "" - -#: lms/templates/provider_login.html -msgid "Email or password is incorrect." -msgstr "" - -#: lms/templates/provider_login.html -msgid "" -"Your username, email, and full name will be sent to {destination}, where the" -" collection and use of this information will be governed by their terms of " -"service and privacy policy." -msgstr "" - -#: lms/templates/provider_login.html -#, python-format -msgid "Return To %s" -msgstr "" - -#: lms/templates/register-form.html lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "" -"We're sorry, but this version of your browser is not supported. Try again " -"using a different browser or a newer version of your browser." -msgstr "" - -#: lms/templates/register-form.html lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "The following errors occurred while processing your registration:" -msgstr "" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Sign up with {provider_name}" -msgstr "" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Create your own {platform_name} account below" -msgstr "" - -#: lms/templates/register-form.html lms/templates/register-form.html -#: lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "" -"Required fields are noted by bold text and an " -"asterisk (*)." -msgstr "" - -#. Translators: selected_provider is the name of an external, third-party user -#. authentication service (like Google or LinkedIn). -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "You've successfully signed in with {selected_provider}." -msgstr "" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "" -"We just need a little more information before you start learning with " -"{platform_name}." -msgstr "" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Please complete the following fields to register for an account. " -msgstr "" - -#: lms/templates/register-form.html lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Your legal name, used for any certificates you earn." -msgstr "" - -#: lms/templates/register-form.html lms/templates/register-form.html -#: lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Will be shown in any discussions or forums you participate in" -msgstr "" - -#: lms/templates/register-form.html lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "cannot be changed later" -msgstr "" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Welcome {username}" -msgstr "" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Enter a Public Display Name:" -msgstr "" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Public Display Name" -msgstr "" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Additional Personal Information" -msgstr "" - -#: lms/templates/register-form.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/shoppingcart/receipt.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "City" -msgstr "" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "example: New York" -msgstr "" - -#: lms/templates/register-form.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/shoppingcart/receipt.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Country" -msgstr "" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Highest Level of Education Completed" -msgstr "" - -#: lms/templates/register-form.html lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Gender" -msgstr "" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Year of Birth" -msgstr "" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Mailing Address" -msgstr "" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Please share with us your reasons for registering with {platform_name}" -msgstr "" - -#: lms/templates/register-form.html lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Account Acknowledgements" -msgstr "" - -#: lms/templates/register-form.html lms/templates/register-shib.html -#: lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "I agree to the {link_start}Terms of Service{link_end}" -msgstr "" - -#: lms/templates/register-form.html lms/templates/register-shib.html -#: lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "I agree to the {link_start}Honor Code{link_end}" -msgstr "" - -#: lms/templates/register-form.html -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Register" -msgstr "" - -#: lms/templates/register-form.html lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Create My Account" -msgstr "" - -#: lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Preferences for {platform_name}" -msgstr "" - -#: lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Update my {platform_name} Account" -msgstr "" - -#: lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Welcome {username}! Please set your preferences below" -msgstr "" - -#: lms/templates/register-shib.html lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Enter a public username:" -msgstr "" - -#: lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Update My Account" -msgstr "" - -#: lms/templates/register-sidebar.html -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "Registration Help" -msgstr "" - -#: lms/templates/register-sidebar.html -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "Already registered?" -msgstr "" - -#: lms/templates/register-sidebar.html -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "Log in" -msgstr "" - -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "" - -#: lms/templates/register-sidebar.html -msgid "" -"Registering with {platform_name} gives you access to all of our current and " -"future free courses. Not ready to take a course just yet? Registering puts " -"you on our mailing list - we will update you as courses are added." -msgstr "" - -#: lms/templates/register-sidebar.html -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "Next Steps" -msgstr "" - -#: lms/templates/register-sidebar.html -msgid "" -"As part of joining {platform_name}, you will receive an email message with " -"instructions for activating your account. Don't see the email? Check your " -"spam folder and mark {platform_name} emails as 'not spam'. At " -"{platform_name}, we communicate mostly through email." -msgstr "" - -#: lms/templates/register-sidebar.html -msgid "Need help registering with {platform_name}?" -msgstr "" - -#: lms/templates/register-sidebar.html -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "View our FAQs for answers to commonly asked questions." -msgstr "" - -#: lms/templates/register-sidebar.html -msgid "" -"You can find the answers to most of your questions in our list of FAQs. " -"After you enroll in a course, you can also find answers in the course " -"discussions." -msgstr "" - -#: lms/templates/register.html -msgid "Register for {platform_name}" -msgstr "" - -#: lms/templates/register.html -msgid "Create My {platform_name} Account" -msgstr "" - -#: lms/templates/register.html -msgid "Welcome!" -msgstr "" - -#: lms/templates/register.html -msgid "Register below to create your {platform_name} account" -msgstr "" - -#: lms/templates/resubscribe.html -msgid "Re-subscribe Successful!" -msgstr "" - -#: lms/templates/resubscribe.html -msgid "" -"You have re-enabled forum notification emails from {platform_name}. You may " -"{dashboard_link_start}return to your dashboard{link_end}." -msgstr "" - -#: lms/templates/secondary_email_change_failed.html -msgid "Secondary e-mail change failed" -msgstr "" - -#: lms/templates/secondary_email_change_failed.html -msgid "We were unable to activate your secondary email {secondary_email}" -msgstr "" - -#: lms/templates/secondary_email_change_successful.html -msgid "Secondary e-mail change successful!" -msgstr "" - -#: lms/templates/secondary_email_change_successful.html -msgid "" -"Your secondary email has been activated. Please visit " -"{link_start}dashboard{link_end} for courses." -msgstr "" - -#: lms/templates/seq_module.html -msgid "Important!" -msgstr "" - -#: lms/templates/seq_module.html lms/templates/seq_module.html -msgid "Previous" -msgstr "" - -#: lms/templates/seq_module.html lms/templates/seq_module.html -msgid "Next" -msgstr "" - -#: lms/templates/seq_module.html -msgid "Sequence" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "Sign Up for {platform_name}" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "e.g. yourname@domain.com" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "e.g. yourname (shown on forums)" -msgstr "" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "e.g. Your Name (for certificates)" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "Welcome {name}" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "Ed. Completed" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "Year of birth" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "Mailing address" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "Goals in signing up for {platform_name}" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "Already have an account?" -msgstr "" - -#: lms/templates/signup_modal.html -msgid "Login." -msgstr "" - -#: lms/templates/split_test_author_view.html -msgid "" -"This content experiment uses group configuration " -"'{group_configuration_name}'." -msgstr "" - -#: lms/templates/split_test_author_view.html -msgid "Active Groups" -msgstr "" - -#: lms/templates/split_test_author_view.html -msgid "Inactive Groups" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "Staff Debug Info" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "Submission history" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "{platform_name} Content Quality Assessment" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "Comment" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "comment" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "Tag" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "tag" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "Add comment" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "Staff Debug:" -msgstr "" - -#: lms/templates/staff_problem_info.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Actions" -msgstr "" - -#: lms/templates/staff_problem_info.html -#: lms/templates/api_admin/catalogs/search.html -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Username" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "Score (for override only)" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "Reset Learner's Attempts to Zero" -msgstr "" - -#: lms/templates/staff_problem_info.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Delete Learner's State" -msgstr "" - -#: lms/templates/staff_problem_info.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore Learner's Submission" -msgstr "" - -#: lms/templates/staff_problem_info.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore Only If Score Improves" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "Override Score" -msgstr "" - -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html -msgid "Module Fields" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "XML attributes" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "Submission History Viewer" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "User:" -msgstr "" - -#: lms/templates/staff_problem_info.html -msgid "View History" -msgstr "" - -#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html -#: lms/templates/staticbook.html -msgid "{course_number} Textbook" -msgstr "" - -#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html -#: lms/templates/staticbook.html -msgid "Textbook Navigation" -msgstr "" - -#: lms/templates/staticbook.html lms/templates/courseware/gradebook.html -msgid "Page" -msgstr "" - -#: lms/templates/staticbook.html -msgid "Previous page" -msgstr "" - -#: lms/templates/staticbook.html -msgid "Next page" -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Sysadmin Dashboard" -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Users" -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Staffing and Enrollment" -msgstr "" - -#. Translators: refers to http://git-scm.com/docs/git-log -#: lms/templates/sysadmin_dashboard.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Git Logs" -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -msgid "User Management" -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -msgid "Email or username" -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -msgid "Delete user" -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -msgid "Create user" -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -msgid "Download list of all users (csv file)" -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -msgid "Check and repair external authentication map" -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -msgid "" -"Go to each individual course's Instructor dashboard to manage course " -"enrollment." -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -msgid "Manage course staff and instructors" -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -msgid "Download staff and instructor list (csv file)" -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -msgid "Administer Courses" -msgstr "" - -#. Translators: Repo is short for git repository or source of -#. courseware; see http://git-scm.com/about -#: lms/templates/sysadmin_dashboard.html -msgid "Repo Location" -msgstr "" - -#. Translators: Repo is short for git repository (http://git-scm.com/about) or -#. source of -#. courseware and branch is a specific version within that repository -#: lms/templates/sysadmin_dashboard.html -msgid "Repo Branch (optional)" -msgstr "" - -#. Translators: GitHub is a popular website for hosting code -#: lms/templates/sysadmin_dashboard.html -msgid "Load new course from GitHub" -msgstr "" - -#. Translators: 'dir' is short for 'directory' -#: lms/templates/sysadmin_dashboard.html -msgid "Course ID or dir" -msgstr "" - -#: lms/templates/sysadmin_dashboard.html -msgid "Delete course from site" -msgstr "" - -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "" - -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "previous" -msgstr "" - -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Page {current_page} of {total_pages}" -msgstr "" - -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "next" -msgstr "" - -#. Translators: Git is a version-control system; see http://git-scm.com/about -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Recent git load activity for {course_id}" -msgstr "" - -#: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/ccx/schedule.html -msgid "Error" -msgstr "" - -#: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/ccx/schedule.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Date" -msgstr "" - -#. Translators: Git is a version-control system; see http://git-scm.com/about -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Git Action" -msgstr "" - -#. Translators: git is a version-control system; see http://git-scm.com/about -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "No git import logs have been recorded." -msgstr "" - -#. Translators: git is a version-control system; see http://git-scm.com/about -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "No git import logs have been recorded for this course." -msgstr "" - -#: lms/templates/text-me-the-app.html -msgid "Text Me The App" -msgstr "" - -#: lms/templates/tracking_log.html -msgid "Tracking Log" -msgstr "" - -#: lms/templates/tracking_log.html -msgid "datetime" -msgstr "" - -#: lms/templates/tracking_log.html -msgid "username" -msgstr "" - -#: lms/templates/tracking_log.html -msgid "ipaddr" -msgstr "" - -#: lms/templates/tracking_log.html -msgid "source" -msgstr "" - -#: lms/templates/tracking_log.html -msgid "type" -msgstr "" - -#: lms/templates/unsubscribe.html -msgid "Unsubscribe Successful!" -msgstr "" - -#: lms/templates/unsubscribe.html -msgid "" -"You will no longer receive forum notification emails from {platform_name}. " -"You may {dashboard_link_start}return to your dashboard{link_end}. If you did" -" not mean to do this, {undo_link_start}you can re-subscribe{link_end}." -msgstr "" - -#: lms/templates/user_dropdown.html lms/templates/user_dropdown.html -#: lms/templates/user_dropdown.html lms/templates/header/user_dropdown.html -msgid "Dashboard for:" -msgstr "" - -#: lms/templates/user_dropdown.html -msgid "More options" -msgstr "" - -#: lms/templates/user_dropdown.html lms/templates/header/header.html -#: lms/templates/header/user_dropdown.html -msgid "More Options" -msgstr "" - -#: lms/templates/using.html -msgid "Using the system" -msgstr "" - -#: lms/templates/using.html -msgid "" -"During video playback, use the subtitles and the scroll bar to navigate. " -"Clicking the subtitles is a fast way to skip forwards and backwards by small" -" amounts." -msgstr "" - -#: lms/templates/using.html -msgid "" -"If you are on a low-resolution display, the left navigation bar can be " -"hidden by clicking on the set of three left arrows next to it." -msgstr "" - -#: lms/templates/using.html -msgid "" -"If you need bigger or smaller fonts, use your browsers settings to scale " -"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" -" ctrl-minus at the same time." -msgstr "" - -#: lms/templates/video.html -msgid "Loading video player" -msgstr "" - -#: lms/templates/video.html -msgid "Play video" -msgstr "" - -#: lms/templates/video.html -msgid "No playable video sources found." -msgstr "" - -#: lms/templates/video.html -msgid "" -"Your browser does not support this video format. Try using a different " -"browser." -msgstr "" - -#: lms/templates/video.html -msgid "Downloads and transcripts" -msgstr "" - -#: lms/templates/video.html -msgid "Video" -msgstr "" - -#: lms/templates/video.html -msgid "Download video file" -msgstr "" - -#: lms/templates/video.html -msgid "Transcripts" -msgstr "" - -#: lms/templates/video.html -msgid "Download {file}" -msgstr "" - -#: lms/templates/video.html -msgid "Download transcript" -msgstr "" - -#: lms/templates/video.html -msgid "Handouts" -msgstr "" - -#: lms/templates/video.html -msgid "Download Handout" -msgstr "" - -#: lms/templates/word_cloud.html -msgid "{num} of {total}" -msgstr "" - -#: lms/templates/word_cloud.html -msgid "Your words were:" -msgstr "" - -#: lms/templates/account_recovery/password_create_confirm.html -msgid "Create Your {platform_name} Password" -msgstr "" - -#: lms/templates/account_recovery/password_create_confirm.html -msgid "Invalid Password Create Link" -msgstr "" - -#: lms/templates/api_admin/api_access_request_form.html -msgid "API Access Request" -msgstr "" - -#: lms/templates/api_admin/api_access_request_form.html -#: lms/templates/api_admin/status.html -msgid "{platform_name} API Access Request" -msgstr "" - -#: lms/templates/api_admin/api_access_request_form.html -msgid "Request API Access" -msgstr "" - -#: lms/templates/api_admin/status.html -msgid "API Access Request Status" -msgstr "" - -#. Translators: "platform_name" is the name of this Open edX installation. -#: lms/templates/api_admin/status.html -msgid "" -"Your request to access the {platform_name} Course Catalog API is being " -"processed. You will receive a message at the email address in your profile " -"when processing is complete. You can also return to this page to see the " -"status of your API access request." -msgstr "" - -#. Translators: "platform_name" is the name of this Open edX installation. -#. "api_support_email_link" is HTML for a link to email the API support staff. -#: lms/templates/api_admin/status.html -msgid "" -"Your request to access the {platform_name} Course Catalog API has been " -"denied. If you think this is an error, or for other questions about using " -"this API, contact {api_support_email_link}." -msgstr "" - -#: lms/templates/api_admin/status.html -msgid "" -"Your request to access the {platform_name} Course Catalog API has been " -"approved." -msgstr "" - -#: lms/templates/api_admin/status.html -msgid "Application Name" -msgstr "" - -#: lms/templates/api_admin/status.html -msgid "API Client ID" -msgstr "" - -#: lms/templates/api_admin/status.html -msgid "API Client Secret" -msgstr "" - -#: lms/templates/api_admin/status.html -msgid "Redirect URLs" -msgstr "" - -#: lms/templates/api_admin/status.html -msgid "" -"If you would like to regenerate your API client information, please use the " -"form below." -msgstr "" - -#: lms/templates/api_admin/status.html -msgid "Generate API client credentials" -msgstr "" - -#. Translators: "platform_name" is the name of this Open edX installation. -#. "link_start" and "link_end" are the HTML for a link to the API -#. documentation. "api_support_email_link" is HTML for a link to email the API -#. support staff. -#: lms/templates/api_admin/status.html -msgid "" -"To learn more about the {platform_name} Course Catalog API, visit " -"{link_start}our API documentation page{link_end}. For questions about using " -"this API, contact {api_support_email_link}." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "API Terms of Service" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Terms of Service for {platform_name} APIs" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Effective Date: May 24th, 2018" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"Welcome to {platform_name}. Thank you for using {platform_name}'s Course " -"Discovery API, Enterprise API and/or any additional APIs that we may offer " -"from time to time (collectively, the \"APIs\"). Please read these Terms of " -"Service prior to accessing or using the APIs. These Terms of Service, any " -"additional terms within accompanying API documentation, and any applicable " -"policies and guidelines that {platform_name} makes available and/or updates " -"from time to time are agreements (collectively, the \"Terms\") between you " -"and {platform_name}. These Terms are issued under the enterprise product " -"agreement, member participation agreement, or other direct agreement " -"governing the purchase of {platform_name} products, if any (the " -"\"Agreement\"), executed by you or the party on whose behalf you are " -"accessing or using the APIs and {platform_name}. In the event that you have" -" such an Agreement that applies to your use of the APIs, the Agreement will " -"control in the event of any conflict between it and these Terms. By " -"accessing or using the APIs, you accept and agree to be legally bound by the" -" Terms, whether or not you are a registered user. If you are accessing or " -"using the APIs on behalf of a company, organization or other legal entity, " -"you are agreeing to these Terms for that entity and representing and " -"warranting to {platform_name} that you have full authority to accept and " -"agree to these Terms for such entity, in which case the terms \"you,\" " -"\"your\" or related terms herein shall refer to such entity on whose behalf " -"you are accessing or using the APIs. If you do not have such authority or if" -" you do not understand or do not wish to be bound by the Terms, you should " -"not use the APIs." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "API Access" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"To access the APIs, you will need to create an {platform_name} user account " -"for your application (not for personal use). This account will provide you " -"with access to our API request page at {request_url}. On that page, you must" -" complete the API request form including a description of your proposed uses" -" for the APIs. Any account and registration information that you provide to " -"{platform_name} must be accurate and up to date, and you agree to inform us " -"promptly of any changes. {platform_name_capitalized} will review your API " -"request form and, upon approval in {platform_name}'s sole discretion, will " -"provide you with instructions for obtaining your API shared secret and " -"client ID." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Permissible Use" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"You agree to use the APIs solely for the purpose of delivering content that " -"is accessed through the APIs (the \"API Content\") to your own website, " -"mobile site, app, blog, email distribution list, or social media property " -"(\"Your Application\") or for another commercial use that you described in " -"your request for access and that {platform_name} has approved on a case-by-" -"case basis. {platform_name_capitalized} may monitor your use of the APIs for" -" compliance with the Terms and may deny your access or shut down your " -"integration if you attempt to go around or exceed the requirements and " -"limitations set by {platform_name}. Your Application or other approved use " -"of the API or the API Content must not prompt your end users to provide " -"their {platform_name} username, password or other {platform_name} user " -"credentials anywhere other than on the {platform_name} website at " -"{platform_url}." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Prohibited Uses and Activities" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"{platform_name_capitalized} shall have the sole right to determine whether " -"or not any given use of the APIs is acceptable, and {platform_name} reserves" -" the right to revoke API access for any use that {platform_name} determines " -"at any time, in its sole discretion, does not benefit or serve the best " -"interests of {platform_name}, its users and its partners." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"The following activities are not acceptable when using the APIs (this is not" -" an exhaustive list):" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"collecting or storing the names, passwords, or other credentials of " -"{platform_name} users;" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"scraping or similar techniques to aggregate or otherwise create permanent " -"copies of API Content;" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"violating, misappropriating or infringing any copyright, trademark rights, " -"rights of privacy or publicity, confidential information or any other right " -"of any third party;" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "altering or editing any content or graphics in the API Content;" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"altering or removing any trademark, copyright or other proprietary or legal " -"notices contained in, or appearing on, the APIs or any API Content;" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"sublicensing, re-distributing, renting, selling or leasing access to the " -"APIs or your client secret to any third party;" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"distributing any virus, Trojan horse, spyware, adware, malware, bot, time " -"bomb, worm, or other harmful or malicious component; or" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"using the APIs for any purpose which or might overburden, impair or disrupt " -"the {platform_name} platform, servers or networks." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Usage and Quotas" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"{platform_name_capitalized} reserves the right, in its discretion, to impose" -" reasonable restrictions and limitations on the number and frequency of " -"calls made by you or Your Application to the APIs. You must not attempt to " -"circumvent any restrictions or limitations imposed by {platform_name}." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Compliance" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"You agree to comply with all applicable laws, regulations, and third party " -"rights (including without limitation laws regarding the import or export of " -"data or software, privacy, copyright, and local laws). You will not use the " -"APIs to encourage or promote illegal activity or violation of third party " -"rights. You will not violate any other terms of service with " -"{platform_name}. You will only access (or attempt to access) an API by the " -"means described in the documentation of that API. You will not misrepresent " -"or mask either your identity or Your Application's identity when using the " -"APIs." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Ownership" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"You acknowledge and agree that the APIs and all API Content contain valuable" -" intellectual property of {platform_name} and its partners. The APIs and all" -" API Content are protected by United States and foreign copyright, " -"trademark, and other laws. All rights in the APIs and the API Content, if " -"not expressly granted, are reserved. By using the APIs or any API Content, " -"you do not acquire ownership of any rights in the APIs or API Content. You " -"must not claim or attempt to claim ownership in the APIs or any API Content " -"or misrepresent yourself or your company or your Application as being the " -"source of any API Content. You may not modify, create derivative works of, " -"or attempt to use, license, or in any way exploit any API Content in whole " -"or in part on your own behalf or on behalf of any third party. You may not " -"distribute or modify the APIs or any API Content (including adaptation, " -"editing, excerpting, or creating derivative works)." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"All names, logos and seals (\"Trademarks\") that appear in the APIs, API " -"Content, or on or through the services made available on or through the " -"APIs, if any, are the property of their respective owners. You may not " -"remove, alter, or obscure any copyright, Trademark, or other proprietary " -"rights notices incorporated in or accompanying the API Content. If any " -"{platform_name} Participant (as hereinafter defined) or other third party " -"revokes access to API Content owned or controlled by that {platform_name} " -"Participant or third party, including without limitation any Trademarks, you" -" must ensure that all API Content pertaining to that {platform_name} " -"Participant or third party is deleted from Your Application and your " -"networks, systems and servers as soon as reasonably possible. " -"\"{platform_name_capitalized} Participants\" means MIT, Harvard, and the " -"other entities providing information, API Content or services for the APIs, " -"the course instructors and their staffs." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"To the extent that you submit any content to {platform_name} in connection " -"with your use of the APIs or any API Content, you hereby grant to " -"{platform_name} a worldwide, non-exclusive, transferable, assignable, sub " -"licensable, fully paid-up, royalty-free, perpetual, irrevocable right and " -"license to host, transfer, display, perform, reproduce, modify, distribute, " -"re-distribute, relicense and otherwise use, make available and exploit such " -"content, in whole or in part, in any form and in any media formats and " -"through any media channels (now known or hereafter developed)." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Privacy" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"You agree to comply with all applicable privacy laws and regulations and to " -"be transparent with respect to any collection and use of end user data. You " -"will provide and adhere to a privacy policy for Your Application that " -"clearly and accurately describes to your end users what user information you" -" collect and how you may use and share such information (including for " -"advertising) with {platform_name} and other third parties." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Right to Charge" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"Certain access to the APIs may be provided free of charge, but " -"{platform_name} reserves the right to charge fees for future use or access " -"to the APIs." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"{platform_name_capitalized} reserves the right to modify the Terms at any " -"time without advance notice. Any changes to the Terms will be effective " -"immediately upon posting on this page, with an updated effective date. By " -"accessing or using the APIs after any changes have been made, you signify " -"your agreement on a prospective basis to the modified Terms and all of the " -"changes. Be sure to return to this page periodically to ensure familiarity " -"with the most current version of the Terms." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"{platform_name_capitalized} may also update or modify the APIs from time to " -"time without advance notice. These changes may affect your use of the APIs " -"or the way your integration interacts with the API. If we make a change " -"that is unacceptable to you, you should stop using the APIs. Continued use " -"of the APIs means you accept the change." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Confidentiality" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"Your credentials (such as client secret and IDs) are intended to be used " -"solely by you. You will keep your credentials confidential and prevent and " -"discourage others from using your credentials. Your credentials may not be " -"embedded in open source projects." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"In the event that {platform_name} provides you with access to information " -"specific to {platform_name} and/or the APIs that is either marked as " -"\"Confidential\" or which a reasonable person would assume to be " -"confidential or proprietary given the terms of its disclosure " -"(\"Confidential Information\"), you agree to use this information only to " -"use and build with the APIs. You may not disclose the Confidential " -"Information to anyone without {platform_name}'s prior written consent, and " -"you agree to protect the Confidential Information from unauthorized use and " -"disclosure in the same way that you would protect your own confidential " -"information. Confidential Information does not include information that you " -"independently developed, that was rightfully given to you by a third party " -"without any confidentiality obligation, or that becomes public through no " -"fault of your own. You may disclose Confidential Information when compelled " -"to do so by law if you provide {platform_name} with reasonable prior notice," -" unless a court orders that {platform_name} not receive notice." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Disclaimer of Warranty / Limitation of Liabilities" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"THE APIS AND ANY INFORMATION, API CONTENT OR SERVICES MADE AVAILABLE ON OR " -"THROUGH THE APIS ARE PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT " -"WARRANTY OF ANY KIND (EXPRESS, IMPLIED OR OTHERWISE), INCLUDING, WITHOUT " -"LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A " -"PARTICULAR PURPOSE AND NON-INFRINGEMENT, EXCEPT INSOFAR AS ANY SUCH IMPLIED " -"WARRANTIES MAY NOT BE DISCLAIMED UNDER APPLICABLE LAW." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"{platform_name} AND THE {platform_name} PARTICIPANTS DO NOT WARRANT THAT THE" -" APIS WILL OPERATE IN AN UNINTERRUPTED OR ERROR-FREE MANNER, THAT THE APIS " -"ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS, OR THAT THE APIS OR API " -"CONTENT PROVIDED WILL MEET YOUR NEEDS OR EXPECTATIONS. {platform_name} AND " -"THE {platform_name} PARTICIPANTS ALSO MAKE NO WARRANTY ABOUT THE ACCURACY, " -"COMPLETENESS, TIMELINESS, OR QUALITY OF THE APIS OR ANY API CONTENT, OR THAT" -" ANY PARTICULAR API CONTENT WILL CONTINUE TO BE MADE AVAILABLE." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"USE OF THE APIS, AND THE API CONTENT AND ANY SERVICES OBTAINED FROM OR " -"THROUGH THE APIS, IS AT YOUR OWN RISK. YOUR ACCESS TO OR DOWNLOAD OF " -"INFORMATION, MATERIALS OR DATA THROUGH THE APIS IS AT YOUR OWN DISCRETION " -"AND RISK, AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY" -" (INCLUDING YOUR COMPUTER SYSTEM) OR LOSS OF DATA THAT RESULTS FROM THE " -"DOWNLOAD OR USE OF SUCH INFORMATION, MATERIALS OR DATA, UNLESS OTHERWISE " -"EXPRESSLY PROVIDED FOR IN THE {platform_name} PRIVACY POLICY." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, YOU AGREE THAT NEITHER " -"{platform_name} NOR ANY OF THE {platform_name} PARTICIPANTS WILL BE LIABLE " -"TO YOU FOR ANY LOSS OR DAMAGES, EITHER ACTUAL OR CONSEQUENTIAL, ARISING OUT " -"OF OR RELATING TO THE TERMS, OR YOUR (OR ANY THIRD PARTY'S) USE OF OR " -"INABILITY TO USE THE APIS OR ANY API CONTENT, OR YOUR RELIANCE UPON " -"INFORMATION OBTAINED FROM OR THROUGH THE APIS, WHETHER YOUR CLAIM IS BASED " -"IN CONTRACT, TORT, STATUTORY OR OTHER LAW." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"IN PARTICULAR, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, NEITHER " -"{platform_name} NOR ANY OF THE {platform_name} PARTICIPANTS WILL HAVE ANY " -"LIABILITY FOR ANY CONSEQUENTIAL, INDIRECT, PUNITIVE, SPECIAL, EXEMPLARY OR " -"INCIDENTAL DAMAGES, WHETHER FORESEEABLE OR UNFORESEEABLE AND WHETHER OR NOT " -"{platform_name} OR ANY OF THE {platform_name} PARTICIPANTS HAS BEEN " -"NEGLIGENT OR OTHERWISE AT FAULT (INCLUDING, BUT NOT LIMITED TO, CLAIMS FOR " -"DEFAMATION, ERRORS, LOSS OF PROFITS, LOSS OF DATA OR INTERRUPTION IN " -"AVAILABILITY OF DATA)." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"CERTAIN STATE LAWS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE " -"EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME" -" OR ALL OF THE ABOVE DISCLAIMERS, EXCLUSIONS, OR LIMITATIONS MAY NOT APPLY " -"TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"The APIs and API Content may include hyperlinks to sites maintained or " -"controlled by others and not affiliated with or under the control of " -"{platform_name}. {platform_name_capitalized} and the {platform_name} " -"Participants are not responsible for and do not routinely screen, approve, " -"review or endorse the contents of or use of any of the products or services " -"that may be offered at these third-party sites. If you decide to access " -"linked third-party websites, you do so at your own risk." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"To the maximum extent permitted by applicable law, you agree to defend, hold" -" harmless and indemnify {platform_name} and the {platform_name} " -"Participants, and their respective subsidiaries, affiliates, officers, " -"faculty, students, fellows, governing board members, agents and employees " -"from and against any third-party claims, actions or demands arising out of, " -"resulting from or in any way related to your use of the APIs and any API " -"Content, including any liability or expense arising from any and all claims," -" losses, damages (actual and consequential), suits, judgments, litigation " -"costs and attorneys' fees, of every kind and nature. In such a case, " -"{platform_name} or one of the {platform_name} Participants will provide you " -"with written notice of such claim, action or demand." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "General Legal Terms" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"The Terms constitute the entire agreement between you and {platform_name} " -"with respect to your use of the APIs and API Content, superseding any prior " -"agreements between you and {platform_name} regarding your use of the APIs " -"and API Content. The failure of {platform_name} to exercise or enforce any " -"right or provision of the Terms shall not constitute a waiver of such right " -"or provision. If any provision of the Terms is found by a court of competent" -" jurisdiction to be invalid, the parties nevertheless agree that the court " -"should endeavor to give effect to the parties' intentions as reflected in " -"the provision and the other provisions of the Terms shall remain in full " -"force and effect. The Terms do not create any third party beneficiary rights" -" or any agency, partnership, or joint venture. For any notice provided to " -"you by {platform_name} under these Terms, {platform_name} may notify you via" -" the email address associated with your {platform_name} account." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"You agree that the Terms, the APIs, and any claim or dispute arising out of " -"or relating to the Terms or the APIs will be governed by the laws of the " -"Commonwealth of Massachusetts, excluding its conflicts of law provisions. " -"You agree that all such claims and disputes will be heard and resolved " -"exclusively in the federal or state courts located in and serving Cambridge," -" Massachusetts, U.S.A. You consent to the personal jurisdiction of those " -"courts over you for this purpose, and you waive and agree not to assert any " -"objection to such proceedings in those courts (including any defense or " -"objection of lack of proper jurisdiction or venue or inconvenience of " -"forum). Notwithstanding the foregoing, you agree that {platform_name} shall " -"still be allowed to apply for injunctive remedies (or an equivalent type of " -"urgent legal relief) in any jurisdiction." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Termination" -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"You may stop using the APIs at any time. You agree that {platform_name}, in " -"its sole discretion and at any time, may terminate your use of the APIs or " -"any API Content for any reason or no reason, without prior notice or " -"liability." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"{platform_name_capitalized} and the {platform_name} Participants reserve the" -" right at any time in their sole discretion to cancel, delay, reschedule or " -"alter the format of any API or API Content offered through {platform_name}, " -"or to cease providing any part or all of the APIs or API Content or related " -"services, and you agree that neither {platform_name} nor any of the " -"{platform_name} Participants will have any liability to you for such an " -"action." -msgstr "" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"Upon any termination of the Terms or discontinuation of your access to an " -"API for any reason, your right to use any API and API Content will " -"immediately cease. You will immediately stop using the APIs and delete any " -"cached or stored API Content from Your Application and your networks, " -"systems and servers as soon as reasonably possible. All provisions of the " -"Terms that by their nature should survive termination shall survive " -"termination, including, without limitation, ownership provisions, warranty " -"disclaimers, and limitations of liability. Termination of your access to and" -" use of the APIs and API Content shall not relieve you of any obligations " -"arising or accruing prior to such termination or limit any liability that " -"you otherwise may have to {platform_name}, including without limitation any " -"indemnification obligations contained herein." -msgstr "" - -#: lms/templates/api_admin/catalogs/edit.html -msgid "Edit {catalog_name}" -msgstr "" - -#: lms/templates/api_admin/catalogs/edit.html -#: lms/templates/api_admin/catalogs/list.html -msgid "Download CSV" -msgstr "" - -#: lms/templates/api_admin/catalogs/edit.html -msgid "Delete this catalog" -msgstr "" - -#: lms/templates/api_admin/catalogs/edit.html -msgid "Update Catalog" -msgstr "" - -#: lms/templates/api_admin/catalogs/list.html -#: lms/templates/api_admin/catalogs/list.html -msgid "Catalogs for {username}" -msgstr "" - -#: lms/templates/api_admin/catalogs/list.html -msgid "Create new catalog:" -msgstr "" - -#: lms/templates/api_admin/catalogs/list.html -msgid "Create Catalog" -msgstr "" - -#: lms/templates/api_admin/catalogs/search.html -msgid "Catalog search" -msgstr "" - -#: lms/templates/api_admin/catalogs/search.html -msgid "Catalog Search" -msgstr "" - -#: lms/templates/api_admin/catalogs/search.html -msgid "Enter a username to view catalogs belonging to that user." -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Open Calculator" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Enter equation" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Calculator Input Field" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Hints" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "" -"Use the arrow keys to navigate the tips or use the tab key to return to the " -"calculator" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "" -"For detailed information, see {math_link_start}Entering Mathematical and " -"Scientific Expressions{math_link_end} in the {guide_link_start}edX Guide for" -" Students{guide_link_end}." -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Tips" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "" -"Use parentheses () to make expressions clear. You can use parentheses inside" -" other parentheses." -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Do not use spaces in expressions." -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "For constants, indicate multiplication explicitly (example: 5*c)." -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "For affixes, type the number and affix without a space (example: 5c)." -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "" -"For functions, type the name of the function, then the expression in " -"parentheses." -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "To Use" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Type" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Examples" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Numbers" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Integers" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Fractions" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Decimals" -msgstr "" - -#. Translators: This refers to mathematical operators such as `plus`, `minus`, -#. `division` and others. -#: lms/templates/calculator/toggle_calculator.html -msgid "Operators" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "+ - * / (add, subtract, multiply, divide)" -msgstr "" - -#. Translators: Please do not translate mathematical symbols. -#: lms/templates/calculator/toggle_calculator.html -msgid "^ (raise to a power)" -msgstr "" - -#. Translators: Please do not translate mathematical symbols. -#: lms/templates/calculator/toggle_calculator.html -msgid "|| (parallel resistors)" -msgstr "" - -#. Translators: This refers to symbols that are mathematical constants, such -#. as -#. "i" (square root of -1) -#: lms/templates/calculator/toggle_calculator.html -msgid "Constants" -msgstr "" - -#. Translators: This refers to symbols that appear at the end of a number, -#. such -#. as the percent sign (%) and metric affixes -#: lms/templates/calculator/toggle_calculator.html -msgid "Affixes" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Percent sign (%) and metric affixes (d, c, m, u, n, p, k, M, G, T)" -msgstr "" - -#. Translators: This refers to basic mathematical functions such as "square -#. root" -#: lms/templates/calculator/toggle_calculator.html -msgid "Basic functions" -msgstr "" - -#. Translators: This refers to mathematical Sine, Cosine and Tan -#: lms/templates/calculator/toggle_calculator.html -msgid "Trigonometric functions" -msgstr "" - -#. Translators: Please see http://en.wikipedia.org/wiki/Scientific_notation -#: lms/templates/calculator/toggle_calculator.html -msgid "Scientific notation" -msgstr "" - -#. Translators: 10^ is a mathematical symbol. Please do not translate. -#: lms/templates/calculator/toggle_calculator.html -msgid "10^ and the exponent" -msgstr "" - -#. Translators: this is part of scientific notation. Please see -#. http://en.wikipedia.org/wiki/Scientific_notation#E_notation -#: lms/templates/calculator/toggle_calculator.html -msgid "e notation" -msgstr "" - -#. Translators: 1e is a mathematical symbol. Please do not translate. -#: lms/templates/calculator/toggle_calculator.html -msgid "1e and the exponent" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Calculate" -msgstr "" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Result" -msgstr "" - -#: lms/templates/ccx/coach_dashboard.html -#: lms/templates/ccx/coach_dashboard.html -msgid "CCX Coach Dashboard" -msgstr "" - -#: lms/templates/ccx/coach_dashboard.html -#: lms/templates/ccx/coach_dashboard.html -msgid "Name your CCX" -msgstr "" - -#: lms/templates/ccx/coach_dashboard.html -msgid "Create a new Custom Course for edX" -msgstr "" - -#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/enrollment.html -#: lms/templates/support/enrollment.html -msgid "Enrollment" -msgstr "" - -#: lms/templates/ccx/coach_dashboard.html -#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/schedule.html -msgid "Schedule" -msgstr "" - -#: lms/templates/ccx/coach_dashboard.html -msgid "Student Admin" -msgstr "" - -#: lms/templates/ccx/coach_dashboard.html -#: lms/templates/ccx/coach_dashboard.html -#: lms/templates/ccx/grading_policy.html -msgid "Grading Policy" -msgstr "" - -#: lms/templates/ccx/coach_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Enrollment" -msgstr "" - -#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/student_admin.html -msgid "Student Grades" -msgstr "" - -#: lms/templates/ccx/coach_dashboard.html -msgid "Please enter a valid CCX name." -msgstr "" - -#: lms/templates/ccx/enrollment.html lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses/Usernames" -msgstr "" - -#: lms/templates/ccx/enrollment.html -msgid "" -"Enter one or more email addresses or usernames separated by new lines or " -"commas." -msgstr "" - -#: lms/templates/ccx/enrollment.html -msgid "" -"Make sure you enter the information carefully. You will not receive " -"notification for invalid usernames or email addresses." -msgstr "" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Auto Enroll" -msgstr "" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"If this option is {em_start}checked{em_end}, users who have not yet " -"registered for {platform_name} will be automatically enrolled." -msgstr "" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"If this option is left {em_start}unchecked{em_end}, users who have not yet " -"registered for {platform_name} will not be enrolled, but will be allowed to " -"enroll once they make an account." -msgstr "" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Checking this box has no effect if 'Unenroll' is selected." -msgstr "" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Notify users by email" -msgstr "" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"If this option is {em_start}checked{em_end}, users will receive an email " -"notification." -msgstr "" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgctxt "someone" -msgid "Enroll" -msgstr "" - -#: lms/templates/ccx/enrollment.html -msgid "Student List Management" -msgstr "" - -#: lms/templates/ccx/enrollment.html -msgid "CCX student list management response message" -msgstr "" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Email" -msgstr "" - -#: lms/templates/ccx/enrollment.html lms/templates/ccx/enrollment.html -msgid "Revoke access" -msgstr "" - -#: lms/templates/ccx/grading_policy.html -msgid "WARNING" -msgstr "" - -#: lms/templates/ccx/grading_policy.html -msgid "" -"For advanced users only. Errors in the grading policy can lead to the course" -" failing to display. This form does not check the validity of the policy " -"before saving." -msgstr "" - -#: lms/templates/ccx/grading_policy.html -msgid "Most coaches should not need to make changes to the grading policy." -msgstr "" - -#: lms/templates/ccx/grading_policy.html -msgid "Save Grading Policy" -msgstr "" - -#. Translators: This explains to people using a screen reader how to interpret -#. the format of YYYY-MM-DD -#: lms/templates/ccx/schedule.html -msgid "Date format four digit year dash two digit month dash two digit day" -msgstr "" - -#. Translators: This explains to people using a screen reader how to interpret -#. the format of HH:MM -#: lms/templates/ccx/schedule.html -msgid "Time format two digit hours colon two digit minutes" -msgstr "" - -#: lms/templates/ccx/schedule.html -msgid "Time" -msgstr "" - -#: lms/templates/ccx/schedule.html -msgid "Set date" -msgstr "" - -#: lms/templates/ccx/schedule.html lms/templates/ccx/schedule.html -msgid "Save changes" -msgstr "" - -#: lms/templates/ccx/schedule.html -msgid "You have unsaved changes." -msgstr "" - -#: lms/templates/ccx/schedule.html -msgid "There was an error saving changes." -msgstr "" - -#: lms/templates/ccx/schedule.html -msgid "Schedule a Unit" -msgstr "" - -#: lms/templates/ccx/schedule.html -msgid "Subsection" -msgstr "" - -#: lms/templates/ccx/schedule.html -msgid "Unit" -msgstr "" - -#: lms/templates/ccx/schedule.html -msgid "Start Date" -msgstr "" - -#. Translators: This explains to people using a screen reader how to interpret -#. the format of YYYY-MM-DD -#: lms/templates/ccx/schedule.html lms/templates/ccx/schedule.html -msgid "format four digit year dash two digit month dash two digit day" -msgstr "" - -#: lms/templates/ccx/schedule.html lms/templates/ccx/schedule.html -msgid "yyyy-mm-dd" -msgstr "" - -#. Translators: This explains to people using a screen reader how to interpret -#. the format of HH:MM -#: lms/templates/ccx/schedule.html -msgid "Start time format two digit hours colon two digit minutes" -msgstr "" - -#: lms/templates/ccx/schedule.html lms/templates/ccx/schedule.html -msgid "time" -msgstr "" - -#: lms/templates/ccx/schedule.html -msgid "Due Date" -msgstr "" - -#: lms/templates/ccx/schedule.html -msgid "(Optional)" -msgstr "" - -#. Translators: This explains to people using a screen reader how to interpret -#. the format of HH:MM -#: lms/templates/ccx/schedule.html -msgid "Due Time format two digit hours colon two digit minutes" -msgstr "" - -#: lms/templates/ccx/schedule.html -msgid "Add Unit" -msgstr "" - -#: lms/templates/ccx/schedule.html -msgid "Add All Units" -msgstr "" - -#: lms/templates/ccx/schedule.html -msgid "All units have been added." -msgstr "" - -#: lms/templates/ccx/student_admin.html -msgid "View gradebook" -msgstr "" - -#: lms/templates/ccx/student_admin.html -msgid "Download student grades" -msgstr "" - -#: lms/templates/certificates/_accomplishment-banner.html -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Print or share your certificate:" -msgstr "" - -#: lms/templates/certificates/_accomplishment-banner.html -msgid "Click the link to see my certificate." -msgstr "" - -#: lms/templates/certificates/_accomplishment-banner.html -msgid "Post on Facebook" -msgstr "" - -#: lms/templates/certificates/_accomplishment-banner.html -#: lms/templates/certificates/_accomplishment-banner.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Share on Twitter" -msgstr "" - -#: lms/templates/certificates/_accomplishment-banner.html -msgid "Tweet this Accomplishment. Pop up window." -msgstr "" - -#: lms/templates/certificates/_accomplishment-banner.html -#: lms/templates/certificates/_accomplishment-banner.html -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Add to LinkedIn Profile" -msgstr "" - -#: lms/templates/certificates/_accomplishment-banner.html -msgid "Add to Mozilla Backpack" -msgstr "" - -#: lms/templates/certificates/_accomplishment-banner.html -#: themes/normal-theme/lms/templates/certificates/_accomplishment-banner.html -msgid "Print Certificate" -msgstr "" - -#: lms/templates/certificates/_accomplishment-header.html -msgid "{platform_name} Home" -msgstr "" - -#: lms/templates/certificates/_accomplishment-rendering.html -msgid "Noted by" -msgstr "" - -#: lms/templates/certificates/_accomplishment-rendering.html -msgid "Supported by the following organizations" -msgstr "" - -#: lms/templates/certificates/_accomplishment-rendering.html -msgid "Awarded to:" -msgstr "" - -#: lms/templates/certificates/_edx-accomplishment-print-help.html -msgid "" -"For tips and tricks on printing your certificate, view the {link_start}Web " -"Certificates help documentation{link_end}." -msgstr "" - -#: lms/templates/certificates/invalid.html -msgid "Cannot Find Certificate" -msgstr "" - -#: lms/templates/certificates/invalid.html -msgid "" -"We cannot find a certificate with this URL or ID number. If you are trying " -"to validate a certificate, make sure that the URL or ID number is correct. " -"If you are sure that the URL or ID number is correct, contact support." -msgstr "" - -#: lms/templates/certificates/invalid.html -msgid "About {platform_name} Certificates" -msgstr "" - -#: lms/templates/certificates/server-error.html -msgid "Invalid Certificate Configuration." -msgstr "" - -#: lms/templates/certificates/server-error.html -msgid "There is a problem with this certificate." -msgstr "" - -#: lms/templates/certificates/server-error.html -msgid "" -"To resolve the problem, your partner manager should verify that the " -"following information is correct." -msgstr "" - -#: lms/templates/certificates/server-error.html -msgid "The institution's logo." -msgstr "" - -#: lms/templates/certificates/server-error.html -msgid "The institution that is linked to the course." -msgstr "" - -#: lms/templates/certificates/server-error.html -msgid "The course information in the Course Administration tool." -msgstr "" - -#: lms/templates/certificates/server-error.html -msgid "" -"If all of the information is correct and the problem persists, contact " -"technical support." -msgstr "" - -#: lms/templates/certificates/valid.html -msgid "About EliteMBA Certificates" -msgstr "" - -#: lms/templates/certificates/verify.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "EliteMBA" -msgstr "" - -#: lms/templates/certificates/verify.html -msgid "Trustworthy Certificate" -msgstr "" - -#: lms/templates/certificates/verify.html -msgid "Certificated Learner" -msgstr "" - -#: lms/templates/certificates/verify.html -msgid "Certificate No." -msgstr "" - -#: lms/templates/certificates/verify.html -msgid "Affiliation" -msgstr "" - -#: lms/templates/certificates/verify.html -msgid "Learning Time" -msgstr "" - -#: lms/templates/certificates/verify.html -msgid "Learning Type" -msgstr "" - -#: lms/templates/certificates/verify.html -msgid "Certificate Issuing Date" -msgstr "" - -#: lms/templates/certificates/verify.html -msgid "Electronic Certificate" -msgstr "" - -#: lms/templates/certificates/verify.html -msgctxt "Certificate" -msgid "View" -msgstr "" - -#: lms/templates/commerce/checkout_cancel.html -#: lms/templates/commerce/checkout_cancel.html -msgid "Checkout Cancelled" -msgstr "" - -#: lms/templates/commerce/checkout_cancel.html -msgid "" -"Your transaction has been cancelled. If you feel an error has occurred, " -"contact {email}." -msgstr "" - -#: lms/templates/commerce/checkout_error.html -#: lms/templates/commerce/checkout_error.html -msgid "Checkout Error" -msgstr "" - -#: lms/templates/commerce/checkout_error.html -msgid "" -"An error has occurred with your payment. You have not been charged. " -"Please try to submit your payment again. If this problem persists, contact " -"{email}." -msgstr "" - -#: lms/templates/commerce/checkout_receipt.html -msgid "Loading Order Data..." -msgstr "" - -#: lms/templates/commerce/checkout_receipt.html -msgid "Please wait while we retrieve your order details." -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Enroll In {course_name} | Choose Your Track" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Sorry, there was an error when trying to enroll you" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue Academic Credit with the Verified Track" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue Academic Credit with a Verified Certificate" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"Become eligible for academic credit and highlight your new skills and " -"knowledge with a verified certificate. Use this valuable credential to " -"qualify for academic credit, advance your career, or strengthen your school " -"applications." -msgstr "" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Benefits of the Verified Track" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Eligible for credit:{b_end} Receive academic credit after " -"successfully completing the course" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Unlimited Course Access: {b_end}Learn at your own pace, and access " -"materials anytime to brush up on what you've learned." -msgstr "" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Graded Assignments: {b_end}Build your skills through graded " -"assignments and projects." -msgstr "" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Easily Sharable: {b_end}Add the certificate to your CV or resume, " -"or post it directly on LinkedIn." -msgstr "" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Benefits of a Verified Certificate" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Official:{b_end} Receive an instructor-signed certificate with the " -"institution's logo" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Easily shareable:{b_end} Add the certificate to your CV or resume, " -"or post it directly on LinkedIn" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"Highlight your new knowledge and skills with a verified certificate. Use " -"this valuable credential to improve your job prospects and advance your " -"career, or highlight your certificate in school applications." -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Official: {b_end}Receive an instructor-signed certificate with the " -"institution's logo" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Easily shareable: {b_end}Add the certificate to your CV or resume, " -"or post it directly on LinkedIn" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Motivating: {b_end}Give yourself an additional incentive to " -"complete the course" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Audit This Course" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"Audit this course for free and have complete access to all the course " -"material, activities, tests, and forums." -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Audit This Course (No Certificate)" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"Audit this course for free and have access to course materials and " -"discussions forums. {b_start}This track does not include graded assignments," -" or unlimited course access.{b_end}" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"Audit this course for free and have access to course materials and " -"discussions forums. {b_start}This track does not include graded " -"assignments.{b_end}" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"Audit this course for free and have access to course materials and " -"discussions forums. {b_start}This track does not include unlimited course " -"access.{b_end}" -msgstr "" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"Audit this course for free and have complete access to all the course " -"material, activities, tests, and forums. {b_start}Please note that this " -"track does not offer a certificate for learners who earn a passing " -"grade.{b_end}" -msgstr "" - -#: lms/templates/courseware/accordion.html -msgid "{chapter} current chapter" -msgstr "" - -#: lms/templates/courseware/accordion.html -msgid "{span_start}current section{span_end}" -msgstr "" - -#: lms/templates/courseware/accordion.html -#: lms/templates/courseware/progress.html -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "due {date}" -msgstr "" - -#: lms/templates/courseware/accordion.html -msgid "{section_format} due {{date}}" -msgstr "" - -#: lms/templates/courseware/accordion.html -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "This content is graded" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "An error occurred. Please try again later." -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "" -"The currently logged-in user account does not have permission to enroll in " -"this course. You may need to {start_logout_tag}log out{end_tag} then try the" -" enroll button again. Please visit the {start_help_tag}help page{end_tag} " -"for a possible solution." -msgstr "" - -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Enroll {price}" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgctxt "Free Enroll Course" -msgid "Enroll" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html -msgid "You are enrolled in this course" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/shoppingcart/registration_code_receipt.html -#: openedx/features/journals/templates/journals/bundle_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "View Course" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "This course is in your cart." -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Course is full" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Enrollment in this course is by invitation only" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Enrollment is Closed" -msgstr "" - -#: lms/templates/courseware/course_about.html -msgid "Add {course_name} to Cart ({price} {currency_code})" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Free Enrollment for VIP" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "View About Page in studio" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Classes Start" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Classes End" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Estimated Effort" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Price" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Prerequisites" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "" -"You must successfully complete {link_start}{prc_display}{link_end} before " -"you begin this course." -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Additional Resources" -msgstr "" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgctxt "self" -msgid "enroll" -msgstr "" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html -msgid "Share with friends and family!" -msgstr "" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "I just enrolled in {number} {title} through {account}: {url}" -msgstr "" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "" -"A wonderful course is rare to find and must be shared! I'm taking {title} on" -" EliteMBA. Check it out! {url}" -msgstr "" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "Take a course with {platform} online" -msgstr "" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "I just enrolled in {number} {title} through {platform} {url}" -msgstr "" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html -msgid "Tweet that you've enrolled in this course" -msgstr "" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "Post a Facebook message to say you've enrolled in this course" -msgstr "" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html -msgid "Email someone to say you've enrolled in this course" -msgstr "" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "weibo" -msgstr "" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "weixin" -msgstr "" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "qq" -msgstr "" - -#: lms/templates/courseware/course_navigation.html -msgid "current location" -msgstr "" - -#. Translators: 'needs attention' is an alternative string for the -#. notification image that indicates the tab "needs attention". -#: lms/templates/courseware/course_navigation.html -#: lms/templates/courseware/tabs.html -msgid "needs attention" -msgstr "" - -#: lms/templates/courseware/course_navigation.html -msgid "Course Material" -msgstr "" - -#: lms/templates/courseware/course_updates.html -#: lms/templates/courseware/course_updates.html -msgid "Hide" -msgstr "" - -#: lms/templates/courseware/course_updates.html -#: lms/templates/courseware/course_updates.html -msgid "Show" -msgstr "" - -#: lms/templates/courseware/course_updates.html -msgid "Show Earlier Course Updates" -msgstr "" - -#: lms/templates/courseware/courses.html lms/templates/courseware/courses.html -msgid "Refine Your Search" -msgstr "" - -#: lms/templates/courseware/courseware-chromeless.html -#: lms/templates/courseware/courseware.html -#: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "{course_number} Courseware" -msgstr "" - -#: lms/templates/courseware/courseware-chromeless.html -#: lms/templates/courseware/courseware.html -msgid "Course Utilities" -msgstr "" - -#: lms/templates/courseware/courseware-error.html -msgid "Courseware" -msgstr "" - -#: lms/templates/courseware/courseware.html -#: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -msgid "Bookmarks" -msgstr "" - -#: lms/templates/courseware/courseware.html -msgid "Course Search" -msgstr "" - -#: lms/templates/courseware/courseware.html -msgid "No content has been added to this course" -msgstr "" - -#: lms/templates/courseware/courseware.html -#, python-format -msgid "" -"To access course materials, you must score {required_score}% or higher on " -"this exam. Your current score is {current_score}%." -msgstr "" - -#: lms/templates/courseware/courseware.html -msgid "Your score is {current_score}%. You have passed the entrance exam." -msgstr "" - -#: lms/templates/courseware/gradebook.html -msgid "Gradebook" -msgstr "" - -#: lms/templates/courseware/gradebook.html -msgid "Search students" -msgstr "" - -#: lms/templates/courseware/gradebook.html -#: lms/templates/courseware/gradebook.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/receipt.html -msgid "Total" -msgstr "" - -#: lms/templates/courseware/gradebook.html -msgid "previous page" -msgstr "" - -#: lms/templates/courseware/gradebook.html -msgid "of" -msgstr "" - -#: lms/templates/courseware/gradebook.html -msgid "next page" -msgstr "" - -#: lms/templates/courseware/info.html -msgid "{course_number} Course Info" -msgstr "" - -#: lms/templates/courseware/info.html -msgid "You are not enrolled yet" -msgstr "" - -#: lms/templates/courseware/info.html -msgid "" -"You are not currently enrolled in this course. {link_start}Enroll " -"now!{link_end}" -msgstr "" - -#: lms/templates/courseware/info.html -msgid "Welcome to {org}'s {course_title}!" -msgstr "" - -#: lms/templates/courseware/info.html -msgid "Welcome to {course_title}!" -msgstr "" - -#: lms/templates/courseware/info.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Resume Course" -msgstr "" - -#: lms/templates/courseware/info.html -msgid "View Updates in Studio" -msgstr "" - -#: lms/templates/courseware/info.html lms/templates/courseware/info.html -msgid "Course Updates and News" -msgstr "" - -#: lms/templates/courseware/info.html lms/templates/courseware/info.html -msgid "Handout Navigation" -msgstr "" - -#: lms/templates/courseware/info.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Course Tools" -msgstr "" - -#: lms/templates/courseware/info.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Course Handouts" -msgstr "" - -#: lms/templates/courseware/news.html -msgid "News - MITx 6.002x" -msgstr "" - -#: lms/templates/courseware/news.html -msgid "Updates to Discussion Posts You Follow" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "Purchase the Program (" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -#: lms/templates/courseware/program_marketing.html -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "Original Price" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "${oldPrice}" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -#: lms/templates/courseware/program_marketing.html -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "Discounted Price" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "${newPrice}" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "{currency})" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "Start Learning" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "Play" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "YouTube Video" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "View Courses" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "Meet the Instructors" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -#: lms/templates/courseware/program_marketing.html -msgid "Frequently Asked Questions" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "Job Outlook" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "Real Career Impact" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "What You'll Learn" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "Average Length" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "{weeks_to_complete} weeks per course" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "Effort" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "" -"{min_hours_effort_per_week}-{max_hours_effort_per_week} hours per week, per " -"course" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "Number of Courses" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "{number_of_courses} courses in program" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "Price ({currencyCode})" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "{currencySymbol}{oldPrice}" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "{newPrice}{htmlEnd} for entire program" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "You save " -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "{discount_value} {currency}" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "{full_program_price} for entire program" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -msgid "Courses in the {}" -msgstr "" - -#: lms/templates/courseware/program_marketing.html -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "Starts on {}" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "{course_number} Progress" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "View Grading in studio" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "View Certificate" -msgstr "" - -#: lms/templates/courseware/progress.html -#: lms/templates/courseware/progress.html -msgid "Opens in a new browser window" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Download Your Certificate" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Request Certificate" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Requirements for Course Credit" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "{student_name}, you are no longer eligible for credit in this course." -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "" -"{student_name}, you have met the requirements for credit in this course. " -"{a_start}Go to your dashboard{a_end} to purchase course credit." -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "{student_name}, you have not yet met the requirements for credit." -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Information about course credit requirements" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "display_name" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Verification Submitted" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Verification Failed" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Verification Declined" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Completed by {date}" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Upcoming" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Less" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Details for each chapter" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "{earned} of {total} possible points" -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "" -"Suspicious activity detected during proctored exam review. Exam score 0." -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Section grade has been overridden." -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Problem Scores: " -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Practice Scores: " -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Problem scores are hidden until the due date." -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Practice scores are hidden until the due date." -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Problem scores are hidden." -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "Practice scores are hidden." -msgstr "" - -#: lms/templates/courseware/progress.html -msgid "No problem scores in this section" -msgstr "" - -#: lms/templates/courseware/syllabus.html -msgid "{course.display_number_with_default} Course Info" -msgstr "" - -#: lms/templates/courseware/syllabus.html -msgid "Syllabus" -msgstr "" - -#: lms/templates/courseware/welcome-back.html -msgid "" -"You were most recently in {section_link}. If you're done with that, choose " -"another section on the left." -msgstr "" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -#: lms/templates/emails/activation_email.txt -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "Hi {name}," -msgstr "" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "Hi," -msgstr "" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"Congratulations! You are now eligible to receive course credit from " -"{providers} for successfully completing your {platform_name} course! " -"{link_start}Purchase credit now.{link_end}" -msgstr "" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"Congratulations! You are now eligible to receive course credit for " -"successfully completing your {platform_name} course! {link_start}Purchase " -"credit now.{link_end}" -msgstr "" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"Course credit can help you get a jump start on your university degree, " -"finish a degree already started, or fulfill requirements at a different " -"academic institution." -msgstr "" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "There are 2 steps to getting course credit." -msgstr "" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"Purchase credit by going to your {link_start}{platform_name} " -"dashboard{link_end} and clicking the {bold_start}Get Credit{bold_end} button" -" below the course title." -msgstr "" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"When your payment is complete, return to the dashboard and click the " -"{bold_start}Request Credit{bold_end} button under the course title to " -"request an official academic transcript at the institution that granted the " -"credit." -msgstr "" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"We hope you enjoyed the course, and we hope to see you in future " -"{platform_name} courses!" -msgstr "" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -#: lms/templates/emails/activation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "The {platform_name} Team" -msgstr "" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"{link_start}Click here for more information on credit at " -"{platform_name}{link_end}." -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Your certificate will be available on or before {date}" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Your final grade:" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid ". " -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Grade required for a {cert_name_short}:" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Grade required to pass this course:" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Your verified {cert_name_long} is being held pending confirmation that the " -"issuance of your {cert_name_short} is in compliance with strict U.S. " -"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " -"mistakenly identified you as being connected with one of those countries, " -"please let us know by contacting {email}. If you would like a refund on your" -" {cert_name_long}, please contact our billing address {billing_email}" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Your {cert_name_long} is being held pending confirmation that the issuance " -"of your {cert_name_short} is in compliance with strict U.S. embargoes on " -"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " -"identified you as being connected with one of those countries, please let us" -" know by contacting {email}." -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Your certificate was not issued because you do not have a current verified " -"identity with {platform_name}. " -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Verify your identity now." -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Your {cert_name_short} is Generating" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "This link will open the certificate web view" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "View {cert_name_short}" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "This link will open/download a PDF document" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Download {cert_name_short} (PDF)" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Download Your {cert_name_short} (PDF)" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"This link will open/download a PDF document of your verified " -"{cert_name_long}." -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Download Your ID Verified {cert_name_short} (PDF)" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Complete our course feedback survey" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Course details" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "{course_number} {course_name} Home Page" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "{course_number} {course_name} Cover Image" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Enrolled as: " -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: themes/normal-theme/lms/templates/static_templates/help.html -msgid "Coming Soon" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Ended - {date}" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Started - {date}" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Starts - {date}" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "for {course_display_name}" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You must select a session by {expiration_date} to access the course." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You must select a session to access the course." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Change or Leave Session" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You can no longer change sessions." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You can change sessions until {entitlement_expiration_date}." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "View Archived Course" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Subscription Due" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "I'm taking {course_name} online with {facebook_brand}. Check it out!" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Share {course_name} on Facebook" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Share on Facebook" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "I'm taking {course_name} online with {twitter_brand}. Check it out!" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Share {course_name} on Twitter" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Course options for" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_entitlement_actions.html -msgid "Available Actions" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_entitlement_actions.html -msgid "Email Settings" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Related Programs" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can contact the account holder to request payment, or you can " -"unenroll from this course" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can {contact_link_start}contact the account " -"holder{contact_link_end} to request payment, or you can " -"{unenroll_link_start}unenroll{unenroll_link_end} from this course" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Verification not yet complete." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You only have {days} day left to verify for this course." -msgid_plural "You only have {days} days left to verify for this course." -msgstr[0] "" -msgstr[1] "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Almost there!" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You still need to verify for this course." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Verify Now" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You have submitted your verification information." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You will see a message on your dashboard when the verification process is " -"complete (usually within 1-2 days)." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Your current verification will expire soon!" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You have submitted your reverification information. You will see a message " -"on your dashboard when the verification process is complete (usually within " -"1-2 days)." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "EliteMBA has verified your identity!" -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Your current verification is effective until {date}." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Your current verification will expire soon." -msgstr "" - -#. Translators: start_link and end_link will be replaced with HTML tags; -#. please do not translate these. -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"Your current verification will expire in {days} days. {start_link}Re-verify " -"your identity now{end_link} using a webcam and a government-issued photo ID." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"Pursue a {cert_name_long} to highlight the knowledge and skills you gain in " -"this course." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"It's official. It's easily shareable. It's a proven motivator to complete " -"the course. {line_break}{link_start}Learn more about the verified " -"{cert_name_long}{link_end}." -msgstr "" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Upgrade to Verified" -msgstr "" - -#. Translators: provider_name is the name of a credit provider or university -#. (e.g. State University) -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "" -"You have completed this course and are eligible to purchase course credit. " -"Select Get Credit to get started." -msgstr "" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "You are now eligible for credit from {provider}. Congratulations!" -msgstr "" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "Get Credit" -msgstr "" - -#. Translators: link_to_provider_site is a link to an external webpage. The -#. text of the link will be the name of a credit provider, such as 'State -#. University' or 'Happy Fun Company'. -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "" -"Thank you for your payment. To receive course credit, you must now request " -"credit at the {link_to_provider_site} website. Select Request Credit " -"to get started." -msgstr "" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "Request Credit" -msgstr "" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "" -"{provider_name} has received your course credit request. We will update you " -"when credit processing is complete." -msgstr "" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "View Details" -msgstr "" - -#. Translators: link_to_provider_site is a link to an external webpage. The -#. text of the link will be the name of a credit provider, such as 'State -#. University' or 'Happy Fun Company'. provider_name is the name of credit -#. provider. -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "" -"Congratulations! {provider_name} has approved your request for course" -" credit. To see your course credit, visit the {link_to_provider_site} " -"website." -msgstr "" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "View Credit" -msgstr "" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "" -"{provider_name} did not approve your request for course credit. For more " -"information, contact {link_to_provider_site} directly." -msgstr "" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "" -"An error occurred with this transaction. For help, contact {support_email}." -msgstr "" - -#: lms/templates/dashboard/_dashboard_entitlement_actions.html -msgid "Course options for {courseName}" -msgstr "" - -#: lms/templates/dashboard/_dashboard_show_consent.html -msgid "Consent to share your data" -msgstr "" - -#: lms/templates/dashboard/_dashboard_show_consent.html -msgid "" -"To access this course, you must first consent to share your learning " -"achievements with {enterprise_customer_name}." -msgstr "" - -#: lms/templates/dashboard/_dashboard_show_consent.html -msgid "View Consent" -msgstr "" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "Current Verification Status: Approved" -msgstr "" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "" -"Your EliteMBA verification has been approved. Your verification is effective" -" for one year after submission." -msgstr "" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "Current Verification Status: Pending" -msgstr "" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "" -"Your EliteMBA ID verification is pending. Your verification information has " -"been submitted and will be reviewed shortly." -msgstr "" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "Current Verification Status: Denied" -msgstr "" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "" -"Your verification submission was not accepted. To receive a verified " -"certificate, you must submit a new photo of yourself and your government-" -"issued photo ID before the verification deadline for your course." -msgstr "" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "Your verification was denied for the following reasons:" -msgstr "" - -#: lms/templates/dashboard/_dashboard_status_verification.html -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "Resubmit Verification" -msgstr "" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "Current Verification Status: Expired" -msgstr "" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "" -"Your verification has expired. To receive a verified certificate, you must " -"submit a new photo of yourself and your government-issued photo ID before " -"the verification deadline for your course." -msgstr "" - -#: lms/templates/dashboard/_dashboard_third_party_error.html -msgid "Could Not Link Accounts" -msgstr "" - -#. Translators: this message is displayed when a user tries to link their -#. account with a third-party authentication provider (for example, Google or -#. LinkedIn) with a given edX account, but their third-party account is -#. already -#. associated with another edX account. provider_name is the name of the -#. third-party authentication provider, and platform_name is the name of the -#. edX deployment. -#: lms/templates/dashboard/_dashboard_third_party_error.html -msgid "" -"The {provider_name} account you selected is already linked to another " -"{platform_name} account." -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "" -"We're sorry to see you go! Please share your main reason for unenrolling." -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "I just wanted to browse the material" -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "This won't help me reach my goals" -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "I don't have the time" -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "I don't have the academic or language prerequisites" -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "I don't have enough support" -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "I am not happy with the quality of the content" -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "The course material was too hard" -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "The course material was too easy" -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Something was broken" -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Other" -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Thank you for sharing your reasons for unenrolling." -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "You are unenrolled from" -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Return To Dashboard" -msgstr "" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Browse Courses" -msgstr "" - -#: lms/templates/debug/run_python_form.html -msgid "Results:" -msgstr "" - -#: lms/templates/discussion/_discussion_inline.html -msgid "Topic:" -msgstr "" - -#: lms/templates/discussion/_discussion_inline.html -msgid "Show Discussion" -msgstr "" - -#: lms/templates/discussion/_discussion_inline_studio.html -msgid "To view live discussions, click Preview or View Live in Unit Settings." -msgstr "" - -#: lms/templates/discussion/_discussion_inline_studio.html -msgid "Discussion ID: {discussion_id}" -msgstr "" - -#: lms/templates/discussion/_filter_dropdown.html -msgid "Discussion topics list" -msgstr "" - -#: lms/templates/discussion/_filter_dropdown.html -#: lms/templates/discussion/_filter_dropdown.html -msgid "Filter Topics" -msgstr "" - -#: lms/templates/discussion/_filter_dropdown.html -msgid "filter topics" -msgstr "" - -#: lms/templates/discussion/_filter_dropdown.html -msgid "All Discussions" -msgstr "" - -#: lms/templates/discussion/_filter_dropdown.html -msgid "Posts I'm Following" -msgstr "" - -#. Translators: This labels a filter menu in forum navigation -#: lms/templates/discussion/_thread_list_template.html -msgid "Filter:" -msgstr "" - -#. Translators: This is a menu option for showing all forum threads unfiltered -#: lms/templates/discussion/_thread_list_template.html -msgid "Show all posts" -msgstr "" - -#. Translators: This is a menu option for showing only unread forum threads -#: lms/templates/discussion/_thread_list_template.html -msgid "Unread posts" -msgstr "" - -#. Translators: This is a menu option for showing only unanswered forum -#. question threads -#: lms/templates/discussion/_thread_list_template.html -msgid "Unanswered posts" -msgstr "" - -#. Translators: This is a menu option for showing only forum threads flagged -#. for abuse -#: lms/templates/discussion/_thread_list_template.html -msgid "Flagged" -msgstr "" - -#. Translators: This labels a group menu in forum navigation -#: lms/templates/discussion/_thread_list_template.html -msgid "Group:" -msgstr "" - -#: lms/templates/discussion/_thread_list_template.html -msgid "in all groups" -msgstr "" - -#. Translators: This labels a sort menu in forum navigation -#: lms/templates/discussion/_thread_list_template.html -msgid "Sort:" -msgstr "" - -#. Translators: This is a menu option for sorting forum threads -#: lms/templates/discussion/_thread_list_template.html -msgid "by recent activity" -msgstr "" - -#. Translators: This is a menu option for sorting forum threads -#: lms/templates/discussion/_thread_list_template.html -msgid "by most activity" -msgstr "" - -#. Translators: This is a menu option for sorting forum threads -#: lms/templates/discussion/_thread_list_template.html -msgid "by most votes" -msgstr "" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Student Notes" -msgstr "" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Notes" -msgstr "" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Highlights and notes you've made in course content" -msgstr "" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Search notes for:" -msgstr "" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Search notes for..." -msgstr "" - -#: lms/templates/edxnotes/edxnotes.html -msgid "View notes by:" -msgstr "" - -#: lms/templates/edxnotes/edxnotes.html -msgid "" -"You have not made any notes in this course yet. Other students in this " -"course are using notes to:" -msgstr "" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Mark a passage or concept so that it's easy to find later." -msgstr "" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Record thoughts about a specific passage or concept." -msgstr "" - -#: lms/templates/edxnotes/edxnotes.html -msgid "" -"Highlight important information to review later in the course or in future " -"courses." -msgstr "" - -#: lms/templates/edxnotes/edxnotes.html -msgid "" -"Get started by making a note in something you just read, like " -"{section_link}." -msgstr "" - -#: lms/templates/edxnotes/toggle_notes.html -msgid "Hide notes" -msgstr "" - -#: lms/templates/edxnotes/toggle_notes.html -msgid "Show notes" -msgstr "" - -#: lms/templates/elitemba/hmm.html -#: lms/templates/header/navbar-authenticated.html -msgid "Harvard ManageMentor" -msgstr "" - -#: lms/templates/emails/activation_email.txt -msgid "" -"You're almost there! Use the link to activate your account to access high-" -"quality {platform_name} courses. Note that you will not be able to log back " -"into your account until you have activated it." -msgstr "" - -#: lms/templates/emails/activation_email.txt -#: lms/templates/emails/confirm_email_change.txt -#: lms/templates/emails/failed_verification_email.txt -#: lms/templates/emails/order_confirmation_email.txt -#: lms/templates/emails/photo_submission_review.txt -#: lms/templates/emails/reverification_processed.txt -msgid "" -"(If the link is invalid, try to copy and paste it into the address bar of " -"your web browser, and press \"Enter\" to open the page.)" -msgstr "" - -#: lms/templates/emails/activation_email.txt -msgid "Initial password:{third_party_auth_pw}" -msgstr "" - -#: lms/templates/emails/activation_email.txt -msgid "Enjoy learning with {platform_name}." -msgstr "" - -#: lms/templates/emails/activation_email.txt -msgid "" -"If you need help, please use our web form at {support_url} or email " -"{support_email}." -msgstr "" - -#: lms/templates/emails/activation_email.txt -msgid "" -"This email message was automatically sent by {lms_url} because someone " -"attempted to create an account on {platform_name} using this email address." -msgstr "" - -#: lms/templates/emails/activation_email_subject.txt -msgid "Action Required: Activate your {platform_name} account" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Thank you for your purchase of " -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Your payment was successful." -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "" -"If you have billing questions, please read the FAQ ({faq_url}) or contact " -"{billing_email}." -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "If you have billing questions, please contact {billing_email}." -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"{order_placed_by} placed an order and mentioned your name as the " -"Organization contact." -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"{order_placed_by} placed an order and mentioned your name as the additional " -"receipt recipient." -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "The items in your order are:" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "Quantity - Description - Price" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Company Name:" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Purchase Order Number:" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Company Contact Name:" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Company Contact Email:" -msgstr "" - -#. Translators: this will be the name of a person receiving an email -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Recipient Name:" -msgstr "" - -#. Translators: this will be the email address of a person receiving an email -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Recipient Email:" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "#:" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Order Number: {order_number}" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"A CSV file of your registration URLs is attached. Please distribute " -"registration URLs to each student planning to enroll using the email " -"template below." -msgstr "" - -#. Translators: This is followed by the instructor or course team name (so -#. could be singular or plural) -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Warm regards," -msgstr "" - -#. Translators: The
    is a line break (empty line), please keep this html -#. in -#. the string after the sign off. -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Warm regards,
    The {platform_name} Team" -msgstr "" - -#. Translators: please translate the text inside [[ ]]. This is meant as a -#. template for course teams to use. -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Dear [[Name]]" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"To enroll in {course_names} we have provided a registration URL for you. " -"Please follow the instructions below to claim your access." -msgstr "" - -#. Translators: please translate the text inside [[ ]]. This is meant as a -#. template for course teams to use. -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Your redeem url is: [[Enter Redeem URL here from the attached CSV]]" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "(1) Register for an account at {site_name}" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"(2) Once registered, copy the redeem URL and paste it in your web browser." -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"(3) On the enrollment confirmation page, Click the 'Activate Enrollment " -"Code' button. This will show the enrollment confirmation." -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"(4) You should be able to click on 'view course' button or see your course " -"on your student dashboard at {url}" -msgstr "" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"(5) Course materials will not be available until the course start date." -msgstr "" - -#. Translators: please translate the text inside [[ ]]. This is meant as a -#. template for course teams to use. Please also keep the

    and

    HTML -#. tags in place. -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "

    Sincerely,

    [[Your Signature]]

    " -msgstr "" - -#: lms/templates/emails/confirm_email_change.txt -msgid "" -"This is to confirm that you changed the e-mail associated with " -"{platform_name} from {old_email} to {new_email}. If you did not make this " -"request, please contact us immediately. Contact information is listed at:" -msgstr "" - -#: lms/templates/emails/confirm_email_change.txt -#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt -msgid "" -"We keep a log of old e-mails, so if this request was unintentional, we can " -"investigate." -msgstr "" - -#: lms/templates/emails/email_change_subject.txt -msgid "Request to change {platform_name} account e-mail" -msgstr "" - -#: lms/templates/emails/failed_verification_email.txt -msgid "" -"Sorry! The photos you submitted for ID verification were not accepted, for " -"the following reason(s):" -msgstr "" - -#: lms/templates/emails/failed_verification_email.txt -msgid "The photo(s) of you:" -msgstr "" - -#: lms/templates/emails/failed_verification_email.txt -msgid "Resubmit Verification: {reverify_url}" -msgstr "" - -#: lms/templates/emails/failed_verification_email.txt -#: lms/templates/emails/order_confirmation_email.txt -#: lms/templates/emails/passed_verification_email.txt -#: lms/templates/emails/photo_submission_confirmation.txt -#: lms/templates/emails/photo_submission_review.txt -msgid "Thank you," -msgstr "" - -#: lms/templates/emails/failed_verification_email.txt -#: lms/templates/emails/passed_verification_email.txt -#: lms/templates/emails/photo_submission_confirmation.txt -#: lms/templates/emails/photo_submission_review.txt -#: lms/templates/emails/reverification_processed.txt -msgid "The {platform_name} team" -msgstr "" - -#: lms/templates/emails/order_confirmation_email.txt -msgid "" -"Your payment was successful. You will see the charge below on your next " -"credit or debit card statement under the company name {merchant_name}." -msgstr "" - -#: lms/templates/emails/order_confirmation_email.txt -msgid "Your order number is: {order_number}" -msgstr "" - -#: lms/templates/emails/passed_verification_email.txt -msgid "Hi {full_name}" -msgstr "" - -#: lms/templates/emails/passed_verification_email.txt -msgid "Congratulations! Your ID verification process was successful." -msgstr "" - -#: lms/templates/emails/passed_verification_email.txt -msgid "" -"Your verification is effective for one year. It will expire on {expiry_date}" -msgstr "" - -#: lms/templates/emails/photo_submission_confirmation.txt -msgid "Hi {full_name}," -msgstr "" - -#: lms/templates/emails/photo_submission_confirmation.txt -msgid "Thanks for submitting your photos!" -msgstr "" - -#: lms/templates/emails/photo_submission_confirmation.txt -msgid "" -"We've received your information and the ID verification process has " -"begun.Check for an email from us in the next few days to confirm whether " -"your verification was successful.You can also check the status of the " -"verification process on your dashboard." -msgstr "" - -#: lms/templates/emails/photo_submission_review.txt -msgid "Review ID Verification Photos" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "Thank you for purchasing enrollments in {course_name}." -msgstr "" - -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "" -"An invoice for {currency_symbol}{total_price} is attached. Payment is due " -"upon receipt. You can find information about payment methods on the invoice." -msgstr "" - -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "" -"A .csv file that lists your enrollment codes is attached. You can use the " -"email template below to distribute enrollment codes to your students. Each " -"student must use a separate enrollment code." -msgstr "" - -#. Translators: This is the signature of an email. "\n" is a newline -#. character -#. and should be placed between the closing word and the signature. -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "" -"Thanks,\n" -"The {platform_name} Team" -msgstr "" - -#. Translators: please translate the text inside [[ ]]. This is meant as a -#. template for course teams to use. -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "Dear [[Name]]:" -msgstr "" - -#. Translators: please translate the text inside [[ ]]. This is meant as a -#. template for course teams to use. -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "" -"We have provided a course enrollment code for you in {course_name}. To " -"enroll in the course, click the following link:" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "HTML link from the attached CSV file" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "" -"After you enroll, you can see the course on your student dashboard. You can " -"see course materials after the course start date." -msgstr "" - -#. Translators: please translate the text inside [[ ]]. This is meant as a -#. template for course teams to use. -#. This is the signature of an email. "\n" is a newline character -#. and should be placed between the closing word and the signature. -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "" -"Sincerely,\n" -"[[Your Signature]]" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "INVOICE" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Date: {date}" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Invoice No: {invoice_number}" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Terms: Due Upon Receipt" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Due Date: {date}" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Bill to:" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Customer Reference Number: {reference_number}" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Balance Due: {currency_symbol}{sale_price}" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Course: {course_name}" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "" -"Price: {currency_symbol}{course_price} Quantity: {quantity} " -"Sub-Total: {currency_symbol}{sub_total} Discount: " -"{currency_symbol}{discount}" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Total: {currency_symbol}{sale_price}" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Payment Instructions" -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "" -"If we do not receive payment, the learner enrollments that use these codes " -"will be canceled and learners will not be able to access course materials. " -"All purchases are final. For more information, see the {site_name} " -"cancellation policy." -msgstr "" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "For payment questions, contact {contact_email}" -msgstr "" - -#: lms/templates/emails/reject_name_change.txt -msgid "" -"We are sorry. Our course staff did not approve your request to change your " -"name from {old_name} to {new_name}. If you need further assistance, please " -"e-mail the course staff at {email}." -msgstr "" - -#: lms/templates/emails/reverification_processed.txt -msgid "" -"We have successfully verified your identity for the {assessment} assessment " -"in the {course_name} course." -msgstr "" - -#: lms/templates/emails/reverification_processed.txt -msgid "" -"We could not verify your identity for the {assessment} assessment in the " -"{course_name} course. You have used {used_attempts} out of " -"{allowed_attempts} attempts to verify your identity." -msgstr "" - -#: lms/templates/emails/reverification_processed.txt -msgid "" -"You must verify your identity before the assessment closes on {due_date}." -msgstr "" - -#: lms/templates/emails/reverification_processed.txt -msgid "To try to verify your identity again, select the following link:" -msgstr "" - -#: lms/templates/emails/reverification_processed.txt -msgid "" -"We could not verify your identity for the {assessment} assessment in the " -"{course_name} course. You have used {used_attempts} out of " -"{allowed_attempts} attempts to verify your identity, and verification is no " -"longer possible." -msgstr "" - -#: lms/templates/emails/reverification_processed.txt -msgid "To go to the courseware, select the following link:" -msgstr "" - -#: lms/templates/emails/reverification_processed.txt -msgid "" -"If you have any questions, you can contact student support at " -"{support_link}." -msgstr "" - -#: lms/templates/emails/reverification_processed.txt -msgid "Thanks," -msgstr "" - -#: lms/templates/embargo/default_courseware.html -#: lms/templates/embargo/default_enrollment.html -#: lms/templates/static_templates/embargo.html -#: themes/stanford-style/lms/templates/embargo/default_courseware.html -#: themes/stanford-style/lms/templates/embargo/default_enrollment.html -#: themes/stanford-style/lms/templates/static_templates/embargo.html -msgid "This Course Unavailable In Your Country" -msgstr "" - -#: lms/templates/embargo/default_courseware.html -msgid "" -"Our system indicates that you are trying to access this {platform_name} " -"course from a country or region in which it is not currently available." -msgstr "" - -#: lms/templates/embargo/default_enrollment.html -msgid "" -"Our system indicates that you are trying to enroll in this {platform_name} " -"course from a country or region in which it is not currently available." -msgstr "" - -#: lms/templates/enrollment/course_enrollment_message.html -msgid "Enrollment Successful" -msgstr "" - -#: lms/templates/enrollment/course_enrollment_message.html -msgid "" -"Thank you for enrolling in {course_names}. We hope you enjoy the course." -msgstr "" - -#: lms/templates/enrollment/course_enrollment_message.html -msgid "Thank you for enrolling in:" -msgstr "" - -#: lms/templates/enrollment/course_enrollment_message.html -msgid "We hope you enjoy the course." -msgstr "" - -#: lms/templates/enrollment/course_enrollment_message.html -msgid "" -"{platform_name} is a nonprofit bringing high-quality education to everyone, " -"everywhere. Your help allows us to continuously improve the learning " -"experience for millions and make a better future one learner at a time." -msgstr "" - -#: lms/templates/enrollment/course_enrollment_message.html -msgid "Donation Actions" -msgstr "" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "Financial Assistance Application" -msgstr "" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "A Note to Learners" -msgstr "" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "Dear EliteMBA Learner," -msgstr "" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "" -"EliteMBA Financial Assistance is a program we created to give learners in " -"all financial circumstances a chance to earn a Verified Certificate upon " -"successful completion of an EliteMBA course." -msgstr "" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "" -"If you are interested in working toward a Verified Certificate, but cannot " -"afford to pay the fee, please apply now. Please note that financial " -"assistance is limited and may not be awarded to all eligible candidates." -msgstr "" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "" -"In order to be eligible for EliteMBA Financial Assistance, you must " -"demonstrate that paying the Verified Certificate fee would cause you " -"economic hardship. To apply, you will be asked to answer a few questions " -"about why you are applying and how the Verified Certificate will benefit " -"you." -msgstr "" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "" -"If your application is approved, we'll give you instructions for verifying " -"your identity on EliteMBA.cn so you can start working toward completing your" -" EliteMBA course." -msgstr "" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "" -"EliteMBA is committed to making it possible for you to take high quality " -"courses from leading institutions regardless of your financial situation, " -"earn a Verified Certificate, and share your success with others." -msgstr "" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "Sincerely, Anant" -msgstr "" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "Back to Student FAQs" -msgstr "" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "Apply for Financial Assistance" -msgstr "" - -#: lms/templates/header/brand.html -#: lms/templates/header/navbar-logo-header.html -#: lms/templates/navigation/navbar-logo-header.html -#: lms/templates/navigation/bootstrap/navbar-logo-header.html -msgid "{platform_name} Home Page" -msgstr "" - -#: lms/templates/header/header.html lms/templates/header/user_dropdown.html -msgid "Options Menu" -msgstr "" - -#: lms/templates/header/header.html lms/templates/navigation/navigation.html -msgid "" -"{begin_strong}Warning:{end_strong} Your browser is not fully supported. We " -"strongly recommend using {chrome_link} or {ff_link}." -msgstr "" - -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/learner_dashboard/programs.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Programs" -msgstr "" - -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Journals" -msgstr "" - -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/header/user_dropdown.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Profile" -msgstr "" - -#: lms/templates/header/navbar-authenticated.html -msgid "Discover New" -msgstr "" - -#. Translators: This is short for "System administration". -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -msgid "Sysadmin" -msgstr "" - -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/header/navbar-not-authenticated.html -msgid "Membership" -msgstr "" - -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/header/navbar-not-authenticated.html -msgid "Professors" -msgstr "" - -#: lms/templates/header/navbar-authenticated.html -msgid "Expiry: " -msgstr "" - -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: lms/templates/shoppingcart/shopping_cart.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Shopping Cart" -msgstr "" - -#: lms/templates/header/navbar-not-authenticated.html -msgid "Supplemental Links" -msgstr "" - -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "How it Works" -msgstr "" - -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -msgid "Schools" -msgstr "" - -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "" - -#: lms/templates/header/user_dropdown.html -msgid "Resume your last course" -msgstr "" - -#: lms/templates/header/user_dropdown.html -msgid "VIP Center" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Add Coupon Code" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -msgid "Enter information about the coupon code below." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Coupon Code" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -msgid "Discount Percentage" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Description" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -msgid "Add expiration date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Example Certificates" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Generate example certificates for the course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Generate Example Certificates" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Status:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Generating example {name} certificate" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Error generating example {name} certificate: {error}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "View {name} certificate" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Refresh Status" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Student-Generated Certificates" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Disable Student-Generated Certificates" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Enable Student-Generated Certificates" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "" -"You must successfully generate example certificates before you enable " -"student-generated certificates." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Generate Certificates" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "" -"Course certificate generation requires an activated web certificate " -"configuration." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "" -"When you are ready to generate certificates for your course, click Generate " -"Certificates. You do not need to do this if you have set the certificate " -"mode to on-demand generation." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Pending Tasks" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "The status for any active tasks appears in a table below." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Regenerate Certificates" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "" -"To regenerate certificates for your course, choose the learners who will " -"receive regenerated certificates and click Regenerate Certificates." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Choose learner types for regeneration" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "" -"Regenerate for learners who have already received certificates. ({count})" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Regenerate for learners who have not received certificates. ({count})" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Regenerate for learners with audit passing state. ({count})" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Regenerate for learners with audit not passing state. ({count})" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Regenerate for learners in an error state. ({count})" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Certificate Generation History" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Task name" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "SET CERTIFICATE EXCEPTIONS" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "" -"Set exceptions to generate certificates for learners who did not qualify for" -" a certificate but have been given an exception by the course team. After " -"you add learners to the exception list, click Generate Exception " -"Certificates below." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Invalidate Certificates" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Enrollment Information" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Number of enrollees (admins, staff, and students) by track" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Verified" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Audit" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Honor" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Professional" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Basic Course Information" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Course Name:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Course Start Date:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Course End Date:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "No end date set" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Has the course started?" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Yes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "No" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Has the course ended?" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Number of sections:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Grade Cutoffs:" -msgstr "" - -#. Translators: git is a version-control system; see http://git-scm.com/about -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "" -"View detailed Git import logs for this course {link_start}by clicking " -"here{link_end}." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Course Warnings" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Click to display the grading configuration for the course. The grading " -"configuration is the breakdown of graded subsections of the course (such as " -"exams and problem sets), and can be changed on the 'Grading' page (under " -"'Settings') in Studio." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Grading Configuration" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Click to download a CSV of anonymized student IDs:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Get Student Anonymized IDs CSV" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Reports" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"For large courses, generating some reports can take several hours. When " -"report generation is complete, a link that includes the date and time of " -"generation appears in the table below. These reports are generated in the " -"background, meaning it is OK to navigate away from this page while your " -"report is generating." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Please be patient and do not click these buttons multiple times. Clicking " -"these buttons multiple times will significantly slow the generation process." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Click to generate a CSV file of all students enrolled in this course, along " -"with profile information such as email address and username:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download profile information as a CSV" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Click to generate a CSV file that lists learners who can enroll in the " -"course but have not yet done so." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of learners who can enroll" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Click to generate a CSV file of all proctored exam results in this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Generate Proctored Exam Results Report" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Click to generate a CSV file of survey results for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Generate Survey Results Report" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Select a problem to generate a CSV file that lists all student answers to " -"the problem. You also select a section or chapter to include results of all " -"problems in that section or chapter." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "NOTE" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"The generated report is limited to {max_entries} responses. If you expect " -"more than {max_entries} responses, try generating the report on a chapter-" -"by-chapter, or problem-by-problem basis, or contact your site administrator " -"to increase the limit." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of problem responses" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Click to list certificates that are issued for this course:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "View Certificates Issued" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download CSV of Certificates Issued" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"For smaller courses, click to list profile information for enrolled students" -" directly on this page:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "List enrolled students' profile information" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Click to generate a CSV grade report for all currently enrolled students." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Generate Grade Report" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Generate Problem Grade Report" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Generate ORA Data Report" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Reports Available for Download" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"The answer distribution report listed below is generated periodically by an " -"automated background process. The report is cumulative, so answers submitted" -" after the process starts are included in a subsequent report. The report is" -" generated several times per day." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Edit Coupon Code" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Edit Coupon Code Information" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Code" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "example: A123DS" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Percentage Discount" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Update Coupon Code" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Individual due date extensions" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "" -"Specify the {platform_name} email address or username of a student here:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Student Email or Username" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" -msgstr "" - -#. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the -#. format the system requires. -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "" -"Specify the extension due date and time (in UTC; please specify " -"{format_string})." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Change due date for student" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Viewing granted extensions" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "List all students with due date extensions" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Specify a student to see all of that student's extensions." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "List date extensions for student" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Resetting extensions" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "" -"Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Reset due date for student" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Generate Registration Code Modal" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "* Required Information" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Organization Name" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "The organization that purchased enrollments in the course" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/shoppingcart/billing_details.html -msgid "Organization Contact" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Organization Contact Name" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "The primary contact at the organization" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Invoice Recipient" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "The contact who should receive the invoice" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Organization Billing Address" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Address Line 1" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Address Line 2" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Address Line 3" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "State/Province" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Zip" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Unit Price" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "The price per enrollment purchased" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Number of Enrollment Codes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "The total number of enrollment codes to create" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Course Team Internal Reference" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Internal reference information for the sale" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Customer Reference" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Customer's purchase order or other reference information" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Send me a copy of the invoice" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html -msgid "" -"For analytics about your course, go to " -"{link_start}{analytics_dashboard_name}{link_end}." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Instructor Dashboard" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "View Course in Studio" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -msgid "Enrollment Code Status" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -msgid "Change the status of an enrollment code." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -#: lms/templates/shoppingcart/receipt.html -msgid "Enrollment Code" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -msgid "Find Enrollment Code" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Enter email addresses and/or usernames separated by new lines or commas." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"You will not get notification for emails that bounce, so please double-check" -" spelling." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Role of the users being enrolled." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Enter the reason why the students are to be manually enrolled or unenrolled." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"This cannot be left blank and will be recorded and presented in Enrollment " -"Reports." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Therefore, please give enough detail to account for this action." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -#: lms/templates/support/feature_based_enrollments.html -msgid "Reason" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Register/Enroll Students" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"To register and enroll a list of users in this course, choose a CSV file " -"that contains the following columns in this exact order: email, username, " -"name, and country. Please include one student per row and do not include any" -" headers, footers, or blank lines." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Upload a CSV for bulk enrollment" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Upload CSV" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Tester Addition" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Note: Users must have an activated {platform_name} account before they can " -"be enrolled as beta testers." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"If this option is {em_start}checked{em_end}, users who have not enrolled in " -"your course will be automatically enrolled." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Checking this box has no effect if 'Remove beta testers' is selected." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add beta testers" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Remove beta testers" -msgstr "" - -#. Translators: an "Administration List" is a list, such as Course Staff, that -#. users can be added to. -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Course Team Management" -msgstr "" - -#. Translators: an "Administrator Group" is a group, such as Course Staff, -#. that -#. users can be added to. -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Select a course team role:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Getting available lists..." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Staff cannot modify these lists. To manage course team membership, a course " -"Admin must give you the Admin role to add Staff or Beta Testers, or the " -"Discussion Admin role to add discussion moderators and TAs." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Course team members with the Staff role help you manage your course. Staff " -"can enroll and unenroll learners, as well as modify their grades and access " -"all course data. Staff also have access to your course in Studio and " -"Insights. You can only give course team roles to enrolled users." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Staff" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Admin" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Course team members with the Admin role help you manage your course. They " -"can do all of the tasks that Staff can do, and can also add and remove the " -"Staff and Admin roles, discussion moderation roles, and the beta tester role" -" to manage course team membership. You can only give course team roles to " -"enrolled users." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Admin" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Beta Testers" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Beta Testers can see course content before other learners. They can make " -"sure that the content works, but have no additional privileges. You can only" -" give course team roles to enrolled users." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Beta Tester" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Discussion Admins" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Discussion Admins can edit or delete any post, clear misuse flags, close and" -" re-open threads, endorse responses, and see posts from all groups. Their " -"posts are marked as 'staff'. They can also add and remove the discussion " -"moderation roles to manage course team membership. Only enrolled users can " -"be added as Discussion Admins." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Discussion Admin" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Discussion Moderators" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Discussion Moderators can edit or delete any post, clear misuse flags, close" -" and re-open threads, endorse responses, and see posts from all groups. " -"Their posts are marked as 'staff'. They cannot manage course team membership" -" by adding or removing discussion moderation roles. Only enrolled users can " -"be added as Discussion Moderators." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Moderator" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Group Community TA" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Group Community TAs are members of the community who help course teams " -"moderate discussions. Group Community TAs see only posts by learners in " -"their assigned group. They can edit or delete posts, clear flags, close and " -"re-open threads, and endorse responses, but only for posts by learners in " -"their group. Their posts are marked as 'Community TA'. Only enrolled " -"learners can be added as Group Community TAs." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Group Community TA" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Community TA" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Community TAs are members of the community who help course teams moderate " -"discussions. They can see posts by learners in their assigned cohort or " -"enrollment track, and can edit or delete posts, clear flags, close or re-" -"open threads, and endorse responses. Their posts are marked as 'Community " -"TA'. Only enrolled learners can be added as Community TAs." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Community TA" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "CCX Coaches" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"CCX Coaches are able to create their own Custom Courses based on this " -"course, which they can use to provide personalized instruction to their own " -"students based in this course material." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add CCX Coach" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "There is no data available to display at this time." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Use Reload Graphs to refresh the graphs." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Reload Graphs" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Subsection Data" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Each bar shows the number of students that opened the subsection." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "" -"You can click on any of the bars to list the students that opened the " -"subsection." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "You can also download this data as a CSV file." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Download Subsection Data for all Subsections as a CSV" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Grade Distribution Data" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Each bar shows the grade distribution for that problem." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "" -"You can click on any of the bars to list the students that attempted the " -"problem, along with the grades they received." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Download Problem Data for all Problems as a CSV" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Grade Distribution per Problem" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Download Student Opened as a CSV" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Download Student Grades as a CSV" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "This is a partial list, to view all students download as a csv." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Grade" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Percent" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "There are no problems in this section." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Send to:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Myself" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Staff and Administrators" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "All Learners" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Cohort: " -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "(Learners not explicitly assigned to a cohort)" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Learners in the {track_name} Track" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Subject: " -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "(Maximum 128 characters)" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Message:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "" -"We recommend sending learners no more than one email message per week. " -"Before you send your email, review the text carefully and send it to " -"yourself first, so that you can preview the formatting and make sure " -"embedded images and links work correctly." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "CAUTION!" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "" -"When you select Send Email, your email message is added to the queue for " -"sending, and cannot be cancelled." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Send Email" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "" -"Email actions run in the background. The status for any active tasks - " -"including email tasks - appears in a table below." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Email Task History" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "To see the content of previously sent emails, click this button:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Show Sent Email History" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "To read a sent email message, click its subject." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "" -"To see the status for all email tasks submitted for this course, click this " -"button:" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Show Email Task History" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Set Course Mode Price" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Please enter Course Mode detail below" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Currency" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Set Price" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/special_exams.html -msgid "Allowance Section" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/special_exams.html -msgid "Student Special Exam Attempts" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/special_exams.html -msgid "Review Dashboard" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View gradebook for enrolled learners" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"Note: This feature is available only to courses with a small number of " -"enrolled learners." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View Gradebook" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View a specific learner's enrollment status" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Learner's {platform_name} email address or username *" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Learner email address or username" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View Enrollment Status" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View a specific learner's grades and progress" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Learner's {platform_name} email address or username" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View Progress Page" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Adjust a learner's grade for a specific problem" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Location of problem in course" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Example" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Problem location" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Attempts" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"Allow a learner who has used up all attempts to work on the problem again." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Reset Attempts to Zero" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"For the specified problem, rescore the learner's responses. The 'Rescore " -"Only If Score Improves' option updates the learner's score only if it " -"improves in the learner's favor." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Score Override" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "For the specified problem, override the learner's score." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"New score for problem, out of the total points available for the problem" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Score" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Override Learner's Score" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Problem History" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"For the specified problem, permanently and completely delete the learner's " -"answers and scores from the database." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Task Status" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"Show the status for the rescoring tasks that you submitted for this learner " -"and problem." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Show Task Status" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Adjust a learner's entrance exam results" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Allow the learner to take the exam again." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Allow Skip" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Waive the requirement for the learner to take the exam." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Let Learner Skip Entrance Exam" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"Rescore any responses that have been submitted. The 'Rescore All Problems " -"Only If Score Improves' option updates the learner's scores only if it " -"improves in the learner's favor." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore All Problems" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore All Problems Only If Score Improves" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Entrance Exam History" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"For the entire entrance exam, permanently and completely delete the " -"learner's answers and scores from the database." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"Show the status for the rescoring tasks that you submitted for this learner " -"and entrance exam." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Adjust all enrolled learners' grades for a specific problem" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Allows all learners to work on the problem again." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"Rescore submitted responses. The 'Rescore Only If Scores Improve' option " -"updates a learner's score only if it improves in the learner's favor." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore All Learners' Submissions" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore Only If Scores Improve" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Show the status for the tasks that you submitted for this problem." -msgstr "" - -#: lms/templates/learner_dashboard/_dashboard_navigation_courses.html -#: themes/edx.org/lms/templates/dashboard.html -msgid "My Courses" -msgstr "" - -#: lms/templates/learner_dashboard/_dashboard_navigation_journals.html -msgid "My Journals" -msgstr "" - -#: lms/templates/learner_dashboard/program_details.html -msgid "Program Details" -msgstr "" - -#: lms/templates/learner_dashboard/text-me-fragment.html -msgid "Get the {platform_name} Mobile App!" -msgstr "" - -#: lms/templates/learner_dashboard/text-me-fragment.html -msgid "We'll send you a one time SMS with a link to download the app." -msgstr "" - -#: lms/templates/learner_dashboard/text-me-fragment.html -msgid "Mobile phone number" -msgstr "" - -#: lms/templates/learner_dashboard/text-me-fragment.html -msgid "Send me a text with the link" -msgstr "" - -#: lms/templates/modal/_modal-settings-language.html -msgid "Change Preferred Language" -msgstr "" - -#: lms/templates/modal/_modal-settings-language.html -msgid "Please choose your preferred language" -msgstr "" - -#: lms/templates/modal/_modal-settings-language.html -msgid "Save Language Settings" -msgstr "" - -#: lms/templates/modal/_modal-settings-language.html -msgid "" -"Don't see your preferred language? {link_start}Volunteer to become a " -"translator!{link_end}" -msgstr "" - -#: lms/templates/navigation/navbar-not-authenticated.html -msgid "Explore Courses" -msgstr "" - -#: lms/templates/navigation/navigation.html -msgid "Global" -msgstr "" - -#: lms/templates/peer_grading/peer_grading.html -msgid "" -"\n" -"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" -"{ul_tag}\n" -"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" -"{li_tag}The course team needs to score the essays that are used to help you better understand the grading\n" -"criteria.{end_li_tag}\n" -"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" -"{end_ul_tag}\n" -"{end_p_tag}\n" -msgstr "" - -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "" - -#: lms/templates/peer_grading/peer_grading.html -msgid "" -"Here is a list of problems that need to be peer graded for this course." -msgstr "" - -#: lms/templates/peer_grading/peer_grading.html -msgid "Problem Name" -msgstr "" - -#: lms/templates/peer_grading/peer_grading.html -msgid "Due date" -msgstr "" - -#: lms/templates/peer_grading/peer_grading.html -msgid "Graded" -msgstr "" - -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/shoppingcart/receipt.html -msgid "Available" -msgstr "" - -#: lms/templates/peer_grading/peer_grading.html -msgid "Required" -msgstr "" - -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -msgid "Progress" -msgstr "" - -#: lms/templates/peer_grading/peer_grading.html -msgid "No due date" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_closed.html -msgid "" -"The due date has passed, and peer grading for this problem is closed at this" -" time." -msgstr "" - -#: lms/templates/peer_grading/peer_grading_closed.html -msgid "The due date has passed, and peer grading is closed at this time." -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Learning to Grade" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Hide Question" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Student Response" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Written Feedback" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Please include some written feedback as well." -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "" -"This submission has explicit, offensive, or (I suspect) plagiarized content." -" " -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "How did I do?" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Continue" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Ready to grade!" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "" -"You have finished learning to grade, which means that you are now ready to " -"start grading." -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Start Grading!" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Learning to grade" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "You have not yet finished learning to grade this problem." -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "" -"You will now be shown a series of instructor-scored essays, and will be " -"asked to score them yourself." -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "" -"Once you can score the essays similarly to an instructor, you will be ready " -"to grade your peers." -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Start learning to grade" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Are you sure that you want to flag this submission?" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "" -"You are about to flag a submission. You should only flag a submission that " -"contains explicit, offensive, or (suspected) plagiarized content. If the " -"submission is not addressed to the question or is incorrect, you should give" -" it a score of zero and accompanying feedback instead of flagging it." -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Remove Flag" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Keep Flag" -msgstr "" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Go Back" -msgstr "" - -#: lms/templates/professors/detail.html -msgid "Professor details" -msgstr "" - -#: lms/templates/professors/detail.html -msgctxt "Professor" -msgid "View Courses" -msgstr "" - -#: lms/templates/professors/index.html -msgid "Professors List" -msgstr "" - -#: lms/templates/professors/index.html -msgid "Purpose of Education" -msgstr "" - -#: lms/templates/professors/index.html -msgid "" -"Education is much more than teaching and learning. It also involves " -"inspiring learners to dig deep into their potential. Not only do we present " -"practical knowledge of administration, we’re also dedicated to the " -"cultivation of wisdom -- the ability to apply knowledge in real life." -msgstr "" - -#: lms/templates/professors/index.html -msgid "" -"We sincerely invite all remarkable professionals in business management to " -"join us in developing excellent courses, and educating more learners into " -"business professionals." -msgstr "" - -#: lms/templates/professors/index.html -msgid "More" -msgstr "" - -#: lms/templates/provider/authorize.html -msgid "" -"{start_strong}{application_name}{end_strong} would like to access your data " -"with the following permissions:" -msgstr "" - -#: lms/templates/provider/authorize.html -msgid "Read your user ID" -msgstr "" - -#: lms/templates/provider/authorize.html -msgid "Read your user profile" -msgstr "" - -#: lms/templates/provider/authorize.html -msgid "Read your email address" -msgstr "" - -#: lms/templates/provider/authorize.html -msgid "Read the list of courses in which you are a staff member." -msgstr "" - -#: lms/templates/provider/authorize.html -msgid "Read the list of courses in which you are an instructor." -msgstr "" - -#: lms/templates/provider/authorize.html -msgid "To see if you are a global staff user" -msgstr "" - -#: lms/templates/provider/authorize.html -msgid "Manage your data: {permission}" -msgstr "" - -#: lms/templates/registration/account_activation_sidebar_notice.html -msgid "Account Activation Info" -msgstr "" - -#: lms/templates/registration/password_reset_complete.html -msgid "Your Password Reset is Complete" -msgstr "" - -#: lms/templates/registration/password_reset_complete.html -msgid "Password Reset Complete" -msgstr "" - -#: lms/templates/registration/password_reset_complete.html -msgid "" -"Your password has been reset. {start_link}Sign-in to your account.{end_link}" -msgstr "" - -#: lms/templates/registration/password_reset_confirm.html -msgid "Reset Your {platform_name} Password" -msgstr "" - -#: lms/templates/registration/password_reset_confirm.html -msgid "Invalid Password Reset Link" -msgstr "" - -#: lms/templates/registration/password_reset_confirm.html -msgid "" -"This password reset link is invalid. It may have been used already. To reset" -" your password, go to the {start_link}sign-in{end_link} page and select " -"{start_strong}Forgot password{end_strong}." -msgstr "" - -#: lms/templates/registration/password_reset_done.html -msgid "Password reset successful" -msgstr "" - -#: lms/templates/registration/password_reset_done.html -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" - -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Billing Details" -msgstr "" - -#: lms/templates/shoppingcart/billing_details.html -msgid "" -"You can proceed to payment at any point in time. Any additional information " -"you provide will be included in your receipt." -msgstr "" - -#: lms/templates/shoppingcart/billing_details.html -msgid "Purchasing Organizational Details" -msgstr "" - -#: lms/templates/shoppingcart/billing_details.html -msgid "Purchasing organization" -msgstr "" - -#: lms/templates/shoppingcart/billing_details.html -msgid "Purchase order number (if any)" -msgstr "" - -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html -msgid "Email Address" -msgstr "" - -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html -msgid "email@example.com" -msgstr "" - -#: lms/templates/shoppingcart/billing_details.html -msgid "Additional Receipt Recipient" -msgstr "" - -#: lms/templates/shoppingcart/billing_details.html -msgid "" -"If no additional billing details are populated the payment confirmation will" -" be sent to the user making the purchase." -msgstr "" - -#: lms/templates/shoppingcart/billing_details.html -msgid "Payment processing occurs on a separate secure site." -msgstr "" - -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Your Shopping cart is currently empty." -msgstr "" - -#: lms/templates/shoppingcart/cybersource_form.html -#: lms/templates/shoppingcart/shopping_cart_flow.html -msgid "Payment" -msgstr "" - -#: lms/templates/shoppingcart/download_report.html -msgid "Download CSV Reports" -msgstr "" - -#: lms/templates/shoppingcart/download_report.html -msgid "Download CSV Data" -msgstr "" - -#: lms/templates/shoppingcart/download_report.html -msgid "" -"There was an error in your date input. It should be formatted as YYYY-MM-DD" -msgstr "" - -#: lms/templates/shoppingcart/download_report.html -msgid "These reports are delimited by start and end dates." -msgstr "" - -#: lms/templates/shoppingcart/download_report.html -msgid "Start Date: " -msgstr "" - -#: lms/templates/shoppingcart/download_report.html -msgid "End Date: " -msgstr "" - -#: lms/templates/shoppingcart/download_report.html -msgid "" -"These reports are delimited alphabetically by university name. i.e., " -"generating a report with 'Start Letter' A and 'End Letter' C will generate " -"reports for all universities starting with A, B, and C." -msgstr "" - -#: lms/templates/shoppingcart/download_report.html -msgid "Start Letter: " -msgstr "" - -#: lms/templates/shoppingcart/download_report.html -msgid "End Letter: " -msgstr "" - -#: lms/templates/shoppingcart/error.html -msgid "Payment Error" -msgstr "" - -#: lms/templates/shoppingcart/error.html -msgid "There was an error processing your order!" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Thank you for your purchase!" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "View Dashboard" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "" -"You have successfully been enrolled for {course_names}. The following " -"receipt has been emailed to {receipient_emails}" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "" -"You have successfully purchased {number} course registration code for" -" {course_names}." -msgid_plural "" -"You have successfully purchased {number} course registration codes " -"for {course_names}." -msgstr[0] "" -msgstr[1] "" - -#: lms/templates/shoppingcart/receipt.html -msgid "The following receipt has been emailed to {receipient_emails}" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "" -"Please send each professional one of these unique registration codes to " -"enroll into the course. The confirmation/receipt email you will receive has " -"an example email template with directions for the individuals enrolling." -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Enrollment Link" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Status" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Used" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Invalid" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Invoice" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Date of purchase" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Print Receipt" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Billed To Details" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Company Name" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -msgid "N/A" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Purchase Order Number" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Company Contact Name" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Company Contact Email" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Recipient Name" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Recipient Email" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Card Type" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Credit Card Number" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Address 1" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "Address 2" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -msgid "State" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Registration for:" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Price per student:" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Discount Applied:" -msgstr "" - -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -msgid "Students" -msgstr "" - -#. Translators: Please keep the "" and "" tags around your -#. translation of the word "this" in your translation. -#: lms/templates/shoppingcart/receipt.html -msgid "Note: items with strikethough like this have been refunded." -msgstr "" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "Confirm Enrollment" -msgstr "" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "{site_name} - Confirm Enrollment" -msgstr "" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "{course_number} {course_title} Cover Image" -msgstr "" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "Confirm your enrollment for: {span_start}course dates{span_end}" -msgstr "" - -#: lms/templates/shoppingcart/registration_code_receipt.html -msgid "{course_name}" -msgstr "" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "" -"You've clicked a link for an enrollment code that has already been used. " -"Check your {link_start}course dashboard{link_end} to see if you're enrolled " -"in the course, or contact your company's administrator." -msgstr "" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "" -"You have successfully enrolled in {course_name}. This course has now been " -"added to your dashboard." -msgstr "" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "" -"You're already enrolled for this course. Visit your " -"{link_start}dashboard{link_end} to see the course." -msgstr "" - -#: lms/templates/shoppingcart/registration_code_receipt.html -msgid "The course you are enrolling for is full." -msgstr "" - -#: lms/templates/shoppingcart/registration_code_receipt.html -msgid "The course you are enrolling for is closed." -msgstr "" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "There was an error processing your redeem code." -msgstr "" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "" -"You're about to activate an enrollment code for {course_name} by " -"{site_name}. This code can only be used one time, so you should only " -"activate this code if you're its intended recipient." -msgstr "" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "Activate Course Enrollment" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "" -"{course_names} has been removed because the enrollment period has closed." -msgid_plural "" -"{course_names} have been removed because the enrollment period has closed." -msgstr[0] "" -msgstr[1] "" - -#. Translators: currency_symbol is a symbol indicating type of currency, ex -#. "$". -#. This string would look like this when all variables are in: -#. "$500.00" -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "{currency_symbol}{price}" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Cover Image" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Students:" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Input quantity and press enter." -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Increase" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Decrease" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Remove" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Discount or activation code" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "discount or activation code" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Apply" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "code has been applied" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "TOTAL:" -msgstr "" - -#. Translators: currency_symbol is a symbol indicating type of currency, ex -#. "$". currency_abbr is -#. an abbreviation for the currency, ex "USD". This string would look like -#. this -#. when all variables are in: -#. "$500.00 USD" -#: lms/templates/shoppingcart/shopping_cart.html -msgid "{currency_symbol}{price} {currency_abbr}" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "" -"After this purchase is complete, a receipt is generated with relative " -"billing details and registration codes for students." -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "" -"After this purchase is complete, {username} will be enrolled in this course." -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Empty Cart" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart_flow.html -msgid "Shopping cart" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart_flow.html -msgid "{platform_name} - Shopping Cart" -msgstr "" - -#: lms/templates/shoppingcart/shopping_cart_flow.html -msgid "Confirmation" -msgstr "" - -#: lms/templates/static_templates/404.html -msgid "" -"The page that you were looking for was not found. Go back to the " -"{link_start}homepage{link_end} or let us know about any pages that may have " -"been moved at {email}." -msgstr "" - -#: lms/templates/static_templates/about.html -#: lms/templates/static_templates/blog.html -#: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/disclaimer.html -#: lms/templates/static_templates/donate.html -#: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/help.html -#: lms/templates/static_templates/honor.html -#: lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/join_us.html -#: lms/templates/static_templates/manual.html -#: lms/templates/static_templates/media-kit.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html -#: lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy_policy.html -#: lms/templates/static_templates/tos.html -#: lms/templates/static_templates/user_agreement.html -msgid "This page left intentionally blank. Feel free to add your own content." -msgstr "" - -#: lms/templates/static_templates/blog.html -#: lms/templates/static_templates/blog.html -msgid "Blog" -msgstr "" - -#: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/about.html -msgid "Contact" -msgstr "" - -#: lms/templates/static_templates/disclaimer.html -#: lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "Disclaimer" -msgstr "" - -#: lms/templates/static_templates/donate.html -#: lms/templates/static_templates/donate.html -msgid "Donate" -msgstr "" - -#: lms/templates/static_templates/embargo.html -msgid "" -"Our system indicates that you are trying to access this {platform_name} " -"course from a country or region currently subject to U.S. economic and trade" -" sanctions.Unfortunately, because {platform_name} is required to comply with" -" export controls,we cannot allow you to access this course at this time." -msgstr "" - -#: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html -msgid "FAQ" -msgstr "" - -#: lms/templates/static_templates/honor.html -#: lms/templates/static_templates/honor.html -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Honor Code" -msgstr "" - -#: lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html -msgid "Jobs" -msgstr "" - -#: lms/templates/static_templates/join_us.html -#: lms/templates/static_templates/join_us.html -#: themes/normal-theme/lms/templates/footer.html -msgid "Join Us" -msgstr "" - -#: lms/templates/static_templates/manual.html -#: lms/templates/static_templates/manual.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/manual.html -msgid "Manual" -msgstr "" - -#: lms/templates/static_templates/media-kit.html -#: lms/templates/static_templates/media-kit.html -msgid "Media Kit" -msgstr "" - -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html -#: lms/templates/static_templates/press.html -msgid "In the Press" -msgstr "" - -#: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" -msgstr "" - -#: lms/templates/static_templates/server-down.html -#: lms/templates/static_templates/server-overloaded.html -msgid "" -"Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any problems or downtime." -msgstr "" - -#: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" -msgstr "" - -#: lms/templates/static_templates/server-error.html -msgid "" -"Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." -msgstr "" - -#: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" -msgstr "" - -#: lms/templates/static_templates/user_agreement.html -#: lms/templates/static_templates/user_agreement.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "User Agreement" -msgstr "" - -#: lms/templates/student_account/account_settings.html -msgid "Account Settings" -msgstr "" - -#: lms/templates/student_account/account_settings.html -msgid "Mobile" -msgstr "" - -#: lms/templates/student_account/account_settings.html -#: themes/normal-theme/lms/templates/footer.html -msgid "Bind Mobile" -msgstr "" - -#: lms/templates/student_account/account_settings.html -msgid "Mobile Phone No.:" -msgstr "" - -#: lms/templates/student_account/account_settings.html -msgid "Bind your EliteMBA account to your cellphone number." -msgstr "" - -#: lms/templates/student_account/finish_auth.html -msgid "Please Wait" -msgstr "" - -#: lms/templates/student_account/finish_auth.html -msgid "Please wait" -msgstr "" - -#: lms/templates/student_account/login_and_register.html -msgid "Sign in or Register" -msgstr "" - -#: lms/templates/support/certificates.html lms/templates/support/index.html -#: lms/templates/support/index.html -msgid "Student Support" -msgstr "" - -#: lms/templates/support/certificates.html -msgid "Student Support: Certificates" -msgstr "" - -#: lms/templates/support/contact_us.html -msgid "Contact {platform_name} Support" -msgstr "" - -#: lms/templates/support/enrollment.html -msgid "Student Support: Enrollment" -msgstr "" - -#: lms/templates/support/entitlement.html -msgid "Entitlements" -msgstr "" - -#: lms/templates/support/feature_based_enrollments.html -msgid "Feature Based Enrollments" -msgstr "" - -#: lms/templates/support/feature_based_enrollments.html -msgid "Student Support: Feature Based Enrollments" -msgstr "" - -#: lms/templates/support/feature_based_enrollments.html -msgid "Is Enabled" -msgstr "" - -#: lms/templates/support/feature_based_enrollments.html -msgid "Enabled As Of" -msgstr "" - -#: lms/templates/support/feature_based_enrollments.html -msgid "No results found" -msgstr "" - -#: lms/templates/support/manage_user.html -msgid "Manage User" -msgstr "" - -#: lms/templates/support/manage_user.html -msgid "Student Support: Manage User" -msgstr "" - -#: lms/templates/support/refund.html -msgid "Manual Refund" -msgstr "" - -#: lms/templates/support/refund.html -msgid "About to refund this order:" -msgstr "" - -#: lms/templates/support/refund.html -msgid "Order Id:" -msgstr "" - -#: lms/templates/support/refund.html -msgid "Enrollment:" -msgstr "" - -#: lms/templates/support/refund.html -msgid "enrolled" -msgstr "" - -#: lms/templates/support/refund.html -msgid "unenrolled" -msgstr "" - -#: lms/templates/support/refund.html -msgid "Cost:" -msgstr "" - -#: lms/templates/support/refund.html -msgid "CertificateItem Status:" -msgstr "" - -#: lms/templates/support/refund.html -msgid "Order Status:" -msgstr "" - -#: lms/templates/support/refund.html -msgid "Fulfilled Time:" -msgstr "" - -#: lms/templates/support/refund.html -msgid "Refund Request Time:" -msgstr "" - -#: lms/templates/survey/survey.html -msgid "User Survey" -msgstr "" - -#: lms/templates/survey/survey.html -msgid "Pre-Course Survey" -msgstr "" - -#: lms/templates/survey/survey.html -msgid "" -"You can begin your course as soon as you complete the following form. " -"Required fields are marked with an asterisk (*). This information is for the" -" use of {platform_name} only. It will not be linked to your public profile " -"in any way." -msgstr "" - -#: lms/templates/survey/survey.html -msgid "You are missing the following required fields:" -msgstr "" - -#: lms/templates/survey/survey.html -msgid "Cancel and Return to Dashboard" -msgstr "" - -#: lms/templates/survey/survey.html -msgid "Why do I need to complete this information?" -msgstr "" - -#: lms/templates/survey/survey.html -msgid "" -"We use the information you provide to improve our course for both current " -"and future students. The more we know about your specific needs, the better " -"we can make your course experience." -msgstr "" - -#: lms/templates/survey/survey.html -msgid "Who can I contact if I have questions?" -msgstr "" - -#: lms/templates/survey/survey.html -msgid "" -"If you have any questions about this course or this form, you can contact " -"{link_start}{mail_to_link}{link_end}." -msgstr "" - -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -msgid "Wiki" -msgstr "" - -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -msgid "Skeleton Page" -msgstr "" - -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -#: openedx/features/course_search/templates/course_search/course-search-fragment.html -#: openedx/features/course_search/templates/course_search/course-search-fragment.html -msgid "Search the course" -msgstr "" - -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Start Course" -msgstr "" - -#: lms/templates/verify_student/_verification_help.html -msgid "Have questions?" -msgstr "" - -#: lms/templates/verify_student/_verification_help.html -msgid "" -"Please read {a_start}our FAQs to view common questions about our " -"certificates{a_end}." -msgstr "" - -#: lms/templates/verify_student/incourse_reverify.html -msgid "Re-Verify for {course_name}" -msgstr "" - -#: lms/templates/verify_student/missed_deadline.html -msgid "Verification Deadline Has Passed" -msgstr "" - -#: lms/templates/verify_student/missed_deadline.html -msgid "Upgrade Deadline Has Passed" -msgstr "" - -#: lms/templates/verify_student/missed_deadline.html -msgid "" -"The verification deadline for {course_name} was {{date}}. Verification is no" -" longer available." -msgstr "" - -#: lms/templates/verify_student/missed_deadline.html -msgid "" -"The deadline to upgrade to a verified certificate for this course has " -"passed." -msgstr "" - -#: lms/templates/verify_student/pay_and_verify.html -msgid "Upgrade Your Enrollment For {course_name}." -msgstr "" - -#: lms/templates/verify_student/pay_and_verify.html -msgid "Receipt For {course_name}" -msgstr "" - -#: lms/templates/verify_student/pay_and_verify.html -msgid "Verify For {course_name}" -msgstr "" - -#: lms/templates/verify_student/pay_and_verify.html -msgid "Enroll In {course_name}" -msgstr "" - -#: lms/templates/verify_student/pay_and_verify.html -msgid "Technical Requirements" -msgstr "" - -#: lms/templates/verify_student/pay_and_verify.html -msgid "" -"Please make sure your browser is updated to the {strong_start}{a_start}most " -"recent version possible{a_end}{strong_end}. Also, please make sure your " -"{strong_start}webcam is plugged in, turned on, and allowed to function in " -"your web browser (commonly adjustable in your browser settings).{strong_end}" -msgstr "" - -#: lms/templates/verify_student/reverify.html -msgid "Re-Verification" -msgstr "" - -#: lms/templates/verify_student/reverify_not_allowed.html -#: lms/templates/verify_student/reverify_not_allowed.html -msgid "Identity Verification" -msgstr "" - -#: lms/templates/verify_student/reverify_not_allowed.html -msgid "" -"You have already submitted your verification information. You will see a " -"message on your dashboard when the verification process is complete (usually" -" within 1-2 days)." -msgstr "" - -#: lms/templates/verify_student/reverify_not_allowed.html -msgid "You cannot verify your identity at this time." -msgstr "" - -#: lms/templates/verify_student/reverify_not_allowed.html -msgid "Return to Your Dashboard" -msgstr "" - -#: lms/templates/widgets/cookie-consent.html -msgid "" -"This website uses cookies to ensure you get the best experience on our " -"website. If you continue browsing this site, we understand that you accept " -"the use of cookies." -msgstr "" - -#: lms/templates/widgets/cookie-consent.html -msgid "Got it!" -msgstr "" - -#: lms/templates/widgets/cookie-consent.html -msgid "Learn more" -msgstr "" - -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -msgid "{span_start}(active){span_end}" -msgstr "" - -#: lms/templates/wiki/includes/article_menu.html -msgid "Changes" -msgstr "" - -#: lms/templates/wiki/includes/article_menu.html -msgid "{span_start}active{span_end}" -msgstr "" - -#: lms/templates/wiki/includes/breadcrumbs.html -msgid "Course Wiki" -msgstr "" - -#: lms/templates/wiki/includes/breadcrumbs.html -msgid "Add article" -msgstr "" - -#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html -msgid "Preview Language Setting" -msgstr "" - -#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html -msgid "Language Code" -msgstr "" - -#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html -msgid "e.g. en for English" -msgstr "" - -#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html -msgid "Theming Administration" -msgstr "" - -#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html -msgid "Preview Theme" -msgstr "" - -#: openedx/core/lib/license/templates/license.html -msgid "All Rights Reserved" -msgstr "" - -#: openedx/core/lib/license/templates/license.html -msgid "Attribution" -msgstr "" - -#: openedx/core/lib/license/templates/license.html -msgid "Noncommercial" -msgstr "" - -#: openedx/core/lib/license/templates/license.html -msgid "No Derivatives" -msgstr "" - -#: openedx/core/lib/license/templates/license.html -msgid "Share Alike" -msgstr "" - -#: openedx/core/lib/license/templates/license.html -msgid "Creative Commons licensed content, with terms as follow:" -msgstr "" - -#: openedx/core/lib/license/templates/license.html -msgid "Some Rights Reserved" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-dates-fragment.html -msgid "Important Course Dates" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Goal: " -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Edit your course goal:" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Pursue a verified certificate" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Upgrade ({price})" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "Expand All" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "Prerequisite: " -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "{subsection_format} due {{date}}" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-reviews-fragment.html -#: openedx/features/course_experience/templates/course_experience/course-reviews-fragment.html -msgid "Reviews" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Learn About Verified Certificates" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "{platform_name} Verified Certificate" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Why upgrade?" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Official proof of completion" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Easily shareable certificate" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Proven motivator to complete the course" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "" -"Certificate purchases help {platform_name} continue to offer free courses" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "How it works" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Pay the Verified Certificate upgrade fee" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Verify your identity with a webcam and government-issued ID" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Study hard and pass the course" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Share your certificate with friends, employers, and others" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "edX Learner Stories" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "" -"My certificate has helped me showcase my knowledge on my" -" resume - I feel like this certificate could " -"really help me land my dream job!" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "{learner_name}, EliteMBA Learner" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "" -"I wanted to include a verified certificate on my resume and my profile to" -" illustrate that I am working towards this goal " -"I have and that I have achieved something while " -"I was unemployed." -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Upgrade ({course_price})" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/course-updates-fragment.html -msgid "This course does not have any updates." -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/dates-summary.html -msgid "Today is {date}" -msgstr "" - -#: openedx/features/course_experience/templates/course_experience/latest-update-fragment.html -msgid "Latest Update" -msgstr "" - -#: openedx/features/course_search/templates/course_search/course-search-fragment.html -#: openedx/features/course_search/templates/course_search/course-search-fragment.html -msgid "Search Results" -msgstr "" - -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "Purchase the Bundle (" -msgstr "" - -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "Courses included" -msgstr "" - -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "Journals included" -msgstr "" - -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "{access_length} Day Access" -msgstr "" - -#: openedx/features/journals/templates/journals/bundle_about.html -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "View Journal" -msgstr "" - -#: openedx/features/journals/templates/journals/bundle_card.html -msgid "Bundle" -msgstr "" - -#: openedx/features/journals/templates/journals/journal_card.html -msgid "Journal" -msgstr "" - -#: openedx/features/journals/templates/journals/journal_card.html -msgid "{num_months} month" -msgid_plural "{num_months} months" -msgstr[0] "" -msgstr[1] "" - -#: openedx/features/journals/templates/journals/journal_card.html -msgid "unlimited" -msgstr "" - -#: openedx/features/journals/templates/journals/journal_card.html -#: openedx/features/journals/templates/journals/journal_card.html -msgid "Access Length" -msgstr "" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "Journal Dashboard" -msgstr "" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "{journal_title} Cover Image" -msgstr "" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "Access Expired: {date}" -msgstr "" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "Access Expires: {date}" -msgstr "" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "Renew Access" -msgstr "" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "You have not purchased access to any journals yet." -msgstr "" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "Explore journals and courses" -msgstr "" - -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "" - -#. Translators: this section lists all the third-party authentication -#. providers -#. (for example, Google and LinkedIn) the user can link with or unlink from -#. their edX account. -#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html -msgid "Connected Accounts" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html -msgid "Linked" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html -msgid "Not Linked" -msgstr "" - -#. Translators: clicking on this removes the link between a user's edX account -#. and their account with an external authentication provider (like Google or -#. LinkedIn). -#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html -msgid "Unlink" -msgstr "" - -#. Translators: clicking on this creates a link between a user's edX account -#. and their account with an external authentication provider (like Google or -#. LinkedIn). -#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html -msgid "Link" -msgstr "" - -#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html -msgid "Completed {completion_date_html}" -msgstr "" - -#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html -#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html -msgid "{course_mode} certificate" -msgstr "" - -#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html -msgid "You haven't earned any certificates yet." -msgstr "" - -#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html -#: themes/edx.org/lms/templates/dashboard.html -msgid "Explore New Courses" -msgstr "" - -#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html -msgid "Learner Profile" -msgstr "" - -#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html -msgid "View My Records" -msgstr "" - -#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html -msgid "My Profile" -msgstr "" - -#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html -msgid "" -"Build out your profile to personalize your identity on {platform_name}." -msgstr "" - -#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html -msgid "An error occurred. Try loading the page again." -msgstr "" - -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "" -"Access Course Staff Support on the Partner Portal to submit or review " -"support tickets" -msgstr "" - -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "edX Partner Portal" -msgstr "" - -#: themes/edx.org/lms/templates/dashboard.html -msgid "" -"Browse recently launched courses and see what's new in your favorite " -"subjects." -msgstr "" - -#: themes/edx.org/lms/templates/footer.html -msgid "Page Footer" -msgstr "" - -#: themes/edx.org/lms/templates/footer.html -msgid "edX Home Page" -msgstr "" - -#: themes/edx.org/lms/templates/footer.html -msgid "© 2012–{year} edX Inc. " -msgstr "" - -#: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_about-accomplishments.html -msgid "About edX Verified Certificates" -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_about-accomplishments.html -msgid "" -"An edX Verified Certificate signifies that the learner has agreed to abide " -"by the edX honor code and completed all of the required tasks of this course" -" under its guidelines, as well as having their photo ID checked to verify " -"their identity." -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_about-edx.html -msgid "About edX" -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_about-edx.html -msgid "" -"{link_start}edX{link_end} offers interactive online classes and MOOCs from " -"the world's best universities, including MIT, Harvard, Berkeley, University " -"of Texas, and many others. edX is a non-profit online initiative created by " -"founding partners Harvard and MIT." -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Congratulations, {user_name}!" -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "" -"You worked hard to earn your certificate from " -"{accomplishment_copy_course_org} {dash} share it with colleagues, friends, " -"and family to get the word out about what you mastered in " -"{accomplishment_course_title}." -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Share this certificate on Facebook (opens a new tab/window)" -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Tweet this certificate (opens a new tab/window)" -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Add this certificate to your LinkedIn profile (opens a new tab/window)" -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Print" -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Print this certificate" -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html -msgid "Terms of Service & Honor Code" -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html -msgid "edX Inc." -msgstr "" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html -msgid "" -"All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." -msgstr "" - -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Support our Mission: {b_end}EdX, a non-profit, relies on verified " -"certificates to help fund affordable education to everyone globally." -msgstr "" - -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Support our Mission: {b_end} EdX, a non-profit, relies on verified " -"certificates to help fund free education for everyone globally" -msgstr "" - -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Find Courses" -msgstr "" - -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Schools & Partners" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Learn to Change · Change to Improve" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "About Us" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "About Platform" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/help.html -msgid "Help and Complaint" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Terms Description" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Partners" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "NetEase Study" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Tencent Classroom" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Scan WeChat QR Code" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "to find out more" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "" -"Guangdong Elite International Education & Technology Co., Ltd. All Rights" -" Reserved" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Bind Your Account to Your Mobile Number" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Mobile number" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Verify" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "incorrect cellphone number format" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Reminder" -msgstr "" - -#: themes/normal-theme/lms/templates/footer.html -msgid "" -"To meet the requirements of national policies and regulations of using a " -"real legal name, please bind your account to your cellphone number before " -"proceeding." -msgstr "" - -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: themes/normal-theme/lms/templates/index_overlay.html -msgid "Learn to Change · Change to Improve —— EliteMBA" -msgstr "" - -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: themes/normal-theme/lms/templates/index_overlay.html -msgid "Enjoy high-value MBA curriculum with ¥99.84 monthly payment!" -msgstr "" - -#: themes/normal-theme/lms/templates/certificates/_accomplishment-banner.html -msgid "Download Certificate" -msgstr "" - -#: themes/normal-theme/lms/templates/certificates/_accomplishment-rendering.html -#: themes/normal-theme/lms/templates/certificates/_accomplishment-rendering.html -msgid ":" -msgstr "" - -#: themes/normal-theme/lms/templates/certificates/_accomplishment-rendering.html -msgid "Verification Address:" -msgstr "" - -#: themes/normal-theme/lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Enrolled" -msgstr "" - -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Add {course_name} to Cart ({price} USD)" -msgstr "" - -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgctxt "CourseAbout" -msgid "Description" -msgstr "" - -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgctxt "CourseAbout" -msgid "Instructor" -msgstr "" - -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgctxt "CourseAbout" -msgid "Outline" -msgstr "" - -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "WeChat Scan Code" -msgstr "" - -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "" -"Share your experience by clicking the button on the above right corner of " -"the screen" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "" -"EliteMBA (www.EliteMBA.cn) is a sub-brand of Guangdong Elite International " -"Education & Technology Co., Ltd. focusing on the development of MBA online " -"classroom." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "" -"EliteMBA teams up with senior professors and experts in business management " -"academics at home and abroad to design and produce high quality and " -"knowledgeable systematic online courses. At the same time, we select and " -"introduce high-quality foreign educational content to provide learners with " -"a localized learning experience created by EliteMBA." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "" -"It is the common pursuit of educators to transfer knowledge to more learners" -" as much as possible. EliteMBA expects to provide educators with more " -"effective means of transmission and increase the reach of knowledge. Here, " -"we would like to offer sincere invitations to experts and professors, and " -"look forward to creating and introducing more high-quality curriculum " -"resources, so that knowledge can generate more value in a diverse world. " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "For course cooperation, please contact: " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/about.html -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "Education should guide and shape a society, not follow it" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "" -"Mr. Cai Yuanpei said that education should guide the society, rather than " -"follow it. Elite Education abandons the ideas of upholding the pursuit of " -"society, and advocates learners' self-achievement and their ambition in " -"leading the society. EliteMBA courses advocate, instead of the rote of " -"knowledge input, the motivation for pursuing wisdom and solving practical " -"problems." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "Our Mission" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "" -"Providing individuals, organizations with the knowledge, technology and " -"platform for lifelong learning." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "Our Vision" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "To become a reputable brand of digital education in China." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Elite Education" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "" -"Address: Room 1005, CITIC Plaza, No. 233 Tianhe North Road, Tianhe District," -" Guangzhou, China" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Telephone: 400-931-8118 (Monday to Friday at 9:00-18:00)" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Course Cooperation" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Contact: Mr. Chen" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Human Resources and Recruitment" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Feedback and Technical Support" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Media Communication" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Business Cooperation" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Enterprise Procurement" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Contact: Ms. Liao" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "System Bugs" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "General Terms" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"The products and services of Elite Education (www.elitemba.cn) are provided " -"by Guangdong Yingli International Education & Technology Co., Ltd. " -"(hereinafter referred to as \"EliteMBA\" or \"We\"). This Disclaimer " -"Statement(hereinafter referred to as \"Disclaimer\") applies to EliteMBA " -"website, other applications used on computers, mobile phones/tablets or " -"other devices and other products and services. EliteMBA User (hereinafter " -"referred to as \"User\") must carefully read these terms and agree to this " -"statement before accepting EliteMBA service." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"User who directly or (such as off-site API references, etc.) indirectly uses" -" EliteMBA services and data through various means will be regarded as having" -" unconditionally accepted all the contents involved in this Disclaimer; if " -"user objects any of the terms in this Disclaimer, please stop using all " -"services provided by EliteMBA. " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"This disclaimer may be amended or changed at any time by EliteMBA. The " -"EliteMBA will announce and updated the effective date. The updated " -"disclaimer will effectively replace the original statement once it is " -"published. By continuing to use EliteMBA service, the user agrees to and " -"accepts this statement and any updated versions thereof." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "Article 1" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"Users may not use EliteMBA to directly or indirectly engage in breaches of " -"EliteMBA services and data (including but not limited to publication, " -"promotion, reprint, browsing, and use of EliteMBA or its users) in various " -"ways. Laws and regulations of the People's Republic of China, as well as the" -" behavior of social morality. Users should abide by the following " -"commitments:" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"1. Content published, reprinted or provided should comply with Chinese laws " -"and regulations and social morality;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"2. Cannot interfere with, damage or violate the various legal rights and " -"interests of Elite Education;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"3. Shall not interfere with, damage and infringe upon the various legal " -"rights and interests of other EliteMBA users;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"4. Compliance with the rules and guidelines, management rules, etc. of Elite" -" Education website and other network related services;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"5. Elite Education has the right to remove content that violates the above " -"commitments." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "Article 2" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"1. EliteMBA only provides storage space for content posted by users. " -"EliteMBA does not provide any form of guarantee for the content posted or " -"reprinted by the User: there is no guarantee that the content will meet the " -"requirements of users, and there is no guarantee that the services of " -"EliteMBA will not be interrupted. EliteMBA does not assume any legal " -"responsibility for any reason that the user cannot use the website due to " -"any conditions such as network conditions, communication lines, third-party " -"websites or management requirements." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"2. The content published by Elite User (including but not limited to the " -"contents of the current product features of Elite) only indicates their " -"personal position and views, and does not represent the position or opinion " -"of Elite. As the content publisher, it is the responsibility of the content " -"to be published. All the disputes arising from the published content shall " -"be the legal and joint responsibility of the publisher of the content. " -"EliteMBA does not assume any legal and joint responsibility. " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"3. if the user publishes content suspected of infringing on the intellectual" -" property rights or other legitimate rights and interests of others through " -"EliteMBA, after the relevant parties provide prima facie evidence, EliteMBA " -"has the right to delete it first and retain the right to transfer it to the " -"judicial authorities. Referring to the investigation results of the relevant" -" judicial authorities, EliteMBA has the final decision on the disposal of " -"the content posted on the website. " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"4. User should inform Elite when he/she discovers any violation of this " -"Service Agreement, the terms of service of any other individual service, and" -" various announcements made by Elite Education. " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "Supplementary" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"EliteMBA reserves the rights to interpret, modify and update the Disclaimer." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Effective on Nov 30th, 2018" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Ⅰ. Terms of Service" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The products and services of Elite Education (www.elitemba.cn) are provided" -" by Guangdong Elite International Education & Technology Co., Ltd " -"(hereinafter referred to as \"EliteMBA\" or \"we\"). This User Agreement " -"(hereinafter referred to as \"Agreement\") is applicable to EliteMBA " -"websites, EliteMBA applications and other related products and services on " -"computer/mobile phone/tablet or other devices. EliteMBA has the right to " -"modify the terms hereof at any time. Upon the occurrence of any modification" -" is applied, we would update the Agreement and modify effective date " -"accordingly and the old version of the Agreement will be invalid and the new" -" version will be in effect immediately upon its publishing on the page " -"herein. Users shall regularly review the terms of service and check for " -"upgrades. The action of continual usage of our services is an implied " -"agreement on any updated version of Agreement that is in effect. In " -"addition, when Users use other EliteMBA services (including but not limited " -"to periodical marketing services other than basic services provided the " -"website), the aforementioned user shall adhere to the guidelines and rules " -"published by EliteMBA related to those services. All of the aforementioned " -"guidelines and rules shall be considered as a part of this Agreement." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"You should read this User Agreement carefully before using the services " -"provided by EliteMBA. If you do not agree to the User Agreement and/or " -"modify it at any time, please stop using all services provided by EliteMBA " -"immediately; once you use EliteMBA service, you are deemed to have " -"understood and fully agreed to the contents of this agreement, including any" -" changes made by EliteMBA to the User Agreement at any time, and become an " -"EliteMBA User (hereinafter referred to as \"User\")." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Ⅱ. Service Description" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"EliteMBA currently offers users a range of course services (including but " -"not limited to course videos, test questions, exams, course materials, notes" -" and teaching assistant services). Except as otherwise explicitely expressed" -" in this Agreement, any new features of the Service that are added or " -"enhanced by EliteMBA, including new products introduced, are subject to the " -"terms of this Agreement. The User understands and agrees that the Service is" -" provided only in accordance with the current conditions and that EliteMBA " -"is not responsible for any user information or personalization settings, " -"such as timeliness, deletion, delivery errors, non-storage or any other " -"issues. EliteMBA reserves the right to suspend any part of the Service for " -"any maintenance, upgrade or other purpose without prior notice." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Ⅲ. Abidance by Law" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"The User agrees to abide by all the provisions of the relevant laws and " -"regulations of the People's Republic of China and assumes full " -"responsibility for any actions and results of the use of the Service by any " -"means and password. If the user's behavior violates any provisions of " -"national laws and regulations and may constitute a crime, he will be held " -"criminally liable and the user shall bear full legal responsibility." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"At the same time, if EliteMBA has the reason to believe that any of the " -"User's actions, including but not limited to any of the User's statements " -"and other acts violates or may violate any of the provisions of national " -"laws and regulations, EliteMBA may terminate to offer service to the User at" -" any time without prior notice. " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Ⅳ. User Registration Obligation" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"In order to use the service, the User agrees to provide correct registered " -"account (email address and/or mobile phone number) and password according to" -" the service prompt, and ensure the validity and legality of the login " -"account, Avatar and other materials updated in the future. If the User " -"provides any material that is illegal, unethical, or that is deemed " -"unsuitable for display on this website, or that has reason to suspect that " -"the User's data is a program or malicious operation, EliteMBA has the right " -"to suspend or terminate the User's account and refuse the User to use all or" -" any part of the Service now and in the future. " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"EliteMBA is not responsible for any registration of any user, including but " -"not limited to the identification, verification of the authenticity, " -"correctness, completeness, suitability and/or responsibility of any " -"registration information." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "V. User Accounts, Passwords and Security" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"After completing the registration process for this service and successfully " -"registered, the User can log in to the account of EliteMBA (hereinafter " -"referred to as the \"account\") using their email address and/or mobile " -"number and password. Users are responsible for protecting the security of " -"their accounts." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The user is solely responsible for all passwords used and the activities of " -"the account. User agrees:" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"1. Upon the occurrence of noticing any unauthorized account activity or " -"other security issue, User shall contact and notify E-ducation immediately. " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"2. If the user does not keep his/her own account number and password, and " -"therefore any loss or damage caused by the User, EliteMBA cannot and will " -"not bear any responsibility;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"3. User is solely responsible for all the activities and issues that occur " -"in their account. Upon the occurrence of any loss or damage to other Users, " -"Elite or any other third party due to the failure by the User in securing " -"their own Account and password, the aforementioned User shall take full " -"responsible." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "VI. Privacy Policy of Elite Education " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The registration information provided by the User and certain other " -"information about the User retained by the company will be subject to the " -"laws of China's privacy and the company's Privacy Policy." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "VII. Responsibility of the Provider/User" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"In accordance with relevant laws and regulations, EliteMBA hereby notify all" -" Users solemnly that, the Provider of any content released or sent either " -"publicly or privately via Elite Education platform, including the publishing" -" or uploading of any text, information, data, picture, graphic, video or " -"other data (hereinafter referred to as \"Content\"), shall take full " -"responsibility for the Content they released or sent. EliteMBA only provides" -" storage space for Users, and cannot control the content transmitted through" -" the server, therefore we shall hold no responsibility for the validity, " -"integrity or quality of the Content. User shall be aware that there might be" -" unpleasant, inappropriate or disturbing Content upon the usage of the " -"service. In any case, EliteMBA shall hold no responsibility for any " -"aforementioned Content, and shall reserve the right to cease the " -"transmission of any of the aforementioned Content and take corresponding " -"actions by law, including but not limited to partially or entirely suspend " -"User from using this service, to keep relevant record and report to " -"authorities concerned." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "VIII. User Behavior" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The User agrees that the Service will not be used for any illegal or " -"improper activities, including but not limited to the following:" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"1. Publish or otherwise transmit information that contains one of the " -"following:" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "Opposing to the basic principles established by the Constitution;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Endanger national security, disclose state secrets, subvert state power or " -"sabotage state unification; " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Damage to national honours and interests;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Inciting national hatred, ethnic discrimination, and undermining national " -"unity;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Destroy the national religious policy and promote cults and feudal " -"superstitions;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Spread rumors, disrupting social order or endanger social stability;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Spreading obscenity, eroticism, gambling, violence, murder and terrorism or " -"instigating others to commit crime;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Insulting or slandering others, infringing on the legal rights of others;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"Contains false, fraudulent, harmful, coercive, infringing on the privacy of " -"others, harassment, infringement, slander, vulgarity, jealousy, or other " -"morally offensive content;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Contains other content restricted or prohibited by Chinese laws, " -"regulations, rules, regulations, and any legally binding norm;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"Content considered by EliteMBA to be unsuitable for display on EliteMBA " -"platforms;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "2. Harm the legitimate rights and interests of others in any way;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"3. Pretend to be any other person or institution, or to make a false " -"statement about or lied to any person or institution;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"4. Any content that is known but not authorized to be transmitted, sent by " -"e-mail or otherwise in accordance with any law or contract or legal " -"relationship. (e.g., due to employment relationships and internal " -"information, proprietary and confidential information known or disclosed " -"under a confidentiality contract)" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"5. Publish or otherwise transmit the content of copyrights, patents, " -"trademarks, trade secrets, or other proprietary rights (hereinafter referred" -" to as \"exclusive rights\") that infringe upon others;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"6. Publish, send or otherwise transmit any advertising letter, promotional " -"material, \"spam\", \"spamming\", \"chain mail\", \"direct sales\" or any " -"other form of persuasive material;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"7. Publishing, sending or by any other means transmitting computer viruses " -"(hereinafter referred to as \"Viruses\"), including but not limited to " -"Trojan horses, worms, time bombs, Cancelbots, or other computer codes, files" -" and programs designed to interfere with, damage or limit the functionality " -"of any computer software, hardware or communication equipment;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"8. Interfere with or disrupt this service or server and network connected to" -" the Service, or violate any rules, procedures, policies or specifications " -"regarding the network connection service;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "9. Tracking, cyber manhunting or harassing others in any other ways;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"10. Deliberate or unintentional violate any applicable local and/or national" -" law and any legally binding rules;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"11. Intercept, tamper with, collect, store or delete personal information, " -"on-site mail or other data without legal authorization, or use such " -"information for any illegal or improper purpose. " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"The User has acknowledged that EliteMBA does not have full control over the " -"User's use. When the User uses any content, including relying on the " -"correctness, completeness or practicability of the foregoing content, the " -"User agrees to judge and assume all risks without relying on EliteMBA. " -"However, in its sole discretion, EliteMBA may refuse and remove any content " -"provided by the Service that violates these Terms or any other content that " -"is controversial to EliteMBA." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"User understands and agrees that EliteMBA might save or disclose contents in" -" adherence of the requirements of laws and regulations, integrity or the " -"following purposes:" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "1. Comply with legal procedures;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "3. Execute the implementation of this agreement;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "3. Respond to any claims made by third parties;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"4. Protect the rights, property or personal safety of Elite Education, its " -"users and the public;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "5. Other conditions that EliteMBA deems necessary." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "IX. Special Warning for International Use" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Users are aware of the borderless nature of the Internet and agree to abide " -"by all local laws and regulations regarding online conduct and content. The " -"User specifically agrees to comply with all applicable laws and regulations " -"regarding the transmission of information from China or the country in which" -" the user is located." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "X. Public information published on EliteMBA" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"1. In this User Agreement, \"the area in which the service is used " -"publicly\" means the area that the general public can use;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"2. For the content uploaded or published by the user in EliteMBA, the user " -"shall guarantee that he or she is the copyright owner or has obtained legal " -"authorization, and the content does not infringe the legal rights of any " -"third party, and the user agrees to grant all the aforementioned content to " -"EliteMBA for worldwide free, irrevocable, permanent, sublicensable or " -"transferable license use, under which license will have the right to use the" -" foregoing in a manner that is displayed, promoted and otherwise not " -"prohibited by our laws." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XI. Compensation" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Any third party's claim or request, including a reasonable attorney fee, due" -" to the content provided, posted or transmitted by the User, the User's " -"connection to the Service, the User's breach of the User Agreement, or any " -"infringement of the User's rights, the user agrees to indemnify EliteMBA and" -" its subsidiaries, affiliates, senior employees, agents, brand owners or " -"other partners and employees against damage, and assume all legal " -"liabilities arising therefrom." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XII. About Use" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The User agrees not to copy, copy, sell, resell or use it for any other " -"commercial purpose for the use or acquisition of any part of the Service or " -"the Service." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XIII. About Storage" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The User agrees that EliteMBA shall be liable for any information, " -"communication materials and other content posted or transmitted through the " -"Service, if it is deleted or not stored." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XIV. Modification of Service" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"EliteMBA reserves the right to modify or terminate the Service (or any part " -"thereof) temporarily or permanently at any time, with or without notice. The" -" User agrees that the User shall not be liable to the User and any third " -"party for any modification, suspension or termination of the Service." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XV. Termination of Service" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"User agrees that EliteMBA can, in its sole discretion, terminate the User " -"account or the use of this service (or any part thereof) for any reason " -"(including but not limited to long-term inactive account, or EliteMBA " -"believes that User has violated the letters and spirit of this User " -"Agreement), and remove and delete any content of the User within the " -"service. User agrees that the service provided under any term of this User " -"Agreement can be suspended or terminated without prior notification. User " -"acknowledges and agrees that EliteMBA can immediately close or delete User " -"account and all the related data and files, and/or prohibit continued use of" -" the above files or this service. In addition, User agrees that if the use " -"of this service is suspended or terminated, or the User's account and " -"related data and files are closed or deleted, EliteMBA does not assume any " -"liability to the User or any third party." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XVI. Dealing with Advertisers and Other Third Parties" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Users engage in any form of communication or business dealings with " -"advertisers and other third parties through this website, or participate in " -"promotional activities, including payment and delivery of related goods or " -"services, and any other relevant terms, conditions, warranties or " -"representations reached, they are the fully behavior between users and " -"advertisers and other third parties. EliteMBA is not liable for any loss or " -"damage of any nature suffered by the user in connection with any of the " -"foregoing transactions or the aforementioned advertisers and other third " -"parties." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XVII. Exclusive Rights of EliteMBA" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The User also understands and agrees that the content of the sponsored " -"advertisements or information presented to the User via the Service or the " -"Advertiser is also protected by copyright, trademark, service mark, patent " -"or other proprietary rights. Users may not modify, rent, lend, sell, " -"distribute any part or all of the Service or the Software, or create " -"derivative works, or use unauthorized software, including but not without " -"the express authorization of EliteMBA or the advertiser. Limited to the " -"purpose of using the Service for unauthorized purposes. EliteMBA only grants" -" the user personal, non-transferable and non-exclusive right to use, so that" -" the User can use the purpose code of the software on a stand-alone " -"computer, but the User may not (and must not allow any third person) to " -"copy, modify, create derivative works, perform restoration work, reverse " -"translation, or otherwise discover the source code, or sell, transfer, " -"sublicense or provide software to set a warranty, or otherwise transfer any " -"rights in the software. The User agrees to use the Service through the " -"interface provided by EliteMBA and not in any other way." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XVIII. Guarantee and Warranty" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "The User clearly understands and agrees:" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"1. No provision of this agreement will relieve EliteMBA of any liability for" -" the User's personal injury or damage or property loss resulting from " -"intentional misconduct or gross negligence;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"2. The use of the Service is at the User's own risk. The Service is provided" -" on the basis of \"status quo\" and \"existing\". EliteMBA does not provide " -"any warranty or guarantee, either express or implied, including but not " -"limited to commercial marketability, applicability for particular purpose " -"and non-infringement upon others' rights, etc.;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "3. Any statement or conduct by any third party in the Service;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"4. Other matters related to the Service, except as explicitely provided in " -"this Agreement of Use;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"5. Elite Education does not accept any responsibility for the posting or " -"delivery of fraudulent information by any third party or for inducing users " -"to suffer financial losses." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "ⅩⅨ. EliteMBA Trademarks Information" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"Elite Education, EliteMBA and other EliteMBA registered trademarks, logos " -"and products and service names are trademarks of EliteMBA (hereinafter " -"referred to as \"EliteMBA Mark\"). The User agrees not to display or use or " -"otherwise process the EliteMBA Mark in any manner without the prior written " -"consent of EliteMBA, or to indicate that the User has the right to display, " -"use or otherwise process the EliteMBA Mark." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XX. Exclusive User Rights" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Elite Education respects the intellectual property rights of others and " -"calls on users to respect intellectual property rights as well." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The services and materials of EliteMBA are provided on an \"as is\" basis " -"and expressly disclaims any express or implied warranties of \"service\", " -"\"material\" or \"product\", including but not limited to for commercial use" -" or fitness Guarantee for a specific purpose. EliteMBA is not responsible " -"for any direct, indirect, incidental or consequential damages arising out of" -" the Services, the materials or the products." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"If the User infringes upon the intellectual property rights of others, " -"EliteMBA will, according to the provisions of the national laws and " -"regulations or under appropriate circumstances, delete specific contents or " -"even terminate the User's account according to Terms of Service or related " -"provisions." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"EliteMBA respects any rights (including intellectual property rights) of " -"others and also requires our users to respect the rights of others. In the " -"appropriate circumstances, EliteMBA may, at its discretion, terminate the " -"account of the User who infringes or violates the rights of others." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"If the User believes that the copyright of his/her work has been infringed " -"or the User's intellectual property rights have been violated, according to " -"the Regulations on the Protection of Information Network Communication " -"Rights, users should contact EliteMBA and provide detailed evidence. Or " -"please go to the National Copyright Administration of the People's Republic " -"of China to download the \"Notice of Deleting or Disconnecting the " -"Infringing Web Content\" (hereinafter referred to as the \"Delete Notice\")." -" If the user does not understand the content of the \"Delete Notice\", " -"please log in to the National Copyright Administration of the People's " -"Republic of China and looks for the instructions for \"Notice to Remove or " -"Disconnect the Content of the Infringing Web Link\"." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XXI. General Terms" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"1. This User Agreement, Privacy Policy and Disclaimer constitute the entire " -"agreement between the User and EliteMBA, and regulate the User's use of the " -"Service. Additional terms and conditions apply when users use related " -"services and use content or software provided by third parties;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"2. The User Agreement and the relationship between the User and EliteMBA are" -" governed by the laws of the People's Republic of China. The dispute between" -" the user and EliteMBA on the service, the Agreement or other related " -"matters shall be settled through negotiation first. If the negotiation " -"fails, it shall be submitted to the China International Economic and Trade " -"Arbitration Commission for arbitration. The arbitral award is final and " -"binding on both parties." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"3. The failure of EliteMBA to exercise or enforce any rights or provisions " -"of this agreement shall not constitute the waiver of aforementioned rights;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"4. If any provision of this Terms of Use is ineffective due to conflicts " -"with the laws of the People's Republic of China, the User agrees that, in " -"accordance with the law, efforts shall be made to make the parties' " -"intentions reflected in the Regulations effectively, and that other " -"provisions of this User Agreement shall remain in full force;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"5. The title of this User Agreement is for convenience only and does not " -"have any legal or contractual effect;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"6. Elite Education has the final interpretation of this User Agreement." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"Users are advised to notify EliteMBA of any violation of the Terms of " -"Service and/or any other announcements of EliteMBA." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"The Products and services of EliteMBA(www.elitemba.cn)are provided by " -"Guangzhou Elite Education & Technology Co., Ltd (hereinafter referred to as " -"\"we\", \"Company\" or \"Elite\"). This User Agreement is applicable to " -"E-ducation websites, E-ducation applications and other related products and " -"services on computer/mobile phone/tablet or other devices. EliteMBA attaches" -" great importance to the protection of the privacy of EliteMBA Users " -"(hereinafter referred to as \"Users\"). Sometimes we need certain " -"information to provide users with the requested services. This policy " -"explains the data collection and use under these circumstances." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"This policy applies to all relevant services in EliteMBA. As the scope of " -"the EliteMBA services expands, the content of the policy may be amended or " -"changed at any time by EliteMBA. EliteMBA will publish and update the " -"effective date. Once the updated Privacy Policy is published, it effectively" -" replaces the original Privacy Policy. By continuing to use EliteMBA " -"Service, the User agrees to and accepts this Policy and any updated versions" -" thereof." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "Ⅰ. The Information that We Collect" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"Normally, you can visit EliteMBA and browse the information anonymously. " -"When your Personally Identifiable Information or contact details are needed," -" we will ask for your prior consent. Information such as Name, E-mail " -"Address, Residence Address and Mobile Number might be collected when " -"registering on EliteMBA or applying for new features and your confirmation " -"is needed. " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "Ⅱ. About User's Personal Information" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"EliteMBA strictly protects the security of Users' personal information. We " -"use a variety of security technologies and procedures to protect our " -"personal information from unauthorized access, use or disclosure." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"EliteMBA will not disclose the personal information of the User to third " -"parties without the User's permission. The following conditions are listed " -"in this statement: the legal requirements or the User's violation of the " -"relevant terms of service of EliteMBA, the software license agreement, or " -"EliteMBA has good reasons to believe that this must be done in order to:" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"(a) Meet the requirements of laws or administrative regulations that are " -"explicitely listed, or comply with applicable legal procedures to Elite " -"Education websites;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"(b) Comply with the terms of EliteMBA related service terms and software " -"license agreement;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "(c) Protection of the rights or property of EliteMBA" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"(d) Under urgent emergencies, ensure the safety of EliteMBA employees, " -"product or service users, or the public." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"This information will not be shared with third parties by EliteMBA without " -"the user's permission, except as outlined above in this statement." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "III.Use of Cookie" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"Using cookies helps users personalize their online experience. Users can " -"accept or reject cookies. Most web browsers automatically accept cookies, " -"but users can often modify their browser settings to reject cookies based on" -" their needs." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"EliteMBA will use cookies sometimes to capture the websites to learn which " -"websites are popular in order to provide better services to User when they " -"are visiting E-ducation." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"EliteMBA cookie is also used when the user registers for EliteMBA. In this " -"case, EliteMBA collects and stores useful information, and when the user " -"visits EliteMBA again, we can identify the user. Cookies from EliteMBA can " -"only be read by EliteMBA." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"If the User's browser is set to reject cookies, the User will still be able " -"to access most of the web pages of EliteMBA." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "IV. About Disclaimer" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"EliteMBA does not assume any legal responsibility for the occurrence of the " -"following related matters:" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"1. The leakage of any personal information caused by the User's notification" -" of the User's password or sharing the registered account with others, or " -"the leakage of other personal information that is not caused by EliteMBA " -"reasons; " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"2. According to the provisions of the law or relevant government policy " -"requirements, Elitemba providing User's personal information;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"3. Disputes caused by any third party using User's personal information " -"under various circumstances listed in the terms of service and the " -"Disclaimer of EliteMBA;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"4. Any temporary website closure due to hacking, computer virus intrusion or" -" government regulation;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "5. Any consequences caused by force majeure;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"6. Ways of use or disclaimer circumstances listed by EliteMBA in terms of " -"service and this Disclaimer." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "Join us" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "Let Yourself be More Valuable" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "" -"EliteMBA pays attention to employee development and attaches importance to " -"the power of communication. We continue to learn, inspire each other, and " -"constantly discover industry inspiration at work, and open our eyes as a " -"whole community. Here, work is an organic combination of enjoyment and hard " -"work." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "" -"We will release job information as soon as possible, so stay tuned. Of " -"course, this does not mean that we want to miss any future members. Feel " -"free to contact us through email directly" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "Become a Lecturer" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "" -"Standing on the platform, educators can impart wisdom to learners. EliteMBA " -"completely breaks the geographical restrictions of teaching and learning and" -" provides a broader platform for educators. We sincerely invite all elite " -"professors, scholars and experts who have been deeply involved in business " -"management disciplines to develop more outstanding business talents by " -"transforming intangible wisdom into a collectible course." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "Please contact" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "directly or call 400-931-8118." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/privacy.html -msgid "" -"(b) An agreement that complies with the relevant EliteMBA Terms of Service " -"and the Software License Agreement;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The User agrees to abide by all the provisions of the relevant laws and " -"regulations of the People's Republic of China and assumes full " -"responsibility for any actions and results of the use of the Service by any " -"means and password. If the User behavior violates any provisions of national" -" laws and regulations and may constitute a crime, he will be held criminally" -" liable and the user shall bear full legal responsibility." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"At the same time, if EliteMBA has reason to believe that any of the user's " -"actions, including but not limited to any of the user's statements and other" -" acts, violates or may violate any of the provisions of national laws and " -"regulations, EliteMBA may terminate the offer to the User at any time " -"without prior notice service." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"EliteMBA is not responsible for any registration of any User, including but " -"not limited to the identification, verification of the authenticity, " -"correctness, completeness, suitability and/or responsibility of any " -"registration information." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Oppose the basic principles established by the Constitution;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Content containing false, fraudulent, harmful, coercive, infringing on the " -"privacy of others, harassment, infringement, slander, vulgarity, jealousy, " -"or other morally offensive content;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Contains content that is not suitable for display in EliteMBA;" -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "2. Harm the legal rights of others in any way; " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"8. Interfere with or disrupt the server or network connected to the Service " -"or the Service, or violate any rules, procedures, policies or specifications" -" regarding the Service Connection Network; " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Users are advised to notify the Company of any violation of the Terms of " -"Service and any other announcements in EliteMBA and other content that " -"contradicts EliteMBA's rights and interests. " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "3. Respond to any claims made by third parties; " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "5. Other situations that the EliteMBA considers necessary." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"1. In this User Agreement, \"the area in which the service is used " -"publicly\" means the area that the general public can use; " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"EliteMBA, Elite Education and other Eliteu registered trademarks, logos and " -"products and service names are trademarks of Eliteu Company (hereinafter " -"referred to as \"Elite Trademark\"). The User agrees not to display or use " -"or otherwise process the Trademark in any manner without the prior written " -"consent of Elite, or to indicate that the User has the right to display, use" -" or otherwise process the Trademark." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"If the User believes that the copyright of his work has been infringed or " -"the User's intellectual property rights have been violated, according to the" -" Regulations on the Protection of Information Network Communication Rights, " -"Users should contact EliteMBA and provide detailed evidence. Or please go to" -" the National Copyright Administration of the People's Republic of China to " -"download the \"Notice of Deleting or Disconnecting the Infringing Web " -"Content\" (hereinafter referred to as the \"Delete Notice\"). If the user " -"does not understand the content of the \"Delete Notice\", please log in to " -"the National Copyright Administration of the People's Republic of China to " -"look for the instructions in \"Notice to delete or disconnect the infringing" -" web content\"." -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"1. This User Agreement and the Privacy Policy and Disclaimer constitute the " -"entire agreement between the User and the Company and regof the Service. " -"Additional terms and conditions apply when users use related services and " -"use content or software provided by third parties; " -msgstr "" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Users are advised to notify the Company of any violation of the Terms of " -"Service and any other announcements in EliteMBA and other related notices. " -msgstr "" - -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/about.html -#: themes/stanford-style/lms/templates/static_templates/about.html -msgid "Careers" -msgstr "" - -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Copyright" -msgstr "" - -#: themes/stanford-style/lms/templates/footer.html -msgid "Copyright {year}. All rights reserved." -msgstr "" - -#: themes/stanford-style/lms/templates/index.html -msgid "For anyone, anywhere, anytime" -msgstr "" - -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "" -"You will receive an activation email. You must click on the activation link" -" to complete the process. Don't see the email? Check your spam folder and " -"mark emails from class.stanford.edu as 'not spam', since you'll want to be " -"able to receive email from your courses." -msgstr "" - -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "Need help in registering with {platform_name}?" -msgstr "" - -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "" -"Once registered, most questions can be answered in the course specific " -"discussion forums or through the FAQs." -msgstr "" - -#: themes/stanford-style/lms/templates/emails/activation_email.txt -msgid "Thank you for signing up for {platform_name}." -msgstr "" - -#: themes/stanford-style/lms/templates/emails/activation_email.txt -msgid "" -"Change your life and start learning today by activating your {platform_name}" -" account. Click on the link below or copy and paste it into your browser's " -"address bar." -msgstr "" - -#: themes/stanford-style/lms/templates/emails/activation_email.txt -#: themes/stanford-style/lms/templates/emails/email_change.txt -msgid "" -"If you didn't request this, you don't need to do anything; you won't receive" -" any more email from us. Please do not reply to this e-mail; if you require " -"assistance, check the about section of the {platform_name} Courses web site." -msgstr "" - -#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt -msgid "" -"This is to confirm that you changed the e-mail associated with " -"{platform_name} from {old_email} to {new_email}. If you did not make this " -"request, please contact us at" -msgstr "" - -#: themes/stanford-style/lms/templates/emails/email_change.txt -msgid "" -"We received a request to change the e-mail associated with your " -"{platform_name} account from {old_email} to {new_email}. If this is correct," -" please confirm your new e-mail address by visiting:" -msgstr "" - -#: themes/stanford-style/lms/templates/emails/reject_name_change.txt -msgid "" -"We are sorry. Our course staff did not approve your request to change your " -"name from {old_name} to {new_name}. If you need further assistance, please " -"e-mail the tech support at {email}" -msgstr "" - -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Put your Terms of Service here!" -msgstr "" - -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Put your Privacy Policy here!" -msgstr "" - -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Put your Honor Code here!" -msgstr "" - -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Put your Copyright Text here!" -msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/membership-js.po b/conf/locale/en/LC_MESSAGES/membership-js.po deleted file mode 100644 index 9cfa54c4d709..000000000000 --- a/conf/locale/en/LC_MESSAGES/membership-js.po +++ /dev/null @@ -1,59 +0,0 @@ -# edX translation file. -# Copyright (C) 2019 EdX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-01-15 19:13+0800\n" -"PO-Revision-Date: 2019-01-15 11:13:08.364765\n" -"Last-Translator: \n" -"Language-Team: openedx-translation \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: membership/static/membership/js/card.js -msgid "Open membership" -msgstr "" - -#: membership/static/membership/js/card.js -msgid "Become a VIP member and watch all EliteMBA courses for free" -msgstr "" - -#: membership/static/membership/js/card.js -msgid "YYYY-MM-DD" -msgstr "" - -#: membership/static/membership/js/card.js -msgid "Open date:" -msgstr "" - -#: membership/static/membership/js/card.js -msgid "Expire:" -msgstr "" - -#: membership/static/membership/js/card.js -msgid "Last open date:" -msgstr "" - -#: membership/static/membership/js/card.js -msgid "Renew" -msgstr "" - -#: membership/static/membership/js/index.js -msgid "Average per month" -msgstr "" - -#: membership/static/membership/js/pay.js -msgid "Failed to pay the payment" -msgstr "" - -#: membership/static/membership/js/result.js -#, javascript-format -msgid "Return to EliteMBA in %s seconds" -msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/membership.po b/conf/locale/en/LC_MESSAGES/membership.po deleted file mode 100644 index 22910bd24ed1..000000000000 --- a/conf/locale/en/LC_MESSAGES/membership.po +++ /dev/null @@ -1,527 +0,0 @@ -# #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# -# edX translation file. -# Copyright (C) 2019 EdX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -# #-#-#-#-# mako.po (0.1a) #-#-#-#-# -# edX translation file -# Copyright (C) 2019 edX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-01-18 17:45+0800\n" -"PO-Revision-Date: 2019-01-18 09:45:10.287937\n" -"Last-Translator: \n" -"Language-Team: openedx-translation \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" - -#: membership/models.py -msgid "Awaiting for payment" -msgstr "" - -#: membership/models.py -msgid "Paid" -msgstr "" - -#: membership/models.py -msgid "Cancelled" -msgstr "" - -#: membership/models.py -msgid "Refunded" -msgstr "" - -#: membership/models.py -msgid "Balance" -msgstr "" - -#: membership/models.py -msgid "Offline" -msgstr "" - -#: membership/models.py membership/templates/membership/card.html -#: membership/templates/membership/result.html -#: membership/templates/membership/wechat_paying.html -msgid "WeChat" -msgstr "" - -#: membership/models.py membership/templates/membership/card.html -msgid "Alipay" -msgstr "" - -#: membership/models.py -msgid "Union pay" -msgstr "" - -#: membership/models.py -msgid "Apple Pay" -msgstr "" - -#: membership/models.py -msgid "Apple Inpurasing" -msgstr "" - -#: membership/models.py -msgid "WeChat App" -msgstr "" - -#: membership/models.py -msgid "WeChat H5" -msgstr "" - -#: membership/models.py -msgid "Alipay App" -msgstr "" - -#: membership/models.py -msgid "subscribe normal" -msgstr "" - -#: membership/models.py -msgid "subscribe pay" -msgstr "" - -#: membership/templates/membership/card.html -msgid "VIP membership" -msgstr "" - -#: membership/templates/membership/card.html -msgid "Elite Education" -msgstr "" - -#: membership/templates/membership/card.html -msgid "Elite MBA VIP membership" -msgstr "" - -#: membership/templates/membership/card.html -msgid "View Introduction" -msgstr "" - -#: membership/templates/membership/card.html -msgid "Select a course" -msgstr "" - -#: membership/templates/membership/card.html -msgid "Choose a payment method" -msgstr "" - -#: membership/templates/membership/card.html -msgid "Membership Valid in " -msgstr "" - -#: membership/templates/membership/card.html -msgid "days" -msgstr "" - -#: membership/templates/membership/card.html -msgid "Tuition:" -msgstr "" - -#: membership/templates/membership/card.html -msgid "Go to payment" -msgstr "" - -#: membership/templates/membership/card.html -msgid "Complete payment in a new page" -msgstr "" - -#: membership/templates/membership/card.html -msgid "" -"{span_start}Please do not close the page {span_end}. Please click the button" -" below accordingly after completing the payment." -msgstr "" - -#: membership/templates/membership/card.html -msgid "Choose another payment method" -msgstr "" - -#: membership/templates/membership/card.html -msgid "payment completed" -msgstr "" - -#: membership/templates/membership/card.html -msgid "Encounter a problem?" -msgstr "" - -#: membership/templates/membership/index.html -msgid "EliteMBA" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Prestige EMBA courses in America" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Six Course Specializations of Elite MBA School" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Activate your all-round business gene, you alone are a team!" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Business Administration" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Innovation and Entrepreneurship" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Statistic Analysis" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Information Technology" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Marketing and Sales" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Retail Management" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Explore Courses" -msgstr "" - -#: membership/templates/membership/index.html -msgid "More courses coming soon" -msgstr "" - -#: membership/templates/membership/index.html -msgid "International Business Law" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Dr. Ling Zhu" -msgstr "" - -#: membership/templates/membership/index.html -msgid "PhD in Management Information Systems, the University of Arizona, USA" -msgstr "" - -#: membership/templates/membership/index.html -msgid "J.D., Fordham University" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Marketing Management and Applications" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Dr. Tung-lung Steven Chang" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"PhD. in International Business/Marketing, the George Washington University, " -"USA" -msgstr "" - -#: membership/templates/membership/index.html -msgid "PhD. in Management, National Chengchi University, Taiwan" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Macroeconomics" -msgstr "" - -#: membership/templates/membership/index.html -msgid "(Davidson College)" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Dr. Clark Ross" -msgstr "" - -#: membership/templates/membership/index.html -msgid "PhD. in Economics, Boston College, USA" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"*All course updates reserved to EliteMBA and EliteMBA has the final " -"interpretation." -msgstr "" - -#: membership/templates/membership/index.html -msgid "Best faculties ---- Elite Education" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Professor of American Famous Business Schools" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"To build the all-around business knowledge matrix, and systematic learning " -"from zero to one" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Dr. Bochun Xiao" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"Lifetime Professor and Dean of Management Major in School of Business, Long " -"Island University - C. W. Post, USA" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Dr. Lloyd E. Shefsky" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"Clinical Professor, Founder and Co-director of the Center for Family " -"Enterprises in Kellogg School of Management at Northwestern University, USA" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Prof. Tim Smithe" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"Vice President & Chief Management Officer of International Finance Education" -" Association (IFEA)" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Dr. Wei Yang" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"Lifetime Professor in School of Business, Long Island University - C. W. " -"Post, USA" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Dr. Weichun Zhu" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"Prior Assistant Professor of School of Labor and Employment Relations, Penn " -"State University Park, USA" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Dr. Jiamin Wang" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"Lifetime Professor of Information Management & Technology, Long Island " -"University - C. W. Post, USA" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Dr. Tianning Li" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Associate Professor of Finance and Finance, Hood College, USA" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Dr. Jianjun Shi" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"Prior President and Professor of the University of International Business " -"and Economics {br}" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Professor of Economics in Davidson College" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Dr. Elia Kacapyr" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Professor of Economics, Ithaca College, USA" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Dr. Robert Graham" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Professor of Economics, Hanover College, USA" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"Prior President and Professor of the University of International Business " -"and Economics" -msgstr "" - -#: membership/templates/membership/index.html -msgid "View More" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Become EliteMBA Member" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Choose appropriate learning duration according to your needs" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"Enjoy learning all courses in the EliteMBA MBA school during the study " -"period,You can join the new class online now!" -msgstr "" - -#: membership/templates/membership/index.html -msgctxt "Membership" -msgid "Full Year" -msgstr "" - -#: membership/templates/membership/index.html -msgid "average per month" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Full-stack workplace practice" -msgstr "" - -#: membership/templates/membership/index.html -msgctxt "Membership" -msgid "Half-Year" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Improve Ability Efficiently" -msgstr "" - -#: membership/templates/membership/index.html -msgctxt "Membership" -msgid "Three-Month" -msgstr "" - -#: membership/templates/membership/index.html -msgid "A series of courses for learning" -msgstr "" - -#: membership/templates/membership/index.html -msgctxt "Membership" -msgid "One-Month" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Multiple-Course Experience" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"*Now sign up to enjoy the above offers. Please go to the purchase page for " -"details." -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"Enjoy learning all courses in the EliteMBA MBA school during the study " -"period" -msgstr "" - -#: membership/templates/membership/index.html -msgid "You can join the new class once online" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Learning Feature" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Video Lesson" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Interaction within Groups" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Live Lecture" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Exercise Test" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Certificate" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Become a Member" -msgstr "" - -#: membership/templates/membership/index.html -msgid "" -"There is a gap called self-discipline outside of 8 hours. Start with the " -"EliteMBA and become a self-disciplined full-stack workplace!" -msgstr "" - -#: membership/templates/membership/index.html -msgid "EliteMBA Theory" -msgstr "" - -#: membership/templates/membership/result.html -#: membership/templates/membership/wechat_paying.html -msgid "EliteMBA school cashier" -msgstr "" - -#: membership/templates/membership/result.html -msgid "EliteMBA school cashier payment success" -msgstr "" - -#: membership/templates/membership/result.html -#: membership/templates/membership/wechat_paying.html -msgid "Return to EliteMBA school in 3 seconds" -msgstr "" - -#: membership/templates/membership/result.html -#: membership/templates/membership/wechat_paying.html -msgid "Return Now" -msgstr "" - -#: membership/templates/membership/wechat_paying.html -msgid "Amount paid: " -msgstr "" - -#: membership/templates/membership/wechat_paying.html -msgid "Please complete the payment within 2 hours, or the purchase may fail" -msgstr "" - -#: membership/templates/membership/wechat_paying.html -msgid "Scan QR code with WeChat" -msgstr "" - -#: membership/templates/membership/wechat_paying.html -msgid "to complete payment" -msgstr "" - -#: membership/templates/membership/wechat_paying.html -msgid "Payment Success" -msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/underscore-studio.po b/conf/locale/en/LC_MESSAGES/underscore-studio.po deleted file mode 100644 index 46aab44b6782..000000000000 --- a/conf/locale/en/LC_MESSAGES/underscore-studio.po +++ /dev/null @@ -1,1740 +0,0 @@ -# edX translation file -# Copyright (C) 2019 edX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:53+0000\n" -"PO-Revision-Date: 2019-05-16 10:53:15.811278\n" -"Last-Translator: \n" -"Language-Team: openedx-translation \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" - -#: cms/templates/js/access-editor.underscore -msgid "Limit Access" -msgstr "" - -#: cms/templates/js/access-editor.underscore -msgid "" -"Select a prerequisite subsection and enter a minimum score percentage and " -"minimum completion percentage to limit access to this subsection. Allowed " -"values are 0-100" -msgstr "" - -#: cms/templates/js/access-editor.underscore -msgid "Prerequisite:" -msgstr "" - -#: cms/templates/js/access-editor.underscore -msgid "No prerequisite" -msgstr "" - -#: cms/templates/js/access-editor.underscore -msgid "Minimum Score:" -msgstr "" - -#: cms/templates/js/access-editor.underscore -msgid "Minimum Completion:" -msgstr "" - -#: cms/templates/js/access-editor.underscore -msgid "The minimum score percentage must be a whole number between 0 and 100." -msgstr "" - -#: cms/templates/js/access-editor.underscore -msgid "" -"The minimum completion percentage must be a whole number between 0 and 100." -msgstr "" - -#: cms/templates/js/access-editor.underscore -msgid "Use as a Prerequisite" -msgstr "" - -#: cms/templates/js/access-editor.underscore -msgid "Make this subsection available as a prerequisite to other content" -msgstr "" - -#: cms/templates/js/active-video-upload-list.underscore -msgid "Active Uploads" -msgstr "" - -#: cms/templates/js/active-video-upload.underscore -msgid "Read More" -msgstr "" - -#: cms/templates/js/active-video-upload.underscore -msgid "details about the failure" -msgstr "" - -#: cms/templates/js/add-xblock-component-button.underscore -msgid "Add Component:" -msgstr "" - -#: cms/templates/js/add-xblock-component-menu-problem.underscore -#: cms/templates/js/add-xblock-component-menu.underscore -#, python-format -msgid "%(type)s Component Template Menu" -msgstr "" - -#: cms/templates/js/add-xblock-component-menu-problem.underscore -msgid "Common Problem Types" -msgstr "" - -#: cms/templates/js/add-xblock-component-menu-problem.underscore -msgid "Advanced" -msgstr "" - -#: cms/templates/js/add-xblock-component-support-legend.underscore -msgid "Supported" -msgstr "" - -#: cms/templates/js/add-xblock-component-support-legend.underscore -msgid "Provisional" -msgstr "" - -#: cms/templates/js/add-xblock-component-support-legend.underscore -#: cms/templates/js/add-xblock-component-support-level.underscore -msgid "Not Supported" -msgstr "" - -#: cms/templates/js/add-xblock-component-support-level.underscore -msgid "Fully Supported" -msgstr "" - -#: cms/templates/js/add-xblock-component-support-level.underscore -msgid "Provisionally Supported" -msgstr "" - -#: cms/templates/js/add-xblock-component.underscore -msgid "Add New Component" -msgstr "" - -#: cms/templates/js/advanced_entry.underscore -msgid "Deprecated" -msgstr "" - -#: cms/templates/js/asset-library.underscore -msgid "List of uploaded files and assets in this course" -msgstr "" - -#: cms/templates/js/asset-library.underscore -msgid "Preview" -msgstr "" - -#: cms/templates/js/asset-library.underscore -#: cms/templates/js/asset-library.underscore -msgid "- Sortable" -msgstr "" - -#: cms/templates/js/asset-library.underscore -msgid "Show All" -msgstr "" - -#: cms/templates/js/asset-library.underscore -msgid "Other" -msgstr "" - -#: cms/templates/js/asset-library.underscore -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Date Added" -msgstr "" - -#: cms/templates/js/asset-library.underscore -msgid "URL" -msgstr "" - -#: cms/templates/js/asset-library.underscore -msgid "You haven't added any assets to this course yet." -msgstr "" - -#: cms/templates/js/asset-library.underscore -msgid "Upload your first asset" -msgstr "" - -#: cms/templates/js/asset-upload-modal.underscore -msgid "close" -msgstr "" - -#: cms/templates/js/asset-upload-modal.underscore -msgid "Upload New File" -msgstr "" - -#: cms/templates/js/asset-upload-modal.underscore -msgid "Choose File" -msgstr "" - -#: cms/templates/js/asset.underscore -msgid "No description available" -msgstr "" - -#: cms/templates/js/asset.underscore -msgid "Open/download this file" -msgstr "" - -#: cms/templates/js/asset.underscore -msgid "Studio:" -msgstr "" - -#: cms/templates/js/asset.underscore -msgid "Web:" -msgstr "" - -#: cms/templates/js/asset.underscore -msgid "Delete this asset" -msgstr "" - -#: cms/templates/js/asset.underscore -msgid "Lock this asset" -msgstr "" - -#: cms/templates/js/asset.underscore -msgid "Lock/unlock file" -msgstr "" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/partition-group-details.underscore -msgid "ID" -msgstr "" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "Certificate Details" -msgstr "" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "Course Title" -msgstr "" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "Course Title Override" -msgstr "" - -#: cms/templates/js/certificate-details.underscore -msgid "Course Number" -msgstr "" - -#: cms/templates/js/certificate-details.underscore -msgid "Course Number Override" -msgstr "" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "Certificate Signatories" -msgstr "" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "" -"It is strongly recommended that you include four or fewer signatories. If " -"you include additional signatories, preview the certificate in Print View to" -" ensure the certificate will print correctly on one page." -msgstr "" - -#: cms/templates/js/certificate-editor.underscore -msgid "Certificate Information" -msgstr "" - -#: cms/templates/js/certificate-editor.underscore -msgid "Certificate Name" -msgstr "" - -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "Name of the certificate" -msgstr "" - -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "Description of the certificate" -msgstr "" - -#: cms/templates/js/certificate-editor.underscore -msgid "Course title" -msgstr "" - -#: cms/templates/js/certificate-editor.underscore -msgid "" -"Specify an alternative to the official course title to display on " -"certificates. Leave blank to use the official course title." -msgstr "" - -#: cms/templates/js/certificate-editor.underscore -msgid "Add Additional Signatory" -msgstr "" - -#: cms/templates/js/certificate-editor.underscore -msgid "(Add signatories for a certificate)" -msgstr "" - -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/group-configuration-editor.underscore -msgid "Create" -msgstr "" - -#: cms/templates/js/certificate-web-preview.underscore -msgid "Choose mode" -msgstr "" - -#: cms/templates/js/certificate-web-preview.underscore -msgid "Preview Certificate" -msgstr "" - -#: cms/templates/js/certificate-web-preview.underscore -msgid "Activate" -msgstr "" - -#: cms/templates/js/certificate-web-preview.underscore -msgid "Deactivate" -msgstr "" - -#: cms/templates/js/container-access.underscore -msgid "unit" -msgstr "" - -#: cms/templates/js/container-access.underscore -msgid "component" -msgstr "" - -#: cms/templates/js/container-access.underscore -msgid "Access to this {blockType} is restricted to: {selectedGroupsLabel}" -msgstr "" - -#: cms/templates/js/container-access.underscore -msgid "" -"Access to some content in this {blockType} is restricted to specific groups " -"of learners." -msgstr "" - -#: cms/templates/js/container-message.underscore -msgid "" -"Caution: The last published version of this unit is live. By publishing " -"changes you will change the student experience." -msgstr "" - -#: cms/templates/js/content-group-editor.underscore -msgid "Content Group Name" -msgstr "" - -#: cms/templates/js/content-group-editor.underscore -msgid "Content Group ID" -msgstr "" - -#: cms/templates/js/content-group-editor.underscore -msgid "This is the name of the group" -msgstr "" - -#: cms/templates/js/content-group-editor.underscore -msgid "This content group is used in one or more units." -msgstr "" - -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/partition-group-details.underscore -msgid "Cannot delete when in use by a unit" -msgstr "" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "Subsection Visibility" -msgstr "" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "Show entire subsection" -msgstr "" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "Learners see the published subsection and can access its content." -msgstr "" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "Hide content after course end date" -msgstr "" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "Hide content after due date" -msgstr "" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "" -"After the course\\'s end date has passed, learners can no longer access " -"subsection content. The subsection remains included in grade calculations." -msgstr "" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "" -"After the subsection\\'s due date has passed, learners can no longer access " -"its content. The subsection remains included in grade calculations." -msgstr "" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "Hide entire subsection" -msgstr "" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "" -"Learners do not see the subsection in the course outline. The subsection is " -"not included in grade calculations." -msgstr "" - -#: cms/templates/js/content-visibility-editor.underscore -#, python-format -msgid "" -"If you select an option other than \"%(hide_label)s\", published units in " -"this subsection become available to learners unless they are explicitly " -"hidden." -msgstr "" - -#: cms/templates/js/course-highlights-enable.underscore -msgid "Weekly Highlight Emails" -msgstr "" - -#: cms/templates/js/course-highlights-enable.underscore -msgid "Enabled" -msgstr "" - -#: cms/templates/js/course-highlights-enable.underscore -msgid "Enable Now" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Instructor Name" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Please add the instructor's name" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Instructor Title" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Please add the instructor's title" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -#: cms/templates/js/signatory-details.underscore -msgid "Organization" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Organization Name" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Please add the institute where the instructor is associated" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Biography" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Instructor Biography" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Please add the instructor's biography" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Photo" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Instructor Photo" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Instructor Photo URL" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "" -"Please add a photo of the instructor (Note: only JPEG or PNG format " -"supported)" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Upload Photo" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#, python-format -msgid "Prerequisite: %(prereq_display_name)s" -msgstr "" - -#: cms/templates/js/course-outline.underscore -msgid "Contains staff only content" -msgstr "" - -#: cms/templates/js/course-outline.underscore -msgid "Unpublished changes to live content" -msgstr "" - -#: cms/templates/js/course-outline.underscore -msgid "Unpublished units will not be released" -msgstr "" - -#: cms/templates/js/course-outline.underscore -msgid "Unpublished changes to content that will release in the future" -msgstr "" - -#: cms/templates/js/course-outline.underscore -msgid "Access to this unit is restricted to: {selectedGroupsLabel}" -msgstr "" - -#: cms/templates/js/course-outline.underscore -msgid "" -"Access to some content in this unit is restricted to specific groups of " -"learners" -msgstr "" - -#: cms/templates/js/course-outline.underscore -msgid "Ungraded" -msgstr "" - -#: cms/templates/js/course-outline.underscore -msgid "Practice proctored Exam" -msgstr "" - -#: cms/templates/js/course-outline.underscore -msgid "Proctored Exam" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#, python-format -msgid "Collapse/Expand this %(xblock_type)s" -msgstr "" - -#: cms/templates/js/course-outline.underscore -msgid "Display Name" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -msgid "Proctoring Settings" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/publish-xblock.underscore -msgid "Publish" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -msgid "Configure" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -msgid "Duplicate" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -msgid "Drag to reorder" -msgstr "" - -#: cms/templates/js/course-outline.underscore -msgid "Release Status:" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/xblock-outline.underscore -msgid "Released:" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/publish-xblock.underscore -msgid "Scheduled:" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/highlights-editor.underscore -msgid "Section Highlights" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -msgid "Graded as:" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -msgid "Due:" -msgstr "" - -#: cms/templates/js/course-outline.underscore -msgid "Subsection is hidden after course end date" -msgstr "" - -#: cms/templates/js/course-outline.underscore -msgid "Subsection is hidden after due date" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/xblock-outline.underscore -msgid "You haven't added any content to this course yet." -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#, python-format -msgid "Click to add a new %(xblock_type)s" -msgstr "" - -#: cms/templates/js/course-settings-learning-fields.underscore -msgid "Learning Outcome" -msgstr "" - -#: cms/templates/js/course-settings-learning-fields.underscore -msgid "Add a learning outcome here" -msgstr "" - -#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore -#: cms/templates/js/course-video-settings-update-settings-footer.underscore -#: cms/templates/js/publish-xblock.underscore -msgid "Discard Changes" -msgstr "" - -#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore -msgid "Press discard changes to discard your changes." -msgstr "" - -#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore -#: cms/templates/js/course-video-settings-update-settings-footer.underscore -msgid "Update Settings" -msgstr "" - -#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore -msgid "Press update settings to update the information for your organization." -msgstr "" - -#: cms/templates/js/course-video-settings-update-settings-footer.underscore -msgid "Press discard changes to discard changes." -msgstr "" - -#: cms/templates/js/course-video-settings-update-settings-footer.underscore -msgid "Press update settings to update course video settings" -msgstr "" - -#: cms/templates/js/course-video-settings-update-settings-footer.underscore -msgid "Last updated" -msgstr "" - -#: cms/templates/js/course-video-settings.underscore -msgid "Press close to hide course video settings" -msgstr "" - -#: cms/templates/js/course-video-settings.underscore -msgid "Course Video Settings" -msgstr "" - -#: cms/templates/js/course-video-transcript-preferences.underscore -msgid "Transcript Turnaround" -msgstr "" - -#: cms/templates/js/course-video-transcript-preferences.underscore -msgid "Transcript Fidelity" -msgstr "" - -#: cms/templates/js/course-video-transcript-preferences.underscore -msgid "Video Source Language" -msgstr "" - -#: cms/templates/js/course-video-transcript-preferences.underscore -msgid "Transcript Languages" -msgstr "" - -#: cms/templates/js/course-video-transcript-preferences.underscore -#: cms/templates/js/metadata-dict-entry.underscore -#: cms/templates/js/metadata-list-entry.underscore -#: cms/templates/js/video/metadata-translations-entry.underscore -msgid "Add" -msgstr "" - -#: cms/templates/js/course-video-transcript-preferences.underscore -msgid "Press Add to language" -msgstr "" - -#: cms/templates/js/course-video-transcript-provider-empty.underscore -msgid "Automated Transcripts" -msgstr "" - -#: cms/templates/js/course-video-transcript-provider-selected.underscore -msgid "Transcript Provider" -msgstr "" - -#: cms/templates/js/course-video-transcript-provider-selected.underscore -msgid "Change" -msgstr "" - -#: cms/templates/js/course-video-transcript-provider-selected.underscore -msgid "Press change to change selected transcript provider." -msgstr "" - -#: cms/templates/js/course_grade_policy.underscore -msgid "Assignment Type Name" -msgstr "" - -#: cms/templates/js/course_grade_policy.underscore -msgid "" -"The general category for this type of assignment, for example, Homework or " -"Midterm Exam. This name is visible to learners." -msgstr "" - -#: cms/templates/js/course_grade_policy.underscore -msgid "Abbreviation" -msgstr "" - -#: cms/templates/js/course_grade_policy.underscore -msgid "" -"This short name for the assignment type (for example, HW or Midterm) appears" -" next to assignments on a learner's Progress page." -msgstr "" - -#: cms/templates/js/course_grade_policy.underscore -msgid "Weight of Total Grade" -msgstr "" - -#: cms/templates/js/course_grade_policy.underscore -msgid "" -"The weight of all assignments of this type as a percentage of the total " -"grade, for example, 40. Do not include the percent symbol." -msgstr "" - -#: cms/templates/js/course_grade_policy.underscore -msgid "Total Number" -msgstr "" - -#: cms/templates/js/course_grade_policy.underscore -msgid "" -"The number of subsections in the course that contain problems of this " -"assignment type." -msgstr "" - -#: cms/templates/js/course_grade_policy.underscore -msgid "Number of Droppable" -msgstr "" - -#: cms/templates/js/course_grade_policy.underscore -msgid "" -"The number of assignments of this type that will be dropped. The lowest " -"scoring assignments are dropped first." -msgstr "" - -#: cms/templates/js/course_info_handouts.underscore -msgid "Course Handouts" -msgstr "" - -#: cms/templates/js/course_info_handouts.underscore -msgid "You have no handouts defined" -msgstr "" - -#: cms/templates/js/course_info_handouts.underscore -msgid "" -"There is invalid code in your content. Please check to make sure it is valid" -" HTML." -msgstr "" - -#: cms/templates/js/course_info_update.underscore -msgid "Send push notification to mobile apps" -msgstr "" - -#: cms/templates/js/course_info_update.underscore -msgid "Send notification to mobile apps" -msgstr "" - -#: cms/templates/js/course_info_update.underscore -msgid "Post" -msgstr "" - -#: cms/templates/js/due-date-editor.underscore -msgid "Due Date:" -msgstr "" - -#: cms/templates/js/due-date-editor.underscore -msgid "Due Time in UTC:" -msgstr "" - -#: cms/templates/js/due-date-editor.underscore -#: cms/templates/js/due-date-editor.underscore -msgid "Clear Grading Due Date" -msgstr "" - -#: cms/templates/js/edit-chapter.underscore -msgid "Chapter Name" -msgstr "" - -#: cms/templates/js/edit-chapter.underscore -msgid "Chapter {order}" -msgstr "" - -#: cms/templates/js/edit-chapter.underscore -msgid "provide the title/name of the chapter that will be used in navigating" -msgstr "" - -#: cms/templates/js/edit-chapter.underscore -msgid "Chapter Asset" -msgstr "" - -#: cms/templates/js/edit-chapter.underscore -msgid "path/to/introductionToCookieBaking-CH{order}.pdf" -msgstr "" - -#: cms/templates/js/edit-chapter.underscore -msgid "upload a PDF file or provide the path to a Studio asset file" -msgstr "" - -#: cms/templates/js/edit-chapter.underscore -msgid "Upload PDF" -msgstr "" - -#: cms/templates/js/edit-chapter.underscore -msgid "delete chapter" -msgstr "" - -#: cms/templates/js/edit-textbook.underscore -msgid "Textbook information" -msgstr "" - -#: cms/templates/js/edit-textbook.underscore -msgid "Textbook Name" -msgstr "" - -#: cms/templates/js/edit-textbook.underscore -msgid "Introduction to Cookie Baking" -msgstr "" - -#: cms/templates/js/edit-textbook.underscore -msgid "" -"provide the title/name of the text book as you would like your students to " -"see it" -msgstr "" - -#: cms/templates/js/edit-textbook.underscore -msgid "Chapter information" -msgstr "" - -#: cms/templates/js/edit-textbook.underscore -msgid "Add a Chapter" -msgstr "" - -#: cms/templates/js/grading-editor.underscore -msgid "Grading" -msgstr "" - -#: cms/templates/js/grading-editor.underscore -msgid "Grade as:" -msgstr "" - -#: cms/templates/js/grading-editor.underscore -msgid "Not Graded" -msgstr "" - -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore -msgid "Cannot delete when in use by an experiment" -msgstr "" - -#: cms/templates/js/group-configuration-details.underscore -msgid "This Group Configuration is used in:" -msgstr "" - -#: cms/templates/js/group-configuration-details.underscore -msgid "" -"This Group Configuration is not in use. Start by adding a content experiment" -" to any Unit via the {linkStart}Course Outline{linkEnd}." -msgstr "" - -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/partition-group-details.underscore -msgid "Course Outline" -msgstr "" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Group Configuration information" -msgstr "" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Group Configuration Name" -msgstr "" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Group Configuration ID" -msgstr "" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "This is the Name of the Group Configuration" -msgstr "" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Name or short description of the configuration" -msgstr "" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "This is the Description of the Group Configuration" -msgstr "" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Optional long description" -msgstr "" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Group information" -msgstr "" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Groups" -msgstr "" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "" -"Name of the groups that students will be assigned to, for example, Control, " -"Video, Problems. You must have two or more groups." -msgstr "" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Add another group" -msgstr "" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "" -"This configuration is currently used in content experiments. If you make " -"changes to the groups, you may need to edit those experiments." -msgstr "" - -#: cms/templates/js/group-edit.underscore -msgid "delete group" -msgstr "" - -#: cms/templates/js/highlights-editor.underscore -msgid "" -"This feature is currently in testing. Course teams can enter highlights, but" -" learners will not receive email messages." -msgstr "" - -#: cms/templates/js/highlights-editor.underscore -msgid "" -"Enter 3-5 highlights to include in the email message that learners receive " -"for this section (250 character limit)." -msgstr "" - -#: cms/templates/js/highlights-editor.underscore -#: cms/templates/js/highlights-editor.underscore -msgid "Highlight {highlight_index}" -msgstr "" - -#: cms/templates/js/highlights-editor.underscore -msgid "A highlight to look forward to this week." -msgstr "" - -#: cms/templates/js/license-selector.underscore -msgid "License Type" -msgstr "" - -#: cms/templates/js/license-selector.underscore -msgid "Learn more about {license_name}" -msgstr "" - -#: cms/templates/js/license-selector.underscore -msgid "Options for {license_name}" -msgstr "" - -#: cms/templates/js/license-selector.underscore -msgid "The following options are available for the {license_name} license." -msgstr "" - -#: cms/templates/js/license-selector.underscore -msgid "License Display" -msgstr "" - -#: cms/templates/js/license-selector.underscore -msgid "" -"The following message will be displayed at the bottom of the courseware " -"pages within your course:" -msgstr "" - -#: cms/templates/js/license-selector.underscore -#: cms/templates/js/license-selector.underscore -msgid "All Rights Reserved" -msgstr "" - -#: cms/templates/js/license-selector.underscore -msgid "Creative Commons licensed content, with terms as follow:" -msgstr "" - -#: cms/templates/js/license-selector.underscore -msgid "Some Rights Reserved" -msgstr "" - -#: cms/templates/js/list.underscore -#, python-format -msgid "%(new_item_message)s" -msgstr "" - -#: cms/templates/js/list.underscore -#, python-format -msgid "New %(item_type)s" -msgstr "" - -#: cms/templates/js/metadata-dict-entry.underscore -#: cms/templates/js/metadata-file-uploader-entry.underscore -#: cms/templates/js/metadata-list-entry.underscore -#: cms/templates/js/metadata-number-entry.underscore -#: cms/templates/js/metadata-option-entry.underscore -#: cms/templates/js/metadata-string-entry.underscore -msgid "Clear" -msgstr "" - -#: cms/templates/js/metadata-dict-entry.underscore -#: cms/templates/js/metadata-file-uploader-entry.underscore -#: cms/templates/js/metadata-list-entry.underscore -#: cms/templates/js/metadata-number-entry.underscore -#: cms/templates/js/metadata-option-entry.underscore -#: cms/templates/js/metadata-string-entry.underscore -msgid "Clear Value" -msgstr "" - -#: cms/templates/js/metadata-editor.underscore -msgid "Component Location ID" -msgstr "" - -#: cms/templates/js/metadata-file-uploader-item.underscore -#: cms/templates/js/video-transcripts.underscore -#: cms/templates/js/video/metadata-translations-item.underscore -msgid "Replace" -msgstr "" - -#: cms/templates/js/metadata-file-uploader-item.underscore -#: cms/templates/js/video/metadata-translations-item.underscore -msgid "Upload" -msgstr "" - -#: cms/templates/js/metadata-file-uploader-item.underscore -#: cms/templates/js/video-transcripts.underscore -#: cms/templates/js/video/metadata-translations-item.underscore -msgid "Download" -msgstr "" - -#: cms/templates/js/move-xblock-list.underscore -msgid "{categoryText} in {parentDisplayname}" -msgstr "" - -#: cms/templates/js/move-xblock-list.underscore -msgid "Current location" -msgstr "" - -#: cms/templates/js/move-xblock-list.underscore -msgid "View child items" -msgstr "" - -#: cms/templates/js/move-xblock-list.underscore -msgid "Currently selected" -msgstr "" - -#: cms/templates/js/no-textbooks.underscore -msgid "You haven't added any textbooks to this course yet." -msgstr "" - -#: cms/templates/js/no-textbooks.underscore -msgid "Add your first textbook" -msgstr "" - -#: cms/templates/js/partition-group-details.underscore -msgid "This group controls access to:" -msgstr "" - -#: cms/templates/js/partition-group-details.underscore -msgid "" -"In the {linkStart}Course Outline{linkEnd}, use this group to control access " -"to a component." -msgstr "" - -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Previous Uploads" -msgstr "" - -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Download available encodings (.csv)" -msgstr "" - -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Thumbnail" -msgstr "" - -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Video ID" -msgstr "" - -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Transcripts" -msgstr "" - -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Video Status" -msgstr "" - -#: cms/templates/js/previous-video-upload.underscore -msgid "Remove this video" -msgstr "" - -#: cms/templates/js/previous-video-upload.underscore -msgid "Remove {video_name} video" -msgstr "" - -#: cms/templates/js/publish-history.underscore -msgid "Never published" -msgstr "" - -#: cms/templates/js/publish-history.underscore -#, python-format -msgid "Last published %(last_published_date)s by %(publish_username)s" -msgstr "" - -#: cms/templates/js/publish-history.underscore -#: cms/templates/js/publish-xblock.underscore -msgid "Previously published" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "Draft (Never published)" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "Visible to Staff Only" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "Published and Live" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "Published (not yet released)" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "Draft (Unpublished changes)" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "Release:" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "Publishing Status" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "" -"Draft saved on {lastSavedStart}{editedOn}{lastSavedEnd} by " -"{editedByStart}{editedBy}{editedByEnd}" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "" -"Last published {lastPublishedStart}{publishedOn}{lastPublishedEnd} by " -"{publishedByStart}{publishedBy}{publishedByEnd}" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -#, python-format -msgid "with %(release_date_from)s" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "Is Visible To:" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "Will Be Visible To:" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "Staff Only" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -#, python-format -msgid "with %(section_or_subsection)s" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "Staff and Learners" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/staff-lock-editor.underscore -msgid "Hide from learners" -msgstr "" - -#: cms/templates/js/publish-xblock.underscore -msgid "Note: Do not hide graded assignments after they have been released." -msgstr "" - -#: cms/templates/js/release-date-editor.underscore -msgid "Release Date and Time" -msgstr "" - -#: cms/templates/js/release-date-editor.underscore -msgid "Release Date:" -msgstr "" - -#: cms/templates/js/release-date-editor.underscore -msgid "Release Time in UTC:" -msgstr "" - -#: cms/templates/js/release-date-editor.underscore -#: cms/templates/js/release-date-editor.underscore -msgid "Clear Release Date/Time" -msgstr "" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "Assessment Results Visibility" -msgstr "" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "Always show assessment results" -msgstr "" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "" -"When learners submit an answer to an assessment, they immediately see " -"whether the answer is correct or incorrect, and the score received." -msgstr "" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "Never show assessment results" -msgstr "" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "" -"Learners never see whether their answers to assessments are correct or " -"incorrect, nor the score received." -msgstr "" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "Show assessment results when subsection is past due" -msgstr "" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "" -"Learners do not see whether their answers to assessments were correct or " -"incorrect, nor the score received, until after the course end date has " -"passed." -msgstr "" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "" -"If the course does not have an end date, learners always see their scores " -"when they submit answers to assessments." -msgstr "" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "" -"Learners do not see whether their answers to assessments were correct or " -"incorrect, nor the score received, until after the due date for the " -"subsection has passed." -msgstr "" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "" -"If the subsection does not have a due date, learners always see their scores" -" when they submit answers to assessments." -msgstr "" - -#: cms/templates/js/show-textbook.underscore -msgid "PDF Chapters" -msgstr "" - -#: cms/templates/js/show-textbook.underscore -msgid "View Live" -msgstr "" - -#: cms/templates/js/signatory-details.underscore -#: cms/templates/js/signatory-editor.underscore -msgid "Signatory" -msgstr "" - -#: cms/templates/js/signatory-details.underscore -#: cms/templates/js/signatory-editor.underscore -msgid "Signature Image" -msgstr "" - -#: cms/templates/js/signatory-editor.underscore -msgid "Certificate Signatory Configuration" -msgstr "" - -#: cms/templates/js/signatory-editor.underscore -msgid "Name " -msgstr "" - -#: cms/templates/js/signatory-editor.underscore -msgid "Name of the signatory" -msgstr "" - -#: cms/templates/js/signatory-editor.underscore -msgid "The name of this signatory as it should appear on certificates." -msgstr "" - -#: cms/templates/js/signatory-editor.underscore -msgid "Title " -msgstr "" - -#: cms/templates/js/signatory-editor.underscore -msgid "Title of the signatory" -msgstr "" - -#: cms/templates/js/signatory-editor.underscore -msgid "" -"Titles more than 100 characters may prevent students from printing their " -"certificate on a single page." -msgstr "" - -#: cms/templates/js/signatory-editor.underscore -msgid "Organization " -msgstr "" - -#: cms/templates/js/signatory-editor.underscore -msgid "Organization of the signatory" -msgstr "" - -#: cms/templates/js/signatory-editor.underscore -msgid "" -"The organization that this signatory belongs to, as it should appear on " -"certificates." -msgstr "" - -#: cms/templates/js/signatory-editor.underscore -msgid "Path to Signature Image" -msgstr "" - -#: cms/templates/js/signatory-editor.underscore -msgid "Image must be in PNG format" -msgstr "" - -#: cms/templates/js/signatory-editor.underscore -msgid "Upload Signature Image" -msgstr "" - -#: cms/templates/js/staff-lock-editor.underscore -msgid "Unit Visibility" -msgstr "" - -#: cms/templates/js/staff-lock-editor.underscore -msgid "Section Visibility" -msgstr "" - -#: cms/templates/js/staff-lock-editor.underscore -msgid "" -"If the unit was previously published and released to learners, any changes " -"you made to the unit when it was hidden will now be visible to learners." -msgstr "" - -#: cms/templates/js/staff-lock-editor.underscore -#, python-format -msgid "" -"If you make this %(xblockType)s visible to learners, learners will be able " -"to see its content after the release date has passed and you have published " -"the unit. Only units that are explicitly hidden from learners will remain " -"hidden after you clear this option for the %(xblockType)s." -msgstr "" - -#: cms/templates/js/team-member.underscore -msgid "Current Role:" -msgstr "" - -#: cms/templates/js/team-member.underscore -msgid "You!" -msgstr "" - -#: cms/templates/js/team-member.underscore -msgid "send an email message to {email}" -msgstr "" - -#: cms/templates/js/team-member.underscore -msgid "Promote another member to Admin to remove your admin rights" -msgstr "" - -#: cms/templates/js/team-member.underscore -msgid "Add {role} Access" -msgstr "" - -#: cms/templates/js/team-member.underscore -msgid "Remove {role} Access" -msgstr "" - -#: cms/templates/js/team-member.underscore -msgid "Delete the user, {username}" -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Set as a Special Exam" -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Exam Types" -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "None" -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Timed" -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "" -"Use a timed exam to limit the time learners can spend on problems in this " -"subsection. Learners must submit answers before the time expires. You can " -"allow additional time for individual learners through the Instructor " -"Dashboard." -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Proctored" -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "" -"Proctored exams are timed and they record video of each learner taking the " -"exam. The videos are then reviewed to ensure that learners follow all " -"examination rules." -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Practice Proctored" -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "" -"Use a practice proctored exam to introduce learners to the proctoring tools " -"and processes. Results of a practice exam do not affect a learner's grade." -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Time Allotted (HH:MM):" -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "" -"Select a time allotment for the exam. If it is over 24 hours, type in the " -"amount of time. You can grant individual learners extra time to complete the" -" exam through the Instructor Dashboard." -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Review Rules" -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "" -"Specify any rules or rule exceptions that the proctoring review team should " -"enforce when reviewing the videos. For example, you could specify that " -"calculators are allowed. These specified rules are visible to learners " -"before the learners start the exam, along with the {linkStart}general " -"proctored exam rules{linkEnd}." -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "General Proctored Exam Rules" -msgstr "" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "" -"Specify any rules or rule exceptions that the proctoring review team should " -"enforce when reviewing the videos. For example, you could specify that " -"calculators are allowed. These specified rules are visible to learners " -"before the learners start the exam." -msgstr "" - -#: cms/templates/js/transcript-organization-credentials.underscore -msgid "Account" -msgstr "" - -#: cms/templates/js/transcript-organization-credentials.underscore -msgid "" -"This action updates the {provider} information for your entire organization." -msgstr "" - -#: cms/templates/js/transcript-organization-credentials.underscore -msgid "Enter the account information for your organization." -msgstr "" - -#: cms/templates/js/transcript-organization-credentials.underscore -msgid "API Key" -msgstr "" - -#: cms/templates/js/transcript-organization-credentials.underscore -msgid "API Secret" -msgstr "" - -#: cms/templates/js/unit-access-editor.underscore -msgid "Unit Access" -msgstr "" - -#: cms/templates/js/unit-access-editor.underscore -msgid "Restrict access to:" -msgstr "" - -#: cms/templates/js/unit-access-editor.underscore -msgid "Select a group type" -msgstr "" - -#: cms/templates/js/unit-access-editor.underscore -msgid "Select one or more groups:" -msgstr "" - -#: cms/templates/js/unit-access-editor.underscore -msgid "Deleted Group" -msgstr "" - -#: cms/templates/js/unit-access-editor.underscore -msgid "" -"This group no longer exists. Choose another group or do not restrict access " -"to this unit." -msgstr "" - -#: cms/templates/js/upload-dialog.underscore -msgid "File upload succeeded" -msgstr "" - -#: cms/templates/js/validation-error-modal.underscore -msgid "" -"Please check the following validation feedbacks and reflect them in your " -"course settings:" -msgstr "" - -#: cms/templates/js/verification-access-editor.underscore -msgid "Verification Checkpoint" -msgstr "" - -#: cms/templates/js/verification-access-editor.underscore -msgid "Must complete verification checkpoint" -msgstr "" - -#: cms/templates/js/verification-access-editor.underscore -msgid "Verification checkpoint to be completed" -msgstr "" - -#: cms/templates/js/verification-access-editor.underscore -msgid "" -"Learners who require verification must pass the selected checkpoint to see " -"the content in this unit. Learners who do not require verification see this " -"content by default." -msgstr "" - -#: cms/templates/js/video-thumbnail.underscore -msgid "" -"Recommended image resolution is {imageResolution}, maximum image file size " -"should be {maxFileSize} and format must be one of {supportedImageFormats}." -msgstr "" - -#: cms/templates/js/video-transcript-upload-status.underscore -msgid "Read more" -msgstr "" - -#: cms/templates/js/video-transcripts.underscore -msgid "Show transcripts ({totalTranscripts})" -msgstr "" - -#: cms/templates/js/video-transcripts.underscore -msgid "No transcript uploaded." -msgstr "" - -#: cms/templates/js/video-transcripts.underscore -msgid "{transcriptClientTitle}_{transcriptLanguageCode}.{fileExtension}" -msgstr "" - -#: cms/templates/js/xblock-access-editor.underscore -msgid "Set Access" -msgstr "" - -#: cms/templates/js/xblock-string-field-editor.underscore -#, python-format -msgid "Edit %(display_name)s (required)" -msgstr "" - -#: cms/templates/js/maintenance/force-published-course-response.underscore -msgid "" -"You have done a dry run of force publishing the course. Nothing has changed." -" Had you run it, the following course versions would have been change." -msgstr "" - -#: cms/templates/js/maintenance/force-published-course-response.underscore -msgid "" -"The published branch version, {published}, was reset to the draft branch " -"version, {draft}." -msgstr "" - -#: cms/templates/js/video/transcripts/metadata-videolist-entry.underscore -msgid "Add URLs for additional versions" -msgstr "" - -#: cms/templates/js/video/transcripts/metadata-videolist-entry.underscore -msgid "" -"To be sure all students can access the video, we recommend providing both an" -" .mp4 and a .webm version of your video. Click below to add a URL for " -"another version. These URLs cannot be YouTube URLs. The first listed video " -"that's compatible with the student's computer will play." -msgstr "" - -#: cms/templates/js/video/transcripts/metadata-videolist-entry.underscore -msgid "Default Timed Transcript" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-choose.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -msgid "Timed Transcript Conflict" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-choose.underscore -msgid "" -"The timed transcript for the first video file does not appear to be the same" -" as the timed transcript for the second video file." -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-choose.underscore -msgid "Which timed transcript would you like to use?" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-choose.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -msgid "Error." -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-choose.underscore -#, python-format -msgid "Timed Transcript from %(filename)s" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -msgid "Timed Transcript Found" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -msgid "" -"EdX has a timed transcript for this video. If you want to edit this " -"transcript, you can download, edit, and re-upload the existing transcript. " -"If you want to replace this transcript, upload a new .srt transcript file." -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -msgid "Upload New Transcript" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -msgid "Upload New .srt Transcript" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -msgid "Download Transcript for Editing" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -msgid "No EdX Timed Transcript" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -msgid "" -"EdX doesn't have a timed transcript for this video in Studio, but we found a" -" transcript on YouTube. You can import the YouTube transcript or upload your" -" own .srt transcript file." -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -msgid "Import YouTube Transcript" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -msgid "No Timed Transcript" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -msgid "" -"EdX doesn\\'t have a timed transcript for this video. Please upload an .srt " -"file." -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -msgid "" -"The timed transcript for this video on edX is out of date, but YouTube has a" -" current timed transcript for this video." -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -msgid "Do you want to replace the edX transcript with the YouTube transcript?" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -msgid "Yes, replace the edX transcript with the YouTube transcript" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -msgid "Timed Transcript Uploaded Successfully" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -msgid "" -"EdX has a timed transcript for this video. If you want to replace this " -"transcript, upload a new .srt transcript file. If you want to edit this " -"transcript, you can download, edit, and re-upload the existing transcript." -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -msgid "Confirm Timed Transcript" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -msgid "" -"You changed a video URL, but did not change the timed transcript file. Do " -"you want to use the current timed transcript or upload a new .srt transcript" -" file?" -msgstr "" - -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -msgid "Use Current Transcript" -msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/underscore.po b/conf/locale/en/LC_MESSAGES/underscore.po deleted file mode 100644 index 6b5de99094f4..000000000000 --- a/conf/locale/en/LC_MESSAGES/underscore.po +++ /dev/null @@ -1,2676 +0,0 @@ -# edX translation file -# Copyright (C) 2019 edX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:53+0000\n" -"PO-Revision-Date: 2019-05-16 10:53:15.883113\n" -"Last-Translator: \n" -"Language-Team: openedx-translation \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" - -#: cms/templates/js/add-xblock-component-menu-problem.underscore -#: cms/templates/js/add-xblock-component-menu.underscore -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/course_info_handouts.underscore -#: cms/templates/js/course_info_update.underscore -#: cms/templates/js/edit-textbook.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: cms/templates/js/section-name-edit.underscore -#: cms/templates/js/signatory-actions.underscore -#: cms/templates/js/xblock-string-field-editor.underscore -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/response-comment-edit.underscore -#: common/static/common/templates/discussion/thread-edit.underscore -#: common/static/common/templates/discussion/thread-response-edit.underscore -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -#: lms/templates/learner_dashboard/verification_popover.underscore -msgid "Cancel" -msgstr "" - -#: cms/templates/js/asset-library.underscore -#: cms/templates/js/course-instructor-details.underscore -#: cms/templates/js/previous-video-upload-list.underscore -#: cms/templates/js/signatory-details.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Name" -msgstr "" - -#: cms/templates/js/asset-library.underscore -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Type" -msgstr "" - -#: cms/templates/js/asset-library.underscore -#: cms/templates/js/basic-modal.underscore -#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Actions" -msgstr "" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/course_info_handouts.underscore -#: cms/templates/js/course_info_update.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/partition-group-details.underscore -#: cms/templates/js/show-textbook.underscore -#: cms/templates/js/signatory-details.underscore -#: cms/templates/js/xblock-string-field-editor.underscore -#: common/static/common/templates/discussion/forum-action-edit.underscore -msgid "Edit" -msgstr "" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/course-instructor-details.underscore -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-settings-learning-fields.underscore -#: cms/templates/js/course_grade_policy.underscore -#: cms/templates/js/course_info_update.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: cms/templates/js/partition-group-details.underscore -#: cms/templates/js/partition-group-details.underscore -#: cms/templates/js/partition-group-details.underscore -#: cms/templates/js/show-textbook.underscore -#: cms/templates/js/signatory-editor.underscore -#: cms/templates/js/video-transcripts.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: common/static/common/templates/discussion/forum-action-delete.underscore -msgid "Delete" -msgstr "" - -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Description" -msgstr "" - -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/course_info_handouts.underscore -#: cms/templates/js/edit-textbook.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: cms/templates/js/section-name-edit.underscore -#: cms/templates/js/signatory-actions.underscore -#: cms/templates/js/xblock-string-field-editor.underscore -#: lms/templates/fields/field_dropdown.underscore -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-course-wide.underscore -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore -msgid "Save" -msgstr "" - -#: cms/templates/js/course-instructor-details.underscore -#: cms/templates/js/signatory-details.underscore -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/thread-edit.underscore -msgid "Title" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Timed Exam" -msgstr "" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/publish-xblock.underscore -#: lms/templates/ccx/schedule.underscore lms/templates/ccx/schedule.underscore -msgid "Unscheduled" -msgstr "" - -#: cms/templates/js/course-video-settings.underscore -#: common/static/common/templates/image-modal.underscore -#: common/static/common/templates/discussion/alert-popup.underscore -#: common/static/common/templates/discussion/forum-action-close.underscore -#: common/static/common/templates/discussion/forum-action-close.underscore -#: common/static/common/templates/discussion/search-alert.underscore -#: openedx/features/learner_profile/static/learner_profile/templates/share_modal.underscore -msgid "Close" -msgstr "" - -#: cms/templates/js/course_info_update.underscore -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Date" -msgstr "" - -#: cms/templates/js/move-xblock-modal.underscore -#: openedx/features/course_search/static/course_search/templates/search_loading.underscore -msgid "Loading" -msgstr "" - -#: cms/templates/js/paging-header.underscore -#: common/static/common/templates/components/paging-footer.underscore -#: common/static/common/templates/discussion/pagination.underscore -msgid "Previous" -msgstr "" - -#: cms/templates/js/paging-header.underscore -#: common/static/common/templates/components/paging-footer.underscore -#: common/static/common/templates/discussion/pagination.underscore -msgid "Next" -msgstr "" - -#: cms/templates/js/previous-video-upload-list.underscore -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Action" -msgstr "" - -#: cms/templates/js/transcript-organization-credentials.underscore -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -#: lms/templates/financial-assistance/financial_assessment_form.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Username" -msgstr "" - -#: cms/templates/js/video/metadata-translations-item.underscore -#: lms/djangoapps/teams/static/teams/templates/edit-team-member.underscore -msgid "Remove" -msgstr "" - -#: common/static/common/templates/image-modal.underscore -msgid "Fullscreen" -msgstr "" - -#: common/static/common/templates/image-modal.underscore -msgid "Large" -msgstr "" - -#: common/static/common/templates/image-modal.underscore -msgid "Zoom In" -msgstr "" - -#: common/static/common/templates/image-modal.underscore -msgid "Zoom Out" -msgstr "" - -#: common/static/common/templates/components/paging-footer.underscore -#, python-format -msgid "Page number out of %(total_pages)s" -msgstr "" - -#: common/static/common/templates/components/paging-footer.underscore -msgid "Enter the page number you'd like to quickly navigate to." -msgstr "" - -#: common/static/common/templates/components/paging-header.underscore -msgid "Sorted by" -msgstr "" - -#: common/static/common/templates/components/search-field.underscore -msgid "Clear search" -msgstr "" - -#: common/static/common/templates/components/search-field.underscore -#: common/static/common/templates/components/search-field.underscore -#: lms/djangoapps/discussion/static/discussion/templates/search.underscore -#: lms/djangoapps/support/static/support/templates/certificates.underscore -#: lms/djangoapps/support/static/support/templates/certificates.underscore -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -msgid "Search" -msgstr "" - -#: common/static/common/templates/discussion/alert-popup.underscore -#: lms/templates/learner_dashboard/verification_popover.underscore -msgid "OK" -msgstr "" - -#: common/static/common/templates/discussion/forum-action-answer.underscore -#: common/static/common/templates/discussion/forum-action-answer.underscore -msgid "Mark as Answer" -msgstr "" - -#: common/static/common/templates/discussion/forum-action-answer.underscore -msgid "Unmark as Answer" -msgstr "" - -#: common/static/common/templates/discussion/forum-action-close.underscore -msgid "Open" -msgstr "" - -#: common/static/common/templates/discussion/forum-action-endorse.underscore -#: common/static/common/templates/discussion/forum-action-endorse.underscore -msgid "Endorse" -msgstr "" - -#: common/static/common/templates/discussion/forum-action-endorse.underscore -msgid "Unendorse" -msgstr "" - -#: common/static/common/templates/discussion/forum-action-follow.underscore -#: common/static/common/templates/discussion/forum-action-follow.underscore -msgid "Follow" -msgstr "" - -#: common/static/common/templates/discussion/forum-action-follow.underscore -msgid "Unfollow" -msgstr "" - -#: common/static/common/templates/discussion/forum-action-pin.underscore -#: common/static/common/templates/discussion/forum-action-pin.underscore -msgid "Pin" -msgstr "" - -#: common/static/common/templates/discussion/forum-action-pin.underscore -msgid "Unpin" -msgstr "" - -#: common/static/common/templates/discussion/forum-action-report.underscore -msgid "Report abuse" -msgstr "" - -#: common/static/common/templates/discussion/forum-action-report.underscore -msgid "Report" -msgstr "" - -#: common/static/common/templates/discussion/forum-action-report.underscore -msgid "Unreport" -msgstr "" - -#: common/static/common/templates/discussion/forum-action-vote.underscore -msgid "Vote for this post," -msgstr "" - -#: common/static/common/templates/discussion/forum-actions.underscore -#: common/static/common/templates/discussion/forum-actions.underscore -#: lms/templates/discovery/facet.underscore -#: lms/templates/edxnotes/note-item.underscore -msgid "More" -msgstr "" - -#: common/static/common/templates/discussion/nav-load-more-link.underscore -msgid "Load more" -msgstr "" - -#: common/static/common/templates/discussion/new-post-alert.underscore -msgid "Error posting your message." -msgstr "" - -#: common/static/common/templates/discussion/new-post-visibility.underscore -#, python-format -msgid "This post will be visible only to %(group_name)s." -msgstr "" - -#: common/static/common/templates/discussion/new-post-visibility.underscore -msgid "This post will be visible to everyone." -msgstr "" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "Add a Post" -msgstr "" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "Visible to" -msgstr "" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "" -"Discussion admins, moderators, and TAs can make their posts visible to all " -"students or specify a single group." -msgstr "" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "All Groups" -msgstr "" - -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/thread-edit.underscore -msgid "" -"Add a clear and descriptive title to encourage participation. (Required)" -msgstr "" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "Your question or idea (required)" -msgstr "" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "follow this post" -msgstr "" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "post anonymously" -msgstr "" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "post anonymously to classmates" -msgstr "" - -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/thread-response.underscore -#: common/static/common/templates/discussion/thread.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Submit" -msgstr "" - -#: common/static/common/templates/discussion/pagination.underscore -#: common/static/common/templates/discussion/pagination.underscore -msgid "…" -msgstr "" - -#: common/static/common/templates/discussion/post-user-display.underscore -msgid "(Community TA)" -msgstr "" - -#: common/static/common/templates/discussion/post-user-display.underscore -msgid "(Staff)" -msgstr "" - -#: common/static/common/templates/discussion/post-user-display.underscore -#: common/static/common/templates/discussion/profile-thread.underscore -msgid "anonymous" -msgstr "" - -#: common/static/common/templates/discussion/profile-thread.underscore -#: common/static/common/templates/discussion/thread.underscore -msgid "This thread is closed." -msgstr "" - -#: common/static/common/templates/discussion/profile-thread.underscore -msgid "View discussion" -msgstr "" - -#: common/static/common/templates/discussion/response-comment-edit.underscore -msgid "Editing comment" -msgstr "" - -#: common/static/common/templates/discussion/response-comment-edit.underscore -msgid "Update comment" -msgstr "" - -#: common/static/common/templates/discussion/response-comment-show.underscore -#, python-format -msgid "posted %(time_ago)s by %(author)s" -msgstr "" - -#: common/static/common/templates/discussion/response-comment-show.underscore -#: common/static/common/templates/discussion/thread-response-show.underscore -#: common/static/common/templates/discussion/thread-show.underscore -msgid "Reported" -msgstr "" - -#: common/static/common/templates/discussion/thread-edit.underscore -msgid "Editing post" -msgstr "" - -#: common/static/common/templates/discussion/thread-edit.underscore -msgid "Edit your post below." -msgstr "" - -#: common/static/common/templates/discussion/thread-edit.underscore -msgid "Update post" -msgstr "" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "discussion" -msgstr "" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "answered question" -msgstr "" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "unanswered question" -msgstr "" - -#: common/static/common/templates/discussion/thread-list-item.underscore -#: common/static/common/templates/discussion/thread-show.underscore -msgid "Pinned" -msgstr "" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "Following" -msgstr "" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "Staff" -msgstr "" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "Community TA" -msgstr "" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "{unread_comments_count} new" -msgstr "" - -#: common/static/common/templates/discussion/thread-list-item.underscore -#, python-format -msgid "" -"%(comments_count)s %(span_sr_open)scomments (%(unread_comments_count)s " -"unread comments)%(span_close)s" -msgstr "" - -#: common/static/common/templates/discussion/thread-list-item.underscore -#, python-format -msgid "%(comments_count)s %(span_sr_open)scomments %(span_close)s" -msgstr "" - -#: common/static/common/templates/discussion/thread-response-edit.underscore -msgid "Editing response" -msgstr "" - -#: common/static/common/templates/discussion/thread-response-edit.underscore -msgid "Update response" -msgstr "" - -#: common/static/common/templates/discussion/thread-response-show.underscore -#, python-format -msgid "marked as answer %(time_ago)s by %(user)s" -msgstr "" - -#: common/static/common/templates/discussion/thread-response-show.underscore -#, python-format -msgid "marked as answer %(time_ago)s" -msgstr "" - -#: common/static/common/templates/discussion/thread-response-show.underscore -#, python-format -msgid "endorsed %(time_ago)s by %(user)s" -msgstr "" - -#: common/static/common/templates/discussion/thread-response-show.underscore -#, python-format -msgid "endorsed %(time_ago)s" -msgstr "" - -#: common/static/common/templates/discussion/thread-response.underscore -#, python-format -msgid "Show Comment (%(num_comments)s)" -msgid_plural "Show Comments (%(num_comments)s)" -msgstr[0] "" -msgstr[1] "" - -#: common/static/common/templates/discussion/thread-response.underscore -#: common/static/common/templates/discussion/thread-response.underscore -msgid "Add a comment" -msgstr "" - -#: common/static/common/templates/discussion/thread-show.underscore -#, python-format -msgid "discussion posted %(time_ago)s by %(author)s" -msgstr "" - -#: common/static/common/templates/discussion/thread-show.underscore -#, python-format -msgid "question posted %(time_ago)s by %(author)s" -msgstr "" - -#: common/static/common/templates/discussion/thread-show.underscore -msgid "Closed" -msgstr "" - -#: common/static/common/templates/discussion/thread-show.underscore -#, python-format -msgid "Related to: %(courseware_title_linked)s" -msgstr "" - -#: common/static/common/templates/discussion/thread-show.underscore -#, python-format -msgid "This post is visible only to %(group_name)s." -msgstr "" - -#: common/static/common/templates/discussion/thread-show.underscore -msgid "This post is visible to everyone." -msgstr "" - -#: common/static/common/templates/discussion/thread-type.underscore -msgid "Post type" -msgstr "" - -#: common/static/common/templates/discussion/thread-type.underscore -msgid "" -"Questions raise issues that need answers. Discussions share ideas and start " -"conversations. (Required)" -msgstr "" - -#: common/static/common/templates/discussion/thread-type.underscore -msgid "Question" -msgstr "" - -#: common/static/common/templates/discussion/thread-type.underscore -msgid "Discussion" -msgstr "" - -#: common/static/common/templates/discussion/thread.underscore -msgid "Add a Response" -msgstr "" - -#: common/static/common/templates/discussion/thread.underscore -msgid "Add a response:" -msgstr "" - -#: common/static/common/templates/discussion/topic.underscore -msgid "Topic area" -msgstr "" - -#: common/static/common/templates/discussion/topic.underscore -msgid "Add your post to a relevant topic to help others find it. (Required)" -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Discussion Home" -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -#, python-format -msgid "How to use %(platform_name)s discussions" -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Find discussions" -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Use the All Topics menu to find specific topics." -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -#: lms/djangoapps/discussion/static/discussion/templates/search.underscore -#: lms/djangoapps/discussion/static/discussion/templates/search.underscore -msgid "Search all posts" -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Filter and sort topics" -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Engage with posts" -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Vote for good posts and responses" -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Report abuse, topics, and responses" -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Follow or unfollow posts" -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Receive updates" -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Toggle Notifications Setting" -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "" -"Check this box to receive an email digest once a day notifying you about " -"new, unread activity from posts you are following." -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/fake-breadcrumbs.underscore -msgid "All Topics" -msgstr "" - -#: lms/djangoapps/discussion/static/discussion/templates/user-profile.underscore -msgid "All Posts" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates.underscore -msgid "username or email" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates.underscore -msgid "course id" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "No results" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Course Key" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Status" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Download URL" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Grade" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Last Updated" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Download the user's certificate" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Not available" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Regenerate" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Regenerate the user's certificate" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Generate" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Generate the user's certificate" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -msgid "Current enrollment mode:" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -msgid "New enrollment mode:" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -msgid "Reason for change:" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -msgid "Choose One" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -msgid "Explain if other." -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -msgid "Submit enrollment change" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Username or email address" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Course ID" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Course Start" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Course End" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Upgrade Deadline" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Verification Deadline" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Enrollment Date" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Enrollment Mode" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Verified mode price" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Reason" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Last modified by" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Active" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -#: lms/templates/ccx/schedule.underscore -msgid "N/A" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Change Enrollment" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Email" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -msgid "Date Joined" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -msgid "Password Status" -msgstr "" - -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -msgid "Toggle Account Password (Usable/Unusable)" -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Your team could not be created." -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Your team could not be updated." -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "" -"Enter information to describe your team. You cannot change these details " -"after you create the team." -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Optional Characteristics" -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "" -"Help other learners decide whether to join your team by specifying some " -"characteristics for your team. Choose carefully, because fewer people might " -"be interested in joining your team if it seems too restrictive." -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Create team." -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Update team." -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Cancel team creating." -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Cancel team updating." -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/instructor-tools.underscore -msgid "Instructor tools" -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/instructor-tools.underscore -msgid "Delete Team" -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/instructor-tools.underscore -msgid "Edit Membership" -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/team-actions.underscore -msgid "Are you having trouble finding a team to join?" -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/team-profile-header-actions.underscore -msgid "Join Team" -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/team-profile-header-actions.underscore -msgid "Edit Team" -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "Team Details" -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "You are a member of this team." -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "Team member profiles" -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "Team capacity" -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "The country that team members primarily identify with." -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "" -"The language that team members primarily use to communicate with each other." -msgstr "" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "Leave Team" -msgstr "" - -#: lms/static/js/fixtures/donation.underscore -#: lms/templates/dashboard/donation.underscore -msgid "Donate" -msgstr "" - -#: lms/templates/api_admin/catalog-error.underscore -msgid "" -"There was an error retrieving preview results for this catalog. Please check" -" that your query is correct and try again." -msgstr "" - -#: lms/templates/api_admin/catalog-results.underscore -msgid "This catalog's courses:" -msgstr "" - -#: lms/templates/ccx/schedule.underscore -msgid "Expand All" -msgstr "" - -#: lms/templates/ccx/schedule.underscore -msgid "Collapse All" -msgstr "" - -#: lms/templates/ccx/schedule.underscore lms/templates/ccx/schedule.underscore -msgid "Unit" -msgstr "" - -#: lms/templates/ccx/schedule.underscore -msgid "Start Date" -msgstr "" - -#: lms/templates/ccx/schedule.underscore -msgid "Due Date" -msgstr "" - -#: lms/templates/ccx/schedule.underscore -msgid "remove all" -msgstr "" - -#: lms/templates/ccx/schedule.underscore -#, python-format -msgid "toggle chapter %(displayName)s" -msgstr "" - -#: lms/templates/ccx/schedule.underscore -msgid "Section" -msgstr "" - -#: lms/templates/ccx/schedule.underscore lms/templates/ccx/schedule.underscore -#: lms/templates/ccx/schedule.underscore -msgid "Click to change" -msgstr "" - -#: lms/templates/ccx/schedule.underscore -#, python-format -msgid "Remove chapter %(chapterDisplayName)s" -msgstr "" - -#: lms/templates/ccx/schedule.underscore lms/templates/ccx/schedule.underscore -#: lms/templates/ccx/schedule.underscore -msgid "remove" -msgstr "" - -#: lms/templates/ccx/schedule.underscore -#, python-format -msgid "toggle subsection %(displayName)s" -msgstr "" - -#: lms/templates/ccx/schedule.underscore -msgid "Subsection" -msgstr "" - -#: lms/templates/ccx/schedule.underscore -#, python-format -msgid "Remove subsection %(subsectionDisplayName)s" -msgstr "" - -#: lms/templates/ccx/schedule.underscore -#, python-format -msgid "Remove unit %(unitName)s" -msgstr "" - -#: lms/templates/commerce/provider.underscore -#, python-format -msgid "" -"You still need to visit the %(display_name)s website to complete the credit " -"process." -msgstr "" - -#: lms/templates/commerce/provider.underscore -#, python-format -msgid "" -"To finalize course credit, %(display_name)s requires %(platform_name)s " -"learners to submit a credit request." -msgstr "" - -#: lms/templates/commerce/provider.underscore -msgid "Get Credit" -msgstr "" - -#: lms/templates/commerce/receipt.underscore -#, python-format -msgid "" -"Thank you %(full_name)s! We have received your payment for %(course_name)s." -msgstr "" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "" -"Please print this page for your records; it serves as your receipt. You will" -" also receive an email with the same information." -msgstr "" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Order No." -msgstr "" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Amount" -msgstr "" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Total" -msgstr "" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Please Note" -msgstr "" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Crossed out items have been refunded." -msgstr "" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Billed to" -msgstr "" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "No receipt available" -msgstr "" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/financial-assistance/financial_assessment_submitted.underscore -msgid "Go to Dashboard" -msgstr "" - -#: lms/templates/commerce/receipt.underscore -msgid "" -"If you don't verify your identity now, you can still explore your course " -"from your dashboard. You will receive periodic reminders from {platformName}" -" to verify your identity." -msgstr "" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Want to confirm your identity later?" -msgstr "" - -#: lms/templates/commerce/receipt.underscore -msgid "Verify Now" -msgstr "" - -#: lms/templates/courseware/proctored-exam-controls.underscore -msgid "Mark Exam As Completed" -msgstr "" - -#: lms/templates/courseware/proctored-exam-status.underscore -msgid "timed" -msgstr "" - -#: lms/templates/courseware/proctored-exam-status.underscore -msgid "" -"To receive credit for problems, you must select \"Submit\" for each problem " -"before you select \"End My Exam\"." -msgstr "" - -#: lms/templates/courseware/proctored-exam-status.underscore -msgid "End My Exam" -msgstr "" - -#: lms/templates/courseware/proctored-exam-status.underscore -msgid "Hide Timer" -msgstr "" - -#: lms/templates/discovery/course_card.underscore -msgid "LEARN MORE" -msgstr "" - -#: lms/templates/discovery/course_card.underscore -#, python-format -msgid "Starts: %(start_date)s" -msgstr "" - -#: lms/templates/discovery/course_card.underscore -msgid "Starts" -msgstr "" - -#: lms/templates/discovery/facet.underscore -#: lms/templates/edxnotes/note-item.underscore -msgid "Less" -msgstr "" - -#: lms/templates/discovery/filter_bar.underscore -msgid "Clear All" -msgstr "" - -#: lms/templates/edxnotes/note-item.underscore -msgid "Highlighted text" -msgstr "" - -#: lms/templates/edxnotes/note-item.underscore -msgid "Note" -msgstr "" - -#: lms/templates/edxnotes/note-item.underscore -msgid "You commented..." -msgstr "" - -#: lms/templates/edxnotes/note-item.underscore -msgid "Noted in:" -msgstr "" - -#: lms/templates/edxnotes/note-item.underscore -msgid "Last Edited:" -msgstr "" - -#: lms/templates/edxnotes/note-item.underscore -msgid "Tags:" -msgstr "" - -#: lms/templates/edxnotes/tab-item.underscore -msgid "Clear search results" -msgstr "" - -#: lms/templates/fields/field_dropdown.underscore -#: lms/templates/fields/field_dropdown_account.underscore -#: lms/templates/fields/field_textarea.underscore -msgid "Click to edit" -msgstr "" - -#: lms/templates/fields/field_order_history.underscore -msgid "Order Number" -msgstr "" - -#: lms/templates/fields/field_order_history.underscore -#: lms/templates/fields/field_order_history.underscore -msgid "Date Placed" -msgstr "" - -#: lms/templates/fields/field_order_history.underscore -#: lms/templates/fields/field_order_history.underscore -msgid "Cost" -msgstr "" - -#: lms/templates/fields/field_order_history.underscore -msgid "Order Details" -msgstr "" - -#: lms/templates/fields/field_order_history.underscore -msgid "for" -msgstr "" - -#: lms/templates/fields/field_order_history.underscore -msgid "Product Name" -msgstr "" - -#: lms/templates/fields/field_textarea.underscore -msgid "" -"{currentCountOpeningTag}{currentCharacterCount}{currentCountClosingTag} of " -"{maxCharacters}" -msgstr "" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -#: lms/templates/financial-assistance/financial_assessment_submitted.underscore -msgid "Financial Assistance Application" -msgstr "" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "About You" -msgstr "" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "" -"The following information is already a part of your {platform} profile. " -"We\\'ve included it here for your application." -msgstr "" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "Email address" -msgstr "" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "Legal name" -msgstr "" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "Country of residence" -msgstr "" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "Back to {platform} FAQs" -msgstr "" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "Submit Application" -msgstr "" - -#: lms/templates/financial-assistance/financial_assessment_submitted.underscore -msgid "" -"Thank you for submitting your financial assistance application for " -"{course_name}! You can expect a response in 2-4 business days." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-bulk-white-list.underscore -msgid "Bulk Exceptions" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-bulk-white-list.underscore -msgid "" -"Upload a comma separated values (.csv) file that contains the usernames or " -"email addresses of learners who have been given exceptions. Include the " -"username or email address in the first comma separated field. You can " -"include an optional note describing the reason for the exception in the " -"second comma separated field." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-bulk-white-list.underscore -msgid "Upload a CSV file" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-bulk-white-list.underscore -msgid "Browse" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-bulk-white-list.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -msgid "Add to Exception List" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "" -"To invalidate a certificate for a particular learner, add the username or " -"email address below." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Add notes about this learner" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Invalidate Certificate" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Student" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Invalidated By" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Invalidated" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Notes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Remove from Invalidation Table" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -msgid "Individual Exceptions" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -msgid "" -"Enter the username or email address of each learner that you want to add as " -"an exception." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -msgid "Student email or username" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -msgid "Free text notes" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Generate Exception Certificates" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "All users on the Exception list who do not yet have a certificate" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "All users on the Exception list" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "User Email" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Exception Granted" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Certificate Generated" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Remove from List" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-discussions-subcategory.underscore -msgid "Divided" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "Selected tab" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "Manage Learners" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "Settings" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "Add learners to this cohort" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "" -"Note: Learners can be in only one cohort. Adding learners to this group " -"overrides any previous group assignment." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "" -"Enter email addresses and/or usernames, separated by new lines or commas, " -"for the learners you want to add. *" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "(Required Field)" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "e.g. johndoe@example.com, JaneDoe, joeydoe@example.com" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "" -"You will not receive notification for emails that bounce, so double-check " -"your spelling." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "Add Learners" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Add a New Cohort" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Enter the name of the cohort" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Cohort Name" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Cohort Assignment Method" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Automatic" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Manual" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "" -"There must be one cohort to which students can automatically be assigned." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Associated Content Group" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "No Content Group" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Select a Content Group" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Choose a content group to associate" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Not selected" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Deleted Content Group" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "" -"{screen_reader_start}Warning:{screen_reader_end} The previously selected " -"content group was deleted. Select another content group." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "" -"{screen_reader_start}Warning:{screen_reader_end} No content groups exist." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Only the parent course staff of a CCX can create content groups." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Create a content group" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-group-header.underscore -#, python-format -msgid "(contains %(student_count)s student)" -msgid_plural "(contains %(student_count)s students)" -msgstr[0] "" -msgstr[1] "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-group-header.underscore -msgid "" -"Learners are added to this cohort only when you provide their email " -"addresses or usernames on this page." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-group-header.underscore -#: lms/templates/instructor/instructor_dashboard_2/cohort-group-header.underscore -msgid "What does this mean?" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-group-header.underscore -msgid "Learners are added to this cohort automatically." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-selector.underscore -msgid "Select a cohort" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-selector.underscore -#, python-format -msgid "%(cohort_name)s (%(user_count)s)" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohorts.underscore -msgid "Enable Cohorts" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohorts.underscore -msgid "Select a cohort to manage" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohorts.underscore -msgid "View Cohort" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohorts.underscore -msgid "Add Cohort" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohorts.underscore -msgid "Assign learners to cohorts by uploading a CSV file" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/cohorts.underscore -msgid "" -"To review learner cohort assignments or see the results of uploading a CSV " -"file, download course profile information or cohort results on the " -"{link_start}Data Download{link_end} page." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/discussions.underscore -msgid "Specify whether discussion topics are divided" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-course-wide.underscore -msgid "Course-Wide Discussion Topics" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-course-wide.underscore -msgid "Select the course-wide discussion topics that you want to divide." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore -msgid "Content-Specific Discussion Topics" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore -msgid "Specify whether content-specific discussion topics are divided." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore -msgid "Always divide content-specific discussion topics" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore -msgid "Divide the selected content-specific discussion topics" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore -msgid "No content-specific discussion topics exist." -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -msgid "Code" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -msgid "Used" -msgstr "" - -#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -msgid "Valid" -msgstr "" - -#: lms/templates/learner_dashboard/certificate_status.underscore -#: lms/templates/learner_dashboard/upgrade_message.underscore -msgid "Certificate Status:" -msgstr "" - -#: lms/templates/learner_dashboard/certificate_status.underscore -msgid "Certificate Purchased" -msgstr "" - -#: lms/templates/learner_dashboard/course_card.underscore -msgid "Change or Leave Session" -msgstr "" - -#: lms/templates/learner_dashboard/course_card.underscore -msgid "You must select a session by {expiration_date} to access the course." -msgstr "" - -#: lms/templates/learner_dashboard/course_card.underscore -msgid "You can no longer change sessions." -msgstr "" - -#: lms/templates/learner_dashboard/course_card.underscore -msgid "You can change sessions until {expiration_date}." -msgstr "" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "Final Grade" -msgstr "" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "for {courseName}" -msgstr "" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "View Archived Course" -msgstr "" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "View Course" -msgstr "" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "Select a session:" -msgstr "" - -#: lms/templates/learner_dashboard/course_enroll.underscore -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "Enroll Now" -msgstr "" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "Coming Soon" -msgstr "" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "Enrollment Opens on" -msgstr "" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "Not Currently Available" -msgstr "" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "More sessions coming soon." -msgstr "" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Change to a different session or leave the current session." -msgstr "" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "To access the course, select a session." -msgstr "" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Session Selection Dropdown for {courseName}" -msgstr "" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "{sessionDates} - Currently Selected" -msgstr "" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "{sessionDates} (Open until {enrollmentEnd})" -msgstr "" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "More sessions coming soon" -msgstr "" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Leave the current session and decide later" -msgstr "" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Change Session" -msgstr "" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Select Session" -msgstr "" - -#: lms/templates/learner_dashboard/empty_programs_list.underscore -msgid "You are not enrolled in any programs yet." -msgstr "" - -#: lms/templates/learner_dashboard/empty_programs_list.underscore -msgid "Explore Programs" -msgstr "" - -#: lms/templates/learner_dashboard/explore_new_programs.underscore -msgid "" -"Browse recently launched courses and see what\\'s new in your favorite " -"subjects" -msgstr "" - -#: lms/templates/learner_dashboard/explore_new_programs.underscore -msgid "Explore New Programs" -msgstr "" - -#: lms/templates/learner_dashboard/program_card.underscore -#: lms/templates/learner_dashboard/program_card.underscore -#: lms/templates/learner_dashboard/program_card.underscore -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -msgid "Course" -msgid_plural "Courses" -msgstr[0] "" -msgstr[1] "" - -#: lms/templates/learner_dashboard/program_card.underscore -msgid "Completed" -msgstr "" - -#: lms/templates/learner_dashboard/program_card.underscore -msgid "In Progress" -msgstr "" - -#: lms/templates/learner_dashboard/program_card.underscore -msgid "Remaining" -msgstr "" - -#: lms/templates/learner_dashboard/program_card.underscore -#, python-format -msgid "%(programName)s Home Page." -msgstr "" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "Your {program} Certificate" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -#, python-format -msgid "Open the certificate you earned for the %(title)s program." -msgstr "" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "Program Record" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "" -"Once you complete one of the program requirements you have a program record." -" This record is marked complete once you meet all program requirements. A " -"program record can be used to continue your learning journey and demonstrate" -" your learning to others." -msgstr "" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "View Program Record" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "Additional Credit Opportunities" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "Learn More" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "Additional Professional Opportunities" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "Congratulations!" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "Your Program Journey" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "" -"To complete the program, you must earn a verified certificate for each " -"course." -msgstr "" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "Upgrade All Remaining Courses (" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "{listPrice}" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid " {price} {currency} )" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "COURSES IN PROGRESS" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "REMAINING COURSES" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "COMPLETED COURSES" -msgstr "" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "As you complete courses, you will see them listed here." -msgstr "" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "" -"Complete courses on your schedule to ensure you stand out in your field!" -msgstr "" - -#: lms/templates/learner_dashboard/program_header_view.underscore -msgid "{organization}\\'s logo" -msgstr "" - -#: lms/templates/learner_dashboard/upgrade_message.underscore -msgid "Needs verified certificate " -msgstr "" - -#: lms/templates/learner_dashboard/upgrade_message.underscore -msgid "Upgrade to Verified" -msgstr "" - -#: lms/templates/student_account/account.underscore -msgid "New Address" -msgstr "" - -#: lms/templates/student_account/account.underscore -msgid "Password" -msgstr "" - -#: lms/templates/student_account/account.underscore -msgid "Change My Email Address" -msgstr "" - -#: lms/templates/student_account/account.underscore -msgid "Reset Password" -msgstr "" - -#: lms/templates/student_account/account_recovery.underscore -msgid "Account Recovery" -msgstr "" - -#: lms/templates/student_account/account_recovery.underscore -msgid "" -"Please enter your secondary email address below and we will send you " -"instructions for recovering your account and setting a new password." -msgstr "" - -#: lms/templates/student_account/account_recovery.underscore -msgid "Recover my account" -msgstr "" - -#: lms/templates/student_account/account_settings.underscore -msgid "Account Settings" -msgstr "" - -#: lms/templates/student_account/account_settings_section.underscore -msgid "An error occurred. Please reload the page." -msgstr "" - -#: lms/templates/student_account/form_field.underscore -msgid "Forgot password?" -msgstr "" - -#: lms/templates/student_account/hinted_login.underscore -#: lms/templates/student_account/login.underscore -msgid "Sign in" -msgstr "" - -#: lms/templates/student_account/hinted_login.underscore -#, python-format -msgid "Would you like to sign in using your %(providerName)s credentials?" -msgstr "" - -#: lms/templates/student_account/hinted_login.underscore -#, python-format -msgid "Sign in using %(providerName)s" -msgstr "" - -#: lms/templates/student_account/hinted_login.underscore -#: lms/templates/student_account/institution_login.underscore -#: lms/templates/student_account/institution_register.underscore -msgid "or" -msgstr "" - -#: lms/templates/student_account/hinted_login.underscore -msgid "Show me other ways to sign in or register" -msgstr "" - -#: lms/templates/student_account/institution_login.underscore -msgid "Sign in with Institution/Campus Credentials" -msgstr "" - -#: lms/templates/student_account/institution_login.underscore -#: lms/templates/student_account/institution_register.underscore -msgid "Choose your institution from the list below:" -msgstr "" - -#: lms/templates/student_account/institution_login.underscore -msgid "Back to sign in" -msgstr "" - -#: lms/templates/student_account/institution_register.underscore -msgid "Register with Institution/Campus Credentials" -msgstr "" - -#: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "" - -#: lms/templates/student_account/login.underscore -msgid "First time here?" -msgstr "" - -#: lms/templates/student_account/login.underscore -msgid "Create an Account." -msgstr "" - -#: lms/templates/student_account/login.underscore -msgid "Sign in to continue learning as {email}" -msgstr "" - -#: lms/templates/student_account/login.underscore -msgid "Sign in to continue learning" -msgstr "" - -#: lms/templates/student_account/login.underscore -msgid "" -"You already have an EliteMBA account with your {enterprise_name} email " -"address." -msgstr "" - -#: lms/templates/student_account/login.underscore -msgid "" -"Going forward, your account information will be updated and maintained by " -"{enterprise_name}." -msgstr "" - -#: lms/templates/student_account/login.underscore -msgid "" -"You can view your information or unlink from {enterprise_name} anytime in " -"your Account Settings." -msgstr "" - -#: lms/templates/student_account/login.underscore -msgid "To continue learning with this account, sign in below." -msgstr "" - -#: lms/templates/student_account/login.underscore -msgid "Sign In" -msgstr "" - -#: lms/templates/student_account/login.underscore -msgid "" -"Sign in here using your email address and password, or use one of the " -"providers listed below." -msgstr "" - -#: lms/templates/student_account/login.underscore -msgid "Sign in here using your email address and password." -msgstr "" - -#: lms/templates/student_account/login.underscore -msgid "If you do not yet have an account, use the button below to register." -msgstr "" - -#: lms/templates/student_account/login.underscore -msgid "or sign in with" -msgstr "" - -#: lms/templates/student_account/login.underscore -#, python-format -msgid "Sign in with %(providerName)s" -msgstr "" - -#: lms/templates/student_account/login.underscore -#: lms/templates/student_account/register.underscore -msgid "Use my institution/campus credentials" -msgstr "" - -#: lms/templates/student_account/password_reset.underscore -msgid "Password assistance" -msgstr "" - -#: lms/templates/student_account/password_reset.underscore -msgid "" -"Please enter your email address below and we will send you instructions for " -"setting a new password." -msgstr "" - -#: lms/templates/student_account/password_reset.underscore -msgid "Reset my password" -msgstr "" - -#: lms/templates/student_account/register.underscore -msgid "Already have an {platformName} account?" -msgstr "" - -#: lms/templates/student_account/register.underscore -msgid "Sign in." -msgstr "" - -#: lms/templates/student_account/register.underscore -msgid "Create an account using" -msgstr "" - -#: lms/templates/student_account/register.underscore -#, python-format -msgid "Create account using %(providerName)s." -msgstr "" - -#: lms/templates/student_account/register.underscore -msgid "or create a new one here" -msgstr "" - -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "" - -#: lms/templates/student_account/register.underscore -msgid "Support education research by providing additional information" -msgstr "" - -#: lms/templates/student_account/register.underscore -msgid "Create Account" -msgstr "" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -#, python-format -msgid "Congratulations! You are now verified on %(platformName)s!" -msgstr "" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -msgid "You are now enrolled as a verified student for:" -msgstr "" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -msgid "A list of courses you have just enrolled in as a verified student" -msgstr "" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -msgid "Explore your course!" -msgstr "" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -msgid "Go to your Dashboard" -msgstr "" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -msgid "Verified Status" -msgstr "" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -#, python-format -msgid "" -"Thank you for submitting your photos. We will review them shortly. You can " -"now sign up for any %(platformName)s course that offers verified " -"certificates. Verification is good for one year. After one year, you must " -"submit photos for verification again." -msgstr "" - -#: lms/templates/verify_student/error.underscore -msgid "Error:" -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "What You Need for Verification" -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/intro_step.underscore -#: lms/templates/verify_student/make_payment_step.underscore -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Webcam" -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "" -"You need a computer that has a webcam. When you receive a browser prompt, " -"make sure that you allow access to the camera." -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "Photo Identification" -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "" -"You need a driver's license, passport, or other government-issued ID that " -"has your name and photo." -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Take Your Photo" -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "" -"When your face is in position, use the camera button {icon} below to take " -"your photo." -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "To take a successful photo, make sure that:" -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "Your face is well-lit." -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "Your entire face fits inside the frame." -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "The photo of your face matches the photo on your ID." -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "" -"To use the current photo, select the camera button {icon}. To take another " -"photo, select the retake button {icon}." -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Frequently Asked Questions" -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -#, python-format -msgid "Why does %(platformName)s need my photo?" -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "" -"As part of the verification process, you take a photo of both your face and " -"a government-issued photo ID. Our authorization service confirms your " -"identity by comparing the photo you take with the photo on your ID." -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -#, python-format -msgid "What does %(platformName)s do with this photo?" -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -#, python-format -msgid "" -"We use the highest levels of security available to encrypt your photo and " -"send it to our authorization service for review. Your photo and information " -"are not saved or visible anywhere on %(platformName)s after the verification" -" process is complete." -msgstr "" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/intro_step.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -#, python-format -msgid "Next: %(nextStepTitle)s" -msgstr "" - -#: lms/templates/verify_student/id_photo_step.underscore -msgid "Take a Photo of Your ID" -msgstr "" - -#: lms/templates/verify_student/id_photo_step.underscore -msgid "" -"Use your webcam to take a photo of your ID. We will match this photo with " -"the photo of your face and the name on your account." -msgstr "" - -#: lms/templates/verify_student/id_photo_step.underscore -msgid "" -"You need an ID with your name and photo. A driver's license, passport, or " -"other government-issued IDs are all acceptable." -msgstr "" - -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Tips on taking a successful photo" -msgstr "" - -#: lms/templates/verify_student/id_photo_step.underscore -msgid "Ensure that you can see your photo and read your name" -msgstr "" - -#: lms/templates/verify_student/id_photo_step.underscore -msgid "Make sure your ID is well-lit" -msgstr "" - -#: lms/templates/verify_student/id_photo_step.underscore -msgid "Once in position, use the camera button {icon} to capture your ID" -msgstr "" - -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Use the retake photo button if you are not pleased with your photo" -msgstr "" - -#: lms/templates/verify_student/image_input.underscore -msgid "Preview of uploaded image" -msgstr "" - -#: lms/templates/verify_student/image_input.underscore -msgid "Upload an image or capture one with your web or phone camera." -msgstr "" - -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "" -"Use your webcam to take a photo of your face. We will match this photo with " -"the photo on your ID." -msgstr "" - -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Make sure your face is well-lit" -msgstr "" - -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Be sure your entire face is inside the frame" -msgstr "" - -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Once in position, use the camera button {icon} to capture your photo" -msgstr "" - -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Can we match the photo you took with the one on your ID?" -msgstr "" - -#: lms/templates/verify_student/intro_step.underscore -msgid "Thanks for returning to verify your ID in: {courseName}" -msgstr "" - -#: lms/templates/verify_student/intro_step.underscore -msgid "" -"You need to activate your account before you can enroll in courses. Check " -"your inbox for an activation email. After you complete activation you can " -"return and refresh this page." -msgstr "" - -#: lms/templates/verify_student/intro_step.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Activate Your Account" -msgstr "" - -#: lms/templates/verify_student/intro_step.underscore -msgid "Check Your Email" -msgstr "" - -#: lms/templates/verify_student/intro_step.underscore -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Photo ID" -msgstr "" - -#: lms/templates/verify_student/intro_step.underscore -msgid "" -"A driver's license, passport, or other government-issued ID with your name " -"and photo" -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "You are enrolling in: {courseName}" -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "You are upgrading your enrollment for: {courseName}" -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"You can now enter your payment information and complete your enrollment." -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"You can pay now even if you don't have the following items available, but " -"you will need to have these by {date} to qualify to earn a Verified " -"Certificate." -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"An email has been sent to {userEmail} with a link for you to activate your " -"account." -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "Why activate?" -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"We ask you to activate your account to ensure it is really you creating the " -"account and to prevent fraud." -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"You can pay now even if you don't have the following items available, but " -"you will need to have these to qualify to earn a Verified Certificate." -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "Government-Issued Photo ID" -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"ID-Verification is not required for this Professional Education course." -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"All professional education courses are fee-based, and require payment to " -"complete the enrollment process." -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "You have already verified your ID!" -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "Your verification status is good until {verificationGoodUntil}." -msgstr "" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "price" -msgstr "" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "Account Not Activated" -msgstr "" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "Upgrade to a Verified Certificate for {courseName}" -msgstr "" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "" -"Before you upgrade to a certificate track, you must activate your account." -msgstr "" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "Check your email for an activation message." -msgstr "" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "Professional Certificate for {courseName}" -msgstr "" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "Verified Certificate for {courseName}" -msgstr "" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "" -"To receive a certificate, you must also verify your identity before {date}." -msgstr "" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "To receive a certificate, you must also verify your identity." -msgstr "" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "" -"To verify your identity, you need a webcam and a government-issued photo ID." -msgstr "" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "" -"Your ID must be a government-issued photo ID that clearly shows your face." -msgstr "" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "" -"You will use your webcam to take a picture of your face and of your " -"government-issued photo ID." -msgstr "" - -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Thank you! We have received your payment for {courseName}." -msgstr "" - -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Next Step: Confirm your identity" -msgstr "" - -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Check your email" -msgstr "" - -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "" -"You need to activate your account before you can enroll in courses. Check " -"your inbox for an activation email." -msgstr "" - -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "" -"A driver's license, passport, or government-issued ID with your name and " -"photo." -msgstr "" - -#: lms/templates/verify_student/payment_confirmation_step.underscore -#, python-format -msgid "" -"If you don't verify your identity now, you can still explore your course " -"from your dashboard. You will receive periodic reminders from " -"%(platformName)s to verify your identity." -msgstr "" - -#: lms/templates/verify_student/reverify_success_step.underscore -msgid "Identity Verification In Progress" -msgstr "" - -#: lms/templates/verify_student/reverify_success_step.underscore -msgid "" -"We have received your information and are verifying your identity. You will " -"see a message on your dashboard when the verification process is complete " -"(usually within 1-2 days). In the meantime, you can still access all " -"available course content." -msgstr "" - -#: lms/templates/verify_student/reverify_success_step.underscore -msgid "Return to Your Dashboard" -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Review Your Photos" -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "" -"Make sure we can verify your identity with the photos and information you " -"have provided." -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -#, python-format -msgid "Photo of %(fullName)s" -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -#, python-format -msgid "Photo of %(fullName)s's ID" -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Photo requirements:" -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Does the photo of you show your whole face?" -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Does the photo of you match your ID photo?" -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Is your name on your ID readable?" -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -#, python-format -msgid "Does the name on your ID match your account name: %(fullName)s?" -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Edit Your Name" -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "" -"Make sure that the full name on your account matches the name on your ID." -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Photos don't meet the requirements?" -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Retake Your Photos" -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Before proceeding, please confirm that your details match" -msgstr "" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Confirm" -msgstr "" - -#: lms/templates/verify_student/webcam_photo.underscore -msgid "" -"Don't see your picture? Make sure to allow your browser to use your camera " -"when it asks for permission." -msgstr "" - -#: lms/templates/verify_student/webcam_photo.underscore -msgid "Live view of webcam" -msgstr "" - -#: lms/templates/verify_student/webcam_photo.underscore -msgid "Retake Photo" -msgstr "" - -#: lms/templates/verify_student/webcam_photo.underscore -msgid "Take Photo" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Add a New Allowance" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Special Exam" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -#, python-format -msgid " %(exam_display_name)s " -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Exam Type" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowance Type" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Additional Time (minutes)" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Value" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "minutes" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/add-new-allowance.underscore -msgid "Username or Email" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowances" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Add Allowance" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Exam Name" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/course_allowances.underscore -msgid "Allowance Value" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Time Limit" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Started At" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -msgid "Completed At" -msgstr "" - -#: node_modules/@edx/edx-proctoring/edx_proctoring/static/proctoring/templates/student-proctored-exam-attempts.underscore -#, python-format -msgid " %(username)s " -msgstr "" - -#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore -msgid "Bookmarked on" -msgstr "" - -#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore -#: openedx/features/course_search/static/course_search/templates/course_search_item.underscore -#: openedx/features/course_search/static/course_search/templates/dashboard_search_item.underscore -msgid "View" -msgstr "" - -#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore -msgid "You have not bookmarked any courseware pages yet" -msgstr "" - -#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore -msgid "" -"Use bookmarks to help you easily return to courseware pages. To bookmark a " -"page, click \"Bookmark this page\" under the page title." -msgstr "" - -#: openedx/features/course_search/static/course_search/templates/course_search_results.underscore -#: openedx/features/course_search/static/course_search/templates/dashboard_search_results.underscore -msgid "Search Results" -msgstr "" - -#: openedx/features/course_search/static/course_search/templates/course_search_results.underscore -#: openedx/features/course_search/static/course_search/templates/dashboard_search_results.underscore -msgid "Load next {num_items} result" -msgid_plural "Load next {num_items} results" -msgstr[0] "" -msgstr[1] "" - -#: openedx/features/course_search/static/course_search/templates/course_search_results.underscore -#: openedx/features/course_search/static/course_search/templates/dashboard_search_results.underscore -msgid "Sorry, no results were found." -msgstr "" - -#: openedx/features/course_search/static/course_search/templates/search_error.underscore -msgid "There was an error, try searching again." -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/badge.underscore -#, python-format -msgid "Share your \"%(display_name)s\" award" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/badge.underscore -msgid "Share" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/badge.underscore -#, python-format -msgid "Earned %(created)s." -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/badge_placeholder.underscore -msgid "What's Your Next Accomplishment?" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/badge_placeholder.underscore -msgid "Start working toward your next learning goal." -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/badge_placeholder.underscore -msgid "Find a course" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/section_two.underscore -msgid "You are currently sharing a limited profile." -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/section_two.underscore -msgid "This learner is currently sharing a limited profile." -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/share_modal.underscore -msgid "Share on Mozilla Backpack" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/share_modal.underscore -msgid "" -"To share your certificate on Mozilla Backpack, you must first have a " -"Backpack account. Complete the following steps to add your certificate to " -"Backpack." -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/share_modal.underscore -#, python-format -msgid "" -"Create a %(link_start)sMozilla Backpack%(link_end)s account, or log in to " -"your existing account" -msgstr "" - -#: openedx/features/learner_profile/static/learner_profile/templates/share_modal.underscore -#, python-format -msgid "" -"%(download_link_start)sDownload this image (right-click or option-click, " -"save as)%(link_end)s and then %(upload_link_start)supload%(link_end)s it to " -"your backpack." -msgstr "" diff --git a/conf/locale/en/LC_MESSAGES/wiki.po b/conf/locale/en/LC_MESSAGES/wiki.po deleted file mode 100644 index 8579781ec692..000000000000 --- a/conf/locale/en/LC_MESSAGES/wiki.po +++ /dev/null @@ -1,1422 +0,0 @@ -# edX translation file -# Copyright (C) 2019 edX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-05-16 10:53+0000\n" -"PO-Revision-Date: 2019-05-16 10:53:15.545729\n" -"Last-Translator: \n" -"Language-Team: openedx-translation \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Generated-By: Babel 1.3\n" - -#: wiki/admin.py wiki/models/article.py -msgid "created" -msgstr "" - -#: wiki/apps.py -msgid "Wiki notifications" -msgstr "" - -#: wiki/apps.py -msgid "Wiki images" -msgstr "" - -#: wiki/apps.py -msgid "Wiki attachments" -msgstr "" - -#: wiki/forms.py -msgid "Only localhost... muahahaha" -msgstr "" - -#: wiki/forms.py wiki/forms.py wiki/forms.py wiki/templates/wiki/dir.html -msgid "Title" -msgstr "" - -#: wiki/forms.py -msgid "Initial title of the article. May be overridden with revision titles." -msgstr "" - -#: wiki/forms.py -msgid "Type in some contents" -msgstr "" - -#: wiki/forms.py -msgid "" -"This is just the initial contents of your article. After creating it, you " -"can use more complex features like adding plugins, meta data, related " -"articles etc..." -msgstr "" - -#: wiki/forms.py wiki/forms.py -msgid "Contents" -msgstr "" - -#: wiki/forms.py wiki/forms.py -msgid "Summary" -msgstr "" - -#: wiki/forms.py -msgid "" -"Give a short reason for your edit, which will be stated in the revision log." -msgstr "" - -#: wiki/forms.py -msgid "" -"While you were editing, someone else changed the revision. Your contents " -"have been automatically merged with the new contents. Please review the text" -" below." -msgstr "" - -#: wiki/forms.py -msgid "No changes made. Nothing to save." -msgstr "" - -#: wiki/forms.py -msgid "Select an option" -msgstr "" - -#: wiki/forms.py wiki/templates/wiki/dir.html -msgid "Slug" -msgstr "" - -#: wiki/forms.py -msgid "" -"This will be the address where your article can be found. Use only " -"alphanumeric characters and - or _. Note that you cannot change the slug " -"after creating the article." -msgstr "" - -#: wiki/forms.py -msgid "Write a brief message for the article's history log." -msgstr "" - -#: wiki/forms.py -msgid "A slug may not begin with an underscore." -msgstr "" - -#: wiki/forms.py -#, python-format -msgid "A deleted article with slug \"%s\" already exists." -msgstr "" - -#: wiki/forms.py -#, python-format -msgid "A slug named \"%s\" already exists." -msgstr "" - -#: wiki/forms.py -msgid "Yes, I am sure" -msgstr "" - -#: wiki/forms.py wiki/templates/wiki/deleted.html -msgid "Purge" -msgstr "" - -#: wiki/forms.py -msgid "" -"Purge the article: Completely remove it (and all its contents) with no undo." -" Purging is a good idea if you want to free the slug such that users can " -"create new articles in its place." -msgstr "" - -#: wiki/forms.py wiki/plugins/attachments/forms.py -#: wiki/plugins/images/forms.py -msgid "You are not sure enough!" -msgstr "" - -#: wiki/forms.py -msgid "While you tried to delete this article, it was modified. TAKE CARE!" -msgstr "" - -#: wiki/forms.py -msgid "Lock article" -msgstr "" - -#: wiki/forms.py -msgid "Deny all users access to edit this article." -msgstr "" - -#: wiki/forms.py -msgid "Permissions" -msgstr "" - -#: wiki/forms.py -msgid "Owner" -msgstr "" - -#: wiki/forms.py -msgid "Enter the username of the owner." -msgstr "" - -#: wiki/forms.py -msgid "(none)" -msgstr "" - -#: wiki/forms.py -msgid "Inherit permissions" -msgstr "" - -#: wiki/forms.py -msgid "" -"Check here to apply the above permissions recursively to articles under this" -" one." -msgstr "" - -#: wiki/forms.py -msgid "Permission settings for the article were updated." -msgstr "" - -#: wiki/forms.py -msgid "Your permission settings were unchanged, so nothing saved." -msgstr "" - -#: wiki/forms.py -msgid "No user with that username" -msgstr "" - -#: wiki/forms.py -msgid "Article locked for editing" -msgstr "" - -#: wiki/forms.py -msgid "Article unlocked for editing" -msgstr "" - -#: wiki/forms.py -msgid "Filter" -msgstr "" - -#: wiki/core/plugins/base.py -msgid "Settings for plugin" -msgstr "" - -#: wiki/models/article.py wiki/models/pluginbase.py -#: wiki/plugins/attachments/models.py -msgid "current revision" -msgstr "" - -#: wiki/models/article.py -msgid "" -"The revision being displayed for this article. If you need to do a roll-" -"back, simply change the value of this field." -msgstr "" - -#: wiki/models/article.py -msgid "modified" -msgstr "" - -#: wiki/models/article.py -msgid "Article properties last modified" -msgstr "" - -#: wiki/models/article.py -msgid "owner" -msgstr "" - -#: wiki/models/article.py -msgid "" -"The owner of the article, usually the creator. The owner always has both " -"read and write access." -msgstr "" - -#: wiki/models/article.py -msgid "group" -msgstr "" - -#: wiki/models/article.py -msgid "" -"Like in a UNIX file system, permissions can be given to a user according to " -"group membership. Groups are handled through the Django auth system." -msgstr "" - -#: wiki/models/article.py -msgid "group read access" -msgstr "" - -#: wiki/models/article.py -msgid "group write access" -msgstr "" - -#: wiki/models/article.py -msgid "others read access" -msgstr "" - -#: wiki/models/article.py -msgid "others write access" -msgstr "" - -#: wiki/models/article.py -#, python-format -msgid "Article without content (%(id)d)" -msgstr "" - -#: wiki/models/article.py -msgid "content type" -msgstr "" - -#: wiki/models/article.py -msgid "object ID" -msgstr "" - -#: wiki/models/article.py -msgid "Article for object" -msgstr "" - -#: wiki/models/article.py -msgid "Articles for object" -msgstr "" - -#: wiki/models/article.py -msgid "revision number" -msgstr "" - -#: wiki/models/article.py -msgid "IP address" -msgstr "" - -#: wiki/models/article.py -msgid "user" -msgstr "" - -#: wiki/models/article.py -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -#: wiki/templates/wiki/includes/revision_info.html -msgid "deleted" -msgstr "" - -#: wiki/models/article.py wiki/templates/wiki/article.html -#: wiki/templates/wiki/includes/revision_info.html -msgid "locked" -msgstr "" - -#: wiki/models/article.py wiki/models/pluginbase.py -msgid "article" -msgstr "" - -#: wiki/models/article.py -msgid "article contents" -msgstr "" - -#: wiki/models/article.py -msgid "article title" -msgstr "" - -#: wiki/models/article.py -msgid "" -"Each revision contains a title field that must be filled out, even if the " -"title has not changed" -msgstr "" - -#: wiki/models/pluginbase.py -msgid "original article" -msgstr "" - -#: wiki/models/pluginbase.py -msgid "Permissions are inherited from this article" -msgstr "" - -#: wiki/models/pluginbase.py -msgid "A plugin was changed" -msgstr "" - -#: wiki/models/pluginbase.py -msgid "" -"The revision being displayed for this plugin.If you need to do a roll-back, " -"simply change the value of this field." -msgstr "" - -#: wiki/models/urlpath.py -msgid "Cache lookup value for articles" -msgstr "" - -#: wiki/models/urlpath.py -msgid "slug" -msgstr "" - -#: wiki/models/urlpath.py -msgid "(root)" -msgstr "" - -#: wiki/models/urlpath.py -msgid "URL path" -msgstr "" - -#: wiki/models/urlpath.py -msgid "URL paths" -msgstr "" - -#: wiki/models/urlpath.py -msgid "Sorry but you cannot have a root article with a slug." -msgstr "" - -#: wiki/models/urlpath.py -msgid "A non-root note must always have a slug." -msgstr "" - -#: wiki/models/urlpath.py -#, python-format -msgid "There is already a root node on %s" -msgstr "" - -#: wiki/models/urlpath.py -msgid "" -"Articles who lost their parents\n" -"===============================\n" -"\n" -"The children of this article have had their parents deleted. You should probably find a new home for them." -msgstr "" - -#: wiki/models/urlpath.py -msgid "Lost and found" -msgstr "" - -#: wiki/plugins/attachments/forms.py -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -msgid "Description" -msgstr "" - -#: wiki/plugins/attachments/forms.py -msgid "A short summary of what the file contains" -msgstr "" - -#: wiki/plugins/attachments/forms.py -msgid "Yes I am sure..." -msgstr "" - -#: wiki/plugins/attachments/markdown_extensions.py -msgid "Click to download file" -msgstr "" - -#: wiki/plugins/attachments/models.py -msgid "" -"The revision of this attachment currently in use (on all articles using the " -"attachment)" -msgstr "" - -#: wiki/plugins/attachments/models.py -msgid "original filename" -msgstr "" - -#: wiki/plugins/attachments/models.py -msgid "attachment" -msgstr "" - -#: wiki/plugins/attachments/models.py -msgid "attachments" -msgstr "" - -#: wiki/plugins/attachments/models.py -msgid "file" -msgstr "" - -#: wiki/plugins/attachments/models.py -msgid "attachment revision" -msgstr "" - -#: wiki/plugins/attachments/models.py -msgid "attachment revisions" -msgstr "" - -#: wiki/plugins/attachments/views.py -#, python-format -msgid "%s was successfully added." -msgstr "" - -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py -#, python-format -msgid "Your file could not be saved: %s" -msgstr "" - -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py -msgid "" -"Your file could not be saved, probably because of a permission error on the " -"web server." -msgstr "" - -#: wiki/plugins/attachments/views.py -#, python-format -msgid "%s uploaded and replaces old attachment." -msgstr "" - -#: wiki/plugins/attachments/views.py -msgid "" -"Your new file will automatically be renamed to match the file already " -"present. Files with different extensions are not allowed." -msgstr "" - -#: wiki/plugins/attachments/views.py -#, python-format -msgid "Current revision changed for %s." -msgstr "" - -#: wiki/plugins/attachments/views.py -#, python-format -msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." -msgstr "" - -#: wiki/plugins/attachments/views.py -#, python-format -msgid "The file %s was deleted." -msgstr "" - -#: wiki/plugins/attachments/views.py -#, python-format -msgid "This article is no longer related to the file %s." -msgstr "" - -#: wiki/plugins/attachments/wiki_plugin.py -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "Attachments" -msgstr "" - -#: wiki/plugins/attachments/wiki_plugin.py -#, python-format -msgid "A file was changed: %s" -msgstr "" - -#: wiki/plugins/attachments/wiki_plugin.py -#, python-format -msgid "A file was deleted: %s" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/templates/wiki/delete.html -msgid "Delete" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -msgid "" -"The file may be referenced on other articles. Deleting it means that they " -"will loose their references to this file. The following articles reference " -"this file:" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -#: wiki/plugins/images/templates/wiki/plugins/images/purge.html -#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html -#: wiki/templates/wiki/create.html wiki/templates/wiki/delete.html -#: wiki/templates/wiki/delete.html -msgid "Go back" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -msgid "Delete it!" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -msgid "Remove" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -msgid "" -"You can remove a reference to a file, but it will retain its references on " -"other articles." -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -msgid "Remove reference" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -msgid "History of" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Date" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -msgid "User" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "File" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Size" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Action" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "No description" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Download" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -msgid "Use this!" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "" -"The following files are available for this article. Copy the markdown tag to" -" directly refer to a file from the article text." -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Markdown tag" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Uploaded by" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "Replace" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "Detach" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/templates/wiki/deleted.html wiki/templates/wiki/deleted.html -msgid "Restore" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "File history" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "revisions" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "There are no attachments for this article." -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "Upload new file" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "Upload file" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "Search and add file" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "" -"You can reuse files from other articles. These files are subject to updates " -"on other articles which may or may not be a good thing." -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "Search" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -#, python-format -msgid "" -"Replacing an attachment means adding a new file that will be used in its " -"place. All references to the file will be replaced by the one you upload and" -" the file will be downloaded as %(filename)s. Please note " -"that this attachment is in use on other articles, you may distort contents. " -"However, do not hestitate to take advantage of this and make replacements " -"for the listed articles where necessary. This way of working is more " -"efficient...." -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -msgid "Articles using" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -#, python-format -msgid "" -"Replacing an attachment means adding a new file that will be used in its " -"place. All references to the file will be replaced by the one you upload and" -" the file will be downloaded as %(filename)s." -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html -msgid "Upload replacement" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Add file to" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Add attachment from other article" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Search files and articles" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Main article" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Add to article" -msgstr "" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Your search did not return any results" -msgstr "" - -#: wiki/plugins/help/wiki_plugin.py -msgid "Help" -msgstr "" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -msgid "Adding new articles" -msgstr "" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -msgid "" -"To create a new wiki article, create a link to it. Clicking the link gives " -"you the creation page." -msgstr "" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html -msgid "An external link" -msgstr "" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -msgid "Headers" -msgstr "" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -msgid "" -"Use these codes for headers and to automatically generate Tables of " -"Contents." -msgstr "" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -msgid "Typography" -msgstr "" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -msgid "Lists" -msgstr "" - -#: wiki/plugins/images/forms.py -#, python-format -msgid "" -"New image %s was successfully uploaded. You can use it by selecting it from " -"the list of available images." -msgstr "" - -#: wiki/plugins/images/forms.py -msgid "Are you sure?" -msgstr "" - -#: wiki/plugins/images/models.py -msgid "image" -msgstr "" - -#: wiki/plugins/images/models.py -msgid "images" -msgstr "" - -#: wiki/plugins/images/models.py -#, python-format -msgid "Image: %s" -msgstr "" - -#: wiki/plugins/images/models.py -msgid "Current revision not set!!" -msgstr "" - -#: wiki/plugins/images/models.py -msgid "image revision" -msgstr "" - -#: wiki/plugins/images/models.py -msgid "image revisions" -msgstr "" - -#: wiki/plugins/images/models.py -#, python-format -msgid "Image Revsion: %d" -msgstr "" - -#: wiki/plugins/images/views.py -#, python-format -msgid "%s has been restored" -msgstr "" - -#: wiki/plugins/images/views.py -#, python-format -msgid "%s has been marked as deleted" -msgstr "" - -#: wiki/plugins/images/views.py -#, python-format -msgid "%(file)s has been changed to revision #%(revision)d" -msgstr "" - -#: wiki/plugins/images/views.py -#, python-format -msgid "%(file)s has been saved." -msgstr "" - -#: wiki/plugins/images/wiki_plugin.py -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Images" -msgstr "" - -#: wiki/plugins/images/wiki_plugin.py -#, python-format -msgid "An image was added: %s" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "" -"The following images are available for this article. Copy the markdown tag " -"to directly refer to an image from the article text." -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Back to edit page" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "No file" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Upload new image" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Restore image" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Remove image" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Completely delete" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -#: wiki/templates/wiki/history.html -msgid "History" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Revert to this version" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "There are no images for this article." -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/purge.html -#: wiki/templates/wiki/deleted.html -msgid "Purge deletion" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/purge.html -msgid "Purge image: Completely remove image file and all revisions." -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/purge.html -msgid "Remove it completely!" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/render.html -msgid "Image not found" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html -msgid "Replace image" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html -msgid "Choose an image file to replace current image." -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "Image id" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html -msgid "Insert" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "No images found for this article" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "Manage images" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "Add new image" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "Add image" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "You do not have permissions to add images." -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "How to use images" -msgstr "" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "" -"After uploading an image, it is attached to this particular artice and can " -"be used only here. Other users may replace the image, but older versions are" -" kept. You probably want to show the image with a nice caption. To achieve " -"this, press the Insert button and fill in the caption fields and possibly " -"choose to have you image floating right or left of the content. You can use " -"Markdown in the caption. The markdown code syntax for images looks like " -"this, possible values for align are left/center/right:" -msgstr "" - -#: wiki/plugins/links/wiki_plugin.py -msgid "Links" -msgstr "" - -#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html -msgid "Link to another wiki page" -msgstr "" - -#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html -msgid "" -"Type in something from another wiki page's title and auto-complete will help" -" you create a tag for you wiki link. Tags for links look like this:" -msgstr "" - -#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html -msgid "" -"You can link to another website simply by inserting an address example.com " -"or http://example.com or by using the markdown syntax:" -msgstr "" - -#: wiki/plugins/notifications/forms.py -msgid "Notifications" -msgstr "" - -#: wiki/plugins/notifications/forms.py -msgid "When this article is edited" -msgstr "" - -#: wiki/plugins/notifications/forms.py -msgid "Also receive emails about article edits" -msgstr "" - -#: wiki/plugins/notifications/forms.py -msgid "Your notification settings were updated." -msgstr "" - -#: wiki/plugins/notifications/forms.py -msgid "Your notification settings were unchanged, so nothing saved." -msgstr "" - -#: wiki/plugins/notifications/models.py -#, python-format -msgid "%(user)s subscribing to %(article)s (%(type)s)" -msgstr "" - -#: wiki/plugins/notifications/models.py -#, python-format -msgid "Article deleted: %s" -msgstr "" - -#: wiki/plugins/notifications/models.py -#, python-format -msgid "Article modified: %s" -msgstr "" - -#: wiki/plugins/notifications/models.py -#, python-format -msgid "New article created: %s" -msgstr "" - -#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html -msgid "notifications" -msgstr "" - -#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html -msgid "No notifications" -msgstr "" - -#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html -msgid "Clear notifications list" -msgstr "" - -#: wiki/templates/wiki/article.html -msgid "This article was last modified:" -msgstr "" - -#: wiki/templates/wiki/base.html -msgid "Search..." -msgstr "" - -#: wiki/templates/wiki/base.html -msgid "Log out" -msgstr "" - -#: wiki/templates/wiki/base.html wiki/templates/wiki/accounts/login.html -#: wiki/templates/wiki/accounts/signup.html -msgid "Log in" -msgstr "" - -#: wiki/templates/wiki/base.html wiki/templates/wiki/accounts/login.html -#: wiki/templates/wiki/accounts/signup.html -msgid "Sign up" -msgstr "" - -#: wiki/templates/wiki/create.html wiki/templates/wiki/create.html -msgid "Add new article" -msgstr "" - -#: wiki/templates/wiki/create.html -msgid "Create article" -msgstr "" - -#: wiki/templates/wiki/delete.html wiki/templates/wiki/delete.html -#: wiki/templates/wiki/edit.html -msgid "Delete article" -msgstr "" - -#: wiki/templates/wiki/delete.html -msgid "You cannot delete a root article." -msgstr "" - -#: wiki/templates/wiki/delete.html -msgid "" -"You cannot delete this article because you do not have permission to delete " -"articles with children. Try to remove the children manually one-by-one." -msgstr "" - -#: wiki/templates/wiki/delete.html -msgid "" -"You are deleting an article. This means that its children will be deleted as" -" well. If you choose to purge, children will also be purged!" -msgstr "" - -#: wiki/templates/wiki/delete.html -msgid "Articles that will be deleted" -msgstr "" - -#: wiki/templates/wiki/delete.html -msgid "...and more!" -msgstr "" - -#: wiki/templates/wiki/delete.html -msgid "You are deleting an article. Please confirm." -msgstr "" - -#: wiki/templates/wiki/deleted.html -msgid "Article deleted" -msgstr "" - -#: wiki/templates/wiki/deleted.html -msgid "Article Deleted" -msgstr "" - -#: wiki/templates/wiki/deleted.html -msgid "The article you were looking for has been deleted." -msgstr "" - -#: wiki/templates/wiki/deleted.html -msgid "You may restore this article and its children by clicking restore." -msgstr "" - -#: wiki/templates/wiki/deleted.html -msgid "" -"You may remove this article and any children permanently and free their " -"slugs by clicking the below button. This action cannot be undone." -msgstr "" - -#: wiki/templates/wiki/dir.html -msgid "Listing articles in" -msgstr "" - -#: wiki/templates/wiki/dir.html -msgid "Up one level" -msgstr "" - -#: wiki/templates/wiki/dir.html -msgid "Add article" -msgstr "" - -#: wiki/templates/wiki/dir.html -msgid "clear" -msgstr "" - -#: wiki/templates/wiki/dir.html wiki/templates/wiki/dir.html -msgid "article,articles" -msgstr "" - -#: wiki/templates/wiki/dir.html -msgid "matches,match" -msgstr "" - -#: wiki/templates/wiki/dir.html -#, python-format -msgid "%(cnt)s %(articles_plur)s in this level %(match_plur)s your search." -msgstr "" - -#: wiki/templates/wiki/dir.html -msgid "is,are" -msgstr "" - -#: wiki/templates/wiki/dir.html -#, python-format -msgid "There %(articles_plur_verb)s %(cnt)s %(articles_plur)s in this level." -msgstr "" - -#: wiki/templates/wiki/dir.html -msgid "Last modified" -msgstr "" - -#: wiki/templates/wiki/edit.html -#: wiki/templates/wiki/includes/article_menu.html -msgid "Edit" -msgstr "" - -#: wiki/templates/wiki/edit.html -msgid "Preview" -msgstr "" - -#: wiki/templates/wiki/edit.html wiki/templates/wiki/edit.html -#: wiki/templates/wiki/settings.html -msgid "Save changes" -msgstr "" - -#: wiki/templates/wiki/edit.html -msgid "Back to editor" -msgstr "" - -#: wiki/templates/wiki/history.html -msgid "" -"Click each revision to see a list of edited lines. Click the Preview button " -"to see how the article looked at this stage. At the bottom of this page, you" -" can change to a particular revision or merge an old revision with the " -"current one." -msgstr "" - -#: wiki/templates/wiki/history.html -msgid "no log message" -msgstr "" - -#: wiki/templates/wiki/history.html wiki/templates/wiki/history.html -msgid "Preview this revision" -msgstr "" - -#: wiki/templates/wiki/history.html -msgid "Auto log:" -msgstr "" - -#: wiki/templates/wiki/history.html -msgid "Change" -msgstr "" - -#: wiki/templates/wiki/history.html -msgid "Merge selected with current..." -msgstr "" - -#: wiki/templates/wiki/history.html -msgid "Switch to selected version" -msgstr "" - -#: wiki/templates/wiki/history.html wiki/templates/wiki/history.html -msgid "Back to history view" -msgstr "" - -#: wiki/templates/wiki/history.html wiki/templates/wiki/history.html -msgid "Switch to this version" -msgstr "" - -#: wiki/templates/wiki/history.html -msgid "Merge with current" -msgstr "" - -#: wiki/templates/wiki/history.html -msgid "" -"When you merge a revision with the current, all data will be retained from " -"both versions and merged at its approximate location from each revision." -msgstr "" - -#: wiki/templates/wiki/history.html -msgid "After this, it's important to do a manual review." -msgstr "" - -#: wiki/templates/wiki/history.html wiki/templates/wiki/history.html -msgid "Create new merged version" -msgstr "" - -#: wiki/templates/wiki/permission_denied.html -msgid "Permission Denied" -msgstr "" - -#: wiki/templates/wiki/permission_denied.html -msgid "Sorry, you don't have permission to view this page." -msgstr "" - -#: wiki/templates/wiki/preview_inline.html -msgid "Previewing revision" -msgstr "" - -#: wiki/templates/wiki/preview_inline.html -msgid "Previewing merge between" -msgstr "" - -#: wiki/templates/wiki/preview_inline.html -msgid "and" -msgstr "" - -#: wiki/templates/wiki/preview_inline.html -msgid "This revision has been deleted." -msgstr "" - -#: wiki/templates/wiki/preview_inline.html -msgid "Restoring to this revision will mark the article as deleted." -msgstr "" - -#: wiki/templates/wiki/settings.html -#: wiki/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "" - -#: wiki/templates/wiki/source.html -msgid "Source of" -msgstr "" - -#: wiki/templates/wiki/source.html -msgid "This article is currently locked for editing." -msgstr "" - -#: wiki/templates/wiki/accounts/login.html -msgid "Please log in" -msgstr "" - -#: wiki/templates/wiki/accounts/login.html -msgid "Log me in..." -msgstr "" - -#: wiki/templates/wiki/accounts/login.html -msgid "Don't have an account?" -msgstr "" - -#: wiki/templates/wiki/accounts/signup.html -msgid "Sign me up..." -msgstr "" - -#: wiki/templates/wiki/article/create_root.html -msgid "Create root article" -msgstr "" - -#: wiki/templates/wiki/article/create_root.html -msgid "Congratulations!" -msgstr "" - -#: wiki/templates/wiki/article/create_root.html -msgid "" -"You have django-wiki installed... but there are no articles. So it's time to" -" create the first one, the root article. In the beginning, it will only be " -"editable by administrators, but you can define permissions after." -msgstr "" - -#: wiki/templates/wiki/article/create_root.html -msgid "Root article" -msgstr "" - -#: wiki/templates/wiki/article/create_root.html -msgid "Create root" -msgstr "" - -#: wiki/templates/wiki/includes/anonymous_blocked.html -#, python-format -msgid "" -"You need to log in or sign up to use this function." -msgstr "" - -#: wiki/templates/wiki/includes/anonymous_blocked.html -msgid "You need to log in og sign up to use this function." -msgstr "" - -#: wiki/templates/wiki/includes/article_menu.html -msgid "Changes" -msgstr "" - -#: wiki/templates/wiki/includes/article_menu.html -msgid "View Source" -msgstr "" - -#: wiki/templates/wiki/includes/article_menu.html -msgid "View" -msgstr "" - -#: wiki/templates/wiki/includes/breadcrumbs.html -#: wiki/templates/wiki/includes/breadcrumbs.html -msgid "Sub-articles for" -msgstr "" - -#: wiki/templates/wiki/includes/breadcrumbs.html -msgid "No sub-articles" -msgstr "" - -#: wiki/templates/wiki/includes/breadcrumbs.html -msgid "...and more" -msgstr "" - -#: wiki/templates/wiki/includes/breadcrumbs.html -msgid "Browse articles in this level" -msgstr "" - -#: wiki/templates/wiki/includes/breadcrumbs.html -msgid "New article next to" -msgstr "" - -#: wiki/templates/wiki/includes/breadcrumbs.html -msgid "New article below" -msgstr "" - -#: wiki/templates/wiki/includes/revision_info.html -msgid "by" -msgstr "" - -#: wiki/templates/wiki/includes/revision_info.html -msgid "anonymous (IP logged)" -msgstr "" - -#: wiki/templates/wiki/includes/revision_info.html -msgid "restored" -msgstr "" - -#: wiki/templates/wiki/includes/revision_info.html -msgid "unlocked" -msgstr "" - -#: wiki/views/accounts.py -msgid "You are now sign up... and now you can sign in!" -msgstr "" - -#: wiki/views/accounts.py -msgid "You are no longer logged in. Bye bye!" -msgstr "" - -#: wiki/views/accounts.py -msgid "You are now logged in! Have fun!" -msgstr "" - -#: wiki/views/article.py -#, python-format -msgid "New article '%s' created." -msgstr "" - -#: wiki/views/article.py -#, python-format -msgid "There was an error creating this article: %s" -msgstr "" - -#: wiki/views/article.py -msgid "There was an error creating this article." -msgstr "" - -#: wiki/views/article.py -msgid "" -"This article cannot be deleted because it has children or is a root article." -msgstr "" - -#: wiki/views/article.py -msgid "" -"This article together with all its contents are now completely gone! Thanks!" -msgstr "" - -#: wiki/views/article.py -#, python-format -msgid "" -"The article \"%s\" is now marked as deleted! Thanks for keeping the site " -"free from unwanted material!" -msgstr "" - -#: wiki/views/article.py -msgid "Your changes were saved." -msgstr "" - -#: wiki/views/article.py -msgid "A new revision of the article was successfully added." -msgstr "" - -#: wiki/views/article.py -msgid "Restoring article" -msgstr "" - -#: wiki/views/article.py -#, python-format -msgid "The article \"%s\" and its children are now restored." -msgstr "" - -#: wiki/views/article.py -#, python-format -msgid "" -"The article %(title)s is now set to display revision #%(revision_number)d" -msgstr "" - -#: wiki/views/article.py -msgid "New title" -msgstr "" - -#: wiki/views/article.py -#, python-format -msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" -msgstr "" - -#: wiki/views/article.py -#, python-format -msgid "" -"A new revision was created: Merge between Revision #%(r1)d and Revision " -"#%(r2)d" -msgstr "" diff --git a/conf/locale/zh_CN/LC_MESSAGES/django-partial.po b/conf/locale/zh_CN/LC_MESSAGES/django-partial.po deleted file mode 100644 index 66899aa70b2a..000000000000 --- a/conf/locale/zh_CN/LC_MESSAGES/django-partial.po +++ /dev/null @@ -1,11011 +0,0 @@ -# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). -# Copyright (C) 2019 EdX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -# Translators: -# 微 李 , 2018 -# 婕 高 , 2018 -# Yi Li , 2018 -# 家璧 刘 , 2018 -# 陈滢冲 , 2018 -# li ying , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-11 02:18+0000\n" -"PO-Revision-Date: 2018-11-26 07:55+0000\n" -"Last-Translator: li ying , 2019\n" -"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#. Translators: 'Discussion' refers to the tab in the courseware that leads to -#. the discussion forums -#: cms/djangoapps/contentstore/views/component.py -#: lms/djangoapps/courseware/tabs.py lms/djangoapps/discussion/plugins.py -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "Discussion" -msgstr "讨论" - -#: cms/djangoapps/contentstore/views/component.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Problem" -msgstr "问题" - -#: cms/djangoapps/contentstore/views/component.py -#: common/lib/xmodule/xmodule/video_module/video_module.py -msgid "Advanced" -msgstr "高级" - -#: cms/djangoapps/contentstore/views/entrance_exam.py -#: lms/djangoapps/courseware/tabs.py -msgid "Entrance Exam" -msgstr "入学考试" - -#: cms/djangoapps/contentstore/views/helpers.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Section" -msgstr "章" - -#: cms/djangoapps/contentstore/views/helpers.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Subsection" -msgstr "节" - -#: cms/djangoapps/contentstore/views/helpers.py -#: lms/djangoapps/instructor/views/tools.py -msgid "Unit" -msgstr "单元" - -#: cms/djangoapps/contentstore/views/helpers.py -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Empty" -msgstr "空白页" - -#: cms/djangoapps/contentstore/views/transcript_settings.py -#: cms/djangoapps/contentstore/views/transcript_settings.py -#: common/lib/xmodule/xmodule/video_module/video_handlers.py -#, python-brace-format -msgid "The following parameters are required: {missing}." -msgstr "以下参数是必填的:{missing}。" - -#: cms/djangoapps/contentstore/views/transcript_settings.py -#: common/lib/xmodule/xmodule/video_module/video_handlers.py -#, python-brace-format -msgid "A transcript with the \"{language_code}\" language code already exists." -msgstr "已有\"{language_code}\"版字幕" - -#: cms/djangoapps/contentstore/views/transcript_settings.py -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -#: common/lib/xmodule/xmodule/video_module/video_handlers.py -msgid "A transcript file is required." -msgstr "字幕文件是必需的。" - -#: cms/djangoapps/contentstore/views/transcript_settings.py -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -#: common/lib/xmodule/xmodule/video_module/video_handlers.py -msgid "" -"There is a problem with this transcript file. Try to upload a different " -"file." -msgstr "该字幕文件有问题,尝试上传其他文件" - -#: cms/djangoapps/contentstore/views/videos.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/instructor/views/api.py -msgid "Name" -msgstr " 名字" - -#: cms/djangoapps/contentstore/views/videos.py -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Video ID" -msgstr "视频 ID" - -#: cms/djangoapps/contentstore/views/videos.py -#: lms/djangoapps/shoppingcart/reports.py -msgid "Status" -msgstr "状态" - -#. Translators: This is listed as the duration for a video that has not -#. yet reached the point in its processing by the servers where its -#. duration is determined. -#: cms/djangoapps/contentstore/views/videos.py -#: openedx/core/djangoapps/api_admin/models.py -msgid "Pending" -msgstr "挂起" - -#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html -msgid "Django site admin" -msgstr "Django网站管理员" - -#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html -msgid "Django administration" -msgstr "Django管理" - -#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html -msgid "View site" -msgstr "查看网站" - -#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html -msgid "Documentation" -msgstr "文档" - -#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html -msgid "Log out" -msgstr "注销" - -#: common/djangoapps/course_modes/admin.py -#: common/djangoapps/course_modes/models.py -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Mode" -msgstr "模式" - -#: common/djangoapps/course_modes/admin.py -#: lms/djangoapps/courseware/date_summary.py -msgid "Verification Deadline" -msgstr "认证截止日期" - -#: common/djangoapps/course_modes/admin.py -msgid "" -"OPTIONAL: After this date/time, users will no longer be able to submit " -"photos for verification. This appies ONLY to modes that require " -"verification." -msgstr "可选:这个日期/时间之后,用户将不能再提交照片验证。这只应用于需要验证的模式。" - -#: common/djangoapps/course_modes/helpers.py -msgid "Your verification is pending" -msgstr "您的验证正在挂起" - -#: common/djangoapps/course_modes/helpers.py -msgid "Verified: Pending Verification" -msgstr "已认证:等待验证" - -#: common/djangoapps/course_modes/helpers.py -msgid "ID verification pending" -msgstr "身份证件验证挂起" - -#: common/djangoapps/course_modes/helpers.py -msgid "You're enrolled as a verified student" -msgstr "您正作为已认证的学生选修" - -#: common/djangoapps/course_modes/helpers.py lms/envs/common.py -msgid "Verified" -msgstr "已认证" - -#: common/djangoapps/course_modes/helpers.py -msgid "ID Verified Ribbon/Badge" -msgstr "身份证件已验证时的色带/徽章" - -#: common/djangoapps/course_modes/helpers.py -msgid "You're enrolled as an honor code student" -msgstr "您已作为诚信准则学员选修" - -#: common/djangoapps/course_modes/helpers.py lms/djangoapps/branding/api.py -#: lms/djangoapps/branding/api.py openedx/core/djangoapps/user_api/api.py -msgid "Honor Code" -msgstr "诚信准则" - -#: common/djangoapps/course_modes/helpers.py -msgid "You're enrolled as a professional education student" -msgstr "您已作为专业教育学生选修" - -#: common/djangoapps/course_modes/helpers.py -msgid "Professional Ed" -msgstr "专业教育" - -#: common/djangoapps/course_modes/models.py -#: common/lib/xmodule/xmodule/annotatable_module.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/conditional_module.py -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/library_content_module.py -#: common/lib/xmodule/xmodule/lti_module.py -#: common/lib/xmodule/xmodule/split_test_module.py -#: common/lib/xmodule/xmodule/word_cloud_module.py -#: common/lib/xmodule/xmodule/x_module.py -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "Display Name" -msgstr "显示名称" - -#: common/djangoapps/course_modes/models.py -msgid "Price" -msgstr "价格" - -#: common/djangoapps/course_modes/models.py -msgid "Upgrade Deadline" -msgstr "升级的截止日期" - -#: common/djangoapps/course_modes/models.py -msgid "" -"OPTIONAL: After this date/time, users will no longer be able to enroll in " -"this mode. Leave this blank if users can enroll in this mode until " -"enrollment closes for the course." -msgstr "可选:这个日期/时间之后,用户将不能选修该模式。如果用户在课程的选课关闭之间都可以选修该模式,则将此处留空。" - -#: common/djangoapps/course_modes/models.py -msgid "" -"OPTIONAL: This is the SKU (stock keeping unit) of this mode in the external " -"ecommerce service. Leave this blank if the course has not yet been migrated" -" to the ecommerce service." -msgstr "可选:这是外部电子商业服务中该模式的SKU(库存单元)。如果课程还未迁移到电子商业服务中,则将此处留空。" - -#: common/djangoapps/course_modes/models.py -msgid "" -"This is the bulk SKU (stock keeping unit) of this mode in the external " -"ecommerce service." -msgstr "这是此模式在外部电子商务服务中的批量库存单位(SKU)。" - -#: common/djangoapps/course_modes/models.py lms/envs/common.py -msgid "Honor" -msgstr "荣誉" - -#: common/djangoapps/course_modes/models.py -msgid "" -"Professional education modes are not allowed to have expiration_datetime " -"set." -msgstr "专业的教育模式不允许有过期的日期时间设置。" - -#: common/djangoapps/course_modes/models.py -msgid "Verified modes cannot be free." -msgstr "已验证的模式要收取费用。" - -#. Translators: This will look like '$50', where {currency_symbol} is a symbol -#. such as '$' and {price} is a -#. numerical amount in that currency. Adjust this display as needed for your -#. language. -#: common/djangoapps/course_modes/models.py -#, python-brace-format -msgid "{currency_symbol}{price}" -msgstr "{currency_symbol}{price}" - -#. Translators: This refers to the cost of the course. In this case, the -#. course costs nothing so it is free. -#: common/djangoapps/course_modes/models.py -msgid "Free" -msgstr "免费" - -#: common/djangoapps/course_modes/models.py -msgid "" -"The time period before a course ends in which a course mode will expire" -msgstr "在课程结束前的时间段,其中一门课程模式将到期" - -#: common/djangoapps/course_modes/views.py -#, python-brace-format -msgid "Congratulations! You are now enrolled in {course_name}" -msgstr "恭喜!您已经选修了{course_name}" - -#: common/djangoapps/course_modes/views.py -msgid "Enrollment is closed" -msgstr "选课已关闭" - -#: common/djangoapps/course_modes/views.py -msgid "Enrollment mode not supported" -msgstr "不支持的选课模式" - -#: common/djangoapps/course_modes/views.py -msgid "Invalid amount selected." -msgstr "选择的数量无效。" - -#: common/djangoapps/course_modes/views.py -msgid "No selected price or selected price is too low." -msgstr "未选择价格或选择的价格过低。" - -#: common/djangoapps/django_comment_common/models.py -msgid "Administrator" -msgstr "管理员" - -#: common/djangoapps/django_comment_common/models.py -msgid "Moderator" -msgstr "版主" - -#: common/djangoapps/django_comment_common/models.py -msgid "Group Moderator" -msgstr "群主" - -#: common/djangoapps/django_comment_common/models.py -msgid "Community TA" -msgstr "社区助教" - -#: common/djangoapps/django_comment_common/models.py -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Student" -msgstr "学生" - -#: common/djangoapps/student/admin.py -msgid "User profile" -msgstr "用户资料" - -#. Translators: This label appears above a field on the login form -#. meant to hold the user's password. -#. Translators: This label appears above a field on the registration form -#. meant to hold the user's password. -#: common/djangoapps/student/admin.py openedx/core/djangoapps/user_api/api.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Password" -msgstr "密码" - -#: common/djangoapps/student/admin.py -msgid "" -"Raw passwords are not stored, so there is no way to see this user's " -"password." -msgstr "未存储原始密码,因此无法查看此用户的密码。" - -#: common/djangoapps/student/forms.py -msgid "" -"That e-mail address doesn't have an associated user account. Are you sure " -"you've registered?" -msgstr "该电子邮件地址不具有相关联的用户帐户。您确定您已经注册?" - -#: common/djangoapps/student/forms.py -msgid "" -"The user account associated with this e-mail address cannot reset the " -"password." -msgstr "与此电子邮件地址关联的用户帐户不能重新设置密码。" - -#: common/djangoapps/student/forms.py -msgid "Full Name cannot contain the following characters: < >" -msgstr "全名中不能包含这些字符:< >" - -#: common/djangoapps/student/forms.py -msgid "A properly formatted e-mail is required" -msgstr "需要正确的邮件格式" - -#: common/djangoapps/student/forms.py -msgid "Your legal name must be a minimum of two characters long" -msgstr "您的合法名字必须至少包含两个字符的长度" - -#: common/djangoapps/student/forms.py -#, python-format -msgid "Email cannot be more than %(limit_value)s characters long" -msgstr "Email长度不能超过 %(limit_value)s 个字符" - -#: common/djangoapps/student/forms.py -msgid "You must accept the terms of service." -msgstr "您必须接受本服务条款。" - -#: common/djangoapps/student/forms.py -msgid "A level of education is required" -msgstr "需要以上学历" - -#: common/djangoapps/student/forms.py -msgid "Your gender is required" -msgstr "您的性别是必填项" - -#: common/djangoapps/student/forms.py -msgid "Your year of birth is required" -msgstr "您的出生年份是必填项" - -#: common/djangoapps/student/forms.py -msgid "Your mailing address is required" -msgstr "您的邮件地址是必填项" - -#: common/djangoapps/student/forms.py -msgid "A description of your goals is required" -msgstr "您的目标描述是必填项" - -#: common/djangoapps/student/forms.py -msgid "A city is required" -msgstr "城市是必填项" - -#: common/djangoapps/student/forms.py -msgid "A country is required" -msgstr "国家是必填项" - -#: common/djangoapps/student/forms.py -msgid "To enroll, you must follow the honor code." -msgstr "您必须遵循诚信准则才能选修。" - -#: common/djangoapps/student/forms.py -msgid "You are missing one or more required fields" -msgstr "您遗漏了一个或多个必须填写字段" - -#: common/djangoapps/student/forms.py -msgid "Unauthorized email address." -msgstr "未经授权的电子邮件地址" - -#: common/djangoapps/student/forms.py -#, python-brace-format -msgid "" -"It looks like {email} belongs to an existing account. Try again with a " -"different email address." -msgstr "看起来像现有的帐户 {email} 。使用不同的电子邮件地址再试一次。" - -#: common/djangoapps/student/helpers.py -#, python-brace-format -msgid "An account with the Public Username '{username}' already exists." -msgstr "公开用户名'{username}'对应的账号已存在。" - -#: common/djangoapps/student/helpers.py -#, python-brace-format -msgid "An account with the Email '{email}' already exists." -msgstr "电子邮件'{email}'对应的账号已存在。" - -#: common/djangoapps/student/management/commands/manage_group.py -msgid "Removed group: \"{}\"" -msgstr "已移除的组: \"{}\"" - -#: common/djangoapps/student/management/commands/manage_group.py -msgid "Did not find a group with name \"{}\" - skipping." -msgstr "没有找到\"{}\"的组 - 跳过。" - -#: common/djangoapps/student/management/commands/manage_group.py -#, python-brace-format -msgid "Invalid group name: \"{group_name}\". {messages}" -msgstr "无效的组名: \"{group_name}\". {messages}" - -#: common/djangoapps/student/management/commands/manage_group.py -msgid "Created new group: \"{}\"" -msgstr "创建新内容组: \"{}\"" - -#: common/djangoapps/student/management/commands/manage_group.py -msgid "Found existing group: \"{}\"" -msgstr "找到已存在的内容组: \"{}\"" - -#: common/djangoapps/student/management/commands/manage_group.py -#, python-brace-format -msgid "Adding {codenames} permissions to group \"{group}\"" -msgstr "添加群组{codenames}权限\"{group}\"" - -#: common/djangoapps/student/management/commands/manage_group.py -#, python-brace-format -msgid "Removing {codenames} permissions from group \"{group}\"" -msgstr "移除群组{codenames}权限\"{group}\"" - -#: common/djangoapps/student/management/commands/manage_group.py -msgid "" -"Invalid permission option: \"{}\". Please specify permissions using the " -"format: app_label:model_name:permission_codename." -msgstr "\"{}\"权限选项无效,请按照以下格式设置权限:app_label:model_name:permission_codename。" - -#: common/djangoapps/student/management/commands/manage_group.py -#, python-brace-format -msgid "" -"Invalid permission codename: \"{codename}\". No such permission exists for " -"the model {module}.{model_name}." -msgstr "\"{codename}\"权限代号无效,{module}.{model_name} model的此权限不存在。" - -#: common/djangoapps/student/management/commands/manage_user.py -#, python-brace-format -msgid "Setting {attribute} for user \"{username}\" to \"{new_value}\"" -msgstr "设置用户\"{username}\"的{attribute}值为\"{new_value}\"" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "" -"Skipping user \"{}\" because the specified and existing email addresses do " -"not match." -msgstr "设置的邮箱与现存邮箱地址不匹配,跳过用户\"{}\"。" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Did not find a user with username \"{}\" - skipping." -msgstr "没有找到用户名为\"{}\" - 跳过。" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Removing user: \"{}\"" -msgstr "移除用户: \"{}\"" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Created new user: \"{}\"" -msgstr "创建用户: \"{}\"" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Found existing user: \"{}\"" -msgstr "找到已存在的用户: \"{}\"" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Setting unusable password for user \"{}\"" -msgstr "设置用户\"{}\"的不可用密码" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Created new profile for user: \"{}\"" -msgstr "已创建新账号:\"{}\"" - -#: common/djangoapps/student/management/commands/manage_user.py -msgid "Could not find a group named \"{}\" - skipping." -msgstr "没有找到名为\"{}\"的组 - 跳过。" - -#: common/djangoapps/student/management/commands/manage_user.py -#, python-brace-format -msgid "Adding user \"{username}\" to groups {group_names}" -msgstr "正在添加用户\"{username}\"至{group_names}群组中" - -#: common/djangoapps/student/management/commands/manage_user.py -#, python-brace-format -msgid "Removing user \"{username}\" from groups {group_names}" -msgstr "把用户 \"{username}\" 从{group_names}组中移除" - -#: common/djangoapps/student/middleware.py -#, python-brace-format -msgid "" -"Your account has been disabled. If you believe this was done in error, " -"please contact us at {support_email}" -msgstr "您的账号已经被禁用。如果您有任何疑问请联系我们{support_email}" - -#: common/djangoapps/student/middleware.py -msgid "Disabled Account" -msgstr "已停用的账号" - -#: common/djangoapps/student/models.py -msgid "Male" -msgstr "男" - -#: common/djangoapps/student/models.py -msgid "Female" -msgstr "女" - -#. Translators: 'Other' refers to the student's gender -#: common/djangoapps/student/models.py -msgid "Other/Prefer Not to Say" -msgstr "其他/不想说" - -#: common/djangoapps/student/models.py -msgid "Doctorate" -msgstr "博士" - -#: common/djangoapps/student/models.py -msgid "Master's or professional degree" -msgstr "硕士" - -#: common/djangoapps/student/models.py -msgid "Bachelor's degree" -msgstr "学士" - -#: common/djangoapps/student/models.py -msgid "Associate degree" -msgstr "肄业证书" - -#: common/djangoapps/student/models.py -msgid "Secondary/high school" -msgstr "高中" - -#: common/djangoapps/student/models.py -msgid "Junior secondary/junior high/middle school" -msgstr "初中" - -#: common/djangoapps/student/models.py -msgid "Elementary/primary school" -msgstr "小学" - -#. Translators: 'None' refers to the student's level of education -#: common/djangoapps/student/models.py -msgid "No formal education" -msgstr "未受正规教育" - -#. Translators: 'Other' refers to the student's level of education -#: common/djangoapps/student/models.py -msgid "Other education" -msgstr "其他教育程度" - -#: common/djangoapps/student/models.py -msgid "Phone" -msgstr "电话" - -#: common/djangoapps/student/models.py -#, python-brace-format -msgid "{platform_name} Honor Code Certificate for {course_name}" -msgstr "{platform_name}荣誉代码证书{course_name}" - -#: common/djangoapps/student/models.py -#, python-brace-format -msgid "{platform_name} Verified Certificate for {course_name}" -msgstr "{platform_name}经认证的证书{course_name}" - -#: common/djangoapps/student/models.py common/djangoapps/student/models.py -#, python-brace-format -msgid "{platform_name} Professional Certificate for {course_name}" -msgstr "{platform_name}专业证书{course_name}" - -#: common/djangoapps/student/models.py -msgid "" -"The company identifier for the LinkedIn Add-to-Profile button e.g " -"0_0dPSPyS070e0HsE9HNz_13_d11_" -msgstr "LinkedIn“添加到配置文件”按钮的公司标识符,例如0_0dPSPyS070e0HsE9HNz_13_d11_" - -#: common/djangoapps/student/models.py -msgid "" -"Short identifier for the LinkedIn partner used in the tracking code. " -"(Example: 'edx') If no value is provided, tracking codes will not be sent " -"to LinkedIn." -msgstr "领英伙伴的短标识符被用在跟踪代码中。 (比如: 'edx') 如果没有提供任何值,跟踪代码不会发送到领英。" - -#: common/djangoapps/student/models.py -#, python-brace-format -msgid "{platform_name} Certificate for {course_name}" -msgstr "{platform_name} 证书 {course_name}" - -#: common/djangoapps/student/models.py common/djangoapps/student/models.py -msgid "The ISO 639-1 language code for this language." -msgstr "该语言的 ISO 639-1 代码" - -#: common/djangoapps/student/models.py -msgid "Namespace of enrollment attribute" -msgstr "选课属性中的命名空间" - -#: common/djangoapps/student/models.py -msgid "Name of the enrollment attribute" -msgstr "选课属性中的名称" - -#: common/djangoapps/student/models.py -msgid "Value of the enrollment attribute" -msgstr "选课属性中的值" - -#: common/djangoapps/student/models.py -msgid "" -"The window of time after enrolling during which users can be granted a " -"refund, represented in microseconds. The default is 14 days." -msgstr "注册课程后用户可以退款的期限,以微秒表示。默认值是14天。" - -#: common/djangoapps/student/models.py -msgid "Name of the UTM cookie" -msgstr "UTM cookie名称" - -#: common/djangoapps/student/models.py -msgid "Name of the affiliate cookie" -msgstr "附属cookie名称" - -#: common/djangoapps/student/models.py -msgid "Name of this user attribute." -msgstr "用户属性名称。" - -#: common/djangoapps/student/models.py -msgid "Value of this user attribute." -msgstr "此用户属性值。" - -#: common/djangoapps/student/views/dashboard.py -msgid " and " -msgstr "与" - -#: common/djangoapps/student/views/dashboard.py -msgid "Photos are mismatched" -msgstr "照片误匹配" - -#: common/djangoapps/student/views/dashboard.py -msgid "Name missing from ID photo" -msgstr "ID照片缺少名称" - -#: common/djangoapps/student/views/dashboard.py -msgid "ID photo not provided" -msgstr "未提供ID照片" - -#: common/djangoapps/student/views/dashboard.py -msgid "ID is invalid" -msgstr "无效ID" - -#: common/djangoapps/student/views/dashboard.py -msgid "Learner photo is blurry" -msgstr "学生照片模糊" - -#: common/djangoapps/student/views/dashboard.py -msgid "Name on ID does not match name on account" -msgstr "ID名称与账号名称不匹配" - -#: common/djangoapps/student/views/dashboard.py -msgid "Learner photo not provided" -msgstr "未提供学员图片" - -#: common/djangoapps/student/views/dashboard.py -msgid "ID photo is blurry" -msgstr "ID照片模糊" - -#: common/djangoapps/student/views/dashboard.py -#, python-brace-format -msgid "" -"Check your {email_start}{email}{email_end} inbox for an account activation " -"link from {platform_name}. If you need help, contact " -"{link_start}{platform_name} Support{link_end}." -msgstr "" -"去邮箱{email_start}{email}{email_end} " -"查看{platform_name}的账号激活链接。如需帮助,请联系{link_start}{platform_name}的技术支持{link_end}。" - -#: common/djangoapps/student/views/dashboard.py -#, python-brace-format -msgid "The course you are looking for does not start until {date}." -msgstr "您查找的课程将在{date}后开课。" - -#: common/djangoapps/student/views/dashboard.py -#, python-brace-format -msgid "The course you are looking for is closed for enrollment as of {date}." -msgstr "您搜索的课程登记关闭时间截止至 {date}。" - -#: common/djangoapps/student/views/management.py -msgid "No inactive user with this e-mail exists" -msgstr "无非激活用户与本邮件地址关联。" - -#: common/djangoapps/student/views/management.py -#: common/djangoapps/student/views/management.py -msgid "Unable to send reactivation email" -msgstr "无法发送重新激活的电子邮件" - -#: common/djangoapps/student/views/management.py -msgid "Course id not specified" -msgstr "课程编号未指定" - -#: common/djangoapps/student/views/management.py -msgid "Invalid course id" -msgstr "无效的课程编号" - -#: common/djangoapps/student/views/management.py -msgid "Course id is invalid" -msgstr "课程编号无效" - -#: common/djangoapps/student/views/management.py -msgid "Could not enroll" -msgstr "无法选修" - -#: common/djangoapps/student/views/management.py -msgid "You are not enrolled in this course" -msgstr "您还没有选修本课程" - -#: common/djangoapps/student/views/management.py -msgid "Your certificate prevents you from unenrolling from this course" -msgstr "您的证书会让您从无法取消注册" - -#: common/djangoapps/student/views/management.py -msgid "Enrollment action is invalid" -msgstr "选课操作无效" - -#: common/djangoapps/student/views/management.py -msgid "Please enter a username" -msgstr "请输入用户名" - -#: common/djangoapps/student/views/management.py -msgid "Please choose an option" -msgstr "请选择" - -#: common/djangoapps/student/views/management.py -msgid "User with username {} does not exist" -msgstr "用户名 {} 不存在" - -#: common/djangoapps/student/views/management.py -msgid "Successfully disabled {}'s account" -msgstr "成功停用{}的账号" - -#: common/djangoapps/student/views/management.py -msgid "Successfully reenabled {}'s account" -msgstr "成功重新启用{}的账号" - -#: common/djangoapps/student/views/management.py -msgid "Unexpected account status" -msgstr "异常的账号状态" - -#: common/djangoapps/student/views/management.py -#, python-brace-format -msgid "" -"{html_start}Your account could not be activated{html_end}Something went " -"wrong, please contact support to resolve this " -"issue." -msgstr "" -"{html_start} 您的账号无法激活 {html_end} 什么地方发生错误了, 请联系支持 解决此问题。" - -#: common/djangoapps/student/views/management.py -#, python-brace-format -msgid "{html_start}This account has already been activated.{html_end}" -msgstr "{html_start} 此账号已被激活。{html_end}" - -#: common/djangoapps/student/views/management.py -#, python-brace-format -msgid "{html_start}Success{html_end} You have activated your account." -msgstr "{html_start} 成功! {html_end} 您已激活您的账号。" - -#: common/djangoapps/student/views/management.py -#, python-brace-format -msgid "" -"{html_start}Success! You have activated your account.{html_end}You will now " -"receive email updates and alerts from us related to the courses you are " -"enrolled in. Sign In to continue." -msgstr "{html_start}您已成功激活账号!{html_end}我们会将您的课程更新以电子邮件通知您,请登录。" - -#: common/djangoapps/student/views/management.py -msgid "Some error occured during password change. Please try again" -msgstr "重设密码时发生错误,请重试" - -#: common/djangoapps/student/views/management.py -msgid "No email address provided." -msgstr "未提供Email地址。" - -#: common/djangoapps/student/views/management.py -#: common/djangoapps/student/views/management.py -#: common/djangoapps/student/views/management.py -msgid "Password reset unsuccessful" -msgstr "重新设置密码不成功" - -#: common/djangoapps/student/views/management.py -msgid "Error in resetting your password." -msgstr "重设密码时发生错误。" - -#: common/djangoapps/student/views/management.py -msgid "Error in resetting your password. Please try again." -msgstr "重置密码操作发生错误。请再尝试一次。" - -#: common/djangoapps/student/views/management.py -msgid "Valid e-mail address required." -msgstr "需要有效的电子邮件地址" - -#: common/djangoapps/student/views/management.py -msgid "Old email is the same as the new email." -msgstr "新邮件地址与旧邮件地址相同。" - -#: common/djangoapps/student/views/management.py -msgid "E-mail address has been used." -msgstr "邮件地址已被使用。" - -#: common/djangoapps/student/views/management.py -msgid "Unable to send email activation link. Please try again later." -msgstr "无法发送邮箱激活链接,请重试 。" - -#: common/djangoapps/third_party_auth/admin.py -msgid "Deleted the selected configuration(s)." -msgstr "删除所选配置(或多个)。" - -#: common/djangoapps/third_party_auth/admin.py -msgid "Delete the selected configuration" -msgstr "删除所选设置" - -#: common/djangoapps/third_party_auth/middleware.py -msgid "Unable to connect with the external provider, please try again" -msgstr "无法连接外部提供程序,请重试" - -#: common/djangoapps/third_party_auth/models.py -msgid "Authentication with {} is currently unavailable." -msgstr "当前不可使用{}认证。" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"Secondary providers are displayed less prominently, in a separate list of " -"\"Institution\" login providers." -msgstr "二级供应商不会突出显示,将出现在一个单独的登录供应商列表“机构”中。" - -#: common/djangoapps/third_party_auth/models.py -msgid "The Site that this provider configuration belongs to." -msgstr "此提供程序设置所从属的网站。" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is enabled, users that visit a \"TPA hinted\" URL for this " -"provider (e.g. a URL ending with `?tpa_hint=[provider_name]`) will be " -"forwarded directly to the login URL of the provider instead of being first " -"prompted with a login dialog." -msgstr "" -"如果启用此项,则访问此Provider的“TPA提示”URL(例如:以“?tpa_hint=[provider_name]”结尾的URL)的用户将被直接发送到Provider的登录URL,而非首先弹出登录对话框。" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is enabled, users will not be asked to confirm their details " -"(name, email, etc.) during the registration process. Only select this option" -" for trusted providers that are known to provide accurate user information." -msgstr "" -"如果启用了该选项,用户在注册过程中将不会被要求验证他们的详细信息(姓名、电子邮件等)。只有对可信任的供应商,即已知会提供确切用户信息的供应商,才可启用该选项。" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is selected, users will not be required to confirm their " -"email, and their account will be activated immediately upon registration." -msgstr "如果选择该选项,用户将不会被要求验证他们的邮箱,他们的账号将在注册后立刻被激活。" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is selected, users will be sent a welcome email upon " -"registration." -msgstr "如果选择此选项,那么会在用户完成注册时发送一封欢迎电子邮件。" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is not selected, users will not be presented with the " -"provider as an option to authenticate with on the login screen, but manual " -"authentication using the correct link is still possible." -msgstr "如果不勾选此项,用户将无法在登录页面使用Provider验证,不过可以使用正确的链接进行手动验证。" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is set, then users logging in using this SSO provider will " -"have their session length limited to no longer than this value. If set to 0 " -"(zero), the session will expire upon the user closing their browser. If left" -" blank, the Django platform session default length will be used." -msgstr "" -"如果设置此项,那么使用此SSO " -"Provider登录的用户的会话时长不超过此设置值。如果设为0(零),则会话在用户关闭浏览器时过期。如果留空,则采用Django平台会话的默认时长。" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"If this option is selected, users will be directed to the registration page " -"immediately after authenticating with the third party instead of the login " -"page." -msgstr "如果选择此选项,则用户在与第三方验证后会直接跳转至注册页面,而不是登录页面。" - -#: common/djangoapps/third_party_auth/models.py -msgid "" -"Synchronize user profile data received from the identity provider with the " -"edX user account on each SSO login. The user will be notified if the email " -"address associated with their account is changed as a part of this " -"synchronization." -msgstr "在每次SSO登录中,将来自身份provider程序的用户账号数据与edX用户账号相同步。当修改绑定邮箱时,用户会收到通知。" - -#: common/djangoapps/third_party_auth/models.py -msgid "The Site that this SAML configuration belongs to." -msgstr "此SAML设置所从属的网站。" - -#: common/djangoapps/third_party_auth/models.py -#, python-brace-format -msgid "{platform_name} Support" -msgstr "{platform_name}支援" - -#: common/djangoapps/third_party_auth/templates/third_party_auth/post_custom_auth_entry.html -msgid "Please wait" -msgstr "请稍候" - -#. Translators: the translation for "LONG_DATE_FORMAT" must be a format -#. string for formatting dates in a long form. For example, the -#. American English form is "%A, %B %d %Y". -#. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgid "LONG_DATE_FORMAT" -msgstr "LONG_DATE_FORMAT" - -#. Translators: the translation for "DATE_TIME_FORMAT" must be a format -#. string for formatting dates with times. For example, the American -#. English form is "%b %d, %Y at %H:%M". -#. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgid "DATE_TIME_FORMAT" -msgstr "DATE_TIME_FORMAT" - -#. Translators: the translation for "SHORT_DATE_FORMAT" must be a -#. format string for formatting dates in a brief form. For example, -#. the American English form is "%b %d %Y". -#. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgid "SHORT_DATE_FORMAT" -msgstr "SHORT_DATE_FORMAT" - -#. Translators: the translation for "TIME_FORMAT" must be a format -#. string for formatting times. For example, the American English -#. form is "%H:%M:%S". See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgid "TIME_FORMAT" -msgstr "TIME_FORMAT" - -#. Translators: This is an AM/PM indicator for displaying times. It is -#. used for the %p directive in date-time formats. See http://strftime.org -#. for details. -#: common/djangoapps/util/date_utils.py -msgctxt "am/pm indicator" -msgid "AM" -msgstr "上午" - -#. Translators: This is an AM/PM indicator for displaying times. It is -#. used for the %p directive in date-time formats. See http://strftime.org -#. for details. -#: common/djangoapps/util/date_utils.py -msgctxt "am/pm indicator" -msgid "PM" -msgstr "下午" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Monday Februrary 10, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Monday" -msgstr "星期一" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Tuesday" -msgstr "星期二" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Wednesday" -msgstr "星期三" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Thursday" -msgstr "星期四" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Friday Februrary 14, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Friday" -msgstr "星期五" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Saturday" -msgstr "星期六" - -#. Translators: this is a weekday name that will be used when displaying -#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "weekday name" -msgid "Sunday" -msgstr "星期天" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Mon" -msgstr "周一" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Tue" -msgstr "周二" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Wed" -msgstr "周三" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Thu" -msgstr "周四" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Fri" -msgstr "周五" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Sat" -msgstr "周六" - -#. Translators: this is an abbreviated weekday name that will be used when -#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated weekday name" -msgid "Sun" -msgstr "周日" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Jan 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Jan" -msgstr "一月" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Feb 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Feb" -msgstr "二月" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Mar 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Mar" -msgstr "三月" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Apr 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Apr" -msgstr "四月" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "May 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "May" -msgstr "五月" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Jun 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Jun" -msgstr "六月" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Jul 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Jul" -msgstr "七月" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Aug 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Aug" -msgstr "八月" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Sep 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Sep" -msgstr "九月" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Oct 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Oct" -msgstr "十月" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Nov 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Nov" -msgstr "十一月" - -#. Translators: this is an abbreviated month name that will be used when -#. displaying dates, as in "Dec 10, 2014". It is used for the %b -#. directive in date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "abbreviated month name" -msgid "Dec" -msgstr "十二月" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "January 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "January" -msgstr "一月" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "February 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "February" -msgstr "二月" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "March 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "March" -msgstr "三月" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "April 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "April" -msgstr "四月" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "May 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "May" -msgstr "五月" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "June 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "June" -msgstr "六月" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "July 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "July" -msgstr "七月" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "August 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "August" -msgstr "八月" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "September 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "September" -msgstr "九月" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "October 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "October" -msgstr "十月" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "November 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "November" -msgstr "十一月" - -#. Translators: this is a month name that will be used when displaying -#. dates, as in "December 10, 2014". It is used for the %B directive in -#. date-time formats. See http://strftime.org for details. -#: common/djangoapps/util/date_utils.py -msgctxt "month name" -msgid "December" -msgstr "十二月" - -#: common/djangoapps/util/file.py -#, python-brace-format -msgid "The file must end with the extension '{file_types}'." -msgid_plural "" -"The file must end with one of the following extensions: '{file_types}'." -msgstr[0] "文件的扩展名必须为'{file_types}'。" - -#: common/djangoapps/util/file.py -#, python-brace-format -msgid "Maximum upload file size is {file_size} bytes." -msgstr "上传文件最大为{file_size} 字节。" - -#: common/djangoapps/util/milestones_helpers.py -#, python-brace-format -msgid "Course {course_id} requires {prerequisite_course_id}" -msgstr "课程{course_id}要求 {prerequisite_course_id}" - -#: common/djangoapps/util/milestones_helpers.py openedx/core/lib/gating/api.py -msgid "System defined milestone" -msgstr "系统定义的里程碑" - -#: common/djangoapps/util/password_policy_validators.py -#, python-brace-format -msgid "" -"Your password must contain {length_instruction}, including " -"{complexity_instructions}." -msgstr "您的密码必须包含{length_instruction},包括{complexity_instructions}。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-brace-format -msgid "Your password must contain {length_instruction}." -msgstr "您的密码必须包含{length_instruction}。" - -#: common/djangoapps/util/password_policy_validators.py -msgid "Invalid password." -msgstr "密码无效。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "" -"This password is too short. It must contain at least %(min_length)d " -"character." -msgid_plural "" -"This password is too short. It must contain at least %(min_length)d " -"characters." -msgstr[0] "这个密码太短了,它必须包含至少%(min_length)d个字符。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain at least %(min_length)d character." -msgid_plural "Your password must contain at least %(min_length)d characters." -msgstr[0] "您的密码必须至少包含%(min_length)d个字符。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "at least %(min_length)d character" -msgid_plural "at least %(min_length)d characters" -msgstr[0] "至少%(min_length)d个字符" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "" -"This password is too long. It must contain no more than %(max_length)d " -"character." -msgid_plural "" -"This password is too long. It must contain no more than %(max_length)d " -"characters." -msgstr[0] "这个密码太长了。它必须包含不超过 %(max_length)d 字符。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain no more than %(max_length)d character." -msgid_plural "" -"Your password must contain no more than %(max_length)d characters." -msgstr[0] "您的密码必须包含不超过%(max_length)d字符。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "This password must contain at least %(min_alphabetic)d letter." -msgid_plural "This password must contain at least %(min_alphabetic)d letters." -msgstr[0] "这个密码必须包含至少 %(min_alphabetic)d字母。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain at least %(min_alphabetic)d letter." -msgid_plural "Your password must contain at least %(min_alphabetic)d letters." -msgstr[0] "您的密码必须包含至少%(min_alphabetic)d 字母。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "%(num)d letter" -msgid_plural "%(num)d letters" -msgstr[0] "%(num)d字母" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "This password must contain at least %(min_numeric)d number." -msgid_plural "This password must contain at least %(min_numeric)d numbers." -msgstr[0] "这个密码必须包含至少%(min_numeric)d数字。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain at least %(min_numeric)d number." -msgid_plural "Your password must contain at least %(min_numeric)d numbers." -msgstr[0] "您的密码必须包含至少%(min_numeric)d数字。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "%(num)d number" -msgid_plural "%(num)d numbers" -msgstr[0] "%(num)d数字" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "This password must contain at least %(min_upper)d uppercase letter." -msgid_plural "" -"This password must contain at least %(min_upper)d uppercase letters." -msgstr[0] "这个密码必须包含至少%(min_upper)d大写字母。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain at least %(min_upper)d uppercase letter." -msgid_plural "" -"Your password must contain at least %(min_upper)d uppercase letters." -msgstr[0] "您的密码必须包含至少%(min_upper)d大写字母。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "%(num)d uppercase letter" -msgid_plural "%(num)d uppercase letters" -msgstr[0] "%(num)d大写字母" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "This password must contain at least %(min_lower)d lowercase letter." -msgid_plural "" -"This password must contain at least %(min_lower)d lowercase letters." -msgstr[0] "这个密码必须包含至少%(min_lower)d小写字母。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain at least %(min_lower)d lowercase letter." -msgid_plural "" -"Your password must contain at least %(min_lower)d lowercase letters." -msgstr[0] "您的密码必须包含至少%(min_lower)d小写字母。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "%(num)d lowercase letter" -msgid_plural "%(num)d lowercase letters" -msgstr[0] "%(num)d小写字母" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "" -"This password must contain at least %(min_punctuation)d punctuation mark." -msgid_plural "" -"This password must contain at least %(min_punctuation)d punctuation marks." -msgstr[0] "这个密码必须包含至少%(min_punctuation)d标点符号。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "" -"Your password must contain at least %(min_punctuation)d punctuation mark." -msgid_plural "" -"Your password must contain at least %(min_punctuation)d punctuation marks." -msgstr[0] "您的密码必须包含至少%(min_punctuation)d标点符号。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "%(num)d punctuation mark" -msgid_plural "%(num)d punctuation marks" -msgstr[0] "%(num)d标点符号" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "This password must contain at least %(min_symbol)d symbol." -msgid_plural "This password must contain at least %(min_symbol)d symbols." -msgstr[0] "这个密码必须包含至少%(min_symbol)d符号。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "Your password must contain at least %(min_symbol)d symbol." -msgid_plural "Your password must contain at least %(min_symbol)d symbols." -msgstr[0] "您的密码必须包含至少%(min_symbol)d符号。" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "%(num)d symbol" -msgid_plural "%(num)d symbols" -msgstr[0] "%(num)d符号" - -#: common/djangoapps/util/password_policy_validators.py -#, python-format -msgid "The password is too similar to the %(verbose_name)s." -msgstr "密码与%(verbose_name)s太相似。" - -#: common/djangoapps/util/password_policy_validators.py -msgid "Your password can't be too similar to your other personal information." -msgstr "您的密码不能与您的其他个人信息太相似。" - -#: common/djangoapps/xblock_django/admin.py -msgid "" -"To disable the XBlock and prevent rendering in the LMS, leave \"Enabled\" " -"deselected; for clarity, update XBlockStudioConfiguration support state " -"accordingly." -msgstr "取消勾选“启用”按钮即可禁用XBlock和LMS渲染;按需更新XBlockStudioConfiguration的支持状态即可调整清晰度。" - -#: common/djangoapps/xblock_django/admin.py -msgid "" -"Only XBlocks listed in a course's Advanced Module List can be flagged as " -"deprecated. Remember to update XBlockStudioConfiguration support state " -"accordingly, as deprecated does not impact whether or not new XBlock " -"instances can be created in Studio." -msgstr "" -"只能够将在高级模块列表中的XBlocks标记为不推荐允许,请记住要根据需要而更新XBlockStudioConfiguration的支持状态,因为设置了不推荐允许是不会影响在Studio中创建XBlock场景的。" - -#: common/djangoapps/xblock_django/admin.py -msgid "" -"XBlock/template combinations that are disabled cannot be edited in Studio, " -"regardless of support level. Remember to also check if all instances of the " -"XBlock are disabled in XBlockConfiguration." -msgstr "" -"无论支持级别多少,都无法在Studio中编辑被禁用的XBlock/模板组合。请记住还要检查所有XBlock场景是否在XBlockConfiguration中已被禁用。" - -#: common/djangoapps/xblock_django/admin.py -msgid "" -"Enabled XBlock/template combinations with full or provisional support can " -"always be created in Studio. Unsupported XBlock/template combinations " -"require course author opt-in." -msgstr "在Studio中,完全或暂时支持启用XBlock/模板组合总是可以创建。不支持XBlock或模板组合需要课程作者选择加入。" - -#: common/djangoapps/xblock_django/models.py -msgid "show deprecation messaging in Studio" -msgstr "在Studio中显示不推荐通知" - -#: common/djangoapps/xblock_django/models.py -msgid "Fully Supported" -msgstr "全部支持" - -#: common/djangoapps/xblock_django/models.py -msgid "Provisionally Supported" -msgstr "暂行支持" - -#: common/djangoapps/xblock_django/models.py -msgid "Unsupported" -msgstr "不支持" - -#: common/lib/capa/capa/capa_problem.py -msgid "Cannot rescore problems with possible file submissions" -msgstr "无法对可能的文件提交重新评分" - -#: common/lib/capa/capa/capa_problem.py -#, python-brace-format -msgid "Question {0}" -msgstr "问题{0}" - -#: common/lib/capa/capa/capa_problem.py -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Incorrect" -msgstr "不正确" - -#: common/lib/capa/capa/capa_problem.py -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Correct" -msgstr "正确" - -#: common/lib/capa/capa/inputtypes.py -msgid "correct" -msgstr "正确" - -#: common/lib/capa/capa/inputtypes.py -msgid "incorrect" -msgstr "不正确" - -#: common/lib/capa/capa/inputtypes.py -msgid "partially correct" -msgstr "部分正确" - -#: common/lib/capa/capa/inputtypes.py -msgid "incomplete" -msgstr "不完整" - -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py -msgid "unanswered" -msgstr "未答复" - -#: common/lib/capa/capa/inputtypes.py -msgid "submitted" -msgstr "已提交" - -#: common/lib/capa/capa/inputtypes.py -msgid "processing" -msgstr "处理中" - -#. Translators: these are tooltips that indicate the state of an assessment -#. question -#: common/lib/capa/capa/inputtypes.py -msgid "This answer is correct." -msgstr "这个回答是正确的。" - -#: common/lib/capa/capa/inputtypes.py -msgid "This answer is incorrect." -msgstr "这个回答是不正确的。" - -#: common/lib/capa/capa/inputtypes.py -msgid "This answer is partially correct." -msgstr "这个回答是部分正确的。" - -#: common/lib/capa/capa/inputtypes.py -msgid "This answer is being processed." -msgstr "这个回答正在处理中。" - -#: common/lib/capa/capa/inputtypes.py -msgid "Not yet answered." -msgstr "未回答。" - -#: common/lib/capa/capa/inputtypes.py -msgid "Select an option" -msgstr "请选择" - -#. Translators: 'ChoiceGroup' is an input type and should not be translated. -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "ChoiceGroup: unexpected tag {tag_name}" -msgstr "ChoiceGroup:未知标签{tag_name}" - -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py -msgid "Answer received." -msgstr "收到答案" - -#. Translators: '' and '' are tag names and should not -#. be translated. -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "Expected a or tag; got {given_tag} instead" -msgstr "期望一个标签;实际获得{given_tag}" - -#: common/lib/capa/capa/inputtypes.py -msgid "" -"Your files have been submitted. As soon as your submission is graded, this " -"message will be replaced with the grader's feedback." -msgstr "您的文件已经提交。当评定完成后,此消息将被评定者的反馈所替代。" - -#: common/lib/capa/capa/inputtypes.py -msgid "" -"Your answer has been submitted. As soon as your submission is graded, this " -"message will be replaced with the grader's feedback." -msgstr "您的答案已经发布。当评定完成,此消息将被显示评定者的反馈所替代。" - -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "{programming_language} editor" -msgstr "{programming_language} 编辑者" - -#: common/lib/capa/capa/inputtypes.py -msgid "Press ESC then TAB or click outside of the code editor to exit" -msgstr "按ESC键然后TAB键可退出,或者鼠标点击代码编辑器以外的区域也可退出。" - -#: common/lib/capa/capa/inputtypes.py -msgid "" -"Submitted. As soon as a response is returned, this message will be replaced " -"by that feedback." -msgstr "已提交。当得到反馈,此消息将被反馈信息所替代。" - -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." -msgstr " Xqueue在 {xqueue_timeout} 秒内无响应,终止。" - -#: common/lib/capa/capa/inputtypes.py -msgid "Error running code." -msgstr "运行代码错误。" - -#: common/lib/capa/capa/inputtypes.py -msgid "Cannot connect to the queue" -msgstr "无法连接到队列。" - -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py -msgid "No formula specified." -msgstr "没有指定公式" - -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "Couldn't parse formula: {error_msg}" -msgstr "无法解析公式: {error_msg}" - -#: common/lib/capa/capa/inputtypes.py common/lib/capa/capa/inputtypes.py -msgid "Error while rendering preview" -msgstr "渲染预览出错" - -#: common/lib/capa/capa/inputtypes.py -msgid "Sorry, couldn't parse formula" -msgstr "抱歉,不能解析公式" - -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "{input_type}: unexpected tag {tag_name}" -msgstr "{input_type}: 未知标签 {tag_name}" - -#. Translators: a "tag" is an XML element, such as "" in HTML -#: common/lib/capa/capa/inputtypes.py -#, python-brace-format -msgid "Expected a {expected_tag} tag; got {given_tag} instead" -msgstr "期望一个 {expected_tag}标签;实际获得 {given_tag}" - -#. Translators: index here could be 1,2,3 and so on -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Question {index}" -msgstr "问题 {index}" - -#: common/lib/capa/capa/responsetypes.py -msgid "Correct:" -msgstr "正确:" - -#: common/lib/capa/capa/responsetypes.py -msgid "Incorrect:" -msgstr "不正确:" - -#: common/lib/capa/capa/responsetypes.py -#: common/lib/xmodule/xmodule/capa_module.py -msgid "Answer" -msgstr "答案" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Error {err} in evaluating hint function {hintfn}." -msgstr "在对提示函数 {hintfn} 求值时发生错误 {err}。" - -#: common/lib/capa/capa/responsetypes.py -msgid "(Source code line unavailable)" -msgstr "(源代码不可用 )" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "See XML source line {sourcenum}." -msgstr "参见 XML 源文件中的行{sourcenum}。" - -#: common/lib/capa/capa/responsetypes.py -msgid "Checkboxes" -msgstr "选框" - -#: common/lib/capa/capa/responsetypes.py -msgid "Multiple Choice" -msgstr "多项选择" - -#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not -#. be translated. -#: common/lib/capa/capa/responsetypes.py -msgid "Do not use shuffle and answer-pool at the same time" -msgstr "请勿同时使用拖拽和答案池" - -#. Translators: 'answer-pool' is an attribute name and should not be -#. translated. -#: common/lib/capa/capa/responsetypes.py -msgid "answer-pool value should be an integer" -msgstr "答案池的值必须是整数" - -#. Translators: 'Choicegroup' is an input type and should not be translated. -#: common/lib/capa/capa/responsetypes.py -msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" -msgstr "Choicegroup必须包含至少1个正确选项和1个错误选项" - -#: common/lib/capa/capa/responsetypes.py -msgid "True/False Choice" -msgstr "True/False 选择" - -#: common/lib/capa/capa/responsetypes.py -msgid "Dropdown" -msgstr "下拉列表" - -#: common/lib/capa/capa/responsetypes.py -msgid "Numerical Input" -msgstr "数值输入" - -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py -msgid "There was a problem with the staff answer to this problem." -msgstr "工作人员对这个问题的答案有问题。" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Could not interpret '{student_answer}' as a number." -msgstr "无法将“{student_answer}”解释为一个数字。" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Factorial function evaluated outside its domain:'{student_answer}'" -msgstr "在阶乘函数的定义域之外对其求值:“{student_answer}”" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Invalid math syntax: '{student_answer}'" -msgstr "无效的数学表达式:'{student_answer}'" - -#: common/lib/capa/capa/responsetypes.py -msgid "You may not use complex numbers in range tolerance problems" -msgstr "范围公差类型的问题不可以使用复数" - -#. Translators: This is an error message for a math problem. If the instructor -#. provided a -#. boundary (end limit) for a variable that is a complex number (a + bi), this -#. message displays. -#: common/lib/capa/capa/responsetypes.py -msgid "" -"There was a problem with the staff answer to this problem: complex boundary." -msgstr "工作人员对此问题的解答存在问题:复杂边界。" - -#. Translators: This is an error message for a math problem. If the instructor -#. did not -#. provide a boundary (end limit) for a variable, this message displays. -#: common/lib/capa/capa/responsetypes.py -msgid "" -"There was a problem with the staff answer to this problem: empty boundary." -msgstr "工作人员对此问题的解答存在问题:边界未设置。" - -#. Translators: Separator used in NumericalResponse to display multiple -#. answers. -#. Translators: Separator used in StringResponse to display multiple answers. -#. Example: "Answer: Answer_1 or Answer_2 or Answer_3". -#: common/lib/capa/capa/responsetypes.py common/lib/capa/capa/responsetypes.py -msgid "or" -msgstr "或者" - -#: common/lib/capa/capa/responsetypes.py -msgid "Text Input" -msgstr "文本输入" - -#: common/lib/capa/capa/responsetypes.py -msgid "error" -msgstr "错误" - -#: common/lib/capa/capa/responsetypes.py -msgid "Custom Evaluated Script" -msgstr "自定义评估脚本" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "error getting student answer from {student_answers}" -msgstr "获取学生答案 {student_answers} 时发生错误" - -#: common/lib/capa/capa/responsetypes.py -msgid "No answer entered!" -msgstr "没有输入答案!" - -#: common/lib/capa/capa/responsetypes.py -msgid "CustomResponse: check function returned an invalid dictionary!" -msgstr "客户端响应:检查函数返回无效字典!" - -#: common/lib/capa/capa/responsetypes.py -msgid "Symbolic Math Input" -msgstr "数学符号输入" - -#. Translators: 'SymbolicResponse' is a problem type and should not be -#. translated. -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "An error occurred with SymbolicResponse. The error was: {error_msg}" -msgstr "SymbolicResponse时发生一个错误。错误描述: {error_msg}" - -#: common/lib/capa/capa/responsetypes.py -msgid "Code Input" -msgstr "代码输入" - -#: common/lib/capa/capa/responsetypes.py -msgid "No answer provided." -msgstr "未提供答案。" - -#: common/lib/capa/capa/responsetypes.py -msgid "Error: No grader has been set up for this problem." -msgstr "错误:未设立该问题的评分者" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "" -"Unable to deliver your submission to grader (Reason: {error_msg}). Please " -"try again later." -msgstr "无法将您的提交答案发送给评分者 (原因:{error_msg})。 请稍后重试。" - -#. Translators: 'grader' refers to the edX automatic code grader. -#: common/lib/capa/capa/responsetypes.py -msgid "Invalid grader reply. Please contact the course staff." -msgstr "无效评分回复。请联系课程工作人员。" - -#: common/lib/capa/capa/responsetypes.py -msgid "External Grader" -msgstr "外部评分者" - -#: common/lib/capa/capa/responsetypes.py -msgid "Math Expression Input" -msgstr "数学表达式输入" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "" -"Factorial function not permitted in answer for this problem. Provided answer" -" was: {bad_input}" -msgstr "此题目的作答不允许使用阶乘函数,可使用:{bad_input}" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Invalid input: Could not parse '{bad_input}' as a formula." -msgstr "无效输入:无法将'{bad_input}'解析为公式。" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Invalid input: Could not parse '{bad_input}' as a formula" -msgstr "无效输入:无法将'{bad_input}'解析为一个公式" - -#: common/lib/capa/capa/responsetypes.py -msgid "Circuit Schematic Builder" -msgstr "电路原理图生成器" - -#. Translators: 'SchematicResponse' is a problem type and should not be -#. translated. -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" -msgstr "评估SchematicResponse出错。错误为: {error_msg}" - -#: common/lib/capa/capa/responsetypes.py -msgid "Image Mapped Input" -msgstr "热点图片输入" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "error grading {image_input_id} (input={user_input})" -msgstr "评分出错 {image_input_id} (input={user_input})" - -#. Translators: {sr_coords} are the coordinates of a rectangle -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Error in problem specification! Cannot parse rectangle in {sr_coords}" -msgstr "问题说明中存在错误!在 {sr_coords} 中无法解析出矩形" - -#: common/lib/capa/capa/responsetypes.py -msgid "Annotation Input" -msgstr "批注输入" - -#: common/lib/capa/capa/responsetypes.py -msgid "Checkboxes With Text Input" -msgstr "文本输入复选框" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Answer not provided for {input_type}" -msgstr "未提供 {input_type}的解决方案" - -#: common/lib/capa/capa/responsetypes.py -msgid "The Staff answer could not be interpreted as a number." -msgstr "工作人员的大幅无法被解析为一个数字。" - -#: common/lib/capa/capa/responsetypes.py -#, python-brace-format -msgid "Could not interpret '{given_answer}' as a number." -msgstr "无法将'{given_answer}'解析为一个数字。" - -#: common/lib/xmodule/xmodule/annotatable_module.py -msgid "XML data for the annotation" -msgstr "用于批注的XML数据" - -#: common/lib/xmodule/xmodule/annotatable_module.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/conditional_module.py -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/library_content_module.py -#: common/lib/xmodule/xmodule/library_root_xblock.py -#: common/lib/xmodule/xmodule/poll_module.py -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -#: common/lib/xmodule/xmodule/word_cloud_module.py -#: common/lib/xmodule/xmodule/x_module.py -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "The display name for this component." -msgstr "组件显示的名称。" - -#: common/lib/xmodule/xmodule/annotatable_module.py -msgid "Annotation" -msgstr "批注" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Blank Advanced Problem" -msgstr "空白进阶问题" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Number of attempts taken by the student on this problem" -msgstr "学生尝试解答这个问题的次数" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Maximum Attempts" -msgstr "最大尝试次数" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Defines the number of times a student can try to answer this problem. If the" -" value is not set, infinite attempts are allowed." -msgstr "定义学生在回答这个问题时所允许的尝试次数。如果未设置,则允许无限次尝试。" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Date that this problem is due by" -msgstr "问题的截至日期为" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Amount of time after the due date that submissions will be accepted" -msgstr "超过截止日期后仍接受提交作业的时间段 " - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Show Results" -msgstr "显示结果" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Defines when to show whether a learner's answer to the problem is correct. " -"Configured on the subsection." -msgstr "设置显示学员答案是否正确的时间。在“节”中设置。" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Always" -msgstr "总是" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Never" -msgstr "从不" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Past Due" -msgstr "超过截止日期" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Show Answer" -msgstr "显示答案" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Defines when to show the answer to the problem. A default value can be set " -"in Advanced Settings." -msgstr "定义何时显示问题的答案,默认值可在高级设置里设定。" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Answered" -msgstr "已回答" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Attempted" -msgstr "已尝试" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Closed" -msgstr "已关闭" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Finished" -msgstr "已完成" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Correct or Past Due" -msgstr "正确或超过截止日期" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Whether to force the save button to appear on the page" -msgstr "是否强制显示保存按钮" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Show Reset Button" -msgstr "显示重置按钮" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Determines whether a 'Reset' button is shown so the user may reset their " -"answer. A default value can be set in Advanced Settings." -msgstr "决定是否显示“重置”键,以便用户重新填写他们的答案。 默认设置可以在“高级设置”中进行。" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Randomization" -msgstr "随机化" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Defines when to randomize the variables specified in the associated Python " -"script. For problems that do not randomize values, specify \"Never\". " -msgstr "定义何时随机化Python脚本中的变量。如果不需要随机化的变量,请选择“从不”。" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "On Reset" -msgstr "在重置时" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Per Student" -msgstr "每学生" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "XML data for the problem" -msgstr "问题的XML数据" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Dictionary with the correctness of current student answers" -msgstr "当前学生答案正确性词典" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Dictionary for maintaining the state of inputtypes" -msgstr "维护状态的输入类型词典" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Dictionary with the current student responses" -msgstr "当前学生的回应词典" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Dictionary with the current student score" -msgstr "带当前学生分数的字典" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Whether or not the answers have been saved since last submit" -msgstr "上次提交的答案是否已保存" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Whether the student has answered the problem" -msgstr "学生是否已经回答问题" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Random seed for this student" -msgstr "该学生的随机名次" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Last submission time" -msgstr "最后提交时间" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Timer Between Attempts" -msgstr "两次尝试答题间计时" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Seconds a student must wait between submissions for a problem with multiple " -"attempts." -msgstr "一个学生再次尝试答题前需等待的时间" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Problem Weight" -msgstr "问题权重" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Defines the number of points each problem is worth. If the value is not set," -" each response field in the problem is worth one point." -msgstr "设置每个问题的分值。如果不设置,那么问题中的每空为一分。" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Markdown source of this module" -msgstr "减记该模块资源" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Source code for LaTeX and Word problems. This feature is not well-supported." -msgstr "LaTeX及Word相关源代码问题,对该功能的支持尚不完备。" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/html_module.py -msgid "Enable LaTeX templates?" -msgstr "启用LaTeX模板?" - -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Matlab API key" -msgstr "Matlab API 密钥" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"Enter the API key provided by MathWorks for accessing the MATLAB Hosted " -"Service. This key is granted for exclusive use by this course for the " -"specified duration. Please do not share the API key with other courses and " -"notify MathWorks immediately if you believe the key is exposed or " -"compromised. To obtain a key for your course, or to report an issue, please " -"contact moocsupport@mathworks.com" -msgstr "" -"输入 " -"MATLAB讬管服务提供MathWorks公司的API密钥。这个密钥被授予通过本课程的指定时间独家使用。请不要共享的API密钥与其他课程,并立即通知MathWorks公司,如果您认为密钥被暴露或损害。为了获得一个关键的课程,或报告的问题,请联系moocsupport@mathworks.com" - -#: common/lib/xmodule/xmodule/capa_base.py -#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html -msgid "Submit" -msgstr "提交" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Submitting" -msgstr "正在提交中" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Warning: The problem has been reset to its initial state!" -msgstr "警告:这个问题已经被重置为其初始状态!" - -#. Translators: Following this message, there will be a bulleted list of -#. items. -#: common/lib/xmodule/xmodule/capa_base.py -msgid "" -"The problem's state was corrupted by an invalid submission. The submission " -"consisted of:" -msgstr "该问题的描述被一个无效的发布损坏。该发布包含:" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "If this error persists, please contact the course staff." -msgstr "如果该问题依然存在,请联系课程工作人员。" - -#. Translators: {previous_hints} is the HTML of hints that have already been -#. generated, {hint_number_prefix} -#. is a header for this hint, and {hint_text} is the text of the hint itself. -#. This string is being passed to translation only for possible reordering of -#. the placeholders. -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "{previous_hints}{list_start_tag}{strong_text}{hint_text}" -msgstr "{previous_hints}{list_start_tag}{strong_text}{hint_text}" - -#. Translators: e.g. "Hint 1 of 3: " meaning we are showing the first of three -#. hints. -#. This text is shown in bold before the accompanying hint text. -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "Hint ({hint_num} of {hints_count}): " -msgstr "提示(第 {hint_num} 个,共 {hints_count} 个):" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "" -"Your answers were previously saved. Click '{button_name}' to grade them." -msgstr "您的答案已经保存。点击{button_name}检查看分数。" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "Incorrect ({progress} point)" -msgid_plural "Incorrect ({progress} points)" -msgstr[0] "不正确 ({progress} 分)" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "Correct ({progress} point)" -msgid_plural "Correct ({progress} points)" -msgstr[0] "正确 ({progress} 分)" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "Partially correct ({progress} point)" -msgid_plural "Partially correct ({progress} points)" -msgstr[0] "部分正确 ({progress} 分)" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Partially Correct" -msgstr "部分正确" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Answer submitted." -msgstr "答案已提交。" - -#. Translators: 'closed' means the problem's due date has passed. You may no -#. longer attempt to solve the problem. -#: common/lib/xmodule/xmodule/capa_base.py -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Problem is closed." -msgstr "问题已结束。" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Problem must be reset before it can be submitted again." -msgstr "在重新检查问题之前必须把它重置。" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "You must wait at least {wait} seconds between submissions." -msgstr "在两次发布之间您至少需要等待{wait}秒。" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "" -"You must wait at least {wait_secs} between submissions. {remaining_secs} " -"remaining." -msgstr "在两次提交之间需要等待 {wait_secs} 秒。还需等待{remaining_secs}秒。" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "{num_hour} hour" -msgid_plural "{num_hour} hours" -msgstr[0] "{num_hour} 小时" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "{num_minute} minute" -msgid_plural "{num_minute} minutes" -msgstr[0] "{num_minute} 分钟" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "{num_second} second" -msgid_plural "{num_second} seconds" -msgstr[0] "{num_second} 秒钟" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Problem needs to be reset prior to save." -msgstr "问题在保存之前需要重置。" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Your answers have been saved." -msgstr "您的答案已保存。" - -#: common/lib/xmodule/xmodule/capa_base.py -#, python-brace-format -msgid "" -"Your answers have been saved but not graded. Click '{button_name}' to grade " -"them." -msgstr "您的答案已保存,点击'{button_name}'以供评分。" - -#. Translators: 'closed' means the problem's due date has passed. You may no -#. longer attempt to solve the problem. -#: common/lib/xmodule/xmodule/capa_base.py -msgid "You cannot select Reset for a problem that is closed." -msgstr "无法重置已关闭的题目。" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "You must submit an answer before you can select Reset." -msgstr "您必须先提交答案,再选择重置。" - -#. Translators: 'rescoring' refers to the act of re-submitting a student's -#. solution so it can get a new score. -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Problem's definition does not support rescoring." -msgstr "问题定义不支持重新打分。" - -#: common/lib/xmodule/xmodule/capa_base.py -msgid "Problem must be answered before it can be graded again." -msgstr "回答问题后才能够重新评定。" - -#: common/lib/xmodule/xmodule/capa_module.py -msgid "" -"We're sorry, there was an error with processing your request. Please try " -"reloading your page and trying again." -msgstr "很抱歉,在处理您的请求时出现错误。请重新加载您的页面并再次尝试操作。" - -#: common/lib/xmodule/xmodule/capa_module.py -msgid "" -"The state of this problem has changed since you loaded this page. Please " -"refresh your page." -msgstr "该问题的描述在您加载本页面之后已经发生变化了。请刷新您的页面。" - -#: common/lib/xmodule/xmodule/capa_module.py -msgid "Answer ID" -msgstr "答案ID" - -#: common/lib/xmodule/xmodule/capa_module.py -msgid "Question" -msgstr "问题" - -#: common/lib/xmodule/xmodule/capa_module.py -msgid "Correct Answer" -msgstr "正确答案" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "Conditional" -msgstr "条件" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "List of urls of children that are references to external modules" -msgstr "引用外部模块的子URL列表" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "Source Components" -msgstr "来源组件" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "" -"The component location IDs of all source components that are used to " -"determine whether a learner is shown the content of this conditional module." -" Copy the component location ID of a component from its Settings dialog in " -"Studio." -msgstr "决定学员是否可见此条件模块内容的所有源组件的组件位置ID。在Studio的设置对话框中复制此组件地址ID。" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "Conditional Attribute" -msgstr "条件属性" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "" -"The attribute of the source components that determines whether a learner is " -"shown the content of this conditional module." -msgstr "决定学员是否可见此条件模块内容的源组件的属性。" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "Conditional Value" -msgstr "条件值" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "" -"The value that the conditional attribute of the source components must match" -" before a learner is shown the content of this conditional module." -msgstr "在学员可见此条件模块内容前,源组件的条件属性必须匹配的值。" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "Blocked Content Message" -msgstr "已屏蔽内容信息" - -#: common/lib/xmodule/xmodule/conditional_module.py -#, python-brace-format -msgid "" -"The message that is shown to learners when not all conditions are met to " -"show the content of this conditional module. Include {link} in the text of " -"your message to give learners a direct link to required units. For example, " -"'You must complete {link} before you can access this unit'." -msgstr "" -"当无法满足显示此条件模块的所有条件时,则显示此条消息。在您的短信中附有获取所需单元的链接{link}。例如:“您必须先完成{link},才能访问此单元”。" - -#: common/lib/xmodule/xmodule/conditional_module.py -#, python-brace-format -msgid "You must complete {link} before you can access this unit." -msgstr "您必须先完成{link},才能访问此单元。" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "This component has no source components configured yet." -msgstr "此组件尚未配置源组件。" - -#: common/lib/xmodule/xmodule/conditional_module.py -msgid "Configure list of sources" -msgstr "配置来源列表" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "LTI Passports" -msgstr "LTI 账号" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the passports for course LTI tools in the following format: " -"\"id:client_key:client_secret\"." -msgstr "以下列格式输入课程 LTI 工具的通行证:“id:client_key:client_secret”。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"List of Textbook objects with (title, url) for textbooks used in this course" -msgstr "本课程所用教材的教材目标列表(标题、网址)" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Slug that points to the wiki for this course" -msgstr "指向该课程维基的固定链接地址" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Date that enrollment for this class is opened" -msgstr "选修该课程的日期已经开放" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Date that enrollment for this class is closed" -msgstr "选修该课程的日期已经结束" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Start time when this module is visible" -msgstr "该模块可见的起始时间" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Date that this class ends" -msgstr "该课程结束的日期" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Date that certificates become available to learners" -msgstr "学员可开始申请证书的日期" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Cosmetic Course Display Price" -msgstr "掩饰课程显示价格" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"The cost displayed to students for enrolling in the course. If a paid course" -" registration price is set by an administrator in the database, that price " -"will be displayed instead of this one." -msgstr "费用已经显示给了选修该课程的学生。如果管理员在数据库中修改了付费课程的注册价格,那么该价格将会覆盖原来的费用。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Advertised Start" -msgstr "开课的宣传时间" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the text that you want to use as the advertised starting time frame " -"for the course, such as \"Winter 2018\". If you enter null for this value, " -"the start date that you have set for this course is used." -msgstr "请输入开课的宣传时间,比如“Winter2018”。如果您输入null,则您之前已设置的开课时间会生效。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Pre-Requisite Courses" -msgstr "先修课程" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Pre-Requisite Course key if this course has a pre-requisite course" -msgstr "如果本课程有先修课程,则指定先修课程的课程标识" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Grading policy definition for this class" -msgstr "该课程的评分标准定义" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Show Calculator" -msgstr "显示计算器" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. When true, students can see the calculator in the " -"course." -msgstr "输入对或错。当输入为对时,学生可以造课程中看到计算器。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the name of the course as it should appear in the EliteMBA.cn course " -"list." -msgstr "输入应当出现在 EliteMBA.cn 课程列表中的课程名称。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Display Name" -msgstr "课程显示名字" - -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Course Editor" -msgstr "课程编辑器" - -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enter the method by which this course is edited (\"XML\" or \"Studio\")." -msgstr "输入这门课程的编辑方式(“XML”或者“Studio”)。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Survey URL" -msgstr "课程调查链接" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the URL for the end-of-course survey. If your course does not have a " -"survey, enter null." -msgstr "输入课程最终调查的链接URL。如果您的课程没有最终调查,输入null。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Discussion Blackout Dates" -msgstr "讨论管制日期" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter pairs of dates between which students cannot post to discussion " -"forums. Inside the provided brackets, enter an additional set of square " -"brackets surrounding each pair of dates you add. Format each pair of dates " -"as [\"YYYY-MM-DD\", \"YYYY-MM-DD\"]. To specify times as well as dates, " -"format each pair as [\"YYYY-MM-DDTHH:MM\", \"YYYY-MM-DDTHH:MM\"]. Be sure to" -" include the \"T\" between the date and time. For example, an entry defining" -" two blackout periods looks like this, including the outer pair of square " -"brackets: [[\"2015-09-15\", \"2015-09-21\"], [\"2015-10-01\", " -"\"2015-10-08\"]] " -msgstr "" -"输入一对日期,在此期间内不允许学生往在讨论区上发帖。请在所提供的括号之内输入日期,每一对日期应由一组方括号包围,其格式为 [\"YYYY-MM-" -"DD\", \"YYYY-MM-DD\"]。如果还需要指定时间,请使用格式 [\"YYYY-MM-DDTHH:MM\", \"YYYY-MM-" -"DDTHH:MM\"],请确保在日期和时间的中间一定要有“T”。例如,一项定义了两段禁用时期的项应该是如下列格式所示(包括了最外层的一对方括号):[[\"2015-09-15\"," -" \"2015-09-21\"], [\"2015-10-01\", \"2015-10-08\"]]" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Discussion Topic Mapping" -msgstr "讨论主题映射" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter discussion categories in the following format: \"CategoryName\": " -"{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " -"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " -"must be unique. In \"id\" values, the only special characters that are " -"supported are underscore, hyphen, and period. You can also specify a " -"category as the default for new posts in the Discussion page by setting its " -"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" -"UniversityX-MUS101-course-2015_T1\", \"default\": true}." -msgstr "" -"请按照以下格式输入讨论目录:\"课程名称\": {\"id\": \"i4x-InstitutionName-CourseNumber-course-" -"CourseRun\"}。例如:\"Lydian Mode\": {\"id\": \"i4x-UniversityX-MUS101-course-" -"2015_T1\"},其中每个目录的“id”值必须不同。“id”值的输入只支持三种特殊符号:下划线、连字符、句号。您也可以设置讨论页面的默认新帖子目录,只需设置其“默认”属性为“true”,例如:\"Lydian" -" Mode\": {\"id\": \"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": " -"true}。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Discussion Sorting Alphabetical" -msgstr "讨论排序字母" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, discussion categories and subcategories are " -"sorted alphabetically. If false, they are sorted chronologically by creation" -" date and time." -msgstr "请输入\"true\"或\"false\"。当输入\"true\"时,讨论类別和子类別会依字母排序。否则按时间顺序排序。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Announcement Date" -msgstr "课程公开日期" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter the date to announce your course." -msgstr "输入公开您课程的日期。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Cohort Configuration" -msgstr "群组配置" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter policy keys and values to enable the cohort feature, define automated " -"student assignment to groups, or identify any course-wide discussion topics " -"as private to cohort members." -msgstr "请输入策略键和值以启用群组功能、定义如何自动将学生分配到群组中、或者将任何全课程范围内的讨论主题标识为对群组成员私有的主题。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Is New" -msgstr "新课程" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, the course appears in the list of new courses " -"on EliteMBA.cn, and a New! badge temporarily appears next to the course " -"image." -msgstr "" -"输入true或者false。如果输入true,课程会出现在EliteMBA.cn的新课程列表中,并且在课程图片旁边会出现一个New!样式的临时图标。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Mobile Course Available" -msgstr "手机端可见的课程" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, the course will be available to mobile " -"devices." -msgstr "请输入真或者假,如果为真,这门课程将支持移动设备上学习" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Video Upload Credentials" -msgstr "视频上传凭据" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the unique identifier for your course's video files provided by " -"EliteMBA." -msgstr "请为EliteMBA提供给您的课程视频文件输入唯一标识符。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Not Graded" -msgstr "课程不评分" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter true or false. If true, the course will not be graded." -msgstr "输入 true 或 false。为 true 时,该课程将不会被评分。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Disable Progress Graph" -msgstr "禁用进度图表" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter true or false. If true, students cannot view the progress graph." -msgstr "输入true或者false。如果输入true,学生将不能看到进度图。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "PDF Textbooks" -msgstr "PDF 课本" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "List of dictionaries containing pdf_textbook configuration" -msgstr "字典列表包含pdf_textbook的结构" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "HTML Textbooks" -msgstr "HTML 课本" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"For HTML textbooks that appear as separate tabs in the course, enter the " -"name of the tab (usually the title of the book) as well as the URLs and " -"titles of each chapter in the book." -msgstr "对于在课程中以单独标签显示的 HTML 教材,则输入标签的名称(通常为课本的名称)以及教材每一章节的 URL 和标题。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Remote Gradebook" -msgstr "远程成绩册" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the remote gradebook mapping. Only use this setting when " -"REMOTE_GRADEBOOK_URL has been specified." -msgstr "输入远程的成绩薄映射。只使用此设置时,remote_gradebook_url已被指定。" - -#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using -#. course content. CCX Coach is -#. a role created by a course Instructor to enable a person (the "Coach") to -#. manage the custom course for -#. his students. -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enable CCX" -msgstr "启用CCX" - -#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using -#. course content. CCX Coach is -#. a role created by a course Instructor to enable a person (the "Coach") to -#. manage the custom course for -#. his students. -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Allow course instructors to assign CCX Coach roles, and allow coaches to " -"manage Custom Courses on EliteMBA. When false, Custom Courses cannot be " -"created, but existing Custom Courses will be preserved." -msgstr "" -"允许课程的主讲老师指派CCX指导角色,并允许指导们在EliteMBA上管理自定义课程。当值为“false”时,将不能创建自定义课程,但已有的自定义课程将会保留。" - -#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using -#. course content. -#: common/lib/xmodule/xmodule/course_module.py -msgid "CCX Connector URL" -msgstr "CCX Connector URL" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"URL for CCX Connector application for managing creation of CCXs. (optional)." -" Ignored unless 'Enable CCX' is set to 'true'." -msgstr "" -"URL for CCX Connector application for managing creation of CCXs. (optional)." -" Ignored unless 'Enable CCX' is set to 'true'." - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Allow Anonymous Discussion Posts" -msgstr "允许匿名讨论帖" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, students can create discussion posts that are " -"anonymous to all users." -msgstr "输入真或假。如果是真的,学生可以匿名创建讨论的帖子。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Allow Anonymous Discussion Posts to Peers" -msgstr "允许同伴间的匿名讨论帖" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, students can create discussion posts that are " -"anonymous to other students. This setting does not make posts anonymous to " -"course staff." -msgstr "输入 true 或者 false。如果输入为 true ,学生可以创建对其他学生匿名的讨论帖。这个设置不能对课程工作人员匿名发帖。" - -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/library_root_xblock.py -msgid "Advanced Module List" -msgstr "高级模块列表" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter the names of the advanced modules to use in your course." -msgstr "请输入您想要加入课程的高级模块名称。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Home Sidebar Name" -msgstr "课程主页的边栏名称" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the heading that you want students to see above your course handouts " -"on the Course Home page. Your course handouts appear in the right panel of " -"the page." -msgstr "输入您想要学生可以在课程首页看到此课程讲义的标题。您的讲义会出现在页面的右边。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Handouts" -msgstr "课程讲义" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"True if timezones should be shown on dates in the course. Deprecated in " -"favor of due_date_display_format." -msgstr "如果课程中的日期上应显示时区则正确。到期_日期_显示_格式已弃用。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Due Date Display Format" -msgstr "截止日期显示格式" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the format for due dates. The default is Mon DD, YYYY. Enter " -"\"%m-%d-%Y\" for MM-DD-YYYY, \"%d-%m-%Y\" for DD-MM-YYYY, \"%Y-%m-%d\" for " -"YYYY-MM-DD, or \"%Y-%d-%m\" for YYYY-DD-MM." -msgstr "" -"输入截止日期的格式,默认的格式是 Mon DD, YYYY。要使用 MM-DD-YYYY 格式,请输入“%m-%d-%Y”;要使用 DD-MM-" -"YYYY,请输入“%d-%m-%Y”;要使用 YYYY-MM-DD 格式,请输入“%Y-%m-%d”;要使用 YYYY-DD-MM " -"格式,请输入“%Y-%d-%m”。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "External Login Domain" -msgstr "外部登录域" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter the external login method students can use for the course." -msgstr "输入学生可参加课程的外部登陆方法。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificates Downloadable Before End" -msgstr "课程结束前可下载证书" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, students can download certificates before the " -"course ends, if they've met certificate requirements." -msgstr "输入真或假。如果是真的,学生遇到下载证书的要求,可以在课程结束前下载证书。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificates Display Behavior" -msgstr "认证演示行为" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter end, early_with_info, or early_no_info. After certificate generation, " -"students who passed see a link to their certificates on the dashboard and " -"students who did not pass see information about the grading configuration. " -"The default is end, which displays this certificate information to all " -"students after the course end date. To display this certificate information " -"to all students as soon as certificates are generated, enter " -"early_with_info. To display only the links to passing students as soon as " -"certificates are generated, enter early_no_info." -msgstr "" -"输入“end”、“early_with_info”或“early_no_info”。在证书生成后,所有通过考核的学生们会在他们的课程面板上看到证书的链接,而没有通过的学生则会看到关于成绩配置的信息。默认值是“end”,即在课程结束日期之后向所有学生显示证书信息。如果希望在证书生成后尽快让所有学生看到证书信息,请输入“early_with_info”。而如果只是希望在证书生成后尽快向已经通过的学生显示链接,请输入“early_no_info”。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course About Page Image" -msgstr "课程介绍页面图片" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Edit the name of the course image file. You must upload this file on the " -"Files & Uploads page. You can also set the course image on the Settings & " -"Details page." -msgstr "" -"编辑课程图片文件的名字。您必须在Files & Uploads页面上传这个文件。您也可以在 Settings & Details页面设置课程图片。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Banner Image" -msgstr "课程图标" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Edit the name of the banner image file. You can set the banner image on the " -"Settings & Details page." -msgstr "编辑横幅图片文件名称。您可以在设置&详情页面对横幅图片进行设置。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Video Thumbnail Image" -msgstr "课程视频缩略图" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Edit the name of the video thumbnail image file. You can set the video " -"thumbnail image on the Settings & Details page." -msgstr "编辑视频缩略图文件名称。您可以在设置&详情页面对视频缩略图进行设置。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Issue Open Badges" -msgstr "颁发徽章" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Issue Open Badges badges for this course. Badges are generated when " -"certificates are created." -msgstr "为该课程颁发徽章。徽章在证书创建的时候已经生成了。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Use this setting only when generating PDF certificates. Between quotation " -"marks, enter the short name of the type of certificate that students receive" -" when they complete the course. For instance, \"Certificate\"." -msgstr "" -"只有在要产生证书的PDF档时,才使用这项设定。当学生完成课程所获得的证书,在引文标号中间输入 证书类型简称於学生证书上。例如,“修课证明”。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificate Name (Short)" -msgstr "证书名称(短)" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Use this setting only when generating PDF certificates. Between quotation " -"marks, enter the long name of the type of certificate that students receive " -"when they complete the course. For instance, \"Certificate of Achievement\"." -msgstr "" -"只有在要产生证书的PDF档时,才使用这项设定。当学生完成课程所获得的证书,在引文标号中间输入 证书类型全名於学生证书上。例如,“成绩证书”。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificate Name (Long)" -msgstr "证书名称(长)" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificate Web/HTML View Enabled" -msgstr "启用证书的Web/HTML视图" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "If true, certificate Web/HTML views are enabled for the course." -msgstr "若为“true”,将会启用课程证书的Web/HTML视图。" - -#. Translators: This field is the container for course-specific certificate -#. configuration values -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificate Web/HTML View Overrides" -msgstr "证书 Web/HTML View Overrides" - -#. Translators: These overrides allow for an alternative configuration of the -#. certificate web view -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter course-specific overrides for the Web/HTML template parameters here " -"(JSON format)" -msgstr "为网页模板参数输入课程指定的接口(JSON格式)" - -#. Translators: This field is the container for course-specific certificate -#. configuration values -#: common/lib/xmodule/xmodule/course_module.py -msgid "Certificate Configuration" -msgstr "证书配置" - -#. Translators: These overrides allow for an alternative configuration of the -#. certificate web view -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter course-specific configuration information here (JSON format)" -msgstr "在这里输入课程指定的配置信息(JSON格式)" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "CSS Class for Course Reruns" -msgstr "重新开课的 CSS 类" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Allows courses to share the same css class across runs even if they have " -"different numbers." -msgstr "即使他们有不同的数字,也可以允许课程在运行过程中共享相同的CSS类。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Discussion Forum External Link" -msgstr "讨论区的外部链接" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Allows specification of an external link to replace discussion forums." -msgstr "允许更换论坛外部链接规范。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Hide Progress Tab" -msgstr "隐藏进度页面" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Allows hiding of the progress tab." -msgstr "允许进程选项卡隐藏。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Organization Display String" -msgstr "课程所属机构的显示名称" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the course organization that you want to appear in the course. This " -"setting overrides the organization that you entered when you created the " -"course. To use the organization that you entered when you created the " -"course, enter null." -msgstr "输入您想在课程中出现的课程安排。此设置将覆盖您在创建课程时输入的课程安排。要使用您在创建课程时输入的课程安排,请输入空值。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Number Display String" -msgstr "课程编号的显示名称" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the course number that you want to appear in the course. This setting " -"overrides the course number that you entered when you created the course. To" -" use the course number that you entered when you created the course, enter " -"null." -msgstr "输入您想在课程中出现的课程编号。此设置将覆盖您在创建课程时输入的课程编号。要使用您在创建课程时输入的课程编号,请输入空值。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Maximum Student Enrollment" -msgstr "最大选课学生人数" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter the maximum number of students that can enroll in the course. To allow" -" an unlimited number of students, enter null." -msgstr "输入该课程的最大选课学生人数;如无限制,输入null。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Allow Public Wiki Access" -msgstr "允许公共 Wiki 访问" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, EliteMBA users can view the course wiki even " -"if they're not enrolled in the course." -msgstr "输入true或false。如果为true,EliteMBA用户即使未选修该课程也可以查看课程Wiki 。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Invitation Only" -msgstr "仅限受邀者" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Whether to restrict enrollment to invitation by the course staff." -msgstr "是否限制注册仅能透过课程工作人员邀请。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Pre-Course Survey Name" -msgstr "课前调查名称" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Name of SurveyForm to display as a pre-course survey to the user." -msgstr "用以显示的调查表(用户的先修课程调查)名称" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Pre-Course Survey Required" -msgstr "开课前需要填写调查问卷" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Specify whether students must complete a survey before they can view your " -"course content. If you set this value to true, you must add a name for the " -"survey to the Course Survey Name setting above." -msgstr "指定学生在查看您的课程内容之前是否必须完成一项调查。如果您设置该值为true,那么您必须在以上的课程调查名称设置中为该调查添加一个名称。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Visibility In Catalog" -msgstr "目录中课程可见性" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Defines the access permissions for showing the course in the course catalog." -" This can be set to one of three values: 'both' (show in catalog and allow " -"access to about page), 'about' (only allow access to about page), 'none' (do" -" not show in catalog and do not allow access to an about page)." -msgstr "" -"定义在课程目录中的显示课程的访问权限。可以设置为以下三个值的其中之一:“both”(在目录中显示且允许访问关于此页),“about”(只允许访问关于此页),“none”(不在目录中显示且不允许访问关于此页)。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Both" -msgstr "两者都" - -#: common/lib/xmodule/xmodule/course_module.py lms/djangoapps/branding/api.py -#: lms/djangoapps/branding/api.py -msgid "About" -msgstr "关于我们" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "None" -msgstr "无" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Entrance Exam Enabled" -msgstr "入学考试开启" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Specify whether students must complete an entrance exam before they can view" -" your course content. Note, you must enable Entrance Exams for this course " -"setting to take effect." -msgstr "指定是否学生在浏览您的课程内容前必须完成一个入学考试。注意,您必须烤漆此课程设置的入学考试以便此设置起作用。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Entrance Exam Minimum Score (%)" -msgstr "入学考试最小分数(%)" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Specify a minimum percentage score for an entrance exam before students can " -"view your course content. Note, you must enable Entrance Exams for this " -"course setting to take effect." -msgstr "为学生能浏览您的课程前的入学考试定义一个的最小的百分比分数。注意,您必须开启此课程设置的入学考试以便此设置起作用。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Entrance Exam ID" -msgstr "入学考试ID" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Content module identifier (location) of entrance exam." -msgstr "入学考试内容模块标识符(位置)" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Social Media Sharing URL" -msgstr "社交媒体分享URL" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"If dashboard social sharing and custom course URLs are enabled, you can " -"provide a URL (such as the URL to a course About page) that social media " -"sites can link to. URLs must be fully qualified. For example: " -"http://www.edx.org/course/Introduction-to-MOOCs-ITM001" -msgstr "" -"若启动了课程面板的社交分享和自定义课程的URL功能,您则可以提供一个可链接社交媒体的URL(例如课程“关于此页”的URL)。所用的URL是完全规范合法的,例如:http://www.edx.org/course" -"/Introduction-to-MOOCs-ITM001" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Language" -msgstr "课程语言" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Specify the language of your course." -msgstr "指定您的课程语言。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Teams Configuration" -msgstr "团队配置" - -#: common/lib/xmodule/xmodule/course_module.py -#, python-brace-format -msgid "" -"Specify the maximum team size and topics for teams inside the provided set " -"of curly braces. Make sure that you enclose all of the sets of topic values " -"within a set of square brackets, with a comma after the closing curly brace " -"for each topic, and another comma after the closing square brackets. For " -"example, to specify that teams should have a maximum of 5 participants and " -"provide a list of 2 topics, enter the configuration in this format: " -"{example_format}. In \"id\" values, the only supported special characters " -"are underscore, hyphen, and period." -msgstr "" -"将指定最大规模的团队和主题放置于大括号内。请确认您所有主题字段皆放置于中括号之内,每个主题大括号后加注逗号,而另一个逗号放加於中括号后。例如,指定团队应该最多5人为限,并提供2个主题,以这种形式进入配置" -" {example_format}。 \"id\"字段只支援特定符合,包括底线、破折号及句点。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enable Proctored Exams" -msgstr "启用监考考试" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If this value is true, proctored exams are enabled in " -"your course. Note that enabling proctored exams will also enable timed " -"exams." -msgstr "输入 true 或 false。如果该值为true,监考的考试是在您的课程启用。请注意,使监考考试也将启动 限时考试。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Allow Opting Out of Proctored Exams" -msgstr "允许在监考下退出考试" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If this value is true, learners can choose to take " -"proctored exams without proctoring. If this value is false, all learners " -"must take the exam with proctoring. This setting only applies if proctored " -"exams are enabled for the course." -msgstr "" -"请输入“true”或“false”。如果输入“true”,那么学员可以选择关掉监考模式。如果输入“false”,那么学员无法关掉监考模式。此设置仅适用于已启动监考模式的课程。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Create Zendesk Tickets For Suspicious Proctored Exam Attempts" -msgstr "对有作弊嫌疑的考试创建Zendesk记录" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If this value is true, a Zendesk ticket will be created" -" for suspicious attempts." -msgstr "输入“true”或“false”。如果输入“true”,那么会对有作弊嫌疑的考试创建Zendesk记录。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enable Timed Exams" -msgstr "启用限时考试" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If this value is true, timed exams are enabled in your " -"course. Regardless of this setting, timed exams are enabled if Enable " -"Proctored Exams is set to true." -msgstr "" -"输入“true”或“false”。如果输入“true”,课程会开启限时考试模式。如果监考模式值设成“true”,那么无论此选项如何设置,限时考试模式都会开启。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Minimum Grade for Credit" -msgstr "能够获取学分的最低分" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"The minimum grade that a learner must earn to receive credit in the course, " -"as a decimal between 0.0 and 1.0. For example, for 75%, enter 0.75." -msgstr "" -"最低分,是指学员在课程中为获得学分必须取得的分数,是一个0.0到\n" -"1.0的十进制数。例如:75%,则输入0.75。" - -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Self Paced" -msgstr "自定进度" - -#: common/lib/xmodule/xmodule/course_module.py -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Set this to \"true\" to mark this course as self-paced. Self-paced courses " -"do not have due dates for assignments, and students can progress through the" -" course at any rate before the course ends." -msgstr "将其设置为“true”,以设定这门课程为自学课程,没有截止日期的作业,学生可以在任何速度在课程结束之前进行学习。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Bypass Course Home" -msgstr "跳过课程主页" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Bypass the course home tab when students arrive from the dashboard, sending " -"them directly to course content." -msgstr "当学生从仪表板进入时跳过课程主页选项卡,让他们直接跳转到课程目录。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enable Subsection Prerequisites" -msgstr "可分段先修之要求" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If this value is true, you can hide a subsection until " -"learners earn a minimum score in another, prerequisite subsection." -msgstr "输入 true 或 false。如果该值为 true,您可以隐藏某分段,直到学习者获得最低分数为止。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Learning Information" -msgstr "课程学习信息" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Specify what student can learn from the course." -msgstr "请设置课程教学细节。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Course Instructor" -msgstr "课程导师" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Enter the details for Course Instructor" -msgstr "请输入授课老师详细信息" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Add Unsupported Problems and Tools" -msgstr "添加不支持的题目和工具" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, you can add unsupported problems and tools to " -"your course in Studio. Unsupported problems and tools are not recommended " -"for use in courses due to non-compliance with one or more of the base " -"requirements, such as testing, accessibility, internationalization, and " -"documentation." -msgstr "" -"请输入“true”或“false”。如果您输入“true”,那么可以在Studio中将不支持的题目和工具添加至课程中。由于与测试、公开权限、国际化和文件归档等基础要求相抵触,所以不推荐在课程中使用不支持的题目和工具。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Highlights Enabled for Messaging" -msgstr "启用消息通知重点内容" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Enter true or false. If true, any highlights associated with content in the " -"course will be messaged to learners at their scheduled time." -msgstr "请输入“true”或“false”,如果输入“true”,那么任何与课程内容有关的标亮内容都将会在学员的规定时间内被发送给学员。" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "Other Course Settings" -msgstr "课程其他设置" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "" -"Any additional information about the course that the platform needs or that " -"allows integration with external systems such as CRM software. Enter a " -"dictionary of values in JSON format, such as { \"my_custom_setting\": " -"\"value\", \"other_setting\": \"value\" }" -msgstr "" -"平台需要的课程或允许与CRM软件等外部系统集成的任何额外信息。输入JSON格式的值字典,例如{ \"my_custom_setting\": " -"\"value\", \"other_setting\": \"value\" }" - -#: common/lib/xmodule/xmodule/course_module.py -msgid "General" -msgstr "一般" - -#: common/lib/xmodule/xmodule/graders.py -#, python-brace-format -msgid "{assignment_type} = {weighted_percent:.2%} of a possible {weight:.2%}" -msgstr "{assignment_type} = {weighted_percent:.2%} of a possible {weight:.2%}" - -#: common/lib/xmodule/xmodule/graders.py -msgid "Generated" -msgstr "已生成" - -#. Translators: "Homework 1 - Unreleased - 0% (?/?)" The section has not been -#. released for viewing. -#: common/lib/xmodule/xmodule/graders.py -#, python-brace-format -msgid "{section_type} {index} Unreleased - 0% (?/?)" -msgstr "{section_type} {index} 未公开 - 0% (?/?)" - -#: common/lib/xmodule/xmodule/graders.py -#, python-brace-format -msgid "The lowest {drop_count} {section_type} scores are dropped." -msgstr "最低{drop_count} {section_type}分的科目会被弃用。" - -#. Translators: "Homework Average = 0%" -#: common/lib/xmodule/xmodule/graders.py -#, python-brace-format -msgid "{section_type} Average = {percent:.0%}" -msgstr "{section_type} 平均分 = {percent:.0%}" - -#. Translators: Avg is short for Average -#: common/lib/xmodule/xmodule/graders.py -#, python-brace-format -msgid "{short_label} Avg" -msgstr "{short_label} 平均分" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "Text" -msgstr "文本" - -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py -#: common/lib/xmodule/xmodule/html_module.py -msgid "Html contents to display for this module" -msgstr "本模块显示Html的内容" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "Source code for LaTeX documents. This feature is not well-supported." -msgstr "此功能不支持LaTeX文件的源代码。" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "" -"Select Visual to enter content and have the editor automatically create the " -"HTML. Select Raw to edit HTML directly. If you change this setting, you must" -" save the component and then re-open it for editing." -msgstr "" -"选择“可视化”时,您只需输入内容,编辑器将生成相应的 HTML 代码。选择“代码”时,您可以直接编辑 HTML " -"代码。如果您改变了该设置,则该设置将在您保存并重新打开编辑器才生效。" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "Editor" -msgstr "编辑器" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "Visual" -msgstr "可视化" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "Raw" -msgstr "代码" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "Hide Page From Learners" -msgstr "对所有学生隐藏这一页" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "" -"If you select this option, only course team members with the Staff or Admin " -"role see this page." -msgstr "如果您勾选此选项,那么只有员工或管理员身份的课程团队成员才能浏览此界面。" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "HTML for the additional pages" -msgstr "额外的HTML页面" - -#: common/lib/xmodule/xmodule/html_module.py -msgid "List of course update items" -msgstr "更新课程项目列表" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Any Type" -msgstr "任意类型" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Library" -msgstr "知识库" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Select the library from which you want to draw content." -msgstr "选择您想要从中拉取内容的知识库。" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Library Version" -msgstr "知识库版本" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Determines how content is drawn from the library" -msgstr "确定内容如何被从知识库中拉取" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Choose n at random" -msgstr "随机选择一个数字n" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Count" -msgstr "计算" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Enter the number of components to display to each student." -msgstr "输入显示给每个学生的组件数量。" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Problem Type" -msgstr "问题类型" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "" -"Choose a problem type to fetch from the library. If \"Any Type\" is selected" -" no filtering is applied." -msgstr "选择一个要从知识库中获取的问题类型,如果选择了“任意类型”,则不应用任何筛选。" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "This component is out of date. The library has new content." -msgstr "该组件已过时。知识库有新的内容。" - -#. Translators: {refresh_icon} placeholder is substituted to "↻" (without -#. double quotes) -#: common/lib/xmodule/xmodule/library_content_module.py -#, python-brace-format -msgid "{refresh_icon} Update now." -msgstr "{refresh_icon} 立即更新。" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Library is invalid, corrupt, or has been deleted." -msgstr "知识库无效,损坏或已经被删除。" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Edit Library List." -msgstr "编辑库列表。" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "" -"This course does not support content libraries. Contact your system " -"administrator for more information." -msgstr "此课程不支持内容库。联系您的系统管理员以获得更多信息。" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "A library has not yet been selected." -msgstr "未选择一个知识库。" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Select a Library." -msgstr "选择一个知识库。" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "There are no matching problem types in the specified libraries." -msgstr "指定知识库中没有匹配的问题类型。" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Select another problem type." -msgstr "选择其他问题类型。" - -#: common/lib/xmodule/xmodule/library_content_module.py -#, python-brace-format -msgid "The specified library is configured to fetch {count} problem, " -msgid_plural "The specified library is configured to fetch {count} problems, " -msgstr[0] "此专用库旨在用于取回 {count} 个问题," - -#: common/lib/xmodule/xmodule/library_content_module.py -#, python-brace-format -msgid "but there is only {actual} matching problem." -msgid_plural "but there are only {actual} matching problems." -msgstr[0] "但仅有 {actual} 个匹配问题。" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Edit the library configuration." -msgstr "编辑知识库配置。" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "Invalid Library" -msgstr "无效的知识库" - -#: common/lib/xmodule/xmodule/library_content_module.py -msgid "No Library Selected" -msgstr "未选择知识库" - -#: common/lib/xmodule/xmodule/library_root_xblock.py -msgid "Library Display Name" -msgstr "知识库显示名称" - -#: common/lib/xmodule/xmodule/library_root_xblock.py -msgid "Enter the names of the advanced components to use in your library." -msgstr "输入在您的知识库中使用的高级组件的名字。" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"The display name for this component. Analytics reports may also use the " -"display name to identify this component." -msgstr "此组件的显示名称,分析报告也可使用该名称来识别此组件。" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "LTI ID" -msgstr "LTI ID" - -#: common/lib/xmodule/xmodule/lti_module.py -#, python-brace-format -msgid "" -"Enter the LTI ID for the external LTI provider. This value must be the same" -" LTI ID that you entered in the LTI Passports setting on the Advanced " -"Settings page.
    See {docs_anchor_open}the edX LTI " -"documentation{anchor_close} for more details on this setting." -msgstr "" -"输入外部LTI提供商提供的LTI编号。该值必须和您的LTI账号里高级设置里的LTI编号相同。
    关于该设置的更多信息请访问 " -"{docs_anchor_open}LTI 文档{anchor_close} " - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "LTI URL" -msgstr "LTI URL" - -#: common/lib/xmodule/xmodule/lti_module.py -#, python-brace-format -msgid "" -"Enter the URL of the external tool that this component launches. This " -"setting is only used when Hide External Tool is set to False.
    See " -"{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " -"on this setting." -msgstr "" -"输入启动该组件的外部工具的URL。这个设置只有在“隐藏外部工具”为False时才能使用。
    关于该设置的更多信息请访问{docs_anchor_open}edX LTI文档{anchor_close}。" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Custom Parameters" -msgstr "自定义参数" - -#: common/lib/xmodule/xmodule/lti_module.py -#, python-brace-format -msgid "" -"Add the key/value pair for any custom parameters, such as the page your " -"e-book should open to or the background color for this component.
    See " -"{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " -"on this setting." -msgstr "" -"任意自定义的参数都要添加键/值且成对,例如您要打开的电子书的页面或者这个组件的背景颜色。
    这项设置的更多信息请查看{docs_anchor_open}edX LTI文档{anchor_close} " - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Open in New Page" -msgstr "在新的窗口打开" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Select True if you want students to click a link that opens the LTI tool in " -"a new window. Select False if you want the LTI content to open in an IFrame " -"in the current page. This setting is only used when Hide External Tool is " -"set to False. " -msgstr "" -"如果您想要学生通过点击一个链接在一个新窗口中打开LTI工具,选择True。如果您想要在当前页面的一个IFrame中打开LTI内容,选择False。这个设置只有在" -" 隐藏外部工具 设置为False的时候才能使用。" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Scored" -msgstr "可评分" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Select True if this component will receive a numerical score from the " -"external LTI system." -msgstr "如果允许该组件接收来自外部的LTI系统的数值分数请选择True。" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Weight" -msgstr "权重" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Enter the number of points possible for this component. The default value " -"is 1.0. This setting is only used when Scored is set to True." -msgstr "输入该组件可能的分数,默认值为 1.0。该设置仅在“可评分”设置为true的时候才有用。" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"The score kept in the xblock KVS -- duplicate of the published score in " -"django DB" -msgstr "分数保存在xblock KVS中——已公布分数的分本存储在django数据库中" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Comment as returned from grader, LTI2.0 spec" -msgstr "Comment as returned from grader, LTI2.0 spec" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Hide External Tool" -msgstr "隐藏扩展工具" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Select True if you want to use this component as a placeholder for syncing " -"with an external grading system rather than launch an external tool. This " -"setting hides the Launch button and any IFrames for this component." -msgstr "" -"若您想要使用该组件作为一个与外部评分系统同步的占位符,而不是启动一个外部工具,则设该值为Ture。该设置会隐藏启动按钮和该组件的任何内联框架。" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Request user's username" -msgstr "需要用户名" - -#. Translators: This is used to request the user's username for a third party -#. service. -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Select True to request the user's username." -msgstr "选择True 以要求用户的用户名 username。" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Request user's email" -msgstr "需要用户邮箱" - -#. Translators: This is used to request the user's email for a third party -#. service. -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Select True to request the user's email address." -msgstr "选择True 以要求用户的电子邮件地址。" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "LTI Application Information" -msgstr "LTI应用信息" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Enter a description of the third party application. If requesting username " -"and/or email, use this text box to inform users why their username and/or " -"email will be forwarded to a third party application." -msgstr "输入第三方应用程序的描述。用来告诉用户为什么第三方应用程序需要用户的用户名及E-mail。" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Button Text" -msgstr "按钮文本" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Enter the text on the button used to launch the third party application." -msgstr "输入按钮上的文字用于加载第三方应用。" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "Accept grades past deadline" -msgstr "接受超过限期的成绩" - -#: common/lib/xmodule/xmodule/lti_module.py -msgid "" -"Select True to allow third party systems to post grades past the deadline." -msgstr "请选择“True”以同意第三方系统在截止日期之后发布成绩。" - -#: common/lib/xmodule/xmodule/lti_module.py -#, python-brace-format -msgid "" -"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " -"string." -msgstr "无法解析自定义参数:{custom_parameter}。参数格式必须类似于“x=y”。" - -#: common/lib/xmodule/xmodule/lti_module.py -#, python-brace-format -msgid "" -"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " -"string." -msgstr "无法解析LTI通行证:{lti_passport},这应当是一个由“id:key:secret”构成的字符串。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Due Date" -msgstr "截止日期" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enter the default date by which problems are due." -msgstr "输入问题的默认截止日期。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -#: lms/djangoapps/lms_xblock/mixin.py -msgid "If true, can be seen only by course staff, regardless of start date." -msgstr "如果为真,则无论开始日期为何时都只能被课程员工看到。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "GIT URL" -msgstr "GIT URL" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enter the URL for the course data GIT repository." -msgstr "为课程数据GIT仓库输入URL" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "XQA Key" -msgstr "XQA 密钥" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "This setting is not currently supported." -msgstr "当前不支持此设置。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enter the ids for the content groups this problem belongs to." -msgstr "输入这个问题所属的内容组的编号。" - -#. Translators: DO NOT translate the words in quotes here, they are -#. specific words for the acceptable values. -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Specify when the Show Answer button appears for each problem. Valid values " -"are \"always\", \"answered\", \"attempted\", \"closed\", \"finished\", " -"\"past_due\", \"correct_or_past_due\", and \"never\"." -msgstr "" -"在每个问题中何时出现显示答案按钮,有效值是:“always”,“answered”,“attempted”,“closed”,“finished”,“past_due”," -" \"correct_or_past_due\"和“never”。" - -#. Translators: DO NOT translate the words in quotes here, they are -#. specific words for the acceptable values. -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Specify when to show answer correctness and score to learners. Valid values " -"are \"always\", \"never\", and \"past_due\"." -msgstr "请设置显示答案是否正确和分数的方式。有效值为\"always\"、\"never\"和\"past_due\"。" - -#. Translators: DO NOT translate the words in quotes here, they are -#. specific words for the acceptable values. -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Specify the default for how often variable values in a problem are " -"randomized. This setting should be set to \"never\" unless you plan to " -"provide a Python script to identify and randomize values in most of the " -"problems in your course. Valid values are \"always\", \"onreset\", " -"\"never\", and \"per_student\"." -msgstr "" -"指定隐含变量值多久会发生问题是采随机系统默认。此设定应设为“从不”,除非您打算提供一个Python script " -"来随机辨识您的课程中大部分问题。有效字段为“永远”,“当reset 时”,“从不”,以及“每名学生”。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Days Early for Beta Users" -msgstr "Beta 测试用户提前访问天数" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter the number of days before the start date that beta users can access " -"the course." -msgstr "输入课程测试员可以提前访问课程的天数。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Static Asset Path" -msgstr "静态资源路径" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter the path to use for files on the Files & Uploads page. This value " -"overrides the Studio default, c4x://." -msgstr "请输入要使用的文件&上传页面中文件的路径。这将覆盖 Studio 的默认值(c4x:// 格式)。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enable LaTeX Compiler" -msgstr "启用 LaTeX 编译器" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter true or false. If true, you can use the LaTeX templates for HTML " -"components and advanced Problem components." -msgstr "请输入 true 或者 false ,当输入为 true 时,您可以使用 LaTeX 编辑器,编辑 HTML 模块和问题模块。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter the maximum number of times a student can try to answer problems. By " -"default, Maximum Attempts is set to null, meaning that students have an " -"unlimited number of attempts for problems. You can override this course-wide" -" setting for individual problems. However, if the course-wide setting is a " -"specific number, you cannot set the Maximum Attempts for individual problems" -" to unlimited." -msgstr "" -"请输入学生可以尝试回答问题的最大次数。最大尝试次数默认被设置为null,也就是说学生可以无限制的尝试回答问题。对于不同的问题您可以设置不同的回答次数限制。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter the API key provided by MathWorks for accessing the MATLAB Hosted " -"Service. This key is granted for exclusive use in this course for the " -"specified duration. Do not share the API key with other courses. Notify " -"MathWorks immediately if you believe the key is exposed or compromised. To " -"obtain a key for your course, or to report an issue, please contact " -"moocsupport@mathworks.com" -msgstr "" -"请输入由 MathWorks 提供的、用于访问 MATLAB 宿主服务的 API Key 。请保证该 API Key " -"在指定的一段时间内由本课程独占使用,不要与其他课程共享该 API Key 。如果您确认 API Key 泄露或受损,请立刻通知 MathWorks " -"。要为您的课程获取 API Key 或报告问题,请联系 moocsupport@mathworks.com" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Group Configurations" -msgstr "组配置" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter the configurations that govern how students are grouped together." -msgstr "请输入学生分组的标准。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enable video caching system" -msgstr "启用视频缓存系统" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter true or false. If true, video caching will be used for HTML5 videos." -msgstr "请输入true或者false。如果输入true,HTML5的视频将被缓存。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enable video auto-advance" -msgstr "自动播放下一个视频" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Specify whether to show an auto-advance button in videos. If the student " -"clicks it, when the last video in a unit finishes it will automatically move" -" to the next unit and autoplay the first video." -msgstr "" -"是否在视频中显示自动播放下一个视频按钮。如果学员点击该按钮,则当一个单元内的视频播放完成时,会自动跳转至下一个单元并播放该单元的第一个视频。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Video Pre-Roll" -msgstr "Video Pre-Roll" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -#, python-brace-format -msgid "" -"Identify a video, 5-10 seconds in length, to play before course videos. " -"Enter the video ID from the Video Uploads page and one or more transcript " -"files in the following format: {format}. For example, an entry for a video " -"with two transcripts looks like this: {example}" -msgstr "" -"课程视频前指定一个 5-10 秒的视频。从 Video Uploads 中输入 Video " -"ID,以及一个或多个字幕档,以下面的格式:{format}。例如,使用两个字幕档的一段视频如同: {example}" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Show Reset Button for Problems" -msgstr "为问题显示重置按钮" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter true or false. If true, problems in the course default to always " -"displaying a 'Reset' button. You can override this in each problem's " -"settings. All existing problems are affected when this course-wide setting " -"is changed." -msgstr "" -"输入true或false。为true时,课程中的问题总是默认显示一个“重置”按钮,您可以在每个问题的设置中重设。当该课程范围内的设置改变时,所有已存在的问题都将受影响。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Enable Student Notes" -msgstr "启用学生笔记" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter true or false. If true, students can use the Student Notes feature." -msgstr "输入true或false。为true时,学生可以使用学生笔记特性。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Indicates whether Student Notes are visible in the course. Students can also" -" show or hide their notes in the courseware." -msgstr "表明学生笔记是否在课程中可见。学生也可以在课件中显示或隐藏他们的笔记。" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "Tag this module as part of an Entrance Exam section" -msgstr "标记该模块为入学考试的部分" - -#: common/lib/xmodule/xmodule/modulestore/inheritance.py -msgid "" -"Enter true or false. If true, answer submissions for problem modules will be" -" considered in the Entrance Exam scoring/gating algorithm." -msgstr "输入true或false。若为true,问题模块的答案提交将会被考虑在入学考试的得分/控制算法中。" - -#: common/lib/xmodule/xmodule/partitions/partitions_service.py -msgid "Enrollment Track Groups" -msgstr "选课记录组" - -#: common/lib/xmodule/xmodule/partitions/partitions_service.py -msgid "Partition for segmenting users by enrollment track" -msgstr "通过选课记录划分用户的分区" - -#: common/lib/xmodule/xmodule/poll_module.py -msgid "Whether this student has voted on the poll" -msgstr "这个学生是否已经投票" - -#: common/lib/xmodule/xmodule/poll_module.py -msgid "Student answer" -msgstr "学生答案" - -#: common/lib/xmodule/xmodule/poll_module.py -msgid "Poll answers from all students" -msgstr "来自所有学生的轮询" - -#: common/lib/xmodule/xmodule/poll_module.py -msgid "Poll answers from xml" -msgstr "来自 xml 的投票选项" - -#: common/lib/xmodule/xmodule/poll_module.py -msgid "Poll question" -msgstr "投票问题" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Enter the date by which problems are due." -msgstr "输入问题的截止日期。" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Hide sequence content After Due Date" -msgstr "截止日期后隐藏序列内容" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"If set, the sequence content is hidden for non-staff users after the due " -"date has passed." -msgstr "如果设置此项,那么非工作人员用户将无法再截止日期过后查看后续内容。" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Is Entrance Exam" -msgstr "是入学考试" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"Tag this course module as an Entrance Exam. Note, you must enable Entrance " -"Exams for this course setting to take effect." -msgstr "标记该课程模块作为入学考试。注意,您必须开启此课程设置的入学考试功能才可生效。" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Is Time Limited" -msgstr "时间是否受限" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"This setting indicates whether students have a limited time to view or " -"interact with this courseware component." -msgstr "该设置表明学生是否有一段有限的时间去查看或与课件组件交互。" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Time Limit in Minutes" -msgstr "时间限制在几分钟内" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"The number of minutes available to students for viewing or interacting with " -"this courseware component." -msgstr "学生可查看或与课件交互的时间(分钟)。" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Is Proctoring Enabled" -msgstr "是否启动监考" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "This setting indicates whether this exam is a proctored exam." -msgstr "该设置表明这场考试是否有人监考。" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Software Secure Review Rules" -msgstr "软体安全审查规则" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"This setting indicates what rules the proctoring team should follow when " -"viewing the videos." -msgstr "此设定表示在浏览视频时,团队必须遵循监考的规则。" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "Is Practice Exam" -msgstr "是否是模拟考试" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"This setting indicates whether this exam is for testing purposes only. " -"Practice exams are not verified." -msgstr "该设置表明这场考试是否仅用于测试目的。模拟考试未经过身份认证。" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "This exam is hidden from the learner." -msgstr "本次考试对学员隐藏。" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"Because the course has ended, this assignment is hidden from the learner." -msgstr "由于课程已结束,所以此学员无法查看此作业。" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"Because the due date has passed, this assignment is hidden from the learner." -msgstr "由于已超过截止日期,所以学员无法查看此作业。" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"This subsection is unlocked for learners when they meet the prerequisite " -"requirements." -msgstr "满足先修条件的学员可解锁此节内容。" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"This section is a prerequisite. You must complete this section in order to " -"unlock additional content." -msgstr "此章内容为先修条件,您必须先完成此章学习才可以解锁额外内容。" - -#: common/lib/xmodule/xmodule/seq_module.py -msgid "" -"A list summarizing what students should look forward to in this section." -msgstr "此章的内容概况列表。" - -#: common/lib/xmodule/xmodule/split_test_module.py -#, python-brace-format -msgid "Group ID {group_id}" -msgstr "组号{group_id}" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "Not Selected" -msgstr "未选中" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "The display name for this component. (Not shown to learners)" -msgstr "此组件的显示名称(学员不可见)。" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "Content Experiment" -msgstr "实验内容" - -#: common/lib/xmodule/xmodule/split_test_module.py -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"The list of group configurations for partitioning students in content " -"experiments." -msgstr "在内容实验中学生分组的组配置列表。" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "" -"The configuration defines how users are grouped for this content experiment." -" Caution: Changing the group configuration of a student-visible experiment " -"will impact the experiment data." -msgstr "该配置定义了用户如何为该内容实验分组。谨记:改变一个学生可见实验的组配置会影响实验数据。" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "Group Configuration" -msgstr "组配置" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "Which child module students in a particular group_id should see" -msgstr "哪个子模块学生将会被特別的gouup_id所检视" - -#: common/lib/xmodule/xmodule/split_test_module.py -#, python-brace-format -msgid "{group_name} (inactive)" -msgstr "{group_name} (未激活)" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "The experiment is not associated with a group configuration." -msgstr "实验未与任何群组设定关联。" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "Select a Group Configuration" -msgstr "选择一个组别配置" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "" -"The experiment uses a deleted group configuration. Select a valid group " -"configuration or delete this experiment." -msgstr "该实验使用了一个已删除的组配置。请选择一个有效的组配置或删除该实验。" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "" -"The experiment uses a group configuration that is not supported for " -"experiments. Select a valid group configuration or delete this experiment." -msgstr "该实验使用了一个实验不支持的组配置。请选择一个有效的组配置或删除该实验。" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "" -"The experiment does not contain all of the groups in the configuration." -msgstr "该实验不包含配置中所有的组。" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "Add Missing Groups" -msgstr "增加丢失的分组" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "" -"The experiment has an inactive group. Move content into active groups, then " -"delete the inactive group." -msgstr "该实验有一个不活跃的小组。将其内容移至活跃的小组中,然后删除该不活跃的小组。" - -#: common/lib/xmodule/xmodule/split_test_module.py -msgid "This content experiment has issues that affect content visibility." -msgstr "该内容实验可能影响内容可见性。" - -#: common/lib/xmodule/xmodule/tabs.py common/lib/xmodule/xmodule/tabs.py -msgid "External Discussion" -msgstr "外部讨论" - -#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py -msgid "Home" -msgstr "主页" - -#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py -#: lms/djangoapps/courseware/views/views.py -#: lms/djangoapps/shoppingcart/reports.py -#: lms/djangoapps/shoppingcart/reports.py -#: openedx/features/course_experience/__init__.py -msgid "Course" -msgstr "课程" - -#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py -#, python-brace-format -msgid "" -"Can't receive transcripts from Youtube for {youtube_id}. Status code: " -"{status_code}." -msgstr "不能从Youtube接受{youtube_id}的成绩单。状态码为:{status_code}。" - -#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py -msgid "We support only SubRip (*.srt) transcripts format." -msgstr "我们只支持SubRip (*.srt)格式的字幕。" - -#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py -#, python-brace-format -msgid "" -"Something wrong with SubRip transcripts file during parsing. Inner message " -"is {error_message}" -msgstr "解析SubRip字幕文件时出错。内部消息是{error_message}" - -#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py -msgid "Something wrong with SubRip transcripts file during parsing." -msgstr "解析SubRip字幕文件时出错。" - -#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py -#, python-brace-format -msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" -msgstr "{exception_message}: 找不到上传的成绩单: {user_filename}" - -#: common/lib/xmodule/xmodule/video_module/video_handlers.py -msgid "Language is required." -msgstr "语言是必填项" - -#: common/lib/xmodule/xmodule/video_module/video_module.py -msgid "Basic" -msgstr "基本" - -#: common/lib/xmodule/xmodule/video_module/video_module.py -#, python-brace-format -msgid "There is no transcript file associated with the {lang} language." -msgid_plural "" -"There are no transcript files associated with the {lang} languages." -msgstr[0] "没有与 {lang} 相关联的字幕文件。" - -#: common/lib/xmodule/xmodule/video_module/video_module.py -msgid "" -"The URL for your video. This can be a YouTube URL or a link to an .mp4, " -".ogg, or .webm video file hosted elsewhere on the Internet." -msgstr "" -"该地址指向视频链接。这可能是一个YouTube的网址或者一个存储于其他互联网服务器的 .mp4, .ogg, 或者.webm 格式视频的链接地址。" - -#: common/lib/xmodule/xmodule/video_module/video_module.py -msgid "Default Video URL" -msgstr "默认的视频 URL" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Component Display Name" -msgstr "组件显示名称" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Current position in the video." -msgstr "视频的当前位置。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Optional, for older browsers: the YouTube ID for the normal speed video." -msgstr "可选,针对较早的浏览器:正常速度视频的 YouTube ID。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "YouTube ID" -msgstr "YouTube ID" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Optional, for older browsers: the YouTube ID for the .75x speed video." -msgstr "可选,针对较早的浏览器:0.75 倍速视频的 YouTube ID。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "YouTube ID for .75x speed" -msgstr "YouTube ID(0.75 倍速)" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Optional, for older browsers: the YouTube ID for the 1.25x speed video." -msgstr "可选,针对较早的浏览器:1.25 倍速视频的 YouTube ID。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "YouTube ID for 1.25x speed" -msgstr "YouTube ID(1.25 倍速)" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Optional, for older browsers: the YouTube ID for the 1.5x speed video." -msgstr "可选,针对较早的浏览器:1.5 倍速视频的 YouTube ID。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "YouTube ID for 1.5x speed" -msgstr "YouTube ID(1.5 倍速)" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Time you want the video to start if you don't want the entire video to play." -" Not supported in the native mobile app: the full video file will play. " -"Formatted as HH:MM:SS. The maximum value is 23:59:59." -msgstr "" -"如果不希望播放整个视频,则在此提供视频播放的开始时间。该操作在本地的移动应用上不支持,即播放完整视频。格式为:HH:MM:SS,最大值为23:59:59。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Video Start Time" -msgstr "视频开始时间" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Time you want the video to stop if you don't want the entire video to play. " -"Not supported in the native mobile app: the full video file will play. " -"Formatted as HH:MM:SS. The maximum value is 23:59:59." -msgstr "" -"如果不希望播放整个视频,则在此提供视频播放的结束时间。此操作在本地的移动应用上不支持,即播放完整视频。格式为:HH:MM:SS,最大值为23:59:59。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Video Stop Time" -msgstr "视频结束时间" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "The external URL to download the video." -msgstr "下载视频的外部 URL。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Download Video" -msgstr "下载视频" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Allow students to download versions of this video in different formats if " -"they cannot use the edX video player or do not have access to YouTube. You " -"must add at least one non-YouTube URL in the Video File URLs field." -msgstr "" -"如果学生无法使用 edX 视频播放器,或者不能访问 YouTube,则可以允许学生以不同的格式下载该视频。为此,必须在“视频文件 " -"URL”域中添加至少一个非 YouTube 的视频 URL。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Video Download Allowed" -msgstr "允许下载视频" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"The URL or URLs where you've posted non-YouTube versions of the video. Each " -"URL must end in .mpeg, .mp4, .ogg, or .webm and cannot be a YouTube URL. " -"(For browser compatibility, we strongly recommend .mp4 and .webm format.) " -"Students will be able to view the first listed video that's compatible with " -"the student's computer. To allow students to download these videos, set " -"Video Download Allowed to True." -msgstr "" -"非 YouTube 版本的视频 URL。每个 URL 应当以 .mpeg、.mp4、.ogg 或者 .webm 结尾,并且不得为 YouTube " -"URL。(为了浏览器的兼容性考虑,我们强烈建议您使用 .mp4 和 .webm " -"格式。)每个学生将看到列表中第一个与他自己的计算机兼容的视频。如果想让学生下载这些视频,请将“允许下载视频”设置为“True”。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Video File URLs" -msgstr "视频文件 URL" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"By default, students can download an .srt or .txt transcript when you set " -"Download Transcript Allowed to True. If you want to provide a downloadable " -"transcript in a different format, we recommend that you upload a handout by " -"using the Upload a Handout field. If this isn't possible, you can post a " -"transcript file on the Files & Uploads page or on the Internet, and then add" -" the URL for the transcript here. Students see a link to download that " -"transcript below the video." -msgstr "" -"默认情况下,当“允许下载字幕”设置为“True”的时候,学生可以下载 .srt 或者 .txt " -"格式的字幕。如果您需要提供不同文件格式的字幕供学生下载,我们建议您首先考虑使用“上传讲义”域上传您的讲义;其次您可以将字幕文件上传至“文件&上传”页面或者" -" Internet,并在这里添加下载字幕的 URL。学生们会在视频的下方看到一个下载字幕的链接。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Downloadable Transcript URL" -msgstr "字幕下载 URL" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Allow students to download the timed transcript. A link to download the file" -" appears below the video. By default, the transcript is an .srt or .txt " -"file. If you want to provide the transcript for download in a different " -"format, upload a file by using the Upload Handout field." -msgstr "" -"允许学生下载字幕。下载链接会出现在视频的下方。默认情况下,下载的字幕是一个 .srt 或者 .txt " -"文件。如果您需要提供不同文件格式的字幕下载,使用“上传讲义”域上传该文件。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Download Transcript Allowed" -msgstr "允许下载字幕" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"The default transcript for the video, from the Default Timed Transcript " -"field on the Basic tab. This transcript should be in English. You don't have" -" to change this setting." -msgstr "视频的默认字幕,来自于“基本”面板的“默认字幕”域。该字幕应当是英语字幕。您不必修改这个设置。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Default Timed Transcript" -msgstr "默认字幕" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Specify whether the transcripts appear with the video by default." -msgstr "指定是否默认就显示字幕。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Show Transcript" -msgstr "显示字幕" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Add transcripts in different languages. Click below to specify a language " -"and upload an .srt transcript file for that language." -msgstr "添加不同语言的字幕。单击下方以指定语言并上传该语言对应的 .srt 字幕文件。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Transcript Languages" -msgstr "字幕语言" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Preferred language for transcript." -msgstr "首选的字幕语言。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Preferred language for transcript" -msgstr "首选的字幕语言" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Transcript file format to download by user." -msgstr "用户下载的字幕文件格式。" - -#. Translators: This is a type of file used for captioning in the video -#. player. -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "SubRip (.srt) file" -msgstr "字幕 (.srt) 文件" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Text (.txt) file" -msgstr "文本 (.txt) 文件" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "The last speed that the user specified for the video." -msgstr "该视频上一次用户指定的速度。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "The default speed for the video." -msgstr "该视频的默认速度。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Specify whether to advance automatically to the next unit when the video " -"ends." -msgstr "设置是否自动播放下一单元的视频" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Specify whether YouTube is available for the user." -msgstr "指定 YouTube 是否对用户可用。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Upload a handout to accompany this video. Students can download the handout " -"by clicking Download Handout under the video." -msgstr "上传与该视频相关的讲义。学生可以单击视频下方的“下载讲义”按钮来下载该讲义。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Upload Handout" -msgstr "上传讲义" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"Specify whether access to this video is limited to browsers only, or if it " -"can be accessed from other applications including mobile apps." -msgstr "指定是否限制为只有浏览器才能访问该视频,或可以再其他应用上访问,包括移动应用。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Video Available on Web Only" -msgstr "视频只在网页板提供" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "" -"If you were assigned a Video ID by edX for the video to play in this " -"component, enter the ID here. In this case, do not enter values in the " -"Default Video URL, the Video File URLs, and the YouTube ID fields. If you " -"were not assigned a Video ID, enter values in those other fields and ignore " -"this field." -msgstr "" -"如果您上传的视频分配了一个ID,请在此输入您的视频ID。请注意,如果您有被分配视频ID请不要输入默认视频ID,视频文件ID以及YouTube视频ID。如果您没有被分配ID请输入上述描述部分,这部分请不要填写。" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Date of the last view of the bumper" -msgstr "最近浏览片头的日期" - -#: common/lib/xmodule/xmodule/video_module/video_xfields.py -msgid "Do not show bumper again" -msgstr "不重复显示片头" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Instructions" -msgstr "指令" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "" -"Add instructions to help learners understand how to use the word cloud. " -"Clear instructions are important, especially for learners who have " -"accessibility requirements." -msgstr "添加指引帮助学员使用词语云盘,清楚明了的指引对有访问要求的学员特别重要。" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Inputs" -msgstr "投入" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "" -"The number of text boxes available for learners to add words and sentences." -msgstr "学员可用输入框的数量,可添加文字与句子。" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Maximum Words" -msgstr "字数上限" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "The maximum number of words displayed in the generated word cloud." -msgstr "在生成的词语云盘中最多能显示的词语数。" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Show Percents" -msgstr "显示百分比" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Statistics are shown for entered words near that word." -msgstr "展示了临近那个单词输入的单词的统计信息。" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Whether this learner has posted words to the cloud." -msgstr "此学员是否在云盘中发布过词语" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Student answer." -msgstr "学生答案" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "All possible words from all learners." -msgstr "所有学员发布的所有词语" - -#: common/lib/xmodule/xmodule/word_cloud_module.py -msgid "Top num_top_words words for word cloud." -msgstr "词云中的最热门词汇" - -#: common/templates/student/edx_ace/emailchange/email/body.html -msgid "Email Change" -msgstr "电子邮件变更" - -#: common/templates/student/edx_ace/emailchange/email/body.html -#: common/templates/student/edx_ace/emailchange/email/body.txt -#, python-format -msgid "" -"We received a request to change the e-mail associated with your " -"%(platform_name)s account from %(old_email)s to %(new_email)s. If this is " -"correct, please confirm your new e-mail address by visiting:" -msgstr "" -"我们收到了您需要将%(platform_name)s 账号的电子邮件关联由 %(old_email)s 变更为 %(new_email)s " -"的请求。如果该请求无误,请访问如下网页确认您的新电子邮件地址:" - -#: common/templates/student/edx_ace/emailchange/email/body.html -msgid "Confirm Email Change" -msgstr "确认电子邮箱变更" - -#: common/templates/student/edx_ace/emailchange/email/body.html -#: common/templates/student/edx_ace/emailchange/email/body.txt -#, python-format -msgid "" -"If you didn't request this, you don't need to do anything; you won't receive" -" any more email from us. Please do not reply to this e-mail; if you require " -"assistance, check the help section of the %(platform_name)s web site." -msgstr "" -"如果您没发出过该请求,您可以忽略该邮件;您将不会收到其他任何我们的电子邮件。请不要回复此电子邮件;如果您需要帮助,请访问%(platform_name)s网站。" - -#: common/templates/student/edx_ace/emailchange/email/subject.txt -#, python-format -msgid "Request to change %(platform_name)s account e-mail" -msgstr "变更%(platform_name)s账号电子邮件的请求" - -#: common/templates/student/edx_ace/passwordreset/email/body.html -msgid "Password Reset" -msgstr "密码重置" - -#: common/templates/student/edx_ace/passwordreset/email/body.html -#: common/templates/student/edx_ace/passwordreset/email/body.txt -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your" -" user account at %(platform_name)s." -msgstr "您在%(platform_name)s申请了账号密码重置。" - -#: common/templates/student/edx_ace/passwordreset/email/body.html -#: common/templates/student/edx_ace/passwordreset/email/body.txt -#, python-format -msgid "" -"However, there is currently no user account associated with your email " -"address: %(email_address)s." -msgstr "您的邮箱地址%(email_address)s暂时没有与任何账号相关联。" - -#: common/templates/student/edx_ace/passwordreset/email/body.html -#: common/templates/student/edx_ace/passwordreset/email/body.txt -msgid "If you did not request this change, you can ignore this email." -msgstr "如果您没有申请作出更改,请忽略此邮件。" - -#: common/templates/student/edx_ace/passwordreset/email/body.html -#: common/templates/student/edx_ace/passwordreset/email/body.txt -msgid "" -"If you didn't request this change, you can disregard this email - we have " -"not yet reset your password." -msgstr "如果您没有请求该变更,请忽略本邮件——我们尚未重置您的密码。" - -#: common/templates/student/edx_ace/passwordreset/email/body.html -msgid "Change my Password" -msgstr "修改我的密码" - -#: common/templates/student/edx_ace/passwordreset/email/body.txt -msgid "Please go to the following page and choose a new password:" -msgstr "请到以下页面设置新的密码:" - -#: common/templates/student/edx_ace/passwordreset/email/body.txt -msgid "Thanks for using our site!" -msgstr "谢谢您访问我们的网站!" - -#: common/templates/student/edx_ace/passwordreset/email/body.txt -#, python-format -msgid "The %(platform_name)s Team" -msgstr "%(platform_name)s 团队" - -#: common/templates/student/edx_ace/passwordreset/email/subject.txt -#, python-format -msgid "Password reset on %(platform_name)s" -msgstr "%(platform_name)s重置密码" - -#: lms/djangoapps/badges/events/course_complete.py -#, python-brace-format -msgid "" -"Completed the course \"{course_name}\" ({course_mode}, {start_date} - " -"{end_date})" -msgstr "已修完课程“{course_name}”({course_mode}, {start_date} - {end_date})" - -#: lms/djangoapps/badges/events/course_complete.py -#, python-brace-format -msgid "Completed the course \"{course_name}\" ({course_mode})" -msgstr "已修完课程“{course_name}”({course_mode})" - -#: lms/djangoapps/badges/models.py -msgid "The badge image must be square." -msgstr "徽章图片必须为正方形。" - -#: lms/djangoapps/badges/models.py -msgid "The badge image file size must be less than 250KB." -msgstr "徽章图片的文件大小必须小于250KB。" - -#: lms/djangoapps/badges/models.py -msgid "This value must be all lowercase." -msgstr "该值必须全部为小写字母。" - -#: lms/djangoapps/badges/models.py -msgid "The course mode for this badge image. For example, \"verified\" or \"honor\"." -msgstr "该课程模式的徽章图像。例如,“合格”或“荣誉”。" - -#: lms/djangoapps/badges/models.py -msgid "" -"Badge images must be square PNG files. The file size should be under 250KB." -msgstr "徽章图片必须为正方形的PNG文件,且文件大小应小于250KB。" - -#: lms/djangoapps/badges/models.py -msgid "" -"Set this value to True if you want this image to be the default image for " -"any course modes that do not have a specified badge image. You can have only" -" one default image." -msgstr "对于那些没有指定徽章图片的课程模式,如果您想设置此图为其默认图片,则将该值设为True。您只能设置一张默认图片。" - -#: lms/djangoapps/badges/models.py -msgid "There can be only one default image." -msgstr "只能有一张默认图片。" - -#: lms/djangoapps/badges/models.py -msgid "" -"On each line, put the number of completed courses to award a badge for, a " -"comma, and the slug of a badge class you have created that has the issuing " -"component 'openedx__course'. For example: 3,enrolled_3_courses" -msgstr "" -"在每一行上,列出为了获得徽章的已完成课程的数目、一个逗号以及您创建的具有发行组件“openedx__course”的徽章类别标语。例如:3, " -"已登记_3_个课程" - -#: lms/djangoapps/badges/models.py -msgid "" -"On each line, put the number of enrolled courses to award a badge for, a " -"comma, and the slug of a badge class you have created that has the issuing " -"component 'openedx__course'. For example: 3,enrolled_3_courses" -msgstr "" -"在每一行上,列出为了获得徽章的已登记课程的数目、一个逗号以及您创建的具有发行组件“openedx__course”的徽章类别标语。例如:3, " -"已登记_3_个课程" - -#: lms/djangoapps/badges/models.py -msgid "" -"Each line is a comma-separated list. The first item in each line is the slug" -" of a badge class you have created that has an issuing component of " -"'openedx__course'. The remaining items in each line are the course keys the " -"learner needs to complete to be awarded the badge. For example: " -"slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" -msgstr "" -"每一行都是以逗号分隔的列表。每一行的第一项是您创建的具有发行组件“openedx__course”的徽章类别标语。每一行的其余项是学员为了获得徽章需要完成的课程要领。例如:slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" - -#: lms/djangoapps/badges/models.py -msgid "Please check the syntax of your entry." -msgstr "请检查您的条目的句法。" - -#: lms/djangoapps/branding/api.py -msgid "Take free online courses at EliteMBA.cn" -msgstr "在EliteMBA.cn上学习免费课程" - -#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. -#. Please do not translate any of these trademarks and company names. -#: lms/djangoapps/branding/api.py -#, python-brace-format -msgid "" -"© {org_name}. All rights reserved except where noted. EdX, Open edX and " -"their respective logos are trademarks or registered trademarks of edX Inc." -msgstr "© {org_name}。版权所有,除非另有注明。EdX、Open edX和他们各自的标识都是edX Inc的商标或注册商标。" - -#. Translators: 'Open edX' is a brand, please keep this untranslated. -#. See http://openedx.org for more information. -#: lms/djangoapps/branding/api.py -msgid "Powered by Open edX" -msgstr "Powered by Open edX" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Blog" -msgstr "博客" - -#: lms/djangoapps/branding/api.py -msgid "Contact Us" -msgstr "联系我们" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Help Center" -msgstr "帮助中心" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Media Kit" -msgstr "多媒体工具箱" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Donate" -msgstr "捐助" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -#, python-brace-format -msgid "{platform_name} for Business" -msgstr "{platform_name} 为商业" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "News" -msgstr "新闻" - -#: lms/djangoapps/branding/api.py -msgid "Contact" -msgstr "联系我们" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Careers" -msgstr "招聘" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -#: lms/djangoapps/certificates/views/webview.py -msgid "Terms of Service & Honor Code" -msgstr "服务条款 & 荣誉准则" - -#. Translators: A 'Privacy Policy' is a legal document/statement describing a -#. website's use of personal information -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -#: lms/djangoapps/certificates/views/webview.py -msgid "Privacy Policy" -msgstr "隐私政策" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Accessibility Policy" -msgstr "可访问策略" - -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -msgid "Sitemap" -msgstr "网站导航" - -#. Translators: This is a legal document users must agree to -#. in order to register a new account. -#: lms/djangoapps/branding/api.py lms/djangoapps/branding/api.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Terms of Service" -msgstr "服务条款" - -#: lms/djangoapps/branding/api.py -msgid "Affiliates" -msgstr "附属机构" - -#: lms/djangoapps/branding/api.py -msgid "Open edX" -msgstr "Open edX" - -#: lms/djangoapps/branding/api.py -msgid "Trademark Policy" -msgstr "商标政策" - -#: lms/djangoapps/branding/api.py -#, python-brace-format -msgid "Download the {platform_name} mobile app from the Apple App Store" -msgstr "从Apple App Store下载{platform_name}的移动客户端" - -#: lms/djangoapps/branding/api.py -#, python-brace-format -msgid "Download the {platform_name} mobile app from Google Play" -msgstr "从Google Play下载{platform_name}的移动客户端" - -#. Translators: Bulk email from address e.g. ("Physics 101" Course Staff) -#: lms/djangoapps/bulk_email/tasks.py -#, python-brace-format -msgid "\"{course_title}\" Course Staff" -msgstr "\"{course_title}\" 课程员工" - -#: lms/djangoapps/ccx/plugins.py -msgid "CCX Coach" -msgstr "CCX指导" - -#: lms/djangoapps/ccx/utils.py -msgid "" -"A CCX can only be created on this course through an external service. " -"Contact a course admin to give you access." -msgstr "CCX 仅可以通过外部服务在此课程上创建。联系课程管理员授予您访问权限。" - -#: lms/djangoapps/ccx/utils.py -#, python-brace-format -msgid "The course is full: the limit is {max_student_enrollments_allowed}" -msgstr "此门课已额满:人数限制为 {max_student_enrollments_allowed}" - -#: lms/djangoapps/ccx/views.py -msgid "You must be a CCX Coach to access this view." -msgstr "您需要成为CCX指导才能访问该视图。" - -#: lms/djangoapps/ccx/views.py -msgid "You must be the coach for this ccx to access this view" -msgstr "您必须要成为该CCX的指导才能够访问该视图" - -#: lms/djangoapps/ccx/views.py -msgid "" -"You cannot create a CCX from a course using a deprecated id. Please create a" -" rerun of this course in the studio to allow this action." -msgstr "您不能使用一个过时的ID从课程中创建CCX,请在studio中创建该课程的重启以允许此操作。" - -#: lms/djangoapps/certificates/models.py -msgid "created" -msgstr "创建" - -#. Translators: This is a past-tense verb that is used for task action -#. messages. -#: lms/djangoapps/certificates/models.py -msgid "regenerated" -msgstr "重新产生" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/certificates/models.py -#: lms/djangoapps/instructor_task/tasks.py -#: lms/djangoapps/instructor_task/tasks.py -#: lms/djangoapps/instructor_task/tasks.py -#: lms/djangoapps/instructor_task/tasks.py -#: lms/djangoapps/instructor_task/tasks.py -msgid "generated" -msgstr "已生成" - -#. Translators: This string represents task was executed for all learners. -#: lms/djangoapps/certificates/models.py lms/djangoapps/certificates/models.py -msgid "All learners" -msgstr "所有学习者" - -#. Translators: This string represents task was executed for students having -#. exceptions. -#: lms/djangoapps/certificates/models.py -msgid "For exceptions" -msgstr "例外" - -#: lms/djangoapps/certificates/models.py -msgid "" -"A human-readable description of the example certificate. For example, " -"'verified' or 'honor' to differentiate between two types of certificates." -msgstr "范例证书的可读说明。例如,“合格”或“荣誉\"两类证书区分。" - -#: lms/djangoapps/certificates/models.py -msgid "" -"A unique identifier for the example certificate. This is used when we " -"receive a response from the queue to determine which example certificate was" -" processed." -msgstr "示例证书的唯一标识符。可用于当我们从队列中得到响应以决定哪个示例证书已被处理。" - -#: lms/djangoapps/certificates/models.py -msgid "" -"An access key for the example certificate. This is used when we receive a " -"response from the queue to validate that the sender is the same entity we " -"asked to generate the certificate." -msgstr "范例证书会有访问的金钥。我们接收到回应是用来检核与验证,与我们申请产生证书的验证是相同的。" - -#: lms/djangoapps/certificates/models.py -msgid "The full name that will appear on the certificate." -msgstr "将显示在证书上的全名" - -#: lms/djangoapps/certificates/models.py -msgid "The template file to use when generating the certificate." -msgstr "当生成证书时使用的模板文件。" - -#: lms/djangoapps/certificates/models.py -msgid "The status of the example certificate." -msgstr "示例证书状态。" - -#: lms/djangoapps/certificates/models.py -msgid "The reason an error occurred during certificate generation." -msgstr "生成证书过程中发生错误的原因" - -#: lms/djangoapps/certificates/models.py -msgid "The download URL for the generated certificate." -msgstr "已生成证书的下载URL。" - -#: lms/djangoapps/certificates/models.py -msgid "Name of template." -msgstr "模板名称。" - -#: lms/djangoapps/certificates/models.py -msgid "Description and/or admin notes." -msgstr "叙述与/或管理员笔记" - -#: lms/djangoapps/certificates/models.py -msgid "Django template HTML." -msgstr "Django模板HTML" - -#: lms/djangoapps/certificates/models.py -msgid "Organization of template." -msgstr "模板的组织" - -#: lms/djangoapps/certificates/models.py -msgid "The course mode for this template." -msgstr "该模板的课程模式。" - -#: lms/djangoapps/certificates/models.py -msgid "On/Off switch." -msgstr "开/关切换" - -#: lms/djangoapps/certificates/models.py -msgid "Description of the asset." -msgstr "该资源的描述。" - -#: lms/djangoapps/certificates/models.py -msgid "Asset file. It could be an image or css file." -msgstr "资源档。可以是一张图片或css文件。" - -#: lms/djangoapps/certificates/models.py -msgid "" -"Asset's unique slug. We can reference the asset in templates using this " -"value." -msgstr "Asset's unique slug.我们可以参考使用这个参数用在这个模版。" - -#: lms/djangoapps/certificates/views/support.py -msgid "user is not given." -msgstr "没有提供使用者" - -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "user '{user}' does not exist" -msgstr "使用者'{user}'不存在" - -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "Course id '{course_id}' is not valid" -msgstr "无效之课程id '{course_id}'" - -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "The course does not exist against the given key '{course_key}'" -msgstr "本课程不存在指定的金钥'{course_key}'" - -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "User {username} does not exist" -msgstr "使用者 {username} 不存在。" - -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "{course_key} is not a valid course key" -msgstr "{course_key} 不是有效的课程密钥。" - -#: lms/djangoapps/certificates/views/support.py -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "The course {course_key} does not exist" -msgstr "{course_key} 课程不存在。" - -#: lms/djangoapps/certificates/views/support.py -#: lms/djangoapps/certificates/views/support.py -#, python-brace-format -msgid "User {username} is not enrolled in the course {course_key}" -msgstr "使用者 {username} 还没有注册 {course_key} 课程。" - -#: lms/djangoapps/certificates/views/support.py -msgid "An unexpected error occurred while regenerating certificates." -msgstr "在重新产生证书时,发生了一个未预期的错误。" - -#. Translators: This text describes the 'Honor' course certificate type. -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"An {cert_type} certificate signifies that a learner has agreed to abide by " -"the honor code established by {platform_name} and has completed all of the " -"required tasks for this course under its guidelines." -msgstr "" -"An {cert_type} 证书象征著学习者已同意由{platform_name}建立及遵守荣誉守则,并已经完成根据此门课之指引完成所有任务。" - -#. Translators: This text describes the 'ID Verified' course certificate -#. type, which is a higher level of -#. verification offered by edX. This type of verification is useful for -#. professional education/certifications -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"A {cert_type} certificate signifies that a learner has agreed to abide by " -"the honor code established by {platform_name} and has completed all of the " -"required tasks for this course under its guidelines. A {cert_type} " -"certificate also indicates that the identity of the learner has been checked" -" and is valid." -msgstr "" -"A {cert_type} 证书象征著学习者已同意由{platform_name}建立及遵守荣誉守则,并已经完成根据此门课之指引完成所有任务。A " -"{cert_type} 证书也意味着学习者的身份已被确认且是有效的。" - -#. Translators: This text describes the 'XSeries' course certificate type. -#. An XSeries is a collection of -#. courses related to each other in a meaningful way, such as a specific topic -#. or theme, or even an organization -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"An {cert_type} certificate demonstrates a high level of achievement in a " -"program of study, and includes verification of the student's identity." -msgstr "一张 {cert_type} 证书证明学习课程高水準的成果,并包括验证学生的身份。" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "{month} {day}, {year}" -msgstr "{year} {month} {day}" - -#. Translators: This text represents the verification of the certificate -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"This is a valid {platform_name} certificate for {user_name}, who " -"participated in {partner_short_name} {course_number}" -msgstr "" -"此为有效的 {platform_name} 证书给{user_name},并参与了{partner_short_name}{course_number}" - -#. Translators: This text is bound to the HTML 'title' element of the page -#. and appears in the browser title bar -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "{partner_short_name} {course_number} Certificate | {platform_name}" -msgstr "{partner_short_name} {course_number} 修课证明 | {platform_name}" - -#. Translators: This text fragment appears after the student's name -#. (displayed in a large font) on the certificate -#. screen. The text describes the accomplishment represented by the -#. certificate information displayed to the user -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"successfully completed, received a passing grade, and was awarded this " -"{platform_name} {certificate_type} Certificate of Completion in " -msgstr "完成课程、测验及格,并荣获该{platform_name} {certificate_type} 之证书" - -#. Translators: This text describes the purpose (and therefore, value) of a -#. course certificate -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"{platform_name} acknowledges achievements through certificates, which are " -"awarded for course activities that {platform_name} students complete." -msgstr "{platform_name} 借由证书承认已完成修习课程,该课之修课证书证明学生完成 {platform_name} 课程活动。" - -#. Translators: 'All rights reserved' is a legal term used in copyrighting to -#. protect published content -#: lms/djangoapps/certificates/views/webview.py -msgid "All rights reserved" -msgstr "保留所有权利" - -#. Translators: This text is bound to the HTML 'title' element of the page -#. and appears -#. in the browser title bar when a requested certificate is not found or -#. recognized -#: lms/djangoapps/certificates/views/webview.py -msgid "Invalid Certificate" -msgstr "无效的证书" - -#. Translators: This line appears as a byline to a header image and describes -#. the purpose of the page -#: lms/djangoapps/certificates/views/webview.py -msgid "Certificate Validation" -msgstr "证书认可" - -#. Translators: Accomplishments describe the awards/certifications obtained by -#. students on this platform -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "About {platform_name} Accomplishments" -msgstr "关于{platform_name}的成就" - -#. Translators: This line appears on the page just before the generation date -#. for the certificate -#: lms/djangoapps/certificates/views/webview.py -msgid "Issued On" -msgstr "签发日期" - -#. Translators: The Certificate ID Number is an alphanumeric value unique to -#. each individual certificate -#: lms/djangoapps/certificates/views/webview.py -msgid "Certificate ID Number" -msgstr "证书ID编号" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "About {platform_name} Certificates" -msgstr "关于 {platform_name} 认证证书" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "How {platform_name} Validates Student Certificates" -msgstr "{platform_name}如何验证学生证书" - -#. Translators: This text describes the validation mechanism for a -#. certificate file (known as GPG security) -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"Certificates issued by {platform_name} are signed by a gpg key so that they " -"can be validated independently by anyone with the {platform_name} public " -"key. For independent verification, {platform_name} uses what is called a " -"\"detached signature\""\"." -msgstr "" -"通过 {platform_name} 颁发证书由gpg密钥簽署,使他们可以被任何人与 " -"{platform_name}公钥独立验证。对于独立核查,{platform_name}使用所谓的\"detached " -"signature\""\"。" - -#: lms/djangoapps/certificates/views/webview.py -msgid "Validate this certificate for yourself" -msgstr "为自己验证此证书" - -#. Translators: This text describes (at a high level) the mission and charter -#. the edX platform and organization -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "{platform_name} offers interactive online classes and MOOCs." -msgstr "{platform_name}提供线上互动课程和MOOCs课程。" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "About {platform_name}" -msgstr "关于{platform_name}" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "Learn more about {platform_name}" -msgstr "了解更多关于{platform_name}的信息" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "Learn with {platform_name}" -msgstr "了解{platform_name}" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "Work at {platform_name}" -msgstr "工作于{platform_name}" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "Contact {platform_name}" -msgstr "联系{platform_name}" - -#. Translators: This text appears near the top of the certficate and -#. describes the guarantee provided by edX -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "{platform_name} acknowledges the following student accomplishment" -msgstr "{platform_name}承认以下的学生成就" - -#. Translators: This text represents the description of course -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"a course of study offered by {partner_short_name}, an online learning " -"initiative of {partner_long_name}." -msgstr "课程的学习是由 {partner_short_name}所提供,和 {partner_long_name}的主动线上学习。" - -#. Translators: This text represents the description of course -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "a course of study offered by {partner_short_name}." -msgstr "课程的学习是由 {partner_short_name}所提供。" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "I completed the {course_title} course on {platform_name}." -msgstr "我在{platform_name}上完成了{course_title}课程。" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "" -"I completed a course at {platform_name}. Take a look at my certificate." -msgstr "我已经完成了一门课在{platform_name}。检视我的证书。" - -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "More Information About {user_name}'s Certificate:" -msgstr "关于 {user_name} 证书的更多信息:" - -#. Translators: This line is displayed to a user who has completed a course -#. and achieved a certification -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "{fullname}, you earned a certificate!" -msgstr "{fullname},您已经取得证书!" - -#. Translators: This line congratulates the user and instructs them to share -#. their accomplishment on social networks -#: lms/djangoapps/certificates/views/webview.py -msgid "" -"Congratulations! This page summarizes what you accomplished. Show it off to " -"family, friends, and colleagues in your social and professional networks." -msgstr "恭喜!本页总结您所完成之项目。" - -#. Translators: This line leads the reader to understand more about the -#. certificate that a student has been awarded -#: lms/djangoapps/certificates/views/webview.py -#, python-brace-format -msgid "More about {fullname}'s accomplishment" -msgstr "了解更多有关{fullname}的成就" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/class_dashboard/dashboard_data.py -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/tools.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/schedules/admin.py -msgid "Username" -msgstr "用户名" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Grade" -msgstr "成绩" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Percent" -msgstr "百分比" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Opened by this number of students" -msgstr "打开过的学生" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "subsections" -msgstr "节" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Count of Students" -msgstr "学生数量" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Percent of Students" -msgstr "学生百分比" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "Score" -msgstr "分数" - -#: lms/djangoapps/class_dashboard/dashboard_data.py -msgid "problems" -msgstr "问题" - -#: lms/djangoapps/commerce/api/v1/serializers.py -#, python-brace-format -msgid "{course_id} is not a valid course key." -msgstr "{course_id} 不是有效的课程密钥。" - -#: lms/djangoapps/commerce/api/v1/serializers.py -#, python-brace-format -msgid "Course {course_id} does not exist." -msgstr "{course_id} 课程不存在。" - -#: lms/djangoapps/commerce/models.py -msgid "Use the checkout page hosted by the E-Commerce service." -msgstr "透过使用电子商务服务承载结帐页面。" - -#: lms/djangoapps/commerce/models.py -msgid "Path to course(s) checkout page hosted by the E-Commerce service." -msgstr "电子商务服务托管的课程(或多个)结帐路径。" - -#: lms/djangoapps/commerce/models.py openedx/core/djangoapps/catalog/models.py -#: openedx/core/djangoapps/credentials/models.py -#: openedx/core/djangoapps/credit/models.py -msgid "Cache Time To Live" -msgstr "快取存留时间" - -#: lms/djangoapps/commerce/models.py -#: openedx/core/djangoapps/credentials/models.py -#: openedx/core/djangoapps/credit/models.py -msgid "" -"Specified in seconds. Enable caching by setting this to a value greater than" -" 0." -msgstr "指定为秒。借由设定这个大于0的值来启动快取。" - -#: lms/djangoapps/commerce/models.py -msgid "Path to order receipt page." -msgstr "接收订单页面的路径。" - -#: lms/djangoapps/commerce/models.py -msgid "Automatically approve valid refund requests, without manual processing" -msgstr "自动批准有效的退款申请,无需人工处理。" - -#: lms/djangoapps/commerce/utils.py lms/djangoapps/shoppingcart/models.py -msgid "[Refund] User-Requested Refund" -msgstr "[Refund] 用户申请退款" - -#: lms/djangoapps/commerce/utils.py -#, python-brace-format -msgid "" -"A refund request has been initiated for {username} ({email}). To process " -"this request, please visit the link(s) below." -msgstr "{username} ({email}) 的退款要求已经建立。为了处理此请求,请访问以下联结(s) 。" - -#: lms/djangoapps/commerce/views.py lms/djangoapps/shoppingcart/pdf.py -msgid "Receipt" -msgstr "收据" - -#: lms/djangoapps/commerce/views.py -msgid "Payment Failed" -msgstr "支付失败" - -#: lms/djangoapps/commerce/views.py -msgid "There was a problem with this transaction. You have not been charged." -msgstr "交易出现问题。您尚未缴费。" - -#: lms/djangoapps/commerce/views.py -msgid "" -"Make sure your information is correct, or try again with a different card or" -" another form of payment." -msgstr "确保您的信息正确无误了,或换一张信用重试或换用其他支付方式。" - -#: lms/djangoapps/commerce/views.py -msgid "" -"A system error occurred while processing your payment. You have not been " -"charged." -msgstr "在处理您的付款时出现系统错误。您尚未缴费。" - -#: lms/djangoapps/commerce/views.py -msgid "Please wait a few minutes and then try again." -msgstr "请等待几分钟后重试。" - -#: lms/djangoapps/commerce/views.py -#, python-brace-format -msgid "For help, contact {payment_support_link}." -msgstr "联系{payment_support_link}寻求帮助。" - -#: lms/djangoapps/commerce/views.py -msgid "An error occurred while creating your receipt." -msgstr "创建您的收据时出错。" - -#: lms/djangoapps/commerce/views.py -#, python-brace-format -msgid "" -"If your course does not appear on your dashboard, contact " -"{payment_support_link}." -msgstr "如果您的课程未出现在您的课程面板上,请联系{payment_support_link}。" - -#: lms/djangoapps/course_goals/models.py -msgid "Earn a certificate" -msgstr "获取证书" - -#: lms/djangoapps/course_goals/models.py -msgid "Complete the course" -msgstr "完成课程" - -#: lms/djangoapps/course_goals/models.py -msgid "Explore the course" -msgstr "发现课程" - -#: lms/djangoapps/course_goals/models.py -msgid "Not sure yet" -msgstr "再想想" - -#: lms/djangoapps/course_wiki/tab.py lms/djangoapps/course_wiki/views.py -#: lms/templates/wiki/base.html -msgid "Wiki" -msgstr "维基" - -#. Translators: this string includes wiki markup. Leave the ** and the _ -#. alone. -#: lms/djangoapps/course_wiki/views.py -#, python-brace-format -msgid "This is the wiki for **{organization}**'s _{course_name}_." -msgstr "这是**{organization}**_{course_name}_的wiki。" - -#: lms/djangoapps/course_wiki/views.py -msgid "Course page automatically created." -msgstr "课程网页已经自动创建" - -#: lms/djangoapps/course_wiki/views.py -#, python-brace-format -msgid "Welcome to the {platform_name} Wiki" -msgstr "欢迎来到 {platform_name} Wiki" - -#: lms/djangoapps/course_wiki/views.py -msgid "Visit a course wiki to add an article." -msgstr "浏览课程维基添加课程标题" - -#: lms/djangoapps/courseware/access_response.py -msgid "Course has not started" -msgstr "课程尚未开始" - -#: lms/djangoapps/courseware/access_response.py -msgid "Course does not start until {}" -msgstr "课程将在{}后开课" - -#: lms/djangoapps/courseware/access_response.py -msgid "You have unfulfilled milestones" -msgstr "您有未完成的里程碑" - -#: lms/djangoapps/courseware/access_response.py -msgid "You do not have access to this course" -msgstr "您无权访问学习该课程" - -#: lms/djangoapps/courseware/access_response.py -msgid "You do not have access to this course on a mobile device" -msgstr "您无法在移动设备上学习该课程" - -#: lms/djangoapps/courseware/course_tools.py -msgid "Upgrade to Verified" -msgstr "升级到验证" - -#. Translators: 'absolute' is a date such as "Jan 01, -#. 2020". 'relative' is a fuzzy description of the time until -#. 'absolute'. For example, 'absolute' might be "Jan 01, 2020", -#. and if today were December 5th, 2020, 'relative' would be "1 -#. month". -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "{relative} ago - {absolute}" -msgstr "{relative} 前 - {absolute}" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "in {relative} - {absolute}" -msgstr " {relative}后 - {absolute}" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Course Starts" -msgstr "课程开始" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Don't forget to add a calendar reminder!" -msgstr "请记得要添加提醒!" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "Course starts in {time_remaining_string} on {course_start_date}." -msgstr "课程开始日期:{course_start_date},即{time_remaining_string}后开始。" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "Course starts in {time_remaining_string} at {course_start_time}." -msgstr "课程开始时间:{course_start_time},即{time_remaining_string}后开始。" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Course End" -msgstr "课程结束" - -#: lms/djangoapps/courseware/date_summary.py -msgid "" -"To earn a certificate, you must complete all requirements before this date." -msgstr "要获取修课证明,您必须在这个期限之前完成课程的所有要求。" - -#: lms/djangoapps/courseware/date_summary.py -msgid "After this date, course content will be archived." -msgstr "在此日期之后,课程内容将被存档。" - -#: lms/djangoapps/courseware/date_summary.py -msgid "" -"This course is archived, which means you can review course content but it is" -" no longer active." -msgstr "这门课程已经归档:您可以复习课程内容,但该课程不再有活动(active)。" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "This course is ending in {time_remaining_string} on {course_end_date}." -msgstr "课程结束日期:{course_end_date},即{time_remaining_string}后结束。" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "This course is ending in {time_remaining_string} at {course_end_time}." -msgstr "课程结束时间:{course_end_time},即{time_remaining_string}后结束。" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Certificate Available" -msgstr "可申请的证书" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Day certificates will become available for passing verified learners." -msgstr "及格的已认证学员可获得证书的时间。" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "" -"If you have earned a certificate, you will be able to access it " -"{time_remaining_string} from now. You will also be able to view your " -"certificates on your {learner_profile_link}." -msgstr "如果您已获取证书,则可在{time_remaining_string}内前往{learner_profile_link}上查看您的证书。" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Learner Profile" -msgstr "学生用户资料" - -#: lms/djangoapps/courseware/date_summary.py -msgid "We are working on generating course certificates." -msgstr "正在生成课程证书。" - -#: lms/djangoapps/courseware/date_summary.py -#: lms/djangoapps/courseware/date_summary.py -msgid "Upgrade to Verified Certificate" -msgstr "身份认证升级" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Verification Upgrade Deadline" -msgstr "验证升级期限" - -#: lms/djangoapps/courseware/date_summary.py -msgid "" -"Don't miss the opportunity to highlight your new knowledge and skills by " -"earning a verified certificate." -msgstr "学习新知识、磨炼新技能、获取认证证书,好机会不容错过!" - -#: lms/djangoapps/courseware/date_summary.py -msgid "" -"You are still eligible to upgrade to a Verified Certificate! Pursue it to " -"highlight the knowledge and skills you gain in this course." -msgstr "您仍有资格升级至合格证书!继续努力精进您从这个课程所获的知识和技能。" - -#. Translators: This describes the time by which the user -#. should upgrade to the verified track. 'date' will be -#. their personalized verified upgrade deadline formatted -#. according to their locale. -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "by {date}" -msgstr "截止于{date}" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "" -"Don't forget, you have {time_remaining_string} left to upgrade to a Verified" -" Certificate." -msgstr "温馨提示,您升级成认证证书的剩余时间为{time_remaining_string}。" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "Don't forget to upgrade to a verified certificate by {localized_date}." -msgstr "温馨提示,请在{localized_date}前升级成认证证书。" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "" -"In order to qualify for a certificate, you must meet all course grading " -"requirements, upgrade before the course deadline, and successfully verify " -"your identity on {platform_name} if you have not done so " -"already.{button_panel}" -msgstr "" -"您必须满足所有课程评分要求才能申请证书,请在课程截止日期前进行升级,并在{platform_name}成功认证身份。{button_panel}" - -#: lms/djangoapps/courseware/date_summary.py -#, python-brace-format -msgid "Upgrade ({upgrade_price})" -msgstr "升级({upgrade_price})" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Learn More" -msgstr "了解更多" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Retry Verification" -msgstr "重试验证" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Verify My Identity" -msgstr "验证我的身份" - -#: lms/djangoapps/courseware/date_summary.py -msgid "Missed Verification Deadline" -msgstr "已错过验证期限" - -#: lms/djangoapps/courseware/date_summary.py -msgid "" -"Unfortunately you missed this course's deadline for a successful " -"verification." -msgstr "很抱歉您错过了成功验证这堂课的截止期限。" - -#: lms/djangoapps/courseware/date_summary.py -msgid "" -"You must successfully complete verification before this date to qualify for " -"a Verified Certificate." -msgstr "您必须在这个日期之前成功完成验证,以具备获取合格证书的资格。" - -#: lms/djangoapps/courseware/masquerade.py -#, python-brace-format -msgid "" -"There is no user with the username or email address \"{user_identifier}\" " -"enrolled in this course." -msgstr "在此门课程的学员中,未找到使用用户名或邮箱为{user_identifier}的用户。" - -#: lms/djangoapps/courseware/masquerade.py -msgid "" -"This type of component cannot be shown while viewing the course as a " -"specific student." -msgstr "特定学生查看课程时,该类型组件无法显示。" - -#: lms/djangoapps/courseware/models.py lms/djangoapps/courseware/models.py -#: lms/djangoapps/courseware/models.py -msgid "" -"Number of days a learner has to upgrade after content is made available" -msgstr "当内容开放后,学员必须升级的天数期限。" - -#: lms/djangoapps/courseware/models.py -msgid "Disable the dynamic upgrade deadline for this course run." -msgstr "禁用此门开课的可变升级截止日期。" - -#: lms/djangoapps/courseware/models.py -msgid "Disable the dynamic upgrade deadline for this organization." -msgstr "禁用此组织的可变升级截止日期。" - -#: lms/djangoapps/courseware/tabs.py -msgid "Syllabus" -msgstr "教学大纲" - -#: lms/djangoapps/courseware/tabs.py -msgid "Progress" -msgstr "进度" - -#. Translators: 'Textbooks' refers to the tab in the course that leads to the -#. course' textbooks -#: lms/djangoapps/courseware/tabs.py -msgid "Textbooks" -msgstr "教材" - -#: lms/djangoapps/courseware/views/index.py -#, python-brace-format -msgid "" -"You are not signed in. To see additional course content, {sign_in_link} or " -"{register_link}, and enroll in this course." -msgstr "您尚未登录,如需查看额外课程内容,请{sign_in_link}或{register_link}并报名此门课程。" - -#: lms/djangoapps/courseware/views/index.py -#: lms/djangoapps/courseware/views/views.py -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "sign in" -msgstr "登录" - -#: lms/djangoapps/courseware/views/index.py -#: lms/djangoapps/courseware/views/views.py -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -#: openedx/features/course_experience/views/course_home_messages.py -msgid "register" -msgstr "注册" - -#: lms/djangoapps/courseware/views/views.py -msgid "Your enrollment: Audit track" -msgstr "您已报名旁听" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"You are enrolled in the audit track for this course. The audit track does " -"not include a certificate." -msgstr "您已报名旁听此门课程,旁听无法获得证书。" - -#: lms/djangoapps/courseware/views/views.py -msgid "Your enrollment: Honor track" -msgstr "您已报名旁听" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"You are enrolled in the honor track for this course. The honor track does " -"not include a certificate." -msgstr "您已报名旁听此门课程,旁听无法获得证书。" - -#: lms/djangoapps/courseware/views/views.py -msgid "We're working on it..." -msgstr "我们正在努力..." - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"We're creating your certificate. You can keep working in your courses and a " -"link to it will appear here and on your Dashboard when it is ready." -msgstr "我们正在为您生成证书。您可以继续学习您的课程,一旦证书准备就绪,这里及您的课程面板中都会显示指向证书的链接。" - -#: lms/djangoapps/courseware/views/views.py -msgid "Your certificate has been invalidated" -msgstr "您的证书已失效" - -#: lms/djangoapps/courseware/views/views.py -msgid "Please contact your course team if you have any questions." -msgstr "如果您有任何问题,请联系您的课程团队。" - -#: lms/djangoapps/courseware/views/views.py -msgid "Congratulations, you qualified for a certificate!" -msgstr "恭喜!您已经通过认证!" - -#: lms/djangoapps/courseware/views/views.py -#: lms/djangoapps/courseware/views/views.py -msgid "You've earned a certificate for this course." -msgstr "您已获取此门课程的证书。" - -#: lms/djangoapps/courseware/views/views.py -msgid "Certificate unavailable" -msgstr "无法查看证书" - -#: lms/djangoapps/courseware/views/views.py -#, python-brace-format -msgid "" -"You have not received a certificate because you do not have a current " -"{platform_name} verified identity." -msgstr "您未收到证书,因为您尚未认证{platform_name}的身份。" - -#: lms/djangoapps/courseware/views/views.py -msgid "Your certificate is available" -msgstr "您的证书有效" - -#: lms/djangoapps/courseware/views/views.py -#, python-brace-format -msgid "To see course content, {sign_in_link} or {register_link}." -msgstr "请{sign_in_link}或{register_link}以查看课程内容。" - -#: lms/djangoapps/courseware/views/views.py -#, python-brace-format -msgid "" -"You must be enrolled in the course to see course content." -" {enroll_link_start}Enroll now{enroll_link_end}." -msgstr "您必须{enroll_link_start}报名课程{enroll_link_end}才能查看课程内容。" - -#: lms/djangoapps/courseware/views/views.py -#: openedx/features/course_experience/views/course_home_messages.py -msgid "You must be enrolled in the course to see course content." -msgstr "您必须报名课程才能查看课程内容。" - -#: lms/djangoapps/courseware/views/views.py -msgid "Invalid location." -msgstr "无效地址" - -#: lms/djangoapps/courseware/views/views.py -#, python-brace-format -msgid "User {username} has never accessed problem {location}" -msgstr "用户{username} 从来没有访问{location}问答" - -#: lms/djangoapps/courseware/views/views.py -#, python-brace-format -msgid "You must be signed in to {platform_name} to create a certificate." -msgstr "您必须先登录{platform_name}才可创建证书。" - -#: lms/djangoapps/courseware/views/views.py -msgid "Course is not valid" -msgstr "课程无效" - -#: lms/djangoapps/courseware/views/views.py -msgid "Your certificate will be available when you pass the course." -msgstr "您的认证在您通过课程后有效。" - -#: lms/djangoapps/courseware/views/views.py -msgid "Certificate has already been created." -msgstr "证书已经被创建。" - -#: lms/djangoapps/courseware/views/views.py -msgid "Certificate is being created." -msgstr "认证已被创建。" - -#: lms/djangoapps/courseware/views/views.py -#, python-brace-format -msgid "" -"{platform_name} now offers financial assistance for learners who want to earn Verified Certificates but who may not be able to pay the Verified Certificate fee. Eligible learners may receive up to 90{percent_sign} off the Verified Certificate fee for a course.\n" -"To apply for financial assistance, enroll in the audit track for a course that offers Verified Certificates, and then complete this application. Note that you must complete a separate application for each course you take.\n" -" We plan to use this information to evaluate your application for financial assistance and to further develop our financial assistance program." -msgstr "" -"{platform_name} 现今提供经济援助,使想获得合格证书却无法支付证书费用之学习者能拿到证书。有资格的学习者可获得高达免 90 {percent_sign} 的合格证书优惠价。\n" -"申请经济援助,报名参加提供合格证书之审核作业,接着完成申请。请注意,您必须分別申请每一门您修习完毕之课程。\n" -"计画利用这些讯息来评估您的经济援助申请,并进一步发展经济援助计划。" - -#: lms/djangoapps/courseware/views/views.py -msgid "Annual Household Income" -msgstr "家庭年收入" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"Tell us about your current financial situation. Why do you need assistance?" -msgstr "请告诉我们关于您目前的经济状况。为什么您需要协助?" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"Tell us about your learning or professional goals. How will a Verified " -"Certificate in this course help you achieve these goals?" -msgstr "请告诉我们关于您的学习或专业目标。一份这门课的认证证书,将会如何帮助您达成这些目标?" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"Tell us about your plans for this course. What steps will you take to help " -"you complete the course work and receive a certificate?" -msgstr "告诉我们有关于您计画的这门课程。您会采取什么措施来帮助您完成课程学习,并获得证书?" - -#: lms/djangoapps/courseware/views/views.py -msgid "Use between 250 and 500 words or so in your response." -msgstr "您的回应字数应在250到500字之间。" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"Select the course for which you want to earn a verified certificate. If the " -"course does not appear in the list, make sure that you have enrolled in the " -"audit track for the course." -msgstr "选择您想要获得修课证明之课程。如果课程没出现在列表中,请确认您已经注册及追踪该课程。" - -#: lms/djangoapps/courseware/views/views.py -msgid "Specify your annual household income in US Dollars." -msgstr "说明您以美金计算之家庭年收入。" - -#: lms/djangoapps/courseware/views/views.py -msgid "" -"I allow EliteMBA to use the information provided in this application (except" -" for financial information) for EliteMBA marketing purposes." -msgstr "我同意EliteMBA.cn使用此申请中所提供之资讯(除财务资讯)作为edX销售之目的。" - -#: lms/djangoapps/dashboard/git_import.py -#, python-brace-format -msgid "" -"Path {0} doesn't exist, please create it, or configure a different path with" -" GIT_REPO_DIR" -msgstr "路径 {0} 不存在,请创建,或为GIT_REPO_DIR设置一个不同的路径。" - -#: lms/djangoapps/dashboard/git_import.py -msgid "" -"Non usable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" -msgstr "没有可写的Git地址。期待类似这样的地址:git@github.com:mitocw/edx4edx_lite.git" - -#: lms/djangoapps/dashboard/git_import.py -msgid "Unable to get git log" -msgstr "不能取得git 日志" - -#: lms/djangoapps/dashboard/git_import.py -msgid "git clone or pull failed!" -msgstr "git clone或pull失败!" - -#: lms/djangoapps/dashboard/git_import.py -msgid "Unable to run import command." -msgstr "不能执行导入命令。" - -#: lms/djangoapps/dashboard/git_import.py -msgid "The underlying module store does not support import." -msgstr "底层模块存储不支持导入。" - -#. Translators: This is an error message when they ask for a -#. particular version of a git repository and that version isn't -#. available from the remote source they specified -#: lms/djangoapps/dashboard/git_import.py -msgid "The specified remote branch is not available." -msgstr "指定的远程分支无效。" - -#. Translators: Error message shown when they have asked for a git -#. repository branch, a specific version within a repository, that -#. doesn't exist, or there is a problem changing to it. -#: lms/djangoapps/dashboard/git_import.py -msgid "Unable to switch to specified branch. Please check your branch name." -msgstr "无法切换到指定的分支。请检查您的分支名。" - -#: lms/djangoapps/dashboard/management/commands/git_add_course.py -msgid "" -"Import the specified git repository and optional branch into the modulestore" -" and optionally specified directory." -msgstr "倒入指定的git代码仓库和可选分支到模块库与可选的指定目录。" - -#. Translators: This message means that the user could not be authenticated -#. (that is, we could -#. not log them in for some reason - maybe they don't have permission, or -#. their password was wrong) -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Failed in authenticating {username}, error {error}\n" -msgstr "认证{username}失败, 错误代码{error}\n" - -#. Translators: This message means that the user could not be authenticated -#. (that is, we could -#. not log them in for some reason - maybe they don't have permission, or -#. their password was wrong) -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Failed in authenticating {username}\n" -msgstr "验证{username}失败\n" - -#. Translators: this means that the password has been corrected (sometimes the -#. database needs to be resynchronized) -#. Translate this as meaning "the password was fixed" or "the password was -#. corrected". -#: lms/djangoapps/dashboard/sysadmin.py -msgid "fixed password" -msgstr "修改后的密码" - -#. Translators: this means everything happened successfully, yay! -#: lms/djangoapps/dashboard/sysadmin.py -msgid "All ok!" -msgstr "一切正常!" - -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -msgid "Must provide username" -msgstr "请提供用户名" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Must provide full name" -msgstr "请提供全名" - -#. Translators: Domain is an email domain, such as "@gmail.com" -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Email address must end in {domain}" -msgstr "电子邮箱地址必须以{domain}结尾" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Failed - email {email_addr} already exists as {external_id}" -msgstr "失败 - Email {email_addr} 已经存在为 {external_id}" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Password must be supplied if not using certificates" -msgstr "没有使用认证时必须提供密码。" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "email address required (not username)" -msgstr "电子邮件地址必填(不是用户名)" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Oops, failed to create user {user}, {error}" -msgstr "啊, 用户 {user}创建失败, {error}" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "User {user} created successfully!" -msgstr "用户{user}创建成功!" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Cannot find user with email address {email_addr}" -msgstr "未能找到使用{email_addr}注册的用户" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Cannot find user with username {username} - {error}" -msgstr "无法找到用户名为 {username} 的用户 - {error}" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Deleted user {username}" -msgstr "删除用户{username}" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Statistic" -msgstr "统计" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Value" -msgstr "值" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Site statistics" -msgstr "网站统计" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Total number of users" -msgstr "用户总数" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Courses loaded in the modulestore" -msgstr "已加载课程至模块仓库" - -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -#: lms/djangoapps/support/views/manage_user.py -msgid "username" -msgstr "用户名" - -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -msgid "email" -msgstr "电子邮件" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Repair Results" -msgstr "修复结果" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Create User Results" -msgstr "创建用户结果" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Delete User Results" -msgstr "删除用户结果" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "The git repo location should end with '.git', and be a valid url" -msgstr "Git仓库应为以“.git”结尾的有效 URL" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Added Course" -msgstr "添加课程" - -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -msgid "Course Name" -msgstr "课程名称" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Directory/ID" -msgstr "目录/ID" - -#. Translators: "Git Commit" is a computer command; see -#. http://gitref.org/basic/#commit -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Git Commit" -msgstr "Git提交" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Last Change" -msgstr "最后一次修改" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Last Editor" -msgstr "最后一次编辑者" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Information about all courses" -msgstr "所有课程信息" - -#: lms/djangoapps/dashboard/sysadmin.py -#, python-brace-format -msgid "Error - cannot get course with ID {0}
    {1}
    " -msgstr "错误,不能通过 ID {0}
    {1}
    取得课程" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Deleted" -msgstr "删除" - -#: lms/djangoapps/dashboard/sysadmin.py lms/djangoapps/dashboard/sysadmin.py -msgid "course_id" -msgstr "课程ID" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "# enrolled" -msgstr "# 已选修" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "# staff" -msgstr "# 员工" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "instructors" -msgstr "主讲教师" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "Enrollment information for all courses" -msgstr "所有课程的选课信息" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "role" -msgstr "角色" - -#: lms/djangoapps/dashboard/sysadmin.py -msgid "full_name" -msgstr "全名" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -#, python-format -msgid "%(comment_username)s replied to %(thread_title)s:" -msgstr "%(comment_username)s回复了%(thread_title)s:" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt -msgid "View discussion" -msgstr "查看讨论" - -#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt -#, python-format -msgid "Response to %(thread_title)s" -msgstr "%(thread_title)s的回复" - -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -msgid "Title can't be empty" -msgstr "标题不能为空" - -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -msgid "Body can't be empty" -msgstr "内容不能为空" - -#: lms/djangoapps/django_comment_client/base/views.py -msgid "Topic doesn't exist" -msgstr "主题不存在" - -#: lms/djangoapps/django_comment_client/base/views.py -#: lms/djangoapps/django_comment_client/base/views.py -msgid "Comment level too deep" -msgstr "评论层级过深" - -#: lms/djangoapps/django_comment_client/base/views.py -msgid "" -"Error uploading file. Please contact the site administrator. Thank you." -msgstr "上传文件出错,请联系网站管理员,谢谢。" - -#: lms/djangoapps/django_comment_client/base/views.py -msgid "Good" -msgstr "好" - -#: lms/djangoapps/edxnotes/helpers.py lms/djangoapps/edxnotes/helpers.py -msgid "EdxNotes Service is unavailable. Please try again in a few minutes." -msgstr "EdxNotes服务不可用。请几分钟后重试。" - -#: lms/djangoapps/edxnotes/helpers.py -msgid "Invalid JSON response received from notes api." -msgstr "Notes api 接收到的 JSON 响应无效。" - -#: lms/djangoapps/edxnotes/helpers.py -msgid "Incorrect data received from notes api." -msgstr "notes api 接收到的数据错误。" - -#: lms/djangoapps/edxnotes/helpers.py -msgid "No endpoint was provided for EdxNotes." -msgstr "未为EdxNotes提供终端点。" - -#: lms/djangoapps/edxnotes/plugins.py -msgid "Notes" -msgstr "笔记" - -#: lms/djangoapps/email_marketing/models.py -msgid "API key for accessing Sailthru. " -msgstr "用于访问Sailthru的AIP key" - -#: lms/djangoapps/email_marketing/models.py -msgid "API secret for accessing Sailthru. " -msgstr "用于访问Sailthru的API secret。" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru list name to add new users to. " -msgstr "添加新用户的Salithru列表名称。" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru connection retry interval (secs)." -msgstr "Sailthru连接重试间隔时间(秒)" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru maximum retries." -msgstr "Sailthru最多可重试次数。" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru template to use on welcome send." -msgstr "Sailthru用于欢迎发送的模板。" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru template to use on abandoned cart reminder. Deprecated." -msgstr "Sailthru用于废弃的购物车提醒通知的模板。弃用。" - -#: lms/djangoapps/email_marketing/models.py -msgid "" -"Sailthru minutes to wait before sending abandoned cart message. Deprecated." -msgstr "Sailthru等待了几分钟才发送了废弃的购物车消息。弃用。" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru send template to use on enrolling for audit. " -msgstr "用于报名旁听的Sailthru模板。" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru send template to use on passed ID verification." -msgstr "Sailthru发送模板以便在通过的ID验证时使用。" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru send template to use on failed ID verification." -msgstr "Sailthru发送模板用于失败的ID验证。" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru send template to use on upgrading a course. Deprecated " -msgstr "Sailthru发送模板用于更新课程。弃用。" - -#: lms/djangoapps/email_marketing/models.py -msgid "Sailthru send template to use on purchasing a course seat. Deprecated " -msgstr "Sailthru发送模板用于购买一个课程名额。弃用。" - -#: lms/djangoapps/email_marketing/models.py -msgid "Use the Sailthru content API to fetch course tags." -msgstr "使用Sailthru内容API来获取课程标签。" - -#: lms/djangoapps/email_marketing/models.py -msgid "Number of seconds to cache course content retrieved from Sailthru." -msgstr "隐藏从Sailthru所获取的课程内容的所需时间。" - -#: lms/djangoapps/email_marketing/models.py -msgid "Cost in cents to report to Sailthru for enrolls." -msgstr "向Sailthru报告入学申请的费用以美分计。" - -#: lms/djangoapps/email_marketing/models.py -msgid "" -"Optional lms url scheme + host used to construct urls for content library, " -"e.g. https://courses.edx.org." -msgstr "可选LMS URL方案 + 用于构建内容库的主URL,例如:https://courses.edx.org。" - -#: lms/djangoapps/email_marketing/models.py -msgid "" -"Number of seconds to delay the sending of User Welcome email after user has " -"been created" -msgstr "在用户已注册账号后,发送欢迎邮件的延迟秒数" - -#: lms/djangoapps/email_marketing/models.py -msgid "" -"The number of seconds to delay/timeout wait to get cookie values from " -"sailthru." -msgstr "从sailthru获取cookie值的延迟/超时等待秒数" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -#, python-brace-format -msgid "{platform_name} Staff" -msgstr "{platform_name} 员工" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Course Staff" -msgstr "授课教师" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Staff" -msgstr "教员" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Used Registration Code" -msgstr "已使用的注册编号" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Credit Card - Individual" -msgstr "信用卡—个人" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -#, python-brace-format -msgid "manually enrolled by username: {username}" -msgstr "透过使用者: {username}手动注册" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Manually Enrolled" -msgstr "手动注册" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "Data Integrity Error" -msgstr "数据完整性错误" - -#: lms/djangoapps/instructor/paidcourse_enrollment_report.py -msgid "TBD" -msgstr "待定" - -#: lms/djangoapps/instructor/services.py -#, python-brace-format -msgid "Proctored Exam Review: {review_status}" -msgstr "监考模式考试审查: {review_status}" - -#: lms/djangoapps/instructor/services.py -#, python-brace-format -msgid "" -"A proctored exam attempt for {exam_name} in {course_name} by username: " -"{student_username} was reviewed as {review_status} by the proctored exam " -"review provider." -msgstr "" -"被監考考試審核提供者審查為{exam_name}為嘗試監考對: {review_status}在 {course_name}藉由使用者名稱: " -"{student_username}" - -#: lms/djangoapps/instructor/settings/common.py -msgid "Your Platform Insights" -msgstr "您的平台Insights" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"The {report_type} report is being created. To view the status of the report," -" see Pending Tasks below." -msgstr "正在创建{report_type}报告,请在下面的“进行中的任务”查看报告状态。" - -#: lms/djangoapps/instructor/views/api.py -msgid "User does not exist." -msgstr "该用户不存在。" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Found a conflict with given identifier. Please try an alternative identifier" -msgstr "发现一处与给定标识发生的冲突,请使用其他标识" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Make sure that the file you upload is in CSV format with no extraneous " -"characters or rows." -msgstr "确认您上传的CSV格式的文件里不包含无关的字符或行。" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -msgid "Could not read uploaded file." -msgstr "不能读取已上传的文件。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"Data in row #{row_num} must have exactly four columns: email, username, full" -" name, and country" -msgstr "第#{row_num}行的数据必须是以下四列:E-mail、用户名、全名以及国家" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Invalid email {email_address}." -msgstr "无效的邮箱{email_address}。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"An account with email {email} exists but the provided username {username} is" -" different. Enrolling anyway with {email}." -msgstr "电子邮件{email}的帐户已存在但是所提供的使用者名称{username}是不同的。可以用{email}注册。" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -msgid "File is not attached." -msgstr "文件未附上。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Username {user} already exists." -msgstr "用户名 {user} 已经存在了。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"Error '{error}' while sending email to new user (user email={email}). " -"Without the email student would not be able to login. Please contact support" -" for further information." -msgstr "" -"Error '{error}'同时发送电子邮件给新用户(user email={email})。\n" -"如果没有电子邮件的学生将无法登录。请联系以获取更多讯息的支援。" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "problem responses" -msgstr "问题回答" - -#: lms/djangoapps/instructor/views/api.py -msgid "Could not find problem with this location." -msgstr "无法於此位置找到问题。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Invoice number '{num}' does not exist." -msgstr "发票号 '{num}' 不存在。" - -#: lms/djangoapps/instructor/views/api.py -msgid "The sale associated with this invoice has already been invalidated." -msgstr "与此相关联的发票出售已经失效。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Invoice number {0} has been invalidated." -msgstr "发票号 {0} 已经无效。" - -#: lms/djangoapps/instructor/views/api.py -msgid "This invoice is already active." -msgstr "此发货单已经激活。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "The registration codes for invoice {0} have been re-activated." -msgstr "收据 {0}的注册编号已经被重新激活。" - -#: lms/djangoapps/instructor/views/api.py -msgid "CourseID" -msgstr "课程 ID" - -#: lms/djangoapps/instructor/views/api.py -msgid "Certificate Type" -msgstr "证书类型" - -#: lms/djangoapps/instructor/views/api.py -msgid "Total Certificates Issued" -msgstr "发行的证书总计" - -#: lms/djangoapps/instructor/views/api.py -msgid "Date Report Run" -msgstr "报告实行日期" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "enrolled learner profile" -msgstr "已报名学员的资料" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "User ID" -msgstr "用户ID" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Email" -msgstr "电子邮件" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Language" -msgstr "语言" - -#: lms/djangoapps/instructor/views/api.py -msgid "Location" -msgstr "位置" - -#: lms/djangoapps/instructor/views/api.py -msgid "Birth Year" -msgstr "出生年度" - -#. Translators: This label appears above a dropdown menu on the registration -#. form used to select the user's gender. -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Gender" -msgstr "性别" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Level of Education" -msgstr "教育水平" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Mailing Address" -msgstr "邮寄地址" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Goals" -msgstr "目标" - -#: lms/djangoapps/instructor/views/api.py -msgid "Enrollment Mode" -msgstr "选课模式" - -#: lms/djangoapps/instructor/views/api.py -msgid "Verification Status" -msgstr "验证状态" - -#: lms/djangoapps/instructor/views/api.py -msgid "Cohort" -msgstr "群组" - -#: lms/djangoapps/instructor/views/api.py -msgid "Team" -msgstr "团队" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the city in which they live. -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "City" -msgstr "城市" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Country" -msgstr "国家/地区" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "enrollment" -msgstr "报名" - -#: lms/djangoapps/instructor/views/api.py -msgid "The file must contain a 'cohort' column containing cohort names." -msgstr "该文件必须包含一个“群组”列,该列中包含了群组的名称。" - -#: lms/djangoapps/instructor/views/api.py -msgid "The file must contain a 'username' column, an 'email' column, or both." -msgstr "该文件必须包含一个“username”列,或一个“email”列,或两者都包含。" - -#: lms/djangoapps/instructor/views/api.py -msgid "Coupon Code" -msgstr "优惠券编码" - -#: lms/djangoapps/instructor/views/api.py -#: openedx/core/djangoapps/schedules/admin.py -msgid "Course Id" -msgstr "课程编号" - -#: lms/djangoapps/instructor/views/api.py -msgid "% Discount" -msgstr "%折扣" - -#: lms/djangoapps/instructor/views/api.py lms/djangoapps/shoppingcart/pdf.py -#: lms/djangoapps/shoppingcart/reports.py -msgid "Description" -msgstr "描述" - -#: lms/djangoapps/instructor/views/api.py -msgid "Expiration Date" -msgstr "过期日期" - -#: lms/djangoapps/instructor/views/api.py -msgid "Is Active" -msgstr "是否活跃" - -#: lms/djangoapps/instructor/views/api.py -msgid "Code Redeemed Count" -msgstr "推广折扣额代码" - -#: lms/djangoapps/instructor/views/api.py -msgid "Total Discounted Seats" -msgstr "总折扣名额" - -#: lms/djangoapps/instructor/views/api.py -msgid "Total Discounted Amount" -msgstr "总折扣金额" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "detailed enrollment" -msgstr "报名详情" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "executive summary" -msgstr "摘要信息" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "survey" -msgstr "调查" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "proctored exam results" -msgstr "监考模式考试结果" - -#: lms/djangoapps/instructor/views/api.py -msgid "Could not parse amount as a decimal" -msgstr "无法解析总数为十进制" - -#: lms/djangoapps/instructor/views/api.py -msgid "Unable to generate redeem codes because of course misconfiguration." -msgstr "由于课程的错误配置,无法生成兑换码。" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/shoppingcart/models.py -msgid "pdf download unavailable right now, please contact support." -msgstr "pdf文件现在无法下载,请联系技术支持。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Enrollment status for {student}: unknown" -msgstr "{student}的选课状态:未知" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Enrollment status for {student}: active" -msgstr "{student}的选课状态:有效" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Enrollment status for {student}: inactive" -msgstr "{student}的选课状态:无效" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Enrollment status for {student}: pending" -msgstr "{student}的选课状态:挂起" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Enrollment status for {student}: never enrolled" -msgstr "{student}的选课状态:从未加入" - -#: lms/djangoapps/instructor/views/api.py -msgid "Module does not exist." -msgstr "模块不存在。" - -#: lms/djangoapps/instructor/views/api.py -msgid "An error occurred while deleting the score." -msgstr "删除该分数时出错。" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -msgid "Course has no entrance exam section." -msgstr "本课程无入学测试部分。" - -#: lms/djangoapps/instructor/views/api.py -msgid "all_students and unique_student_identifier are mutually exclusive." -msgstr "all_students和unique_student_identifier是相互不包含的。" - -#: lms/djangoapps/instructor/views/api.py -msgid "all_students and delete_module are mutually exclusive." -msgstr "all_students和delete_module是相互不包含的。" - -#: lms/djangoapps/instructor/views/api.py -msgid "Requires instructor access." -msgstr "需要教师访问。" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -msgid "Course has no valid entrance exam section." -msgstr "课程无有效的入学测试部分。" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor/views/api.py -msgid "All Students" -msgstr "所有学生" - -#: lms/djangoapps/instructor/views/api.py -msgid "Cannot rescore with all_students and unique_student_identifier." -msgstr "不能重新评定all_students和unique_student_identifier。" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "ORA data" -msgstr "ORA数据" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "grade" -msgstr "成绩" - -#: lms/djangoapps/instructor/views/api.py -#: lms/djangoapps/instructor_task/api_helper.py -msgid "problem grade" -msgstr "问题计分情况" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Successfully changed due date for student {0} for {1} to {2}" -msgstr "成功修改了学生{0}的截止日期从{1}变为{2}" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Successfully removed invalid due date extension (unit has no due date)." -msgstr "已经成功的移除了无效的延长截止日期 (单元没有截止日期)。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Successfully reset due date for student {0} for {1} to {2}" -msgstr "成功重置了学生{0}的截止日期从{1}变为{2}" - -#: lms/djangoapps/instructor/views/api.py -#, python-format -msgid "This student (%s) will skip the entrance exam." -msgstr "此学生 (%s) 将会跳过入学考试。" - -#: lms/djangoapps/instructor/views/api.py -#, python-format -msgid "This student (%s) is already allowed to skip the entrance exam." -msgstr "此学生 (%s) 已被允许跳过入学考试。" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Certificate generation task for all students of this course has been " -"started. You can view the status of the generation task in the \"Pending " -"Tasks\" section." -msgstr "该课程所有学生的证书生成任务已经启动,您可以在“主讲教师待处理的任务”板块中查看该生成任务的状态。" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Please select one or more certificate statuses that require certificate " -"regeneration." -msgstr "请选择需要一个或多个修课证明重制之状态。" - -#: lms/djangoapps/instructor/views/api.py -msgid "Please select certificate statuses from the list only." -msgstr "请只从清单中选取证书形式。" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Certificate regeneration task has been started. You can view the status of " -"the generation task in the \"Pending Tasks\" section." -msgstr "修课证明重新产出任务已启动。您可以在“待处理任务”区域中查看证明产出任务的状态。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "Student (username/email={user}) already in certificate exception list." -msgstr "学生 (username/email={user}) 已经排除於证书名单之外。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"Certificate exception (user={user}) does not exist in certificate white " -"list. Please refresh the page and try again." -msgstr "证书例外 (user={user}) 不存在于证书批准名单中。请重新载入页面或再试一次。" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Student username/email field is required and can not be empty. Kindly fill " -"in username/email and then press \"Add to Exception List\" button." -msgstr "学生使用者名称及电子邮件是必填且不能空白。请填入使用者名称及电子邮件,并按“加入例外名单”按钮。" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"The record is not in the correct format. Please add a valid username or " -"email address." -msgstr "记录非为正确之格式。请加入有效使用者名称或email 网址。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"{user} does not exist in the LMS. Please check your spelling and retry." -msgstr "{user} 不存在于LMS。请确认您的拼字并再试一次。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"{user} is not enrolled in this course. Please check your spelling and retry." -msgstr "{user} 没有注册此课程。请确认您的拼字并再试一次。" - -#: lms/djangoapps/instructor/views/api.py -msgid "Invalid data, generate_for must be \"new\" or \"all\"." -msgstr "无效数据,generate_for 必须为 \"新\" 或 \"全部\"。" - -#: lms/djangoapps/instructor/views/api.py -msgid "Certificate generation started for white listed students." -msgstr "被批准的学生之证书开始产生。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "user \"{user}\" in row# {row}" -msgstr "使用者 \"{user}\" in row# {row}" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "user \"{username}\" in row# {row}" -msgstr "使用者 \"{username}\" in row# {row}" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"Certificate of {user} has already been invalidated. Please check your " -"spelling and retry." -msgstr "使用者之证书 {user} 已经无失效。请确认拼字或再试一次。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"Certificate for student {user} is already invalid, kindly verify that " -"certificate was generated for this student and then proceed." -msgstr "学生 {user}的证书已无效,请核对该证书是否是为此学生产出后再做后续动作。" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Certificate Invalidation does not exist, Please refresh the page and try " -"again." -msgstr "证书失效是不存在的,请重新载入页面或再试一次。" - -#: lms/djangoapps/instructor/views/api.py -msgid "" -"Student username/email field is required and can not be empty. Kindly fill " -"in username/email and then press \"Invalidate Certificate\" button." -msgstr "学生使用者名称及email是必填的且不能空白。请填入使用者名称及email,并按“作废证书”的按钮。" - -#: lms/djangoapps/instructor/views/api.py -#, python-brace-format -msgid "" -"The student {student} does not have certificate for the course {course}. " -"Kindly verify student username/email and the selected course are correct and" -" try again." -msgstr "" -"学生 {student} 没有此门课程 {course}之修课证明。请验证学生使用者名称/email以及确认所选之课程是否正确,然后再试一次。" - -#: lms/djangoapps/instructor/views/coupons.py -msgid "coupon id is None" -msgstr "优惠券ID不存在" - -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" -msgstr "编号为({coupon_id})的优惠券不存在" - -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "coupon with the coupon id ({coupon_id}) is already inactive" -msgstr "编号为({coupon_id})的优惠券已经被激活" - -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "coupon with the coupon id ({coupon_id}) updated successfully" -msgstr "编号为({coupon_id})的优惠券更新成功" - -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "" -"The code ({code}) that you have tried to define is already in use as a " -"registration code" -msgstr "您试图定义的这个卡号 ({code})已经被注册码使用了" - -#: lms/djangoapps/instructor/views/coupons.py -msgid "Please Enter the Integer Value for Coupon Discount" -msgstr "请输入整数值的折扣率" - -#: lms/djangoapps/instructor/views/coupons.py -msgid "Please Enter the Coupon Discount Value Less than or Equal to 100" -msgstr "请输入不大于100的优惠券折扣度" - -#: lms/djangoapps/instructor/views/coupons.py -msgid "Please enter the date in this format i-e month/day/year" -msgstr "请以该格式输入日期,如:月/日/年" - -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "coupon with the coupon code ({code}) added successfully" -msgstr "使用优惠代码({code})的优惠券添加成功。" - -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "coupon with the coupon code ({code}) already exists for this course" -msgstr "优惠代码为({code})的优惠券对于该课程已经存在" - -#: lms/djangoapps/instructor/views/coupons.py -#: lms/djangoapps/instructor/views/coupons.py -msgid "coupon id not found" -msgstr "优惠券编号无法找到" - -#: lms/djangoapps/instructor/views/coupons.py -#, python-brace-format -msgid "coupon with the coupon id ({coupon_id}) updated Successfully" -msgstr "编号为({coupon_id})的优惠券更新成功" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Instructor" -msgstr "主讲教师" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -#, python-brace-format -msgid "" -"To gain insights into student enrollment and participation {link_start}visit" -" {analytics_dashboard_name}, our new course analytics product{link_end}." -msgstr "" -"要深入了解学生的选课和参与信息,请{link_start}访问我们全新的课程分析产品{analytics_dashboard_name}{link_end}。" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "E-Commerce" -msgstr "电子商务" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Special Exams" -msgstr "专业测验" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -#: lms/djangoapps/support/views/index.py -msgid "Certificates" -msgstr "证书" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Please Enter the numeric value for the course price" -msgstr "课程价格只能是数字" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -#, python-brace-format -msgid "CourseMode with the mode slug({mode_slug}) DoesNotExist" -msgstr "课程模型中的模型类({mode_slug})不存在" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "CourseMode price updated successfully" -msgstr "课程模式价格更新成功" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Course Info" -msgstr "课程信息" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -#, python-brace-format -msgid "Enrollment data is now available in {dashboard_link}." -msgstr "选课数据现已可通过{dashboard_link}查看。" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Membership" -msgstr "会员资格" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Cohorts" -msgstr "群组" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Discussions" -msgstr "讨论" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Student Admin" -msgstr "学生管理" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Extensions" -msgstr "扩展" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Data Download" -msgstr "数据下载" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Analytics" -msgstr "分析" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Metrics" -msgstr "度量" - -#: lms/djangoapps/instructor/views/instructor_dashboard.py -msgid "Open Responses" -msgstr "开放性题目" - -#. Translators: number sent refers to the number of emails sent -#: lms/djangoapps/instructor/views/instructor_task_helpers.py -msgid "0 sent" -msgstr "已发送0封邮件" - -#: lms/djangoapps/instructor/views/instructor_task_helpers.py -#, python-brace-format -msgid "{num_emails} sent" -msgid_plural "{num_emails} sent" -msgstr[0] "{num_emails} 已发送" - -#: lms/djangoapps/instructor/views/instructor_task_helpers.py -#, python-brace-format -msgid "{num_emails} failed" -msgid_plural "{num_emails} failed" -msgstr[0] "{num_emails} 失败" - -#: lms/djangoapps/instructor/views/instructor_task_helpers.py -msgid "Complete" -msgstr "已经完成" - -#: lms/djangoapps/instructor/views/instructor_task_helpers.py -msgid "Incomplete" -msgstr "未完成" - -#: lms/djangoapps/instructor/views/registration_codes.py -#: lms/djangoapps/instructor/views/registration_codes.py -#, python-brace-format -msgid "" -"The enrollment code ({code}) was not found for the {course_name} course." -msgstr "对于{course_name}课程的选课码({code})未找到。" - -#: lms/djangoapps/instructor/views/registration_codes.py -msgid "This enrollment code has been canceled. It can no longer be used." -msgstr "该选课码已经被取消,不能再使用。" - -#: lms/djangoapps/instructor/views/registration_codes.py -msgid "This enrollment code has been marked as unused." -msgstr "该选课码已被标记为未使用过的。" - -#: lms/djangoapps/instructor/views/registration_codes.py -msgid "The enrollment code has been restored." -msgstr "选课码已修复。" - -#: lms/djangoapps/instructor/views/registration_codes.py -#, python-brace-format -msgid "The redemption does not exist against enrollment code ({code})." -msgstr "针对redemption 注册代码 ({code})是不存在的。" - -#: lms/djangoapps/instructor/views/tools.py -#, python-brace-format -msgid "Could not find student matching identifier: {student_identifier}" -msgstr "无法找到与标识符:{student_identifier}匹配的学生" - -#: lms/djangoapps/instructor/views/tools.py -msgid "Unable to parse date: " -msgstr "不能解析日期" - -#: lms/djangoapps/instructor/views/tools.py -#, python-brace-format -msgid "Couldn't find module for url: {0}" -msgstr "不能为url {0} 找到合适的模块" - -#: lms/djangoapps/instructor/views/tools.py -#, python-brace-format -msgid "Unit {0} has no due date to extend." -msgstr "单元{0}没有要延长的截止日期。" - -#: lms/djangoapps/instructor/views/tools.py -msgid "An extended due date must be later than the original due date." -msgstr "延长的截止日期必须在正常截止日期之后。" - -#: lms/djangoapps/instructor/views/tools.py -msgid "No due date extension is set for that student and unit." -msgstr "还没有为学生和单元设置可延长的截止日期。" - -#. Translators: This label appears above a field on the registration form -#. meant to hold the user's full name. -#: lms/djangoapps/instructor/views/tools.py -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Full Name" -msgstr "全名" - -#: lms/djangoapps/instructor/views/tools.py -#: lms/djangoapps/instructor/views/tools.py -msgid "Extended Due Date" -msgstr "扩展截止日期" - -#: lms/djangoapps/instructor/views/tools.py -#, python-brace-format -msgid "Users with due date extensions for {0}" -msgstr "拥有到期扩展{0}的用户" - -#: lms/djangoapps/instructor/views/tools.py -#, python-brace-format -msgid "Due date extensions for {0} {1} ({2})" -msgstr "到期扩展{0} {1} ({2})" - -#: lms/djangoapps/instructor_task/api_helper.py -msgid "Requested task is already running" -msgstr "请求任务已在运行中" - -#: lms/djangoapps/instructor_task/api_helper.py -msgid "Error occured. Please try again later." -msgstr "发生错误,请稍后重试。" - -#: lms/djangoapps/instructor_task/api_helper.py -#, python-brace-format -msgid "" -"The {report_type} report is being created. To view the status of the report," -" see Pending Tasks below. You will be able to download the report when it is" -" complete." -msgstr "正在创建{report_type}报告,请在下面的“进行中的任务”查看报告状态。您可以在任务完成时下载报告。" - -#: lms/djangoapps/instructor_task/api_helper.py -msgid "This component cannot be rescored." -msgstr "无法重新评分此组件。" - -#: lms/djangoapps/instructor_task/api_helper.py -msgid "This component does not support score override." -msgstr "此组件不支持覆盖分数操作。" - -#: lms/djangoapps/instructor_task/api_helper.py -msgid "Scores must be between 0 and the value of the problem." -msgstr "分数必须为0与题目分值之间。" - -#: lms/djangoapps/instructor_task/api_helper.py -msgid "Not all problems in entrance exam support re-scoring." -msgstr "入学考试中不是所有的问题都支持重新打分。" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "rescored" -msgstr "重新评分" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -#: lms/djangoapps/instructor_task/tasks_helper/module_state.py -msgid "overridden" -msgstr "已覆盖" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "reset" -msgstr "重置" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py lms/templates/wiki/history.html -#: lms/templates/wiki/plugins/attachments/index.html -msgid "deleted" -msgstr "已删除" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "emailed" -msgstr "已邮件通知" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "graded" -msgstr "已评价" - -#. Translators: This is a past-tense phrase that is inserted into task -#. progress messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "problem distribution graded" -msgstr "问题分布已评价" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "generating_enrollment_report" -msgstr "正在生成选课报告" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#: lms/djangoapps/instructor_task/tasks.py -msgid "certificates generated" -msgstr "证书已生成" - -#. Translators: This is a past-tense verb that is inserted into task progress -#. messages as {action}. -#. An example of such a message is: "Progress: {action} {succeeded} of -#. {attempted} so far" -#: lms/djangoapps/instructor_task/tasks.py -msgid "cohorted" -msgstr "群组化" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the First Name -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "First Name" -msgstr "名" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the First Name -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Last Name" -msgstr "姓" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Company Name" -msgstr "公司名称" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the Title -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Title" -msgstr "标题" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Year of Birth" -msgstr "出生年份" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Enrollment Date" -msgstr "选课日期" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Currently Enrolled" -msgstr "当前注册" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Enrollment Source" -msgstr "注册来源" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Manual (Un)Enrollment Reason" -msgstr "招生手册 (Un)" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Enrollment Role" -msgstr "注册身份" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "List Price" -msgstr "列表价格" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Payment Amount" -msgstr "支付金额" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Coupon Codes Used" -msgstr "优惠券代码已使用" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Registration Code Used" -msgstr "注册编号已使用" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Payment Status" -msgstr "付款状态" - -#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py -msgid "Transaction Reference Number" -msgstr "交易参考编码" - -#: lms/djangoapps/instructor_task/views.py -#: lms/djangoapps/instructor_task/views.py -msgid "No status information available" -msgstr "尚无状态信息" - -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "No task_output information found for instructor_task {0}" -msgstr "无主讲教师任务 {0}的输出信息" - -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "No parsable task_output information found for instructor_task {0}: {1}" -msgstr "未找到主讲教师任务{0}:{1} 的可解析的任务输出信息" - -#: lms/djangoapps/instructor_task/views.py -msgid "No parsable status information available" -msgstr "尚无可解析的状态信息" - -#: lms/djangoapps/instructor_task/views.py -msgid "No message provided" -msgstr "尚无消息" - -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Invalid task_output information found for instructor_task {0}: {1}" -msgstr "发现主讲教师任务{0}: {1}的无效的任务输出信息" - -#: lms/djangoapps/instructor_task/views.py -msgid "No progress status information available" -msgstr "尚无进度状态信息" - -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "No parsable task_input information found for instructor_task {0}: {1}" -msgstr "未找到主讲教师任务{0}:{1} 的可解析的任务输入信息" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {attempted} and {succeeded} are counts. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Progress: {action} {succeeded} of {attempted} so far" -msgstr "进度: 目前 {attempted}的{action} {succeeded} " - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {student} is a student identifier. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Unable to find submission to be {action} for student '{student}'" -msgstr "无法找到学生“{student}”的要被{action}的提交" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {student} is a student identifier. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Problem failed to be {action} for student '{student}'" -msgstr "学生“{student}”的问题{action}失败" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {student} is a student identifier. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Problem successfully {action} for student '{student}'" -msgstr "学生“{student}”的问题{action}成功" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {student} is a student identifier. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "" -"Unable to find entrance exam submission to be {action} for student " -"'{student}'" -msgstr "无法找到学生“{student}”的要被{action}的入学考试提交" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {student} is a student identifier. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Entrance exam successfully {action} for student '{student}'" -msgstr "为学生 '{student}'{action} 入学考试成功" - -#. Translators: {action} is a past-tense verb that is localized separately. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Unable to find any students with submissions to be {action}" -msgstr "无法找到任何为{action}提交的学生" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {attempted} is a count. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Problem failed to be {action} for any of {attempted} students" -msgstr "对于{attempted}学生的问题{action}失败" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {attempted} is a count. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Problem successfully {action} for {attempted} students" -msgstr "对于{attempted}学生的问题{action}成功" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {succeeded} and {attempted} are counts. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Problem {action} for {succeeded} of {attempted} students" -msgstr "对于{attempted} 学生的问题 {action}{succeeded}" - -#. Translators: {action} is a past-tense verb that is localized separately. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Unable to find any recipients to be {action}" -msgstr "无法找到{action}的接受者" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {attempted} is a count. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Message failed to be {action} for any of {attempted} recipients " -msgstr "对{attempted}接受者的消息{action}失败" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {attempted} is a count. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Message successfully {action} for {attempted} recipients" -msgstr "对于{attempted}接受者的消息{action}成功" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {succeeded} and {attempted} are counts. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Message {action} for {succeeded} of {attempted} recipients" -msgstr "对于{attempted}接受者的消息{action}{succeeded}" - -#. Translators: {action} is a past-tense verb that is localized separately. -#. {succeeded} and {attempted} are counts. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid "Status: {action} {succeeded} of {attempted}" -msgstr "状态: 对于{attempted}{action} {succeeded} " - -#. Translators: {skipped} is a count. This message is appended to task -#. progress status messages. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid " (skipping {skipped})" -msgstr "(忽略 {skipped})" - -#. Translators: {total} is a count. This message is appended to task progress -#. status messages. -#: lms/djangoapps/instructor_task/views.py -#, python-brace-format -msgid " (out of {total})" -msgstr "( /{total} )" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"This component's access settings refer to deleted or invalid group " -"configurations." -msgstr "此组件的访问设置指的是已删除或无效的分组设置。" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"This unit's access settings refer to deleted or invalid group " -"configurations." -msgstr "此单元的访问设置指的是已删除的或无效的分组配置项。" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "This component's access settings refer to deleted or invalid groups." -msgstr "此组件的访问设置指的是已删除的或无效的分组。" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "This unit's access settings refer to deleted or invalid groups." -msgstr "此单元的访问设置指的是已删除的或无效的分组。" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"This component's access settings contradict its parent's access settings." -msgstr "此组件的访问设置与其父级访问设置相冲突。" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "Whether to display this module in the table of contents" -msgstr "是否在表格内容中展示该模块" - -#. Translators: "TOC" stands for "Table of Contents" -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"What format this module is in (used for deciding which grader to apply, and " -"what to show in the TOC)" -msgstr "该模块的格式是什么(用于决定应用哪一个评分者,以及在TOC中显示什么)" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "Course Chrome" -msgstr "课程Chrome" - -#. Translators: DO NOT translate the words in quotes here, they are -#. specific words for the acceptable values. -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"Enter the chrome, or navigation tools, to use for the XBlock in the LMS. Valid values are: \n" -"\"chromeless\" -- to not use tabs or the accordion; \n" -"\"tabs\" -- to use tabs only; \n" -"\"accordion\" -- to use the accordion only; or \n" -"\"tabs,accordion\" -- to use tabs and the accordion." -msgstr "" -"输入在 LMS 的 XBlock 中要使用的镶边(导航工具条)。允许的取值有:\n" -"“chromeless”——不使用选项卡及风琴栏;\n" -"“tabs”——只使用选项卡;\n" -"“accordion”——只使用风琴栏;\n" -"“tabs,accordion”——既使用选项卡也使用风琴栏。" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "Default Tab" -msgstr "默认页面" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"Enter the tab that is selected in the XBlock. If not set, the Course tab is " -"selected." -msgstr "输入在XBlock中被选择的选项卡,如未设置,则选择课件选项卡。" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "LaTeX Source File Name" -msgstr "LaTex 源文件名" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "Enter the source file name for LaTeX." -msgstr "输入 LaTex 源文件名。" - -#: lms/djangoapps/lms_xblock/mixin.py -msgid "" -"A dictionary that maps which groups can be shown this block. The keys are " -"group configuration ids and the values are a list of group IDs. If there is " -"no key for a group configuration or if the set of group IDs is empty then " -"the block is considered visible to all. Note that this field is ignored if " -"the block is visible_to_staff_only." -msgstr "" -"被字典对映到的群组可以被显示在此区块中。关键字是群组设定id和数值是群组 ID的列表。假如没有关键字给群组设定或者群组 " -"ID的集合是空的那么区块就会对所有公开。如果该区块是visible_to_staff_only则字段会被忽略。" - -#: lms/djangoapps/mobile_api/views.py -msgid "Missing requested parameter 'platform'" -msgstr "缺少必要参数 ‘平台’" - -#: lms/djangoapps/mobile_api/views.py -msgid "Unable to find information about the latest version of the platform" -msgstr "未能找到平台最新版本的相关信息" - -#: lms/djangoapps/notes/views.py -msgid "My Notes" -msgstr "我的笔记" - -#: lms/djangoapps/shoppingcart/models.py -msgid "Order Payment Confirmation" -msgstr "订单付款确认" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "" -"Confirmation and Registration Codes for the following courses: " -"{course_name_list}" -msgstr "接下来的课程:{course_name_list}的确认和注册编号" - -#: lms/djangoapps/shoppingcart/models.py -msgid "Trying to add a different currency into the cart" -msgstr "尝试添加不同的货币到购物车" - -#: lms/djangoapps/shoppingcart/models.py -msgid "Internal reference code for this invoice." -msgstr "该发票的内部参考代码。" - -#: lms/djangoapps/shoppingcart/models.py -msgid "Customer's reference code for this invoice." -msgstr "该发票的客户参考代码。" - -#: lms/djangoapps/shoppingcart/models.py -msgid "" -"The amount of the transaction. Use positive amounts for payments and " -"negative amounts for refunds." -msgstr "交易的总额,使用正总额的当作付款,负总额的当作退款。" - -#: lms/djangoapps/shoppingcart/models.py lms/djangoapps/shoppingcart/models.py -msgid "Lower-case ISO currency codes" -msgstr "小写国际标準组织通货代号" - -#: lms/djangoapps/shoppingcart/models.py -msgid "Optional: provide additional information for this transaction" -msgstr "可选:为该交易提供附加信息" - -#: lms/djangoapps/shoppingcart/models.py -msgid "" -"The status of the payment or refund. 'started' means that payment is " -"expected, but money has not yet been transferred. 'completed' means that the" -" payment or refund was received. 'cancelled' means that payment or refund " -"was expected, but was cancelled before money was transferred. " -msgstr "" -"付款和退款的状态。“开始”意味着即将付款,但钱尚未转移。“完成”意味着付款或退款已经收到。“取消”意味着即将付款或退款,但在钱转移之前就被取消了。" - -#: lms/djangoapps/shoppingcart/models.py -msgid "The number of items sold." -msgstr "已售项目的数量。" - -#: lms/djangoapps/shoppingcart/models.py -msgid "The price per item sold, including discounts." -msgstr "没意见商品出售的价格,包括折扣。" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "Registration for Course: {course_name}" -msgstr "注册课程:{course_name}" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "" -"Please visit your {link_start}dashboard{link_end} to see your new course." -msgstr "请前往您的{link_start}课程面板{link_end}查看新课程。" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "Enrollment codes for Course: {course_name}" -msgstr "课程:{course_name}的选课码" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "Mode {mode} does not exist for {course_id}" -msgstr "{course_id}不存在 {mode}模式" - -#. Translators: In this particular case, mode_name refers to a -#. particular mode (i.e. Honor Code Certificate, Verified Certificate, etc) -#. by which a user could enroll in the given course. -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "{mode_name} for course {course}" -msgstr "课程{course}的{mode_name} " - -#: lms/djangoapps/shoppingcart/models.py -msgid "" -"You can unenroll in the course and receive a full refund for 14 days after " -"the course start date. " -msgstr "您可以取消注册课程,并在开课后14天收到全额退费。" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "" -"If you haven't verified your identity yet, please start the verification " -"process ({verification_url})." -msgstr "如果您还没有验证您的身份,请立即开始验证过程吧({verification_url})。" - -#: lms/djangoapps/shoppingcart/models.py -msgid "" -"You can unenroll in the course and receive a full refund for 2 days after " -"the course start date. " -msgstr "您可以取消注册课程,并在开课后2天收到全额退费。" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "" -"{refund_reminder_msg}To receive your refund, contact {billing_email}. Please" -" include your order number in your email. Please do NOT include your credit " -"card information." -msgstr "" -"{refund_reminder_msg} 如要收到退费请联系 " -"{billing_email}。请包含您的订单号码及您的email。请不要提供您的信用卡讯息。" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "" -"We greatly appreciate this generous contribution and your support of the " -"{platform_name} mission. This receipt was prepared to support charitable " -"contributions for tax purposes. We confirm that neither goods nor services " -"were provided in exchange for this gift." -msgstr "" -"我们非常感谢慷慨的贡献,您的支持{platform_name}的任务。该收据準备支持为稅收目的的慈善捐款。我们确认,没有商品,也没有服务,以换取这份礼物。" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "Could not find a course with the ID '{course_id}'" -msgstr "无法找到ID为‘{course_id}’的课程" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "Donation for {course}" -msgstr "给{course}捐款" - -#: lms/djangoapps/shoppingcart/models.py -#, python-brace-format -msgid "Donation for {platform_name}" -msgstr "为 {platform_name}捐款" - -#: lms/djangoapps/shoppingcart/pdf.py -#, python-brace-format -msgid "Page {page_number} of {page_count}" -msgstr "翻到{page_count}的{page_number}" - -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/pdf.py -msgid "Invoice" -msgstr "收据" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "Order" -msgstr "顺序" - -#: lms/djangoapps/shoppingcart/pdf.py -#, python-brace-format -msgid "{id_label} # {item_id}" -msgstr "{id_label} # {item_id}" - -#: lms/djangoapps/shoppingcart/pdf.py -#, python-brace-format -msgid "Date: {date}" -msgstr "日期: {date}" - -#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/reports.py -msgid "Quantity" -msgstr "数量" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "" -"List Price\n" -"per item" -msgstr "数量" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "" -"Discount\n" -"per item" -msgstr "" -"折扣\n" -"每一项" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "Amount" -msgstr "量" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "Total" -msgstr "总计" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "Payment Received" -msgstr "付款已收到" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "Balance" -msgstr "金额" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "Billing Address" -msgstr "帐单地址" - -#: lms/djangoapps/shoppingcart/pdf.py openedx/core/djangoapps/user_api/api.py -msgid "Disclaimer" -msgstr "免责声明" - -#: lms/djangoapps/shoppingcart/pdf.py -msgid "TERMS AND CONDITIONS" -msgstr "条款声明" - -#. Translators: this text appears when an unfamiliar error code occurs during -#. payment, -#. for which we don't know a user-friendly message to display in advance. -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "UNKNOWN REASON" -msgstr "未知原因" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "The payment processor did not return a required parameter: {parameter}" -msgstr "支付处理程序没有返回一个必须的参数:{parameter}" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"The payment processor returned a badly-typed value {value} for parameter " -"{parameter}." -msgstr "支付处理程序返回一个参数 {parameter}的错误输入值 {value}。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"The payment processor accepted an order whose number is not in our system." -msgstr "付款处理器接受了一个号码不在我们系统中的订单。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"The amount charged by the processor {charged_amount} " -"{charged_amount_currency} is different than the total cost of the order " -"{total_cost} {total_cost_currency}." -msgstr "" -"付款处理器收取的总金额{charged_amount} {charged_amount_currency}与订单总费用{total_cost} " -"{total_cost_currency}不一致。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"Sorry! Our payment processor did not accept your payment. The decision they" -" returned was {decision}, and the reason was {reason}. You were not " -"charged. Please try a different form of payment. Contact us with payment-" -"related questions at {email}." -msgstr "" -"抱歉!支付系统没有受理您的缴费申请。答复是:{decision},原因为:{reason}。您尚未缴费,请尝试其他支付方式。相关问题请联系{email}。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"Sorry! Our payment processor sent us back a payment confirmation that had " -"inconsistent data! We apologize that we cannot verify whether the charge " -"went through and take further action on your order. The specific error " -"message is: {msg} Your credit card may possibly have been charged. Contact " -"us with payment-specific questions at {email}." -msgstr "" -"抱歉!支付系统返回的支付确认数据不一致。无法确认支付成功并进一步处理您的订单,我们深表歉意。具体的错误信息为: " -"{msg}。您的信用卡可能已被扣费。相关问题请联系{email}。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"Sorry! Due to an error your purchase was charged for a different amount than" -" the order total! The specific error message is: {msg}. Your credit card has" -" probably been charged. Contact us with payment-specific questions at " -"{email}." -msgstr "抱歉!实际扣费金额与订单总额不符!具体的错误信息为:{msg}。您的信用卡可能已被扣费。相关问题请联系{email}。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"Sorry! Our payment processor sent us back a corrupted message regarding your" -" charge, so we are unable to validate that the message actually came from " -"the payment processor. The specific error message is: {msg}. We apologize " -"that we cannot verify whether the charge went through and take further " -"action on your order. Your credit card may possibly have been charged. " -"Contact us with payment-specific questions at {email}." -msgstr "" -"抱歉!支付系统返回信息受损,无法解析返回结果。具体的错误信息为{msg}。无法确认支付成功并进一步处理您的订单,对此我们深表歉意。您的信用卡可能已被扣费。相关问题请联系{email}。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"Sorry! Our payment processor sent us back a message saying that you have " -"cancelled this transaction. The items in your shopping cart will exist for " -"future purchase. If you feel that this is in error, please contact us with " -"payment-specific questions at {email}." -msgstr "" -"抱歉!我们的支付系统发送了一条您已取消该交易的消息。您购物车中的商品将为存在于您未来的购买中。若您觉得此处发生错误,请联系{email}询问具体的付款问题。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"We're sorry, but this payment was declined. The items in your shopping cart " -"have been saved. If you have any questions about this transaction, please " -"contact us at {email}." -msgstr "对不起,此次支付无效。您的购物车中的内容将会被保留。若对此次交易有任何问题,请通过{email}联系我们。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"Sorry! Your payment could not be processed because an unexpected exception " -"occurred. Please contact us at {email} for assistance." -msgstr "抱歉!您的付款由于出现异常未被受理。请联系{email}寻求帮助。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Successful transaction." -msgstr "交易成功。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The request is missing one or more required fields." -msgstr "请求缺少了一个或多个必须的字段" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "One or more fields in the request contains invalid data." -msgstr "请求中的一个或多个字段包含了无效数据。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The merchant reference code for this authorization request matches the merchant reference code of another\n" -" authorization request that you sent within the past 15 minutes.\n" -" Possible action: Resend the request with a unique merchant reference code.\n" -" " -msgstr "" -"\n" -"此授权要求商家参考代码需於过去15分钟之内匹配另一家商家参考代码。\n" -"可能解决的方法:重新发送一个特定商家需求的参考代码。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Only a partial amount was approved." -msgstr "仅有部分金额被批准。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "General system failure." -msgstr "系统故障。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The request was received but there was a server timeout. This error does not include timeouts between the\n" -" client and the server.\n" -" " -msgstr "" -"\n" -"请求已接受但服务器超时。该错误不包括\n" -"客户端与服务器之间的超时" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"The request was received, but a service did not finish running in time." -msgstr "请求已接受,但服务为按时完成。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The authorization request was approved by the issuing bank but declined by CyberSource\n" -" because it did not pass the Address Verification System (AVS).\n" -" " -msgstr "" -"\n" -"授权请求已被发卡行通过但被CyberSource拒绝\n" -"因为没有通过地址认证系统(AVS)。\n" -" " - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The issuing bank has questions about the request. You do not receive an\n" -" authorization code programmatically, but you might receive one verbally by calling the processor.\n" -" Possible action: retry with another form of payment.\n" -" " -msgstr "" -"\n" -"发卡银行对此申请有问题。您没收到授权代码,但您可能收到从处理端发出口头通知。可能的解决方法,用另一种付款方式重试一遍。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" Expired card. You might also receive this if the expiration date you\n" -" provided does not match the date the issuing bank has on file.\n" -" Possible action: retry with another form of payment.\n" -" " -msgstr "" -"\n" -"信用卡已过期。也有可能是由于您所提供的有效期\n" -"与银行提供的日期不一致。\n" -"解决办法:尝试其他支付形式。\n" -" " - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" General decline of the card. No other information provided by the issuing bank.\n" -" Possible action: retry with another form of payment.\n" -" " -msgstr "" -"\n" -"拒绝支付。发卡行未提供其他信息。\n" -"可能的解决办法:尝试另一种支付方式。\n" -" " - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"Insufficient funds in the account. Possible action: retry with another form " -"of payment." -msgstr "账号中的资金不足。可能的解决方法:重试另一种付款方式。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Stolen or lost card." -msgstr "被盗或者遗失的卡。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"Issuing bank unavailable. Possible action: retry again after a few minutes." -msgstr "发卡银行无响应。可能的解决方法:几分钟后重试。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" Inactive card or card not authorized for card-not-present transactions.\n" -" Possible action: retry with another form of payment.\n" -" " -msgstr "" -"\n" -"未激活的卡或卡主未授权无卡交易。\n" -"解决办法:尝试其他交易形式。\n" -" " - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "CVN did not match." -msgstr "信用卡验证码不匹配。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"The card has reached the credit limit. Possible action: retry with another " -"form of payment." -msgstr "已超过该卡信用额度。可能的解决方法:重试另一种付款方式。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"Invalid card verification number (CVN). Possible action: retry with another " -"form of payment." -msgstr "无效的信用卡验证码(CVN)。可能的解决方法:重试另一种付款方式。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The customer matched an entry on the processors negative file." -msgstr "此客户符合於处理者的黑名单格上。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Account frozen. Possible action: retry with another form of payment." -msgstr "账号被冻结。可能的解决方法:尝试另一种付款方式。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The authorization request was approved by the issuing bank but declined by\n" -" CyberSource because it did not pass the CVN check.\n" -" Possible action: retry with another form of payment.\n" -" " -msgstr "" -"\n" -"授权请求已被发卡行通过但被CyberSource拒绝\n" -"因为没有通过CVN检查。\n" -"可能的解决办法:尝试另一种付款方式。\n" -" " - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"Invalid account number. Possible action: retry with another form of payment." -msgstr "无效的帐户号码。可能的解决方法:重试另一种付款方式。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The card type is not accepted by the payment processor.\n" -" Possible action: retry with another form of payment.\n" -" " -msgstr "" -"\n" -"支付系统不受理该类型的信用卡。\n" -"可能的解决办法:尝试另一种付款方式。\n" -" " - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"General decline by the processor. Possible action: retry with another form " -"of payment." -msgstr "付款被拒绝。可能的解决方法:重试另一种付款方式。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -#, python-brace-format -msgid "" -"There is a problem with the information in your CyberSource account. Please" -" let us know at {0}" -msgstr "此问题可能与您的CyberSource账号信息有关。请通知我们{0}" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The requested capture amount exceeds the originally authorized amount." -msgstr "所请求的捕获量超过了原先授权的数量。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Processor Failure. Possible action: retry the payment" -msgstr "处理器故障。可能的解决方法:重试支付。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The authorization has already been reversed." -msgstr "授权已被撤回。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The authorization has already been captured." -msgstr "已获得授权。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"The requested transaction amount must match the previous transaction amount." -msgstr "要求的交易金额必须与先前的交易金额一致。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The card type sent is invalid or does not correlate with the credit card number.\n" -" Possible action: retry with the same card or another form of payment.\n" -" " -msgstr "" -"\n" -"所发送的信用卡类型无效或所关联的信用卡卡号错误。\n" -"可能的解决办法:以此卡重试或尝试另一种支付方式。\n" -" " - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The request ID is invalid." -msgstr "请求ID无效。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" You requested a capture, but there is no corresponding, unused authorization record. Occurs if there was\n" -" not a previously successful authorization request or if the previously successful authorization has already\n" -" been used by another capture request.\n" -" " -msgstr "" -"\n" -"您想申请留存,但没有相应及未使用的授权记录。如果有发生非以前成功申请授权,或者以前已经申请授权成功。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The transaction has already been settled or reversed." -msgstr "该交易已经得到处理或已被退回。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" Either the capture or credit is not voidable because the capture or credit information has already been\n" -" submitted to your processor, or you requested a void for a type of transaction that cannot be voided.\n" -" " -msgstr "" -"\n" -"扣费/预授权申请信息已经提交到支付系统,不可撤销。\n" -"或者,您所请求的交易类型是不可撤销的。\n" -" " - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "You requested a credit for a capture that was previously voided." -msgstr "您请求确认扣款的预授权已经撤销。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"The request was received, but there was a timeout at the payment processor." -msgstr "请求已收到,但是支付服务超时。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Stand-alone credits are not allowed." -msgstr "不允许" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "The cardholder is enrolled for payer authentication" -msgstr "持卡人注册为付款人验证" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "Payer authentication could not be authenticated" -msgstr "无法验证付款人身份。" - -#: lms/djangoapps/shoppingcart/processors/CyberSource2.py -msgid "" -"\n" -" The authorization request was approved by the issuing bank but declined by CyberSource based\n" -" on your legacy Smart Authorization settings.\n" -" Possible action: retry with a different form of payment.\n" -" " -msgstr "" -"\n" -"授权请求已被发卡行通过,\n" -"但由于您的传统只能授权设置被CyberSouce拒绝。\n" -"可能的解决办法:尝试另一种支付方式。\n" -" " - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Order Number" -msgstr "订单号" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Customer Name" -msgstr "客户姓名" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Date of Original Transaction" -msgstr "原本事务的日期" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Date of Refund" -msgstr "偿还日期" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Amount of Refund" -msgstr "偿还总数" - -#: lms/djangoapps/shoppingcart/reports.py -#: lms/djangoapps/shoppingcart/reports.py -msgid "Service Fees (if any)" -msgstr "服务费(如果有的话)" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Purchase Time" -msgstr "购买时间" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Order ID" -msgstr "订单ID" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Unit Cost" -msgstr "单位价格" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Total Cost" -msgstr "总价格" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Currency" -msgstr "货币" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Comments" -msgstr "评语" - -#: lms/djangoapps/shoppingcart/reports.py -#: lms/djangoapps/shoppingcart/reports.py -msgid "University" -msgstr "大学" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Course Announce Date" -msgstr "课程发布日期" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Course Start Date" -msgstr "课程开始日期" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Course Registration Close Date" -msgstr "课程注册截止日期" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Course Registration Period" -msgstr "课程注册期" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Total Enrolled" -msgstr "总计选修人数" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Audit Enrollment" -msgstr "审核选课" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Honor Code Enrollment" -msgstr "诚信准则选课" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Verified Enrollment" -msgstr "已认证的选课人数" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Gross Revenue" -msgstr "总收入" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Gross Revenue over the Minimum" -msgstr "总收入超过最低" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Number of Verified Students Contributing More than the Minimum" -msgstr "已验证的学生贡献数量超过最低" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Number of Refunds" -msgstr "偿还数量" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Dollars Refunded" -msgstr "已偿还金额" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Number of Transactions" -msgstr "事务数量" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Total Payments Collected" -msgstr "总的已收集支付" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Number of Successful Refunds" -msgstr "成功偿还的数量" - -#: lms/djangoapps/shoppingcart/reports.py -msgid "Total Amount of Refunds" -msgstr "总偿还数量" - -#: lms/djangoapps/shoppingcart/views.py -msgid "You must be logged-in to add to a shopping cart" -msgstr "您必须登录才能添加到购物车" - -#: lms/djangoapps/shoppingcart/views.py -msgid "The course you requested does not exist." -msgstr "您请求的课程不存在。" - -#: lms/djangoapps/shoppingcart/views.py -#, python-brace-format -msgid "The course {course_id} is already in your cart." -msgstr "课程 {course_id} 已经在您的购物车中。" - -#: lms/djangoapps/shoppingcart/views.py -#, python-brace-format -msgid "You are already registered in course {course_id}." -msgstr "您已经在课程 {course_id} 中注册。" - -#: lms/djangoapps/shoppingcart/views.py -msgid "Course added to cart." -msgstr "课程添加到购物车。" - -#: lms/djangoapps/shoppingcart/views.py lms/djangoapps/shoppingcart/views.py -#, python-brace-format -msgid "Discount does not exist against code '{code}'." -msgstr "对应的折扣码 '{code}' 不存在。" - -#: lms/djangoapps/shoppingcart/views.py -#, python-brace-format -msgid "This enrollment code ({enrollment_code}) is no longer valid." -msgstr "该选课码({enrollment_code})不再有效。" - -#: lms/djangoapps/shoppingcart/views.py -#, python-brace-format -msgid "This enrollment code ({enrollment_code}) is not valid." -msgstr "该选课码({enrollment_code})无效" - -#: lms/djangoapps/shoppingcart/views.py -#, python-brace-format -msgid "" -"Code '{registration_code}' is not valid for any course in the shopping cart." -msgstr "注册编号‘{registration_code}’对于购物车中的任何课程都无效。" - -#: lms/djangoapps/shoppingcart/views.py -msgid "" -"Cart item quantity should not be greater than 1 when applying activation " -"code" -msgstr "当应用激活码时,购物车中的商品数量不应大于1" - -#: lms/djangoapps/shoppingcart/views.py -msgid "Only one coupon redemption is allowed against an order" -msgstr "每个订单只能对应一个返券" - -#: lms/djangoapps/shoppingcart/views.py -msgid "success" -msgstr "成功" - -#: lms/djangoapps/shoppingcart/views.py -msgid "You do not have permission to view this page." -msgstr "您没有访问此页面的权限。" - -#: lms/djangoapps/support/views/index.py -msgid "View and regenerate certificates." -msgstr "查看并产生证书。" - -#: lms/djangoapps/support/views/index.py -msgid "Manual Refund" -msgstr "人工退费" - -#: lms/djangoapps/support/views/index.py -msgid "Track refunds issued directly through CyberSource." -msgstr "直接透过CyberSource追踪退款问题。" - -#: lms/djangoapps/support/views/index.py -msgid "Enrollment" -msgstr "选课" - -#: lms/djangoapps/support/views/index.py -msgid "View and update learner enrollments." -msgstr "查看及更新学习者注册资讯。" - -#: lms/djangoapps/support/views/index.py -msgid "Manage User" -msgstr "管理用户" - -#: lms/djangoapps/support/views/index.py -msgid "Disable User Account" -msgstr "禁用用户账号" - -#: lms/djangoapps/support/views/index.py -msgid "Entitlements" -msgstr "授权" - -#: lms/djangoapps/support/views/index.py -msgid "View, create, and reissue learner entitlements" -msgstr "查看、新建、重新分发学员授权" - -#: lms/djangoapps/support/views/manage_user.py -msgid "user_support_url" -msgstr "user_support_url" - -#: lms/djangoapps/support/views/manage_user.py -msgid "user_detail_url" -msgstr "user_detail_url" - -#: lms/djangoapps/support/views/manage_user.py -#: lms/djangoapps/support/views/manage_user.py -msgid "Usable" -msgstr "可用" - -#: lms/djangoapps/support/views/manage_user.py -#: lms/djangoapps/support/views/manage_user.py -msgid "Unusable" -msgstr "不可用" - -#: lms/djangoapps/support/views/manage_user.py -msgid "User Enabled Successfully" -msgstr "用户激活成功" - -#: lms/djangoapps/support/views/manage_user.py -msgid "User Disabled Successfully" -msgstr "成功禁用用户" - -#: lms/djangoapps/support/views/refund.py -msgid "Email Address" -msgstr "电子邮件地址" - -#: lms/djangoapps/support/views/refund.py -#: openedx/core/djangoapps/schedules/admin.py -msgid "Course ID" -msgstr "课程编号" - -#: lms/djangoapps/support/views/refund.py -msgid "User not found" -msgstr "未找到用户" - -#: lms/djangoapps/support/views/refund.py -#, python-brace-format -msgid "Course {course_id} not past the refund window." -msgstr "课程 {course_id}没有通过退费窗口。" - -#: lms/djangoapps/support/views/refund.py -#, python-brace-format -msgid "No order found for {user} in course {course_id}" -msgstr "在课程{course_id}中没有为{user}找到订单。" - -#: lms/djangoapps/support/views/refund.py -#, python-brace-format -msgid "Unenrolled {user} from {course_id}" -msgstr "放弃选修{course_id}的{user}" - -#: lms/djangoapps/support/views/refund.py -#, python-brace-format -msgid "Refunded {cost} for order id {order_id}" -msgstr "订单{order_id}已退款{cost}" - -#: lms/djangoapps/teams/models.py -msgid "Optional language the team uses as ISO 639-1 code." -msgstr "团队所使用之选择性语言的代码为 ISO 639-1 。" - -#: lms/djangoapps/teams/plugins.py -msgid "Teams" -msgstr "团队" - -#: lms/djangoapps/teams/views.py lms/djangoapps/teams/views.py -#, python-brace-format -msgid "The supplied course id {course_id} is not valid." -msgstr "提供的课程编号{course_id}无效。" - -#: lms/djangoapps/teams/views.py -msgid "course_id must be provided" -msgstr "必须提供课程编号" - -#: lms/djangoapps/teams/views.py -msgid "text_search and order_by cannot be provided together" -msgstr "text_search和 order_by 不能一起被提供" - -#: lms/djangoapps/teams/views.py -#, python-brace-format -msgid "The supplied topic id {topic_id} is not valid" -msgstr "提供的主题编号{topic_id}无效" - -#: lms/djangoapps/teams/views.py -msgid "Error connecting to elasticsearch" -msgstr "到elasticsearch 的错误链接" - -#. Translators: 'ordering' is a string describing a way -#. of ordering a list. For example, {ordering} may be -#. 'name', indicating that the user wants to sort the -#. list by lower case name. -#: lms/djangoapps/teams/views.py lms/djangoapps/teams/views.py -#, python-brace-format -msgid "The ordering {ordering} is not supported" -msgstr "不支持{ordering}排序" - -#: lms/djangoapps/teams/views.py -#, python-brace-format -msgid "The supplied course_id {course_id} is not valid." -msgstr "提供的课程编号{course_id}无效。" - -#: lms/djangoapps/teams/views.py -msgid "You are already in a team in this course." -msgstr "您已经加入了该课程中的一个小组。" - -#: lms/djangoapps/teams/views.py -msgid "username or team_id must be specified." -msgstr "必须制定用户名和team_id。" - -#: lms/djangoapps/teams/views.py -msgid "Username is required." -msgstr "需要填写用户名" - -#: lms/djangoapps/teams/views.py -msgid "Team id is required." -msgstr "需要填写Team id" - -#: lms/djangoapps/teams/views.py -msgid "This team is already full." -msgstr "该组已经满员。" - -#: lms/djangoapps/teams/views.py -#, python-brace-format -msgid "The user {username} is already a member of a team in this course." -msgstr "用户{username}已经是该课程团队中的一员了。" - -#: lms/djangoapps/teams/views.py -#, python-brace-format -msgid "" -"The user {username} is not enrolled in the course associated with this team." -msgstr "{username}用户未选修与该团队相关的课程。" - -#: lms/djangoapps/verify_student/admin.py -#: lms/djangoapps/verify_student/views.py -#, python-brace-format -msgid "Your {platform_name} ID Verification Approved" -msgstr "您的{platform_name}身份认证已通过" - -#: lms/djangoapps/verify_student/admin.py -#: lms/djangoapps/verify_student/views.py -#, python-brace-format -msgid "Your {platform_name} Verification Has Been Denied" -msgstr "您的{platform_name}身份认证已被拒绝" - -#: lms/djangoapps/verify_student/models.py -msgid "The course for which this deadline applies" -msgstr "使用该截止日期的课程" - -#: lms/djangoapps/verify_student/models.py -msgid "" -"The datetime after which users are no longer allowed to submit photos for " -"verification." -msgstr "该日期之后,用户将不再允许提交照片用于认证了。" - -#: lms/djangoapps/verify_student/services.py -#, python-brace-format -msgid "Your {platform_name} verification has expired." -msgstr "您的 {platform_name} 认证已经过期。" - -#: lms/djangoapps/verify_student/views.py -msgid "Intro" -msgstr "简介" - -#: lms/djangoapps/verify_student/views.py -msgid "Make payment" -msgstr "付款" - -#: lms/djangoapps/verify_student/views.py -msgid "Payment confirmation" -msgstr "付款确认" - -#: lms/djangoapps/verify_student/views.py -msgid "Take photo" -msgstr "拍摄" - -#: lms/djangoapps/verify_student/views.py -msgid "Take a photo of your ID" -msgstr "拍摄一张您身份证件的照片" - -#: lms/djangoapps/verify_student/views.py -msgid "Review your info" -msgstr "审核您的信息" - -#: lms/djangoapps/verify_student/views.py -msgid "Enrollment confirmation" -msgstr "选课确认" - -#: lms/djangoapps/verify_student/views.py -msgid "Selected price is not valid number." -msgstr "选择的价格不是有效数字。" - -#: lms/djangoapps/verify_student/views.py -msgid "This course doesn't support paid certificates" -msgstr "本课程不支持付费认证证书。" - -#: lms/djangoapps/verify_student/views.py -msgid "No selected price or selected price is below minimum." -msgstr "未选择价格或选择的价格低于最低价。" - -#: lms/djangoapps/verify_student/views.py -msgid "" -"Photo ID image is required if the user does not have an initial verification" -" attempt." -msgstr "如果用户没有一个初步的验证尝试,则需要提供带照片的身份证件图片。" - -#: lms/djangoapps/verify_student/views.py -msgid "Missing required parameter face_image" -msgstr "缺少必要的参数:面部图像" - -#: lms/djangoapps/verify_student/views.py -msgid "Invalid course key" -msgstr "无效的课程标识" - -#: lms/djangoapps/verify_student/views.py -msgid "No profile found for user" -msgstr "未找到用户档案" - -#: lms/djangoapps/verify_student/views.py -#, python-brace-format -msgid "Name must be at least {min_length} characters long." -msgstr "名字不能少于{min_length}字符。" - -#: lms/djangoapps/verify_student/views.py -msgid "Image data is not valid." -msgstr "图像数据无效." - -#: lms/djangoapps/verify_student/views.py -#, python-brace-format -msgid "{platform_name} ID Verification Photos Received" -msgstr "已收到{platform_name}身份认证照片" - -#: lms/djangoapps/verify_student/views.py -#, python-brace-format -msgid "Review ID Verification Photos For {username}" -msgstr "查看{username}的身份验证照片" - -#: lms/envs/common.py -msgid "EliteMBA" -msgstr "英荔商学院" - -#: lms/envs/common.py -msgid "Your Platform Description Here" -msgstr "您的平台描述" - -#: lms/envs/common.py -msgid "Read access" -msgstr "访问权限" - -#: lms/envs/common.py -msgid "Write access" -msgstr "写访问权限" - -#: lms/envs/common.py -msgid "Know your email address" -msgstr "找回邮箱地址" - -#: lms/envs/common.py -msgid "Know your name and username" -msgstr "找回姓名及用户名" - -#: lms/envs/common.py -msgid "Retrieve your grades for your enrolled courses" -msgstr "重新获取已修课程的分数" - -#: lms/envs/common.py -msgid "Retrieve your course certificates" -msgstr "获取您的课程证书" - -#: lms/envs/common.py lms/envs/common.py -msgid "Audit" -msgstr "旁听" - -#. Translators: This is the website name of www.facebook.com. Please -#. translate this the way that Facebook advertises in your language. -#: lms/envs/common.py -msgid "Facebook" -msgstr "Facebook" - -#: lms/envs/common.py -#, python-brace-format -msgid "Like {platform_name} on Facebook" -msgstr "在Facebook上为{platform_name}点赞" - -#. Translators: This is the website name of www.twitter.com. Please -#. translate this the way that Twitter advertises in your language. -#: lms/envs/common.py -msgid "Twitter" -msgstr "Twitter" - -#: lms/envs/common.py -#, python-brace-format -msgid "Follow {platform_name} on Twitter" -msgstr "在Twitter上关注{platform_name}" - -#. Translators: This is the website name of www.linkedin.com. Please -#. translate this the way that LinkedIn advertises in your language. -#: lms/envs/common.py -msgid "LinkedIn" -msgstr "领英" - -#: lms/envs/common.py -#, python-brace-format -msgid "Follow {platform_name} on LinkedIn" -msgstr "在领英上关注 {platform_name}" - -#. Translators: This is the website name of plus.google.com. Please -#. translate this the way that Google+ advertises in your language. -#: lms/envs/common.py -msgid "Google+" -msgstr "Google+" - -#: lms/envs/common.py -#, python-brace-format -msgid "Follow {platform_name} on Google+" -msgstr "关注{platform_name} 的Google+账号" - -#. Translators: This is the website name of www.tumblr.com. Please -#. translate this the way that Tumblr advertises in your language. -#: lms/envs/common.py -msgid "Tumblr" -msgstr "Tumblr" - -#. Translators: This is the website name of www.meetup.com. Please -#. translate this the way that MeetUp advertises in your language. -#: lms/envs/common.py -msgid "Meetup" -msgstr "Meetup" - -#. Translators: This is the website name of www.reddit.com. Please -#. translate this the way that Reddit advertises in your language. -#: lms/envs/common.py -msgid "Reddit" -msgstr "Reddit网站" - -#: lms/envs/common.py -#, python-brace-format -msgid "Subscribe to the {platform_name} subreddit" -msgstr "订阅 {platform_name} 在Reddit网站的子板块" - -#. Translators: This is the website name of https://vk.com. Please -#. translate this the way that VK advertises in your language. -#: lms/envs/common.py -msgid "VK" -msgstr "VK" - -#. Translators: This is the website name of http://www.weibo.com. Please -#. translate this the way that Weibo advertises in your language. -#: lms/envs/common.py -msgid "Weibo" -msgstr "微博" - -#. Translators: This is the website name of www.youtube.com. Please -#. translate this the way that YouTube advertises in your language. -#: lms/envs/common.py -msgid "Youtube" -msgstr "YouTube" - -#: lms/envs/common.py -#, python-brace-format -msgid "Subscribe to the {platform_name} YouTube channel" -msgstr "订阅 {platform_name} 的YouTube频道" - -#: lms/envs/common.py -msgid "Certificate" -msgstr "结课证书" - -#: lms/envs/common.py -msgid "Certificate of Achievement" -msgstr "荣誉证书" - -#: lms/envs/common.py -msgid "Kosovo" -msgstr "科索沃" - -#: lms/envs/common.py -#, python-brace-format -msgid "Welcome to {platform_name}." -msgstr "欢迎来到 {platform_name}" - -#: lms/envs/common.py -#, python-brace-format -msgid "" -"You have left the {start_bold}{enterprise_name}{end_bold} website and are " -"now on the {platform_name} site. {enterprise_name} has partnered with " -"{platform_name} to offer you high-quality, always available learning " -"programs to help you advance your knowledge and career. {line_break}Please " -"note that {platform_name} has a different {privacy_policy_link_start}Privacy" -" Policy{privacy_policy_link_end} from {enterprise_name}." -msgstr "" -"您已经离开 {start_bold}{enterprise_name}{end_bold} 页面,来到 {platform_name} 网站。 " -"{enterprise_name} 携手 {platform_name} " -"为您提供高质量,能随时随地学习的课程,助力您的知识扩展,事业进阶。{line_break}请注意, {platform_name} " -"的{privacy_policy_link_start}隐私政策{privacy_policy_link_end}与 {enterprise_name}" -" 不一致。" - -#: lms/envs/common.py -msgid "Professional" -msgstr "教授" - -#: lms/envs/common.py -msgid "No-Id-Professional" -msgstr "未注册教授" - -#: lms/envs/common.py -msgid "Credit" -msgstr "学分" - -#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html -msgid "Please correct the errors below." -msgstr "请修正下面的错误" - -#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html -#, python-format -msgid "Are you sure you want to cancel retirement for user \"%(username)s\"? " -msgstr "您确定要为用户\"%(username)s\"取消退出计划吗?" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -#, python-format -msgid "" -"\n" -" Welcome to %(course_name)s\n" -" " -msgstr "" -"\n" -"欢迎 %(course_name)s" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -#, python-format -msgid "To get started, please visit https://%(site_name)s." -msgstr "开始。请访问 https://%(site_name)s" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -msgid "The login information for your account follows:" -msgstr "您的账号登录信息如下:" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt -#, python-format -msgid "email: %(email_address)s" -msgstr "电子邮件:%(email_address)s" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt -#, python-format -msgid "password: %(password)s" -msgstr "密码:%(password)s" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt -msgid "It is recommended that you change your password." -msgstr "建议您修改密码" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt -#, python-format -msgid "Sincerely yours, The %(course_name)s Team" -msgstr "您的真挚的,%(course_name)s 团队" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt -#, python-format -msgid "Welcome to %(course_name)s" -msgstr "欢迎 %(course_name)s" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt -#, python-format -msgid "" -"To get started, please visit https://%(site_name)s. The login information " -"for your account follows." -msgstr "开始。请访问https://%(site_name)s 。您的账号登录信息如下。" - -#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/subject.txt -#: lms/templates/instructor/edx_ace/enrollenrolled/email/subject.txt -#, python-format -msgid "You have been enrolled in %(course_name)s" -msgstr "您已经选修了%(course_name)s" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -#, python-format -msgid "" -"\n" -" You have been invited to be a beta tester for %(course_name)s at %(site_name)s\n" -" " -msgstr "" -"\n" -"您已被邀请作为 Beta 测试员加入%(site_name)s上的%(course_name)s。" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -msgid "The invitation has been sent by a member of the course staff." -msgstr "邀请已经由一名课程工作人员发出。" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -msgid "To start accessing course materials, please visit:" -msgstr "获取课程资料,请访问:" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -msgid "To enroll in this course and begin the beta test:" -msgstr "报名参加本课程并开始测试:" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -#, python-format -msgid "Visit %(course_name)s" -msgstr "访问%(course_name)s" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -#, python-format -msgid "Visit %(site_name)s" -msgstr "访问%(site_name)s" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.html -#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt -#: lms/templates/instructor/edx_ace/removebetatester/email/body.html -#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt -#, python-format -msgid "" -"This email was automatically sent from %(site_name)s to %(email_address)s" -msgstr "该电子邮件是由%(site_name)s向%(email_address)s自动发出的" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt -#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt -#, python-format -msgid "Dear %(full_name)s" -msgstr "亲爱的%(full_name)s" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt -#, python-format -msgid "" -"You have been invited to be a beta tester for %(course_name)s at " -"%(site_name)s by a member of the course staff." -msgstr "您已被课程工作人员邀请作为 Beta 测试员加入%(site_name)s上的 %(course_name)s。" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt -#, python-format -msgid "To start accessing course materials, please visit %(course_url)s" -msgstr "获取课程资料,请访问 %(course_url)s" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt -#, python-format -msgid "" -"Visit %(course_about_url)s to enroll in this course and begin the beta test." -msgstr "访问%(course_about_url)s以加入该课程并开始Beta测试。" - -#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt -#, python-format -msgid "Visit %(site_name)s to enroll in this course and begin the beta test." -msgstr "访问%(site_name)s以选修此课程并开始Beta测试。" - -#: lms/templates/instructor/edx_ace/addbetatester/email/subject.txt -#, python-format -msgid "You have been invited to a beta test for %(course_name)s" -msgstr "您被邀请参与一个%(course_name)sBeta测试。" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -#, python-format -msgid "You have been invited to %(course_name)s" -msgstr "您被邀请去%(course_name)s。" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "" -"You have been invited to join %(course_name)s at %(site_name)s by a member " -"of the course staff." -msgstr "您已被课程工作人员邀请加入 %(course_name)s上的%(site_name)s。" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -msgid "To access this course click on the button below and login:" -msgstr "访问本课程,请点击下面的按钮并登录:" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -msgid "To access this course visit it and register:" -msgstr "要访问本课程,请访问并注册:" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -#, python-format -msgid "" -"Please finish your registration and fill out the registration form making " -"sure to use %(email_address)s in the Email field:" -msgstr "请填写您的注册表,确保在电子邮件中使用%(email_address)s:" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -msgid "Finish Your Registration" -msgstr "完成您的注册" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "" -"Once you have registered and activated your account, you will see " -"%(course_name)s listed on your dashboard." -msgstr "一旦您完成注册并已激活了您的账号,您将在课程面板中见到 %(course_name)s。" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -msgid "" -"Once you have registered and activated your account, you will be able to " -"access this course:" -msgstr "一旦您完成注册并已激活了账号,您将可以访问该课程:" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "You can then enroll in %(course_name)s." -msgstr "您可以选修课程%(course_name)s。" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -msgid "Dear student," -msgstr "亲爱的同学," - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "To access this course visit %(course_url)s and login." -msgstr "要进入该课程,请访问%(course_url)s登录。" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "" -"To access this course visit %(course_about_url)s and register for this " -"course." -msgstr "要进入该课程,请访问 %(course_about_url)s并注册该课程。" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "" -"To finish your registration, please visit %(registration_url)s and fill out " -"the registration form making sure to use %(email_address)s in the Email " -"field." -msgstr "要完成您的注册,请访问%(registration_url)s填写注册表格,并确保将 %(email_address)s填写在电子邮件中。" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt -#, python-format -msgid "" -"Once you have registered and activated your account, visit " -"%(course_about_url)s to join this course." -msgstr "一旦您完成注册并已激活了您的账号,请访问%(course_about_url)s以加入该课程。" - -#: lms/templates/instructor/edx_ace/allowedenroll/email/subject.txt -#, python-format -msgid "You have been invited to register for %(course_name)s" -msgstr "您已被邀请注册%(course_name)s" - -#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedunenroll/email/subject.txt -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/subject.txt -#, python-format -msgid "You have been unenrolled from %(course_name)s" -msgstr "您已从课程%(course_name)s中被移除。" - -#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html -#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt -#, python-format -msgid "" -"You have been unenrolled from the course %(course_name)s by a member of the " -"course staff. Please disregard the invitation previously sent." -msgstr "您已被课程工作人员从 %(course_name)s课程移除。请忽略之前向您发出的所有请求。" - -#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt -msgid "Dear Student," -msgstr "亲爱的同学," - -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html -#, python-format -msgid "" -"\n" -" You have been unenrolled from %(course_name)s\n" -" " -msgstr "" -"\n" -"您已从课程%(course_name)s中被移除。" - -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt -#, python-format -msgid "" -"You have been unenrolled from %(course_name)s at %(site_name)s by a member " -"of the course staff. This course will no longer appear on your %(site_name)s" -" dashboard." -msgstr "" -"您已被课程工作人员加入到了%(site_name)s上的%(course_name)s。该课程应会立即出现在您的%(site_name)s课程面板中。" - -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt -#: lms/templates/instructor/edx_ace/removebetatester/email/body.html -#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt -msgid "Your other courses have not been affected." -msgstr "您参加的其他课程没有受到影响。" - -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html -#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt -#, python-format -msgid "This email was automatically sent from %(site_name)s to %(full_name)s" -msgstr "这封电子邮件是由%(site_name)s向%(full_name)s自动发送的" - -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html -#, python-format -msgid "" -"\n" -" You have been enrolled in %(course_name)s\n" -" " -msgstr "" -"\n" -"您已经选修了%(course_name)s" - -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt -#, python-format -msgid "" -"You have been enrolled in %(course_name)s at %(site_name)s by a member of " -"the course staff. This course will now appear on your %(site_name)s " -"dashboard." -msgstr "" -"您已被课程工作人员加入到了%(site_name)s上的%(course_name)s中。该课程应会立即出现在您的%(site_name)s课程面板中。" - -#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html -msgid "Access the Course Materials Now" -msgstr "现在访问课程资料" - -#: lms/templates/instructor/edx_ace/removebetatester/email/body.html -#, python-format -msgid "" -"You have been removed as a beta tester for %(course_name)s at %(site_name)s" -msgstr "在%(site_name)s,您已经从%(course_name)s课程的 Beta 测试中被移除" - -#: lms/templates/instructor/edx_ace/removebetatester/email/body.html -#, python-format -msgid "" -"You have been removed as a beta tester for %(course_name)s at %(site_name)s " -"by a member of the course staff." -msgstr "在%(site_name)s,您作为测试者已经被课程工作人员从%(course_name)s的 移除" - -#: lms/templates/instructor/edx_ace/removebetatester/email/body.html -msgid "" -"This course will remain on your dashboard, but you will no longer be part of" -" the beta testing group." -msgstr "这门课程将留在您的面板上,但您将不再是beta测试组的一员。" - -#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt -#, python-format -msgid "" -"You have been removed as a beta tester for %(course_name)s at %(site_name)s " -"by a member of the course staff. This course will remain on your dashboard, " -"but you will no longer be part of the beta testing group." -msgstr "" -"您在%(site_name)s上的%(course_name)s课程的 Beta " -"测试员身份已被课程教员移除。该课程仍将显示在您的课程面板中,但您已不再是 Beta 测试组的一员。" - -#: lms/templates/instructor/edx_ace/removebetatester/email/subject.txt -#, python-format -msgid "You have been removed from a beta test for %(course_name)s" -msgstr "您已经从课程 %(course_name)sBeta 测试中被移除" - -#: lms/templates/logout.html -msgid "Signed Out" -msgstr "已注销" - -#: lms/templates/logout.html -msgid "You have signed out." -msgstr "您已注销。" - -#: lms/templates/logout.html -#, python-format -msgid "" -"If you are not redirected within 5 seconds, click " -"here to go to the home page." -msgstr "如果您在5秒内没有被重定向,点击这里进入主页。" - -#: lms/templates/main_django.html -msgid "Skip to main content" -msgstr "跳至主要内容" - -#: lms/templates/oauth2_provider/authorize.html -#: lms/templates/oauth2_provider/authorize.html -msgid "Authorize" -msgstr "授权" - -#: lms/templates/oauth2_provider/authorize.html -msgid "" -"The above application requests the following permissions from your account:" -msgstr "以上应用需要您账号进行以下授权:" - -#: lms/templates/oauth2_provider/authorize.html -msgid "" -"These permissions will be granted for data from your courses associated with" -" the following content providers:" -msgstr "这些授权用于与以下内容Provider相关的课程数据:" - -#: lms/templates/oauth2_provider/authorize.html -msgid "" -"Please click the 'Allow' button to grant these permissions to the above " -"application. Otherwise, to withhold these permissions, please click the " -"'Cancel' button." -msgstr "请点击“允许”按钮给以上应用进行授权。如果您不希望授权,请点击“取消”按钮。" - -#: lms/templates/oauth2_provider/authorize.html -#: openedx/core/djangoapps/user_api/admin.py -msgid "Cancel" -msgstr "取消" - -#: lms/templates/oauth2_provider/authorize.html -msgid "Allow" -msgstr "允许" - -#: lms/templates/oauth2_provider/authorize.html -msgid "Error" -msgstr "错误" - -#: lms/templates/wiki/article.html -msgid "Last modified:" -msgstr "最后修改:" - -#: lms/templates/wiki/article.html -msgid "See all children" -msgstr "查看所有子文章" - -#: lms/templates/wiki/article.html -msgid "This article was last modified:" -msgstr "这篇文章最后修改:" - -#: lms/templates/wiki/create.html lms/templates/wiki/create.html -msgid "Add new article" -msgstr "增加新文章" - -#: lms/templates/wiki/create.html -msgid "Create article" -msgstr "创建文章" - -#: lms/templates/wiki/create.html lms/templates/wiki/delete.html -#: lms/templates/wiki/delete.html -msgid "Go back" -msgstr "返回" - -#: lms/templates/wiki/delete.html lms/templates/wiki/delete.html -#: lms/templates/wiki/edit.html -msgid "Delete article" -msgstr "删除文章" - -#: lms/templates/wiki/delete.html -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Delete" -msgstr "删除" - -#: lms/templates/wiki/delete.html -msgid "You cannot delete a root article." -msgstr "根文章不可删除。" - -#: lms/templates/wiki/delete.html -msgid "" -"You cannot delete this article because you do not have permission to delete " -"articles with children. Try to remove the children manually one-by-one." -msgstr "当文章带有子文章时您无权删除,请尝试手动逐一删除子文章。" - -#: lms/templates/wiki/delete.html -msgid "" -"You are deleting an article. This means that its children will be deleted as" -" well. If you choose to purge, children will also be purged!" -msgstr "删除这篇文章将会导致相关子文章会同时被删除。如果您选择清除,子文章也将同时被清除。" - -#: lms/templates/wiki/delete.html -msgid "Articles that will be deleted" -msgstr "将要被删除的文章" - -#: lms/templates/wiki/delete.html -msgid "...and more!" -msgstr "……还有更多!" - -#: lms/templates/wiki/delete.html -msgid "You are deleting an article. Please confirm." -msgstr "您正试图删除文章。请确认!" - -#: lms/templates/wiki/edit.html -msgid "Edit" -msgstr "编辑" - -#: lms/templates/wiki/edit.html lms/templates/wiki/edit.html -msgid "Save changes" -msgstr "保存修改" - -#: lms/templates/wiki/edit.html -msgid "Preview" -msgstr "预览" - -#: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -msgid "Close" -msgstr "关闭" - -#: lms/templates/wiki/edit.html -msgid "Wiki Preview" -msgstr "Wiki预览" - -#: lms/templates/wiki/edit.html lms/templates/wiki/history.html -#: lms/templates/wiki/history.html lms/templates/wiki/includes/cheatsheet.html -msgid "window open" -msgstr "窗口打开" - -#: lms/templates/wiki/edit.html -msgid "Back to editor" -msgstr "返回编辑器" - -#: lms/templates/wiki/history.html -msgid "History" -msgstr "历史记录" - -#: lms/templates/wiki/history.html -msgid "" -"Click each revision to see a list of edited lines. Click the Preview button " -"to see how the article looked at this stage. At the bottom of this page, you" -" can change to a particular revision or merge an old revision with the " -"current one." -msgstr "" -"点击每一个版本,您将会看到被编辑行的列表。点击预览按钮,您可以看到这篇文章目前的状态。在页面的底部,您可以切换到一个指定版本,或者合并两个现存的版本生成新版本。" - -#: lms/templates/wiki/history.html -msgid "anonymous (IP not logged)" -msgstr "匿名(IP未记录)" - -#: lms/templates/wiki/history.html -msgid "by" -msgstr "由" - -#: lms/templates/wiki/history.html -#: lms/templates/wiki/plugins/attachments/index.html -msgid "anonymous (IP logged)" -msgstr "匿名(IP已记录)" - -#: lms/templates/wiki/history.html -msgid "restored" -msgstr "恢复" - -#: lms/templates/wiki/history.html -msgid "locked" -msgstr "已锁定" - -#: lms/templates/wiki/history.html -msgid "unlocked" -msgstr "解锁" - -#: lms/templates/wiki/history.html -msgid "(no log message)" -msgstr "(无日志消息)" - -#: lms/templates/wiki/history.html -msgid "Preview this revision" -msgstr "预览本次修改" - -#: lms/templates/wiki/history.html -msgid "Auto log:" -msgstr "自动日志" - -#: lms/templates/wiki/history.html -msgid "Change" -msgstr "修改" - -#: lms/templates/wiki/history.html lms/templates/wiki/history.html -msgid "Merge selected with current..." -msgstr "合并选择项和当前项……" - -#: lms/templates/wiki/history.html -msgid "Switch to selected version" -msgstr "转到选择的版本" - -#: lms/templates/wiki/history.html -msgid "Wiki Revision Preview" -msgstr "Wiki修订预览" - -#: lms/templates/wiki/history.html lms/templates/wiki/history.html -msgid "Back to history view" -msgstr "返回历史视图" - -#: lms/templates/wiki/history.html lms/templates/wiki/history.html -msgid "Switch to this version" -msgstr "切换到这个版本" - -#: lms/templates/wiki/history.html -msgid "Merge Revision" -msgstr "合并修订" - -#: lms/templates/wiki/history.html -msgid "Merge with current" -msgstr "和当前版本合并" - -#: lms/templates/wiki/history.html -msgid "" -"When you merge a revision with the current, all data will be retained from " -"both versions and merged at its approximate location from each revision." -msgstr "当您合并修订版本与当前版本时,所有的数据都会被保留。修改信息将会合并到系统择优选择的位置。" - -#: lms/templates/wiki/history.html -msgid "After this, it's important to do a manual review." -msgstr "注意:请在操作完成后做一次人工检查。" - -#: lms/templates/wiki/history.html lms/templates/wiki/history.html -msgid "Create new merged version" -msgstr "创建新的合并版本" - -#: lms/templates/wiki/includes/anonymous_blocked.html -#, python-format -msgid "" -"You need to log in or sign up to use this function." -msgstr "" -"您必须登录注册才能使用这项功能。" - -#: lms/templates/wiki/includes/anonymous_blocked.html -msgid "You need to log in or sign up to use this function." -msgstr "您需要注册或者登录才能使用这个功能。" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Wiki Cheatsheet" -msgstr "Wiki简单说明" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Wiki Syntax Help" -msgstr "Wiki语法帮助" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "" -"This wiki uses Markdown for styling. There are several " -"useful guides online. See any of the links below for in-depth details:" -msgstr "本Wiki使用了Markdown语法,网上可以找到很多有用的资料。点击以下链接可了解更多细节:" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Markdown: Basics" -msgstr "Markdown:基础知识" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Quick Markdown Syntax Guide" -msgstr "Markdown 语法快速指南" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Miniature Markdown Guide" -msgstr "简明 Markdown 语法指南" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "" -"To create a new wiki article, create a link to it. Clicking the link gives " -"you the creation page." -msgstr "若想创建一篇新文章,可以先创建一个指向它的链接。点击该链接转向自动创建页面。" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "[Article Name](wiki:ArticleName)" -msgstr "[文章名称](wiki:ArticleName)" - -#: lms/templates/wiki/includes/cheatsheet.html -#, python-format -msgid "%(platform_name)s Additions:" -msgstr "%(platform_name)s 附加:" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Math Expression" -msgstr "数学表达式" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Useful examples:" -msgstr "实用的例子:" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Wikipedia" -msgstr "Wikipedia" - -#: lms/templates/wiki/includes/cheatsheet.html -#, python-format -msgid "%(platform_name)s Wiki" -msgstr "%(platform_name)s Wiki" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Huge Header" -msgstr "大标题" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Smaller Header" -msgstr "小标题" - -#. Translators: Leave the punctuation, but translate "emphasis" -#: lms/templates/wiki/includes/cheatsheet.html -msgid "*emphasis* or _emphasis_" -msgstr "*重点* or _重点_" - -#. Translators: Leave the punctuation, but translate "strong" -#: lms/templates/wiki/includes/cheatsheet.html -msgid "**strong** or __strong__" -msgstr "**强调** or __强调__" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Unordered List" -msgstr "无序列表" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Sub Item 1" -msgstr "子项目1" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Sub Item 2" -msgstr "子项目2" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Ordered" -msgstr "排序" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "List" -msgstr "列表" - -#: lms/templates/wiki/includes/cheatsheet.html -msgid "Quotes" -msgstr "引言" - -#: lms/templates/wiki/includes/editor_widget.html -#, python-format -msgid "" -"Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for" -" help." -msgstr "允许使用MarkDown语法。请参阅%(start_link)s快捷键管理%(end_link)s以获得帮助。" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Attachments" -msgstr "附件" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Upload new file" -msgstr "上传新文件" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Search and add file" -msgstr "搜索并添加文件" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Upload File" -msgstr "上传文件" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Upload file" -msgstr "上传文件" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Search files and articles" -msgstr "搜索文件和文章" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "" -"You can reuse files from other articles. These files are subject to updates " -"on other articles which may or may not be a good thing." -msgstr "您可以从其他文章中重用一些文件。但是该文件的更新依赖于原始文章,请判断该引用关系是否恰当。" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Search" -msgstr "搜索" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "" -"The following files are available for this article. Copy the markdown tag to" -" directly refer to a file from the article text." -msgstr "下列文件对这篇文章可用,请复制markdown标记到文本中,直接指向对应文件。" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Markdown tag" -msgstr "Markdown标记" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Uploaded by" -msgstr "上传者是" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Size" -msgstr "大小" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "File History" -msgstr "文件历史记录" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Detach" -msgstr "分离" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Replace" -msgstr "替换" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "Restore" -msgstr "恢复" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "File history" -msgstr "文件历史" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "revisions" -msgstr "修订版" - -#: lms/templates/wiki/plugins/attachments/index.html -msgid "There are no attachments for this article." -msgstr "这篇文章没有附件" - -#: lms/templates/wiki/preview_inline.html -msgid "Previewing revision:" -msgstr "预览修改:" - -#: lms/templates/wiki/preview_inline.html -msgid "Previewing a merge between two revisions:" -msgstr "预览合并效果:" - -#: lms/templates/wiki/preview_inline.html -msgid "This revision has been deleted." -msgstr "该修订已被删除。" - -#: lms/templates/wiki/preview_inline.html -msgid "Restoring to this revision will mark the article as deleted." -msgstr "恢复该修订将标记本文章为已删除状态。" - -#: lms/urls.py -msgid "LMS Administration" -msgstr "LMS管理" - -#: openedx/core/djangoapps/ace_common/apps.py -msgid "ACE Common" -msgstr "ACE 共享" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -#, python-format -msgid "Go to %(platform_name)s Home Page" -msgstr "前往%(platform_name)s主页" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -msgid "Sign In" -msgstr "登录" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -#, python-format -msgid "%(platform_name)s on LinkedIn" -msgstr "%(platform_name)s的领英官方号" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -#, python-format -msgid "%(platform_name)s on Twitter" -msgstr "%(platform_name)s的推特官方账号" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -#, python-format -msgid "%(platform_name)s on Facebook" -msgstr "%(platform_name)s的Facebook官方账号" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -#, python-format -msgid "%(platform_name)s on Google Plus" -msgstr "%(platform_name)s的Google+官方账号" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -#, python-format -msgid "%(platform_name)s on Reddit" -msgstr "%(platform_name)s的Reddit官方账号" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -msgid "Download the iOS app on the Apple Store" -msgstr "在平台官方应用商店下载iOS App" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -msgid "Download the Android app on the Google Play Store" -msgstr "在Google Play商店下载安卓App" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -msgid "," -msgstr "," - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -msgid "All rights reserved." -msgstr "保留所有权利。" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -msgid "Our mailing address is" -msgstr "我们的邮箱地址" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_head.html -msgid "EliteMBA Email" -msgstr "英荔商学院邮箱" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.html -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.txt -#, python-format -msgid "" -"Don't miss the opportunity to highlight your new knowledge and skills by " -"earning a verified certificate. Upgrade by " -"%(user_schedule_upgrade_deadline_time)s." -msgstr "" -"抓住冲刺认证证书的机会,以此学习新知识、掌握新技能。请于%(user_schedule_upgrade_deadline_time)s前升级证书。" - -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.html -#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.txt -msgid "Upgrade Now" -msgstr "立刻升级" - -#: openedx/core/djangoapps/api_admin/admin.py -#, python-brace-format -msgid "" -"Once you have approved this request, go to {catalog_admin_url} to set up a " -"catalog for this user." -msgstr "一旦您已批准此请求,请前往{catalog_admin_url}为此用户设置一个目录。" - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "Organization Name" -msgstr "机构名称" - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "Organization Address" -msgstr "组织地址" - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "Describe what your application does." -msgstr "描述您的应用的功能。" - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "The URL of your organization's website." -msgstr "您组织网站的URL。" - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "The name of your organization." -msgstr "您组织的名称。" - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "The contact address of your organization." -msgstr "您组织的联系地址。" - -#: openedx/core/djangoapps/api_admin/forms.py -#, python-brace-format -msgid "The following users do not exist: {usernames}." -msgstr "以下用户不存在: {usernames}." - -#: openedx/core/djangoapps/api_admin/forms.py -msgid "" -"Comma-separated list of usernames which will be able to view this catalog." -msgstr "在此目录中可查看逗号隔开的用户名列表。" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "Denied" -msgstr "拒绝" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "Approved" -msgstr "已批准" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "Status of this API access request" -msgstr "此 API 访问请求的状态" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "The URL of the website associated with this API user." -msgstr "与此 API 用户相关的网站的 URL。" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "The reason this user wants to access the API." -msgstr "此用户希望访问 API 的原因。" - -#: openedx/core/djangoapps/api_admin/models.py -#, python-brace-format -msgid "API access request from {company}" -msgstr "{company} 的 API 访问请求" - -#: openedx/core/djangoapps/api_admin/models.py -msgid "API access request" -msgstr "API 访问请求" - -#: openedx/core/djangoapps/api_admin/widgets.py -#, python-brace-format -msgid "" -"I, and my organization, accept the {link_start}{platform_name} API Terms of " -"Service{link_end}." -msgstr "我和我的组织均同意此{link_start}{platform_name}API服务条款{link_end}。" - -#: openedx/core/djangoapps/bookmarks/apps.py -#: openedx/features/course_bookmarks/plugins.py -#: openedx/features/course_bookmarks/views/course_bookmarks.py -msgid "Bookmarks" -msgstr "书签" - -#: openedx/core/djangoapps/bookmarks/views.py -msgid "An error has occurred. Please try again." -msgstr "发生了一个未知错误,请重试。" - -#: openedx/core/djangoapps/bookmarks/views.py -msgid "No data provided." -msgstr "未提供数据。" - -#: openedx/core/djangoapps/bookmarks/views.py -msgid "Parameter usage_id not provided." -msgstr "未提供参数usage_id。" - -#: openedx/core/djangoapps/bookmarks/views.py -#: openedx/core/djangoapps/bookmarks/views.py -#, python-brace-format -msgid "Invalid usage_id: {usage_id}." -msgstr "无效 usage_id: {usage_id}。" - -#: openedx/core/djangoapps/bookmarks/views.py -#, python-brace-format -msgid "Block with usage_id: {usage_id} not found." -msgstr "封锁 usage_id: {usage_id}搜寻不到。" - -#: openedx/core/djangoapps/bookmarks/views.py -#, python-brace-format -msgid "" -"You can create up to {max_num_bookmarks_per_course} bookmarks. You must " -"remove some bookmarks before you can add new ones." -msgstr "您可以建立 {max_num_bookmarks_per_course} 书签。您必须在新增书签前删除一些书签。" - -#: openedx/core/djangoapps/bookmarks/views.py -#: openedx/core/djangoapps/bookmarks/views.py -#, python-brace-format -msgid "Bookmark with usage_id: {usage_id} does not exist." -msgstr "书签 usage_id: {usage_id} 不存在。" - -#: openedx/core/djangoapps/catalog/models.py -#: openedx/core/djangoapps/video_pipeline/models.py -msgid "Internal API URL" -msgstr "内部API URL" - -#: openedx/core/djangoapps/catalog/models.py -msgid "DEPRECATED: Use the setting COURSE_CATALOG_API_URL." -msgstr "不推荐项:使用设置项“COURSE_CATALOG_API_URL”。" - -#: openedx/core/djangoapps/catalog/models.py -msgid "" -"Specified in seconds. Enable caching of API responses by setting this to a " -"value greater than 0." -msgstr "以秒为单位,通过将此值设置为大于0来启用API回复缓存。" - -#: openedx/core/djangoapps/catalog/models.py -msgid "Long Term Cache Time To Live" -msgstr "长期缓存有效时间" - -#: openedx/core/djangoapps/catalog/models.py -msgid "" -"Specified in seconds (defaults to 86400s, 24hr). In some cases the cache " -"does needs to be refreshed less frequently. Enable long term caching of API " -"responses by setting this to a value greater than 0." -msgstr "精确到秒(默认值86400秒/24小时)。有时候请勿太频繁刷新缓存,通过将此值设置为大于0来启用长期API回复缓存。" - -#: openedx/core/djangoapps/catalog/models.py -msgid "" -"Username created for Course Catalog Integration, e.g. " -"lms_catalog_service_user." -msgstr "用于课程目录整合的用户名,例如:lms_catalog_service_user。" - -#: openedx/core/djangoapps/catalog/models.py -msgid "Page Size" -msgstr "页面尺寸" - -#: openedx/core/djangoapps/catalog/models.py -msgid "" -"Maximum number of records in paginated response of a single request to " -"catalog service." -msgstr "对目录服务的单个请求的最大记录数量,表现形式为分页回复。" - -#: openedx/core/djangoapps/cors_csrf/models.py -msgid "" -"List of domains that are allowed to make cross-domain requests to this site." -" Please list each domain on its own line." -msgstr "允许进行跨域请求至此页面的主机列表。请在每一行列出一个主机。" - -#: openedx/core/djangoapps/course_groups/cohorts.py -msgid "Default Group" -msgstr "默认组" - -#: openedx/core/djangoapps/course_groups/cohorts.py -msgid "You cannot create two cohorts with the same name" -msgstr "您无法创建两个具有相同名称的群组。" - -#: openedx/core/djangoapps/course_groups/cohorts.py -msgid "" -"There must be one cohort to which students can automatically be assigned." -msgstr "必须存在一个可以将学生自动分配进去的群组。" - -#: openedx/core/djangoapps/course_groups/views.py -msgid "A cohort with the same name already exists." -msgstr "具有相同名称的群组已存在。" - -#: openedx/core/djangoapps/credentials/apps.py -msgid "Credentials" -msgstr "证书" - -#: openedx/core/djangoapps/credentials/models.py -msgid "Internal Service URL" -msgstr "内部服务链接" - -#: openedx/core/djangoapps/credentials/models.py -msgid "Public Service URL" -msgstr "公众服务链接" - -#: openedx/core/djangoapps/credentials/models.py -msgid "Enable Learner Issuance" -msgstr "使学习者发表问题" - -#: openedx/core/djangoapps/credentials/models.py -msgid "Enable issuance of credentials via Credential Service." -msgstr "透过证书服务启动发布认证" - -#: openedx/core/djangoapps/credentials/models.py -msgid "Enable Authoring of Credential in Studio" -msgstr "在工作室中,启动编辑的证书" - -#: openedx/core/djangoapps/credentials/models.py -msgid "Enable authoring of Credential Service credentials in Studio." -msgstr "在工作室中,启动编辑证书服务的资格" - -#: openedx/core/djangoapps/credit/email_utils.py -msgid "Course Credit Eligibility" -msgstr "学分评定资格" - -#: openedx/core/djangoapps/credit/email_utils.py -#, python-brace-format -msgid "You are eligible for credit from {providers_string}" -msgstr "您有资格获得 {providers_string} 的学分" - -#. Translators: The join of two university names (e.g., Harvard and MIT). -#: openedx/core/djangoapps/credit/email_utils.py -#, python-brace-format -msgid "{first_provider} and {second_provider}" -msgstr "{first_provider} 和{second_provider}" - -#. Translators: The join of three or more university names. The first of these -#. formatting strings -#. represents a comma-separated list of names (e.g., MIT, Harvard, Dartmouth). -#: openedx/core/djangoapps/credit/email_utils.py -#, python-brace-format -msgid "{first_providers}, and {last_provider}" -msgstr "{first_providers},和{last_provider}" - -#: openedx/core/djangoapps/credit/exceptions.py -#, python-brace-format -msgid "[{username}] is not eligible for credit for [{course_key}]." -msgstr "[{username}] 没有获得[{course_key}]学分的资格。" - -#: openedx/core/djangoapps/credit/exceptions.py -#, python-brace-format -msgid "[{course_key}] is not a valid course key." -msgstr "[{course_key}] 不是有效课程密钥。" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"Unique identifier for this credit provider. Only alphanumeric characters and" -" hyphens (-) are allowed. The identifier is case-sensitive." -msgstr "学分提供方的唯一标识符。只允许使用数字、字母和连字符(-),且大小写敏感。" - -#: openedx/core/djangoapps/credit/models.py -msgid "Whether the credit provider is currently enabled." -msgstr "当前是否启用学分提供方。" - -#: openedx/core/djangoapps/credit/models.py -msgid "Name of the credit provider displayed to users" -msgstr "展现给用户的学分提供者的名称" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"When true, automatically notify the credit provider when a user requests " -"credit. In order for this to work, a shared secret key MUST be configured " -"for the credit provider in secure auth settings." -msgstr "当该值为True时,若用户请求学分则自动通知学分提供方。为使该操作生效,共享密钥必须配置学分提供方的安全认证设置。" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"URL of the credit provider. If automatic integration is enabled, this will " -"the the end-point that we POST to to notify the provider of a credit " -"request. Otherwise, the user will be shown a link to this URL, so the user " -"can request credit from the provider directly." -msgstr "" -"信贷提供者之网址。如果可以启动自动集成,这将是最后一次发布通知信贷提供者。除此之外,使用者将可看到一个链接网址,使用者可以直接向信贷提供者申请贷款。" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"URL from the credit provider where the user can check the status of his or " -"her request for credit. This is displayed to students *after* they have " -"requested credit." -msgstr "信贷提供者可从网址让使用者可检查他或她申请贷款之状态。这是显示於学生们申请贷款后。" - -#: openedx/core/djangoapps/credit/models.py -msgid "Description for the credit provider displayed to users." -msgstr "展现给用户的学分提供方的描述。" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"Plain text or html content for displaying further steps on receipt page " -"*after* paying for the credit to get credit for a credit course against a " -"credit provider." -msgstr "纯文本或html内容显示进一步收据页面於支付款项后,获得信贷提供者所提供之学分课程。" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"Plain text or html content for displaying custom message inside credit " -"eligibility email content which is sent when user has met all credit " -"eligibility requirements." -msgstr "纯文本或html内容显示,当使用者符合所有信贷资格时,会被发送用户信贷资格讯息通知。" - -#: openedx/core/djangoapps/credit/models.py -msgid "" -"Plain text or html content for displaying custom message inside credit " -"receipt email content which is sent *after* paying to get credit for a " -"credit course." -msgstr "纯文本或html内容显示,当支付学分课程后,会发送使用者收据讯息。" - -#: openedx/core/djangoapps/credit/models.py -msgid "Thumbnail image url of the credit provider." -msgstr "学分提供者的缩图网址。" - -#: openedx/core/djangoapps/credit/models.py -msgid "Credit requirement statuses" -msgstr "学分要求状态" - -#: openedx/core/djangoapps/credit/models.py -msgid "Deadline for purchasing and requesting credit." -msgstr "购买和请求学分的截止日期。" - -#: openedx/core/djangoapps/dark_lang/views.py -msgid "Preview Language Administration" -msgstr "预览语言管理" - -#: openedx/core/djangoapps/dark_lang/views.py -msgid "Language not provided" -msgstr "未提供语言" - -#: openedx/core/djangoapps/dark_lang/views.py -#, python-brace-format -msgid "Language set to {preview_language}" -msgstr "语言为{preview_language}" - -#: openedx/core/djangoapps/dark_lang/views.py -msgid "Language reset to the default" -msgstr "重置为默认语言" - -#: openedx/core/djangoapps/debug/views.py -msgid "This is a test message" -msgstr "这是一条测试信息" - -#: openedx/core/djangoapps/debug/views.py -msgid "This is a success message" -msgstr "这是一条成功的信息" - -#: openedx/core/djangoapps/debug/views.py -msgid "This is a test warning" -msgstr "这是一个测试警告" - -#: openedx/core/djangoapps/debug/views.py -msgid "This is a test error" -msgstr "这是一个测试错误" - -#: openedx/core/djangoapps/embargo/forms.py -#: openedx/core/djangoapps/verified_track_content/forms.py -msgid "COURSE NOT FOUND. Please check that the course ID is valid." -msgstr "课程未找到,请检查课程 ID 是否有效。" - -#: openedx/core/djangoapps/embargo/models.py -msgid "The course key for the restricted course." -msgstr "此受限课程的课程标识。" - -#: openedx/core/djangoapps/embargo/models.py -msgid "The message to show when a user is blocked from enrollment." -msgstr "当用户被阻止选课时显示的信息。" - -#: openedx/core/djangoapps/embargo/models.py -msgid "The message to show when a user is blocked from accessing a course." -msgstr "对不起,您暂时无法进入此课程的学习。" - -#: openedx/core/djangoapps/embargo/models.py -msgid "" -"Allow users who enrolled in an allowed country to access restricted courses " -"from excluded countries." -msgstr "允许注册于许可国家或地区的用户能从受限国家或地区登入受限课程。" - -#: openedx/core/djangoapps/embargo/models.py -msgid "Two character ISO country code." -msgstr "ISO国家代码 (2位)" - -#: openedx/core/djangoapps/embargo/models.py -msgid "" -"Whether to include or exclude the given course. If whitelist countries are " -"specified, then ONLY users from whitelisted countries will be able to access" -" the course. If blacklist countries are specified, then users from " -"blacklisted countries will NOT be able to access the course." -msgstr "无论保留或者删减指定课程。一旦某国被认定为白名单,则只有这个国家的用户可以参加课程;一旦某国被认定为黑名单,则这个国家的用户不能参加课程。" - -#: openedx/core/djangoapps/embargo/models.py -msgid "The course to which this rule applies." -msgstr "使用该规则的课程。" - -#: openedx/core/djangoapps/embargo/models.py -msgid "The country to which this rule applies." -msgstr "这条规律同样适用于这个国家。" - -#: openedx/core/djangoapps/embargo/models.py -#, python-brace-format -msgid "Whitelist {country} for {course}" -msgstr "课程{course}的白名单国家: {country}" - -#: openedx/core/djangoapps/embargo/models.py -#, python-brace-format -msgid "Blacklist {country} for {course}" -msgstr "课程{course}的黑名单国家: {country}" - -#: openedx/core/djangoapps/external_auth/views.py -#, python-brace-format -msgid "" -"You have already created an account using an external login like WebAuth or " -"Shibboleth. Please contact {tech_support_email} for support." -msgstr "您已经创建使用外部登录类似的WebAuth或Shibboleth的帐户。请联系{tech_support_email}支持。" - -#: openedx/core/djangoapps/external_auth/views.py -msgid "" -"\n" -" Your university identity server did not return your ID information to us.\n" -" Please try logging in again. (You may need to restart your browser.)\n" -" " -msgstr "" -"\n" -" 您的大学身份服务器未将您的身份信息返回给我们,\n" -" 请重新登录(可能需要重启浏览器。)\n" -" " - -#: openedx/core/djangoapps/oauth_dispatch/models.py -msgid "" -"Comma-separated list of scopes that this application will be allowed to " -"request." -msgstr "用逗号隔开的此应用可申请范围列表。" - -#: openedx/core/djangoapps/oauth_dispatch/models.py -msgid "Content Provider" -msgstr "内容Provider" - -#: openedx/core/djangoapps/password_policy/apps.py -msgid "Password Policy" -msgstr "密码政策" - -#: openedx/core/djangoapps/password_policy/compliance.py -#, python-brace-format -msgid "" -"{strong_tag_open}We recently changed our password " -"requirements{strong_tag_close}{break_line_tag}Your current password does not" -" meet the new security requirements. We just sent a password-reset message " -"to the email address associated with this account. Thank you for helping us " -"keep your data safe." -msgstr "" -"{strong_tag_open}我们最近更改了密码要求{strong_tag_close}{break_line_tag}您当前的密码不符合新的安全要求。我们刚刚发送了一个密码重置消息到与这个账号相关联的电子邮件地址。感谢您帮助我们保护您的数据安全。" - -#: openedx/core/djangoapps/password_policy/compliance.py -#, python-brace-format -msgid "" -"{strong_tag_open}Required Action: Please update your " -"password{strong_tag_close}{break_line_tag}As of {deadline}, {platform_name} " -"will require all learners to have complex passwords. Your current password " -"does not meet these requirements. To reset your password, go to to " -"{anchor_tag_open}Account Settings{anchor_tag_close}." -msgstr "" -"{strong_tag_open}要求的行动:请更新您的密码{strong_tag_close}{break_line_tag}自 " -"{deadline}起, " -"{platform_name}将要求所有的学员有复杂的密码。您当前的密码不满足这些要求。要重置密码,去{anchor_tag_open}账号设置{anchor_tag_close}。" - -#: openedx/core/djangoapps/profile_images/images.py -#, python-brace-format -msgid "The file must be smaller than {image_max_size} in size." -msgstr "文件必须小于 {image_max_size} 。" - -#: openedx/core/djangoapps/profile_images/images.py -#, python-brace-format -msgid "The file must be at least {image_min_size} in size." -msgstr "文件必须大于 {image_min_size} 。" - -#: openedx/core/djangoapps/profile_images/images.py -#, python-brace-format -msgid "The file must be one of the following types: {valid_file_types}." -msgstr "文件必须为以下其中一项样式:{valid_file_types}。" - -#: openedx/core/djangoapps/profile_images/images.py -msgid "" -"The Content-Type header for this file does not match the file data. The file" -" may be corrupted." -msgstr "此文件内容类型标题不匹配文件数据。该文件可能已损坏。" - -#: openedx/core/djangoapps/profile_images/images.py -msgid "" -"The file name extension for this file does not match the file data. The file" -" may be corrupted." -msgstr "扩展之文件名称不匹配文件数据。该文件可能已损坏。" - -#: openedx/core/djangoapps/profile_images/images.py -msgid "bytes" -msgstr "字节" - -#: openedx/core/djangoapps/profile_images/images.py -msgid "KB" -msgstr "KB" - -#: openedx/core/djangoapps/profile_images/images.py -msgid "MB" -msgstr "MB" - -#: openedx/core/djangoapps/profile_images/views.py -msgid "No file provided for profile image" -msgstr "未向档案照片提交文件" - -#: openedx/core/djangoapps/programs/models.py -msgid "Path used to construct URLs to programs marketing pages (e.g., \"/foo\")." -msgstr "用于构建方案销售页面URL的路径(例如:\"/foo\")。" - -#: openedx/core/djangoapps/schedules/admin.py -msgid "Known Error Case" -msgstr "已知错误案例" - -#: openedx/core/djangoapps/schedules/admin.py -msgid "Schedule start < course start" -msgstr "计划开始时间 < 课程开始时间" - -#: openedx/core/djangoapps/schedules/admin.py -msgid "All" -msgstr "所有" - -#: openedx/core/djangoapps/schedules/admin.py -msgid "Experience" -msgstr "经验" - -#: openedx/core/djangoapps/schedules/apps.py -#: openedx/core/djangoapps/schedules/models.py -msgid "Schedules" -msgstr "时间表" - -#: openedx/core/djangoapps/schedules/models.py -msgid "Indicates if this schedule is actively used" -msgstr "表明此时间表是否生效" - -#: openedx/core/djangoapps/schedules/models.py -msgid "Date this schedule went into effect" -msgstr "此时间表生效日期" - -#: openedx/core/djangoapps/schedules/models.py -msgid "Deadline by which the learner must upgrade to a verified seat" -msgstr "学员必须升级为认证名额的截止日期" - -#: openedx/core/djangoapps/schedules/models.py -msgid "Schedule" -msgstr "时间表" - -#: openedx/core/djangoapps/schedules/templates/dropdown_filter.html -#, python-format -msgid " By %(filter_title)s " -msgstr "于%(filter_title)s前" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html -#, python-format -msgid "Welcome to week %(week_num)s of %(course_name)s!" -msgstr "%(week_num)s学习的第%(course_name)s周!" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html -#, python-format -msgid "" -"We hope you're enjoying %(course_name)s! We want to let you" -" know what you can look forward to in week %(week_num)s:" -msgstr "希望您喜欢我们的课程%(course_name)s!以下是第%(week_num)s周的学习内容:" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.txt -msgid "" -"With self-paced courses, you learn on your own schedule. We encourage you to" -" spend time with the course each week. Your focused attention will pay off " -"in the end!" -msgstr "自定学习进度的课程,由您自定学习计划时间表。我们建议您每周都学习,您的孜孜不倦会换来硕果累累。" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html -msgid "Resume your course now" -msgstr "继续学习课程" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.txt -#, python-format -msgid "" -"We hope you're enjoying %(course_name)s! We want to let you know what you " -"can look forward to in week %(week_num)s:" -msgstr "希望您喜欢我们的课程%(course_name)s!以下是第%(week_num)s周的学习内容:" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/subject.txt -#, python-format -msgid "Welcome to week %(week_num)s" -msgstr "欢迎来到第%(week_num)s周" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt -#, python-format -msgid "" -"Many %(platform_name)s learners are completing more problems every week, and" -" participating in the discussion forums. What do you want to do to keep " -"learning?" -msgstr "每周都有许多%(platform_name)s学员完成越来越多的题目,并参与讨论。您想要继续学习什么内容?" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt -#, python-format -msgid "" -"Many %(platform_name)s learners in %(course_name)s are completing more " -"problems every week, and participating in the discussion forums. What do you" -" want to do to keep learning?" -msgstr "" -"每周都有许多%(platform_name)s学员完成越来越多的%(course_name)s课程题目,并参与讨论。您想要继续学习什么内容?" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/subject.txt -msgid "Keep up the momentum!" -msgstr "保持势头!" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html -#, python-format -msgid "" -"Many %(platform_name)s learners in %(course_name)s are " -"completing more problems every week, and participating in the discussion " -"forums. What do you want to do to keep learning?" -msgstr "" -"每周都有许多%(platform_name)s学员完成越来越多的%(course_name)s课程题目,并参与讨论。您想要继续学习什么内容?" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt -msgid "Keep learning" -msgstr "继续学习" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#, python-format -msgid "" -"Remember when you enrolled in %(course_name)s, and other courses on " -"%(platform_name)s? We do, and we’re glad to have you! Come see what everyone" -" is learning." -msgstr "" -"您还记得在%(platform_name)s上报名了%(course_name)s和其他课程吗?很荣幸您报名了我们的课程!赶紧来看看大家都在学习什么吧。" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#, python-format -msgid "" -"Remember when you enrolled in %(course_name)s on %(platform_name)s? We do, " -"and we’re glad to have you! Come see what everyone is learning." -msgstr "" -"您还记得在%(platform_name)s上报名了%(course_name)s吗?很荣幸您报名了我们的课程!赶紧来看看大家都在学习什么吧。" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html -msgid "Keep learning today" -msgstr "继续学习" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html -#, python-format -msgid "" -"Remember when you enrolled in %(course_name)s, and other " -"courses on %(platform_name)s? We do, and we’re glad to have you! Come see " -"what everyone is learning." -msgstr "" -"您还记得在%(platform_name)s上报名了%(course_name)s吗?很荣幸您报名了我们的课程!赶紧来看看大家都在学习什么吧。" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html -#, python-format -msgid "" -"Remember when you enrolled in %(course_name)s on " -"%(platform_name)s? We do, and we’re glad to have you! Come see what everyone" -" is learning." -msgstr "" -"您还记得在%(platform_name)s上报名了%(course_name)s吗?很荣幸您报名了我们的课程!赶紧来看看大家都在学习什么吧。" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#: themes/normal-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#: themes/normal-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -msgid "Start learning now" -msgstr "马上开始学习" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/subject.txt -#, python-format -msgid "Keep learning on %(platform_name)s" -msgstr "继续在%(platform_name)s学习" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/subject.txt -#, python-format -msgid "Keep learning in %(course_name)s" -msgstr "继续学习%(course_name)s" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt -#, python-format -msgid "" -"We hope you are enjoying learning with us so far on %(platform_name)s! A " -"verified certificate allows you to highlight your new knowledge and skills. " -"An %(platform_name)s certificate is official and easily shareable. Upgrade " -"by %(user_schedule_upgrade_deadline_time)s." -msgstr "" -"感谢您在我们%(platform_name)s上学习!您可以考取认证证书来突显您的新知识、新技能。专业且易于分享的%(platform_name)s认证证书,欢迎您于%(user_schedule_upgrade_deadline_time)s前进行升级。" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt -#, python-format -msgid "" -"We hope you are enjoying learning with us so far in %(first_course_name)s! A" -" verified certificate allows you to highlight your new knowledge and skills." -" An %(platform_name)s certificate is official and easily shareable. Upgrade " -"by %(user_schedule_upgrade_deadline_time)s." -msgstr "" -"感谢您至今在我们%(first_course_name)s上的学习!您可以考取认证证书来突显您的新知识、新技能。专业且易于分享的%(platform_name)s认证证书,欢迎您于%(user_schedule_upgrade_deadline_time)s前进行升级。" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -msgid "Upgrade now" -msgstr "马上升级" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -#, python-format -msgid "" -"We hope you are enjoying learning with us so far on " -"%(platform_name)s! A verified certificate allows you to " -"highlight your new knowledge and skills. An %(platform_name)s certificate is" -" official and easily shareable." -msgstr "" -"感谢您至今在我们%(platform_name)s上的学习!您可以考取我们专业且易于分享的%(platform_name)s认证证书来突显您的新知识、新技能。" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -#, python-format -msgid "" -"We hope you are enjoying learning with us so far in " -"%(first_course_name)s! A verified certificate allows you to" -" highlight your new knowledge and skills. An %(platform_name)s certificate " -"is official and easily shareable." -msgstr "" -"感谢您至今在我们%(first_course_name)s上的学习!您可以考取我们专业且易于分享的%(platform_name)s认证证书来突显您的新知识、新技能。" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -#, python-format -msgid "Upgrade by %(user_schedule_upgrade_deadline_time)s." -msgstr "请于%(user_schedule_upgrade_deadline_time)s前进行升级。" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -msgid "You are eligible to upgrade in these courses:" -msgstr "您具备以下课程的证书升级资格:" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html -msgid "Example of a verified certificate" -msgstr "认证证书示例" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt -msgid "Upgrade now at" -msgstr "马上升级" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/subject.txt -#, python-format -msgid "Upgrade to earn a verified certificate on %(platform_name)s" -msgstr "在%(platform_name)s升级考取认证证书" - -#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/subject.txt -#, python-format -msgid "Upgrade to earn a verified certificate in %(first_course_name)s" -msgstr "在%(first_course_name)s升级考取认证证书" - -#: openedx/core/djangoapps/self_paced/models.py -msgid "Enable course home page improvements." -msgstr "启用改进版课程主页" - -#: openedx/core/djangoapps/theming/views.py -#, python-brace-format -msgid "Site theme changed to {site_theme}" -msgstr "网站主题切换至{site_theme}" - -#: openedx/core/djangoapps/theming/views.py -#, python-brace-format -msgid "Theme {site_theme} does not exist" -msgstr " {site_theme}主题不存在" - -#: openedx/core/djangoapps/theming/views.py -msgid "Site theme reverted to the default" -msgstr "网站主题恢复至默认主题" - -#: openedx/core/djangoapps/theming/views.py -msgid "Theming Administration" -msgstr "网站主题管理" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "" -"Usernames can only contain letters (A-Z, a-z), numerals (0-9), underscores " -"(_), and hyphens (-)." -msgstr "用户名只能包含罗字母(A-Z、a-z)、下划线数字(0-9)、下划线(_)、连字符(-)。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Usernames can only contain letters, numerals, and @.+-_ characters." -msgstr "用户名只能包含字母、数字、“@.+-_”字符。" - -#. Translators: This message is shown to users who attempt to create a new -#. account using -#. an invalid email format. -#: openedx/core/djangoapps/user_api/accounts/__init__.py -#, python-brace-format -msgid "\"{email}\" is not a valid email address." -msgstr "“{email}”邮箱地址无效。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -#, python-brace-format -msgid "" -"It looks like {email_address} belongs to an existing account. Try again with" -" a different email address." -msgstr "{email_address} 已经被注册了。请更换邮箱重试。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -#, python-brace-format -msgid "" -"It looks like {username} belongs to an existing account. Try again with a " -"different username." -msgstr "{username}已经被注册了。请更换用户名重试。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -#, python-brace-format -msgid "Username must be between {min} and {max} characters long." -msgstr "用户名字符数{min}到{max}位。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -#, python-brace-format -msgid "Enter a valid email address that contains at least {min} characters." -msgstr "请输入有效的邮箱地址,不少于{min}个字符。" - -#. Translators: These messages are shown to users who do not enter information -#. into the required field or enter it incorrectly. -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Enter your full name." -msgstr "请输入您的全名。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "The email addresses do not match." -msgstr "邮箱地址不一致。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Select your country or region of residence." -msgstr "选择您的居住地国家或地区。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Select your profession." -msgstr "选择您的职业。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Select your specialty." -msgstr "选择您的专业技能。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Enter your profession." -msgstr "输入您的职业。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Enter your specialty." -msgstr "输入您的专业技能。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Enter your city." -msgstr "输入您的城市。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Tell us your goals." -msgstr "说说您的目标。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Select the highest level of education you have completed." -msgstr "选择您已完成的最高学历。" - -#: openedx/core/djangoapps/user_api/accounts/__init__.py -msgid "Enter your mailing address." -msgstr "输入您的邮寄地址。" - -#: openedx/core/djangoapps/user_api/accounts/api.py -#, python-brace-format -msgid "The '{field_name}' field cannot be edited." -msgstr "'{field_name}'字段无法编辑." - -#: openedx/core/djangoapps/user_api/accounts/api.py -#: openedx/core/djangoapps/user_api/views.py -#: openedx/core/djangoapps/user_authn/views/auto_auth.py -#: openedx/core/djangoapps/user_authn/views/deprecated.py -msgid "Account creation not allowed." -msgstr "禁止创建账号" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the State/Province/Region in which they -#. live. -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "State/Province/Region" -msgstr "州/省/地区" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the Company -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Company" -msgstr "公司" - -#. Translators: This label appears above a field on the registration form -#. which allows the user to input the Job Title -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Job Title" -msgstr "职业头衔" - -#. Translators: This label appears above a field on the registration form -#. meant to hold the user's mailing address. -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Mailing address" -msgstr "邮寄地址" - -#. Translators: This phrase appears above a field on the registration form -#. meant to hold the user's reasons for registering with edX. -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "Tell us why you're interested in {platform_name}" -msgstr "告诉我们您为何对{platform_name}感兴趣" - -#. Translators: This label appears above a dropdown menu on the registration -#. form used to select the user's profession -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Profession" -msgstr "专业领域" - -#. Translators: This label appears above a dropdown menu on the registration -#. form used to select the user's specialty -#: openedx/core/djangoapps/user_api/accounts/settings_views.py -#: openedx/core/djangoapps/user_api/api.py -msgid "Specialty" -msgstr "专业领域" - -#: openedx/core/djangoapps/user_api/accounts/utils.py -msgid "" -" Make sure that you are providing a valid username or a URL that contains \"" -msgstr "请提供有效的用户名或包含“”的URL" - -#: openedx/core/djangoapps/user_api/accounts/views.py -#: openedx/core/djangoapps/user_authn/views/login.py -msgid "" -"Due to multiple login failures, the account is temporarily locked. Please " -"try again after 15 minutes." -msgstr "由于登录失败次数过多,该账号暂时被锁定,请于15分钟后再次尝试登录。" - -#: openedx/core/djangoapps/user_api/accounts/views.py -msgid "Email or password is incorrect." -msgstr "邮箱或密码错误。" - -#: openedx/core/djangoapps/user_api/accounts/views.py -msgid "Verification failed" -msgstr "验证失败" - -#: openedx/core/djangoapps/user_api/accounts/views.py -msgid "Please check mobile number format;" -msgstr "请检查电话号码格式" - -#: openedx/core/djangoapps/user_api/accounts/views.py -msgid "This mobile number is already bound to another account." -msgstr "此手机号码已绑定到其他帐户。" - -#: openedx/core/djangoapps/user_api/admin.py -msgid "Permission Denied" -msgstr "没有权限" - -#: openedx/core/djangoapps/user_api/admin.py -msgid "Retirement does not exist!" -msgstr "退出是不存在的!" - -#: openedx/core/djangoapps/user_api/admin.py -msgid "Success" -msgstr "成功" - -#: openedx/core/djangoapps/user_api/admin.py -msgid "Actions" -msgstr "操作" - -#. Translators: This label appears above a field on the password reset -#. form meant to hold the user's email address. -#. Translators: This label appears above a field on the registration form -#. meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -#: openedx/core/djangoapps/user_api/api.py -msgctxt "Register and Login" -msgid "Email" -msgstr "邮箱" - -#. Translators: This example email address is used as a placeholder in -#. a field on the password reset form meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -msgid "username@domain.com" -msgstr "username@domain.com" - -#. Translators: These instructions appear on the password reset form, -#. immediately below a field meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "The email address you used to register with {platform_name}" -msgstr "您在{platform_name}上注册的邮箱" - -#. Translators: This label appears above a field on the login form -#. meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -msgctxt "Register and Login" -msgid "E-mail or mobile phone number" -msgstr "邮箱或手机号" - -#. Translators: These instructions appear on the login form, immediately -#. below a field meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "" -"The email address you registered on {platform_name}, or the phone number " -"that is bound." -msgstr "您在{platform_name}上注册的邮箱,或绑定的手机号" - -#: openedx/core/djangoapps/user_api/api.py -msgid "Remember me" -msgstr "记住我" - -#. Translators: These instructions appear on the registration form, -#. immediately -#. below a field meant to hold the user's email address. -#: openedx/core/djangoapps/user_api/api.py -msgid "This is what you will use to login." -msgstr "登录邮箱地址。" - -#. Translators: This label appears above a field on the registration form -#. meant to confirm the user's email address. -#: openedx/core/djangoapps/user_api/api.py -msgid "Confirm Email" -msgstr "确认邮箱地址" - -#. Translators: These instructions appear on the registration form, -#. immediately -#. below a field meant to hold the user's full name. -#: openedx/core/djangoapps/user_api/api.py -msgid "This name will be used on any certificates that you earn." -msgstr "显示在您证书的姓名。" - -#. Translators: This label appears above a field on the registration form -#. meant to hold the user's public username. -#: openedx/core/djangoapps/user_api/api.py -msgid "Public Username" -msgstr "公开用户名" - -#. Translators: These instructions appear on the registration form, -#. immediately -#. below a field meant to hold the user's public username. -#: openedx/core/djangoapps/user_api/api.py -msgid "" -"The name that will identify you in your courses. It cannot be changed later." -msgstr "您在课程中的姓名,一旦确定便无法更改。" - -#. Translators: This label appears above a dropdown menu on the registration -#. form used to select the user's highest completed level of education. -#: openedx/core/djangoapps/user_api/api.py -msgid "Highest level of education completed" -msgstr "最高受教育程度" - -#. Translators: This label appears above a dropdown menu on the registration -#. form used to select the user's year of birth. -#: openedx/core/djangoapps/user_api/api.py -msgid "Year of birth" -msgstr "出生年份" - -#. Translators: This label appears above a dropdown menu on the registration -#. form used to select the country in which the user lives. -#: openedx/core/djangoapps/user_api/api.py -msgid "Country or Region of Residence" -msgstr "您所居住的国家或地区" - -#. Translators: These instructions appear on the registration form, -#. immediately -#. below a field meant to hold the user's country. -#: openedx/core/djangoapps/user_api/api.py -msgid "The country or region where you live." -msgstr "您所居住的国家或地区。" - -#. Translators: This is a legal document users must agree to -#. in order to register a new account. -#: openedx/core/djangoapps/user_api/api.py -msgid "Terms of Service and Honor Code" -msgstr "服务条款和诚信准则" - -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "" -"I agree to the {platform_name} " -"{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" -msgstr "" -"我同意{platform_name} " -"{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" - -#. Translators: "Terms of Service" is a legal document users must agree to -#. in order to register a new account. -#. Translators: "Terms of service" is a legal document users must agree to -#. in order to register a new account. -#: openedx/core/djangoapps/user_api/api.py -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "You must agree to the {platform_name} {terms_of_service}" -msgstr "您必须同意接受{platform_name}的{terms_of_service}" - -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "" -"By creating an account, you agree to abide by EliteMBA's" -" " -"{user_agreement_link_start}{user_agreement}{user_agreement_link_end}, " -"{disclaimer_link_start}{disclaimer}{disclaimer_link_end} " -"and {privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." -msgstr "" -"注册即表示同意遵守英荔商学院的{user_agreement_link_start}{user_agreement}{user_agreement_link_end}、{disclaimer_link_start}{disclaimer}{disclaimer_link_end}和{privacy_policy_link_start}隐私政策{privacy_policy_link_end}" - -#: openedx/core/djangoapps/user_api/api.py -msgid "User Agreement" -msgstr "用户协议" - -#. Translators: "Terms of service" is a legal document users must agree to -#. in order to register a new account. -#: openedx/core/djangoapps/user_api/api.py -#, python-brace-format -msgid "" -"I agree to the {platform_name} " -"{tos_link_start}{terms_of_service}{tos_link_end}" -msgstr "我同意{platform_name} {tos_link_start}{terms_of_service}{tos_link_end}" - -#: openedx/core/djangoapps/user_api/config/waffle.py -msgid "System maintenance in progress. Please try again later." -msgstr "正在系统维护中,请稍后重试。" - -#: openedx/core/djangoapps/user_api/elite_password_reset.py -#, python-brace-format -msgid "Request parameter {key} missing!" -msgstr "请求参数{key}缺失!" - -#: openedx/core/djangoapps/user_api/elite_password_reset.py -msgid "New passwords do not match. Please try again." -msgstr "密码前后不一致,请重试。" - -#: openedx/core/djangoapps/user_api/elite_password_reset.py -msgid "Password modified." -msgstr "修改密码成功" - -#: openedx/core/djangoapps/user_api/elite_password_reset.py -msgid "Wrong password" -msgstr "密码错误" - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "Delete failed for user preference '{preference_key}'." -msgstr "用户设置 '{preference_key}' 删除失败." - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "Preference '{preference_key}' cannot be set to an empty value." -msgstr "首选项“{preference_key}”不能设置为空值。" - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "Invalid user preference key '{preference_key}'." -msgstr "无效的用户参数项'{preference_key}'." - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "" -"Value '{preference_value}' is not valid for user preference " -"'{preference_key}'." -msgstr "对于用户参数'{preference_key}',值'{preference_value}'无效." - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "" -"Value '{preference_value}' not valid for preference '{preference_key}': Not " -"in timezone set." -msgstr "{preference_key}偏好的{preference_value}值无效:不在所设置的时区内。" - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "Value '{preference_value}' is not a valid time zone selection." -msgstr "{preference_value}值是无效的时区值选项。" - -#: openedx/core/djangoapps/user_api/preferences/api.py -#, python-brace-format -msgid "Save failed for user preference '{key}' with value '{value}'." -msgstr "使用值'{value}'保存用户参数'{key}'失败." - -#: openedx/core/djangoapps/user_api/preferences/views.py -msgid "No data provided for user preference update" -msgstr "未向用户参数更新提供数据" - -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt -#, python-format -msgid "Hello %(full_name)s," -msgstr "您好,%(full_name)s" - -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt -#, python-format -msgid "" -"We received a deletion request for your account on %(platform_name)s. We're " -"sorry to see you go!" -msgstr "我们收到您删除%(platform_name)s账号的申请,有缘再见!" - -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt -msgid "" -"Your account will be deleted shortly. Account deletion, including removal " -"from email lists, may take a few weeks to fully process through our system. " -"If you want to opt-out of emails before then, please unsubscribe from the " -"footer of any email." -msgstr "马上帮您删除账号,包括从邮箱地址列表中移除您的邮箱地址,系统可能需要耗时数周才能处理完成。如果您想更快,请从页脚处取消订阅所有邮件。" - -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt -#, python-format -msgid "" -"This is an informational email only. If you did not initiate this request, " -"please contact %(contact_email)s." -msgstr "这是一封信息邮件,如果您没有发起此申请,请联系 %(contact_email)s。" - -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt -#, python-format -msgid "Best, %(platform_name)s" -msgstr "致敬,%(platform_name)s" - -#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/subject.txt -msgid "Your Account Has Been Queued For Deletion" -msgstr "您的账号已进入删除队列" - -#: openedx/core/djangoapps/user_authn/views/auto_auth.py -msgid "Superuser creation not allowed" -msgstr "不允许创建超级用户" - -#: openedx/core/djangoapps/user_authn/views/auto_auth.py -msgid "Account modification not allowed." -msgstr "不允许修改账号。" - -#: openedx/core/djangoapps/user_authn/views/login.py -#, python-brace-format -msgid "" -"You've successfully logged into your {provider_name} account, but this " -"account isn't linked with an {platform_name} account yet." -msgstr "您已成功登录{provider_name}帐户,但该账号尚未与{platform_name}帐户关联。" - -#: openedx/core/djangoapps/user_authn/views/login.py -#, python-brace-format -msgid "" -"Use your {platform_name} username and password to log into {platform_name} " -"below, and then link your {platform_name} account with {provider_name} from " -"your dashboard." -msgstr "" -"用您的{platform_name}用户名和密码登陆{platform_name},然后从课程面板页面关联{platform_name}账号和{provider_name}。" - -#: openedx/core/djangoapps/user_authn/views/login.py -#, python-brace-format -msgid "" -"If you don't have an {platform_name} account yet, click " -"Register at the top of the page." -msgstr "如果您没有{platform_name},请点击页面上方的注册按钮。" - -#: openedx/core/djangoapps/user_authn/views/login.py -msgid "There was an error receiving your login information. Please email us." -msgstr "接受您的登录信息时出现错误,请发电子邮件给我们。" - -#: openedx/core/djangoapps/user_authn/views/login.py -msgid "" -"Your password has expired due to password policy on this account. You must " -"reset your password before you can log in again. Please click the \"Forgot " -"Password\" link on this page to reset your password before logging in again." -msgstr "由于账号安全政策,您的密码已经失效。您须重置密码以再次登录。请点击页面上的“忘记密码”来重置您的密码以重新登录。" - -#: openedx/core/djangoapps/user_authn/views/login.py -#, python-brace-format -msgid "" -"In order to sign in, you need to activate your account.

    We just " -"sent an activation link to {email}. If you do not receive " -"an email, check your spam folders or contact " -"{platform} Support." -msgstr "" -"如需登录,请先激活您的账号。

    我们会发送激活链接至 " -"{email}。如果您未收到邮件,请查看邮箱的垃圾箱或 联系{platform}的技术支持。" - -#: openedx/core/djangoapps/user_authn/views/login.py -msgid "Too many failed login attempts. Try again later." -msgstr "失败次数超过限制,请稍后再试!" - -#: openedx/core/djangoapps/user_authn/views/login.py -msgid "Login account or password is wrong." -msgstr "账号或密码错误。" - -#: openedx/core/djangoapps/user_authn/views/login_form.py -msgid "Create Account" -msgstr "创建账号" - -#: openedx/core/djangoapps/user_authn/views/register.py -#, python-brace-format -msgid "Registration using {provider} has timed out." -msgstr "使用{provider}注册已超时。" - -#: openedx/core/djangoapps/user_authn/views/register.py -msgid "An access_token is required when passing value ({}) for provider." -msgstr "传递值({})给提供者的时候需要访问令牌。" - -#: openedx/core/djangoapps/user_authn/views/register.py -msgid "The provided access_token is already associated with another user." -msgstr "提供的access_token已与另一个用户关联了。" - -#: openedx/core/djangoapps/user_authn/views/register.py -msgid "The provided access_token is not valid." -msgstr "提供的access_token无效。" - -#: openedx/core/djangoapps/util/user_messages.py -#, python-brace-format -msgid "{header_open}{title}{header_close}{body}" -msgstr "{header_open}{title}{header_close}{body}" - -#: openedx/core/djangoapps/util/user_messages.py -#, python-brace-format -msgid "{header_open}{title}{header_close}" -msgstr "{header_open}{title}{header_close}" - -#: openedx/core/djangoapps/util/user_messages.py -msgid "Dismiss" -msgstr "解散" - -#: openedx/core/djangoapps/verified_track_content/models.py -msgid "The course key for the course we would like to be auto-cohorted." -msgstr "我们想要自动分配队列的课程要领。" - -#: openedx/core/djangoapps/video_pipeline/models.py -msgid "Oauth client name of video pipeline service." -msgstr "视频通道服务的Oauth客户端名称" - -#: openedx/core/djangoapps/video_pipeline/models.py -msgid "edx-video-pipeline API URL." -msgstr "edx-video-pipeline API URL" - -#: openedx/core/djangoapps/video_pipeline/models.py -msgid "" -"Username created for Video Pipeline Integration, e.g. veda_service_user." -msgstr "用于视频管道整合的用户名,例如:veda_service_user。" - -#: openedx/core/djangoapps/waffle_utils/models.py -msgid "Force On" -msgstr "强制开启" - -#: openedx/core/djangoapps/waffle_utils/models.py -msgid "Force Off" -msgstr "强制关闭" - -#: openedx/core/lib/api/view_utils.py -msgid "This value is invalid." -msgstr "该值无效。" - -#: openedx/core/lib/api/view_utils.py -msgid "This field is not editable" -msgstr "该区域不能编辑" - -#: openedx/core/lib/gating/api.py -#, python-format -msgid "%(min_score)s is not a valid grade percentage" -msgstr "%(min_score)s 不是一个有效的评分尺度" - -#: openedx/core/lib/gating/api.py -#, python-brace-format -msgid "Gating milestone for {usage_key}" -msgstr "{usage_key}的途径" - -#: openedx/core/lib/license/mixin.py -msgid "License" -msgstr "许可" - -#: openedx/core/lib/license/mixin.py -msgid "" -"A license defines how the contents of this block can be shared and reused." -msgstr "许可定义了此块的内容能如何被分享和重用。" - -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "Category" -msgstr "分类" - -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "Week 1" -msgstr "第一周" - -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "" -"A category name for the discussion. This name appears in the left pane of " -"the discussion forum for the course." -msgstr "讨论类别名称时,该名称会出现在课程论坛的左窗格里" - -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "Subcategory" -msgstr "子分类" - -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -msgid "" -"A subcategory name for the discussion. This name appears in the left pane of" -" the discussion forum for the course." -msgstr "讨论子类别名称时,该名称会出现在课程论坛的左窗格里。" - -#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py -#, python-brace-format -msgid "" -"You are not signed in. To view the discussion content, {sign_in_link} or " -"{register_link}, and enroll in this course." -msgstr "您尚未登录,如需查看此讨论内容,请{sign_in_link}或{register_link}并报名此门课程。" - -#: openedx/features/content_type_gating/partitions.py -msgid "Feature-based Enrollments" -msgstr "基于功能的选课" - -#: openedx/features/content_type_gating/partitions.py -msgid "Partition for segmenting users by access to gated content types" -msgstr "通过访问封闭的内容类型来划分用户的分区" - -#: openedx/features/course_duration_limits/access.py -#, python-brace-format -msgid "Access expired on {expiration_date}" -msgstr "访问于 {expiration_date}过期" - -#: openedx/features/course_duration_limits/access.py -#, python-brace-format -msgid "Access to {course_name} expired on {expiration_date}" -msgstr "访问{course_name} 于 {expiration_date}过期" - -#: openedx/features/course_duration_limits/access.py -#, python-brace-format -msgid "Access to the course you were lookingfor expired on {expiration_date}" -msgstr "您查找的课程于 {expiration_date}已过期" - -#: openedx/features/course_experience/plugins.py -msgid "Updates" -msgstr "更新" - -#: openedx/features/course_experience/plugins.py -msgid "Reviews" -msgstr "评论" - -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "{sign_in_link} or {register_link} and then enroll in this course." -msgstr "{sign_in_link}或{register_link}并报名此门课程。" - -#: openedx/features/course_experience/views/course_home_messages.py -msgid "Sign in" -msgstr "登录" - -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "" -"{open_enroll_link}Enroll now{close_enroll_link} to access the full course." -msgstr "{open_enroll_link}马上报名课程{close_enroll_link}充分体验课程内容。" - -#: openedx/features/course_experience/views/course_home_messages.py -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "Welcome to {course_display_name}" -msgstr "欢迎来到{course_display_name}" - -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "" -"To start, set a course goal by selecting the option below that best " -"describes your learning plan. {goal_options_container}" -msgstr "设置课程学习目标,挑选一个最能贴切描述您学习计划的选项{goal_options_container}。" - -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "Set goal to: {choice}" -msgstr "设置课程学习目标:{choice}" - -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "{choice}" -msgstr "{choice}" - -#: openedx/features/course_experience/views/course_home_messages.py -#, python-brace-format -msgid "Set goal to: {goal_text}" -msgstr "设置课程学习目标为:{goal_text}" - -#: openedx/features/enterprise_support/api.py -#, python-brace-format -msgid "Enrollment in {course_title} was not complete." -msgstr "未完成报名课程{course_title}。" - -#: openedx/features/enterprise_support/api.py -#, python-brace-format -msgid "" -"If you have concerns about sharing your data, please contact your " -"administrator at {enterprise_customer_name}." -msgstr "如果您对分享您的数据有顾虑,请联系您的{enterprise_customer_name}管理员。" - -#: openedx/features/enterprise_support/utils.py -#, python-brace-format -msgid "" -"We are sorry, you are not authorized to access {platform_name} via this " -"channel. Please contact your learning administrator or manager in order to " -"access {platform_name}.{line_break}{line_break}" -msgstr "" -"非常抱歉,您无权通过此渠道访问{platform_name}。请向您的学习管理员或协调员寻求帮助访问{platform_name}。{line_break}{line_break}" - -#: openedx/features/enterprise_support/utils.py -#, python-brace-format -msgid "" -"Thank you for joining {platform_name}. Just a couple steps before you start " -"learning!" -msgstr "感谢您加入{platform_name},请根据步骤来开启您的学习之旅!" - -#: openedx/features/enterprise_support/utils.py -msgid "Continue" -msgstr "继续" - -#: openedx/features/learner_profile/views/learner_profile.py -#, python-brace-format -msgid "" -"Welcome to the new learner profile page. Your full profile now displays more" -" information to other learners. You can instead choose to display a limited " -"profile. {learn_more_link_start}Learn more{learn_more_link_end}" -msgstr "" -"欢迎来到新学员账号页面,提供更多账号信息方便其他学员查看。您也可以选择只显示部分内容。{learn_more_link_start}了解更多内容{learn_more_link_end}" - -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/base_body.html -msgid "" -"Guangdong Elite International Education & Technology Co., Ltd. All Rights" -" Reserved" -msgstr "广东英荔国际教育科技有限公司 版权所有" - -#: themes/normal-theme/lms/templates/ace_common/edx_ace/common/return_to_course_cta.html -msgid "" -"(If the link is not clickable, try copying and pasting it into the address " -"bar of your web browser, and press \"Enter\" key to open the page)" -msgstr "(如链接点击无效,请手动复制链接并粘贴到浏览器地址栏中,然后按“回车”打开页面即可)" - -#: themes/normal-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#, python-format -msgid "" -"Remember when you enrolled in %(course_name)s, and other courses on " -"EliteMBA.cn? We do, and we’re glad to have you! Come see what everyone is " -"learning." -msgstr "" -"您还记得在EliteMBA.cn上报名了%(course_name)s和其他课程吗?很高兴您选择了我们的课程!赶紧来看看大家都在学习什么吧。" - -#: themes/normal-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt -#, python-format -msgid "" -"Remember when you enrolled in %(course_name)s on EliteMBA.cn? We do, and " -"we’re glad to have you! Come see what everyone is learning." -msgstr "您还记得在EliteMBA.cn上报名了%(course_name)s课程吗?很高兴您选择了我们的课程!赶紧来看看大家都在学习什么吧。" diff --git a/conf/locale/zh_CN/LC_MESSAGES/django-studio.po b/conf/locale/zh_CN/LC_MESSAGES/django-studio.po deleted file mode 100644 index 47e5bc9cb6d2..000000000000 --- a/conf/locale/zh_CN/LC_MESSAGES/django-studio.po +++ /dev/null @@ -1,724 +0,0 @@ -# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). -# Copyright (C) 2019 EdX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -# Translators: -# li ying , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-11 02:18+0000\n" -"PO-Revision-Date: 2019-01-04 04:01+0000\n" -"Last-Translator: li ying , 2019\n" -"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: cms/djangoapps/api/v1/serializers/course_runs.py -msgid "Course team user does not exist" -msgstr "课程团队用户不存在" - -#: cms/djangoapps/contentstore/course_group_config.py -msgid "" -"The groups in this configuration can be mapped to cohorts in the Instructor " -"Dashboard." -msgstr "可以将此配置下的分组与授课老师面板的群组相对应。" - -#: cms/djangoapps/contentstore/course_group_config.py -msgid "Content Groups" -msgstr "内容组" - -#: cms/djangoapps/contentstore/course_group_config.py -#: cms/djangoapps/contentstore/views/certificates.py -msgid "invalid JSON" -msgstr "无效的 JSON" - -#: cms/djangoapps/contentstore/course_group_config.py -msgid "must have name of the configuration" -msgstr "必须有配置的名称" - -#: cms/djangoapps/contentstore/course_group_config.py -msgid "must have at least one group" -msgstr "必须至少有一个组" - -#: cms/djangoapps/contentstore/course_info_model.py -#: cms/djangoapps/contentstore/course_info_model.py -msgid "Invalid course update id." -msgstr "课程ID更新无效。" - -#: cms/djangoapps/contentstore/course_info_model.py -msgid "Course update not found." -msgstr "课程更新没有找到。" - -#: cms/djangoapps/contentstore/courseware_index.py -msgid "Could not index item: {}" -msgstr "无法索引项:{}" - -#: cms/djangoapps/contentstore/courseware_index.py -msgid "General indexing error occurred" -msgstr "发生了一般性索引错误" - -#: cms/djangoapps/contentstore/courseware_index.py -msgid "(Unnamed)" -msgstr "(未命名)" - -#: cms/djangoapps/contentstore/git_export_utils.py -#, python-brace-format -msgid "" -"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " -"configure a different path with GIT_REPO_EXPORT_DIR" -msgstr "" -"GIT_REPO_EXPORT_DIR 未被设置或者路径 {0} 不存在,请创建它,或者为 GIT_REPO_EXPORT_DIR 设置一个不同的路径。" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "" -"Non writable git url provided. Expecting something like: " -"git@github.com:mitocw/edx4edx_lite.git" -msgstr "没有可写的Git地址。期待类似这样的地址:git@github.com:mitocw/edx4edx_lite.git" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "" -"If using http urls, you must provide the username and password in the url. " -"Similar to https://user:pass@github.com/user/course." -msgstr "" -"如果使用HTTP地址,您必须在地址里提供用户名和密码,类似于 https://user:pass@github.com/user/course 。" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "Unable to determine branch, repo in detached HEAD mode" -msgstr "无法找到分支,源正处于分离HEAD模式。" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "Unable to update or clone git repository." -msgstr "无法更新或者复制Git源。" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "Unable to export course to xml." -msgstr "无法将课程导出成XML文件。" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "Unable to configure git username and password" -msgstr "无法配置Git的用户名和密码" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "" -"Unable to commit changes. This is usually because there are no changes to be" -" committed" -msgstr "无法提交变更,这通常是因为没有变更之处,不需要提交。" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "" -"Unable to push changes. This is usually because the remote repository " -"cannot be contacted" -msgstr "无法推送变更,这通常是因为无法连接远程源。" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "Bad course location provided" -msgstr "提供了错误的课程地址" - -#: cms/djangoapps/contentstore/git_export_utils.py -msgid "Missing branch on fresh clone" -msgstr "在最近的复制中,丢失一些分支" - -#: cms/djangoapps/contentstore/management/commands/git_export.py -msgid "" -"Take the specified course and attempt to export it to a git repository\n" -". Course directory must already be a git repository. Usage: git_export " -msgstr "" -"取得指定的课程然后尝试将其导出到一个Git源。\n" -"课程目录必须已经是一个Git源。用法: git_export " - -#: cms/djangoapps/contentstore/tasks.py cms/djangoapps/contentstore/tasks.py -#, python-brace-format -msgid "Unknown User ID: {0}" -msgstr "未知用户ID: {0}" - -#: cms/djangoapps/contentstore/tasks.py cms/djangoapps/contentstore/tasks.py -msgid "Permission denied" -msgstr "没有权限" - -#: cms/djangoapps/contentstore/tasks.py -#: cms/djangoapps/contentstore/views/import_export.py -msgid "We only support uploading a .tar.gz file." -msgstr "我们仅支持上传.tar.gz格式文件。" - -#: cms/djangoapps/contentstore/tasks.py -msgid "Tar file not found" -msgstr "未找到Tar文件" - -#: cms/djangoapps/contentstore/tasks.py -msgid "Unsafe tar file. Aborting import." -msgstr "不安全的tar文件,正在取消导入。" - -#: cms/djangoapps/contentstore/tasks.py -#, python-brace-format -msgid "Could not find the {0} file in the package." -msgstr "无法在包中找到{0}文件。" - -#: cms/djangoapps/contentstore/utils.py -msgid "Deleted Group" -msgstr "已删除组" - -#. Translators: This is building up a list of groups. It is marked for -#. translation because of the -#. comma, which is used as a separator between each group. -#: cms/djangoapps/contentstore/utils.py -#, python-brace-format -msgid "{previous_groups}, {current_group}" -msgstr "{previous_groups}, {current_group}" - -#: cms/djangoapps/contentstore/video_utils.py -msgid "The image must have name, content type, and size information." -msgstr "图片必须有名称、内容类型、尺寸信息。" - -#: cms/djangoapps/contentstore/video_utils.py -#, python-brace-format -msgid "" -"This image file type is not supported. Supported file types are " -"{supported_file_formats}." -msgstr "不支持此图片文件类型;支持的文件类型有{supported_file_formats}。" - -#: cms/djangoapps/contentstore/video_utils.py -#, python-brace-format -msgid "This image file must be smaller than {image_max_size}." -msgstr "此图片文件不得超过{image_max_size}。" - -#: cms/djangoapps/contentstore/video_utils.py -#, python-brace-format -msgid "This image file must be larger than {image_min_size}." -msgstr "图片文件必须大于{image_min_size}。" - -#: cms/djangoapps/contentstore/video_utils.py -#: cms/djangoapps/contentstore/video_utils.py -msgid "" -"There is a problem with this image file. Try to upload a different file." -msgstr "此图片文件发生问题,请上传其他文件。" - -#: cms/djangoapps/contentstore/video_utils.py -#, python-brace-format -msgid "" -"Recommended image resolution is " -"{image_file_max_width}x{image_file_max_height}. The minimum resolution is " -"{image_file_min_width}x{image_file_min_height}." -msgstr "" -"建议图片分辨率为{image_file_max_width}x{image_file_max_height},最小分辨率为{image_file_min_width}x{image_file_min_height}。" - -#: cms/djangoapps/contentstore/video_utils.py -#, python-brace-format -msgid "" -"This image file must have an aspect ratio of " -"{video_image_aspect_ratio_text}." -msgstr "此图片文件的宽高比必须为{video_image_aspect_ratio_text}。" - -#: cms/djangoapps/contentstore/video_utils.py -msgid "" -"The image file name can only contain letters, numbers, hyphens (-), and " -"underscores (_)." -msgstr "图片文件名只支持字母、数字、连字符(-)、下划线(_)。" - -#: cms/djangoapps/contentstore/views/assets.py -msgid "Upload completed" -msgstr "上传完成" - -#: cms/djangoapps/contentstore/views/assets.py -#, python-brace-format -msgid "" -"File {filename} exceeds maximum size of {maximum_size_in_megabytes} MB." -msgstr "{filename}文件超过{maximum_size_in_megabytes}。" - -#: cms/djangoapps/contentstore/views/certificates.py -msgid "must have name of the certificate" -msgstr "证书必有有名称" - -#: cms/djangoapps/contentstore/views/certificates.py -#, python-brace-format -msgid "Certificate dict {0} missing value key '{1}'" -msgstr "证书字典{0}确实数值'{1}'" - -#: cms/djangoapps/contentstore/views/certificates.py -#: cms/djangoapps/contentstore/views/certificates.py -#, python-brace-format -msgid "PermissionDenied: Failed in authenticating {user}" -msgstr "拒绝访问: {user}验证失败" - -#: cms/djangoapps/contentstore/views/component.py -#, python-brace-format -msgid "{platform_name} Support Levels:" -msgstr "{platform_name} 支持等级:" - -#: cms/djangoapps/contentstore/views/component.py -msgid "HTML" -msgstr "HTML" - -#: cms/djangoapps/contentstore/views/component.py -msgid "Video" -msgstr "视频" - -#: cms/djangoapps/contentstore/views/component.py -msgid "Blank" -msgstr "空白" - -#: cms/djangoapps/contentstore/views/course.py -msgid "Course has been successfully reindexed." -msgstr "课程重新索引成功。" - -#: cms/djangoapps/contentstore/views/course.py -msgid "Set Date" -msgstr "设置日期" - -#: cms/djangoapps/contentstore/views/course.py -msgid "" -"Special characters not allowed in organization, course number, and course " -"run." -msgstr "在机构、课程编号和开课时间中,不允许使用特殊字符。" - -#: cms/djangoapps/contentstore/views/course.py -msgid "" -"There is already a course defined with the same organization and course " -"number. Please change either organization or course number to be unique." -msgstr "已经存在一个具有相同机构和课程编号的课程,请更改机构名称或者课程编号以保证其唯一性。" - -#: cms/djangoapps/contentstore/views/course.py -#: cms/djangoapps/contentstore/views/course.py -msgid "" -"Please change either the organization or course number so that it is unique." -msgstr "请更改机构或者课程编号以确保唯一性。" - -#: cms/djangoapps/contentstore/views/course.py -#, python-brace-format -msgid "" -"Unable to create course '{name}'.\n" -"\n" -"{err}" -msgstr "" -"无法创建课程“{name}”。\n" -"\n" -"{err}" - -#: cms/djangoapps/contentstore/views/course.py -msgid "" -"You must link this course to an organization in order to continue. " -"Organization you selected does not exist in the system, you will need to add" -" it to the system" -msgstr "您为了继续必须将此课程链接到一个机构。您选择了不存在于系统中的机构,您需要将此机构新增到系统" - -#: cms/djangoapps/contentstore/views/course.py -msgid "Invalid prerequisite course key" -msgstr "先修课程标识无效" - -#: cms/djangoapps/contentstore/views/course.py -msgid "An error occurred while trying to save your tabs" -msgstr "当您尝试保存书签时发生错误" - -#: cms/djangoapps/contentstore/views/course.py -msgid "Tabs Exception" -msgstr "书签异常" - -#: cms/djangoapps/contentstore/views/course.py -msgid "This group configuration is in use and cannot be deleted." -msgstr "不能删除正在使用中的组配置。" - -#: cms/djangoapps/contentstore/views/course.py -msgid "This content group is in use and cannot be deleted." -msgstr "不能删除正在使用中的内容组。" - -#: cms/djangoapps/contentstore/views/entrance_exam.py -msgid "Entrance Exam - Subsection" -msgstr "入学考试—节" - -#: cms/djangoapps/contentstore/views/entrance_exam.py -msgid "Completed Course Entrance Exam" -msgstr "已完成的课程入学考试" - -#: cms/djangoapps/contentstore/views/export_git.py -msgid "Course successfully exported to git repository" -msgstr "课程成功被导出到Git仓库" - -#: cms/djangoapps/contentstore/views/helpers.py -msgid "Vertical" -msgstr "纵列块" - -#: cms/djangoapps/contentstore/views/import_export.py -msgid "File upload corrupted. Please try again" -msgstr "文件上传失败,请重试" - -#: cms/djangoapps/contentstore/views/item.py -msgid "Invalid data" -msgstr "无效的数据" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "Invalid data ({details})" -msgstr "无效的数据 ({details})" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "You can not move {source_type} into {target_parent_type}." -msgstr "无法将 {source_type}移进 {target_parent_type}内。" - -#: cms/djangoapps/contentstore/views/item.py -msgid "Item is already present in target location." -msgstr "目标位置已显示该项。" - -#: cms/djangoapps/contentstore/views/item.py -msgid "You can not move an item into itself." -msgstr "无法将项移动至本身目录。" - -#: cms/djangoapps/contentstore/views/item.py -msgid "You can not move an item into it's child." -msgstr "无法将项移动至子目录下。" - -#: cms/djangoapps/contentstore/views/item.py -msgid "You can not move an item directly into content experiment." -msgstr "无法直接将项移动至内容实验中。" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "{source_usage_key} not found in {parent_usage_key}." -msgstr "在{parent_usage_key}中未找到{source_usage_key} 。" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "" -"You can not move {source_usage_key} at an invalid index ({target_index})." -msgstr "无法将{source_usage_key}移动至无效索引中({target_index})。" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "You must provide target_index ({target_index}) as an integer." -msgstr "您必须提供整数的target_index ({target_index})。" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "Duplicate of {0}" -msgstr "“{0}”的副本" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "Duplicate of '{0}'" -msgstr "“{0}”的副本" - -#. Translators: The {pct_sign} here represents the percent sign, i.e., '%' -#. in many languages. This is used to avoid Transifex's misinterpreting of -#. '% o'. The percent sign is also translatable as a standalone string. -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "" -"Students must score {score}{pct_sign} or higher to access course materials." -msgstr "学生必须获得 {score}{pct_sign} 或者更高的分数才能查看课程资料。" - -#. Translators: This is the percent sign. It will be used to represent -#. a percent value out of 100, e.g. "58%" means "58/100". -#: cms/djangoapps/contentstore/views/item.py -msgid "%" -msgstr "%" - -#: cms/djangoapps/contentstore/views/item.py -#, python-brace-format -msgid "{section_or_subsection} \"{display_name}\"" -msgstr "{section_or_subsection}“{display_name}”" - -#: cms/djangoapps/contentstore/views/library.py -#, python-brace-format -msgid "Unable to create library - missing required field '{field}'" -msgstr "无法创建知识库—缺少必填字段“{field}”" - -#: cms/djangoapps/contentstore/views/library.py -#, python-brace-format -msgid "" -"Unable to create library '{name}'.\n" -"\n" -"{err}" -msgstr "" -"无法创建知识库“{name}”。\n" -"\n" -"{err}" - -#: cms/djangoapps/contentstore/views/library.py -msgid "" -"There is already a library defined with the same organization and library " -"code. Please change your library code so that it is unique within your " -"organization." -msgstr "已经存在一个具有相同机构和知识库编号的知识库,请更改您的知识库编号以保证其在您的机构中是唯一的。" - -#: cms/djangoapps/contentstore/views/preview.py -#, python-brace-format -msgid "Access restricted to: {list_of_groups}" -msgstr "仅限可访问人群:{list_of_groups}" - -#: cms/djangoapps/contentstore/views/transcript_settings.py -msgid "The information you entered is incorrect." -msgstr "您输入的信息不正确。" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "Transcripts are supported only for \"video\" modules." -msgstr "字幕只支持视频模块。" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "Cannot find item by locator." -msgstr "定位工具未找到该项。" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "Video locator is required." -msgstr "必须要有视频定位工具。" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "This transcript file type is not supported." -msgstr "不支持此字幕文件类型。" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "Video ID is required." -msgstr "必须提供视频ID。" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "Incoming video data is empty." -msgstr "来源视频数据为空。" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "Can't find item by locator." -msgstr "定位器无法找到它们。" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "No such transcript." -msgstr "没有该字幕。" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "There is a problem with the chosen transcript file." -msgstr "已选中的字幕文件发生问题。" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "" -"There is a problem with the existing transcript file. Please upload a " -"different file." -msgstr "当前字幕文件发生问题,请上传其他文件。" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "YouTube ID is required." -msgstr "必须提供YouTube ID。" - -#: cms/djangoapps/contentstore/views/transcripts_ajax.py -msgid "There is a problem with the YouTube transcript file." -msgstr "YouTube字幕文件有问题。" - -#: cms/djangoapps/contentstore/views/user.py -msgid "Insufficient permissions" -msgstr "没有足够的权限" - -#: cms/djangoapps/contentstore/views/user.py -#, python-brace-format -msgid "Could not find user by email address '{email}'." -msgstr "无法通过邮件地址“{email}”找到用户。" - -#: cms/djangoapps/contentstore/views/user.py -msgid "No `role` specified." -msgstr "“角色”未指定。" - -#: cms/djangoapps/contentstore/views/user.py -#, python-brace-format -msgid "User {email} has registered but has not yet activated his/her account." -msgstr "用户{email}已注册但尚未激活其账号。" - -#: cms/djangoapps/contentstore/views/user.py -msgid "Invalid `role` specified." -msgstr "指定的“角色”无效。" - -#: cms/djangoapps/contentstore/views/user.py -msgid "You may not remove the last Admin. Add another Admin first." -msgstr "您不能移除最后一个管理员,请先添加另一个管理员后再移除。" - -#. Translators: This is the status of an active video upload -#: cms/djangoapps/contentstore/views/videos.py -msgid "Uploading" -msgstr "上传中" - -#. Translators: This is the status for a video that the servers are currently -#. processing -#: cms/djangoapps/contentstore/views/videos.py -msgid "In Progress" -msgstr "正在进行中" - -#. Translators: This is the status for a video that the servers have -#. successfully processed -#: cms/djangoapps/contentstore/views/videos.py -msgid "Ready" -msgstr "就绪" - -#. Translators: This is the status for a video that is uploaded completely -#: cms/djangoapps/contentstore/views/videos.py -msgid "Uploaded" -msgstr "上传完成" - -#. Translators: This is the status for a video that the servers have failed to -#. process -#: cms/djangoapps/contentstore/views/videos.py -msgid "Failed" -msgstr "已失败" - -#. Translators: This is the status for a video that is cancelled during upload -#. by user -#: cms/djangoapps/contentstore/views/videos.py -msgid "Cancelled" -msgstr "已取消" - -#. Translators: This is the status for a video which has failed -#. due to being flagged as a duplicate by an external or internal CMS -#: cms/djangoapps/contentstore/views/videos.py -msgid "Failed Duplicate" -msgstr "复制失败" - -#. Translators: This is the status for a video which has duplicate token for -#. youtube -#: cms/djangoapps/contentstore/views/videos.py -msgid "YouTube Duplicate" -msgstr "YouTube拷贝视频" - -#. Translators: This is the status for a video for which an invalid -#. processing token was provided in the course settings -#: cms/djangoapps/contentstore/views/videos.py -msgid "Invalid Token" -msgstr "无效的令牌" - -#. Translators: This is the status for a video that was included in a course -#. import -#: cms/djangoapps/contentstore/views/videos.py -msgid "Imported" -msgstr "已导入" - -#. Translators: This is the status for a video that is in an unknown state -#: cms/djangoapps/contentstore/views/videos.py -msgid "Unknown" -msgstr "未知" - -#. Translators: This is the status for a video that is having its -#. transcription in progress on servers -#: cms/djangoapps/contentstore/views/videos.py -msgid "Transcription in Progress" -msgstr "字幕转载进行中" - -#. Translators: This is the status for a video whose transcription is complete -#: cms/djangoapps/contentstore/views/videos.py -msgid "Transcript Ready" -msgstr "字幕完成" - -#: cms/djangoapps/contentstore/views/videos.py -msgid "An image file is required." -msgstr "必须提供图片文件。" - -#. Translators: This is the header for a CSV file column -#. containing URLs for video encodings for the named profile -#. (e.g. desktop, mobile high quality, mobile low quality) -#: cms/djangoapps/contentstore/views/videos.py -#, python-brace-format -msgid "{profile_name} URL" -msgstr "{profile_name} URL" - -#: cms/djangoapps/contentstore/views/videos.py -msgid "Duration" -msgstr "长度" - -#: cms/djangoapps/contentstore/views/videos.py -msgid "Date Added" -msgstr "添加日期" - -#. Translators: This is the suggested filename when downloading the URL -#. listing for videos uploaded through Studio -#: cms/djangoapps/contentstore/views/videos.py -#, python-brace-format -msgid "{course}_video_urls" -msgstr "{course}_video_urls" - -#: cms/djangoapps/course_creators/models.py -msgid "unrequested" -msgstr "未请求的" - -#: cms/djangoapps/course_creators/models.py -msgid "pending" -msgstr "挂起" - -#: cms/djangoapps/course_creators/models.py -msgid "granted" -msgstr "已授权" - -#: cms/djangoapps/course_creators/models.py -msgid "denied" -msgstr "已拒绝" - -#: cms/djangoapps/course_creators/models.py -msgid "Studio user" -msgstr "Studio用户" - -#: cms/djangoapps/course_creators/models.py -msgid "The date when state was last updated" -msgstr "状态最后更新日期" - -#: cms/djangoapps/course_creators/models.py -msgid "Current course creator state" -msgstr "课程创建者当前状态" - -#: cms/djangoapps/course_creators/models.py -msgid "" -"Optional notes about this user (for example, why course creation access was " -"denied)" -msgstr "关于本用户的可选备注(例如,课程创建被拒绝的原因)" - -#: cms/djangoapps/maintenance/views.py -msgid "Force Publish Course" -msgstr "强制发布课程" - -#: cms/djangoapps/maintenance/views.py -msgid "" -"Sometimes the draft and published branches of a course can get out of sync. " -"Force publish course command resets the published branch of a course to " -"point to the draft branch, effectively force publishing the course. This " -"view dry runs the force publish command" -msgstr "" -"有时候课程初稿分支与已发布分支会不同步。强制发布课程指令会将已发布的课程分支指向初稿分支,以此有效地强制发布该课程。此视图DRY运行该强制发布指令" - -#: cms/djangoapps/maintenance/views.py -msgid "Please provide course id." -msgstr "请提供课程编号。" - -#: cms/djangoapps/maintenance/views.py -msgid "Invalid course key." -msgstr "无效的课程标识。" - -#: cms/djangoapps/maintenance/views.py -msgid "No matching course found." -msgstr "未找到符合条件得课程。" - -#: cms/djangoapps/maintenance/views.py -msgid "Force publishing course is not supported with old mongo courses." -msgstr "强制发布的课程不支持旧mongo课程。" - -#: cms/djangoapps/maintenance/views.py -msgid "Course is already in published state." -msgstr "课程已经是发布状态了。" - -#: cms/djangoapps/models/settings/course_metadata.py -#, python-brace-format -msgid "Incorrect format for field '{name}'. {detailed_message}" -msgstr "“{name}”字段的格式不正确。{detailed_message}" - -#: cms/envs/common.py -msgid "Your Platform Studio" -msgstr "Studio" - -#: cms/envs/common.py -msgid "Studio" -msgstr "Studio" - -#: cms/lib/xblock/tagging/tagging.py -msgid "Dictionary with the available tags" -msgstr "可使用标签的字典" - -#: cms/urls.py -msgid "Studio Administration" -msgstr "Studio管理" diff --git a/conf/locale/zh_CN/LC_MESSAGES/django.mo b/conf/locale/zh_CN/LC_MESSAGES/django.mo deleted file mode 100644 index 1a770c53d5bf..000000000000 Binary files a/conf/locale/zh_CN/LC_MESSAGES/django.mo and /dev/null differ diff --git a/conf/locale/zh_CN/LC_MESSAGES/django.po b/conf/locale/zh_CN/LC_MESSAGES/django.po new file mode 100644 index 000000000000..6d84681f054f --- /dev/null +++ b/conf/locale/zh_CN/LC_MESSAGES/django.po @@ -0,0 +1,27466 @@ +# #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). +# Copyright (C) 2020 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# fengri <173770922@qq.com>, 2019 +# Sushan Wu , 2019 +# 健超 张 , 2019 +# li ying , 2019 +# +# #-#-#-#-# django-studio.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). +# Copyright (C) 2020 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# li ying , 2019 +# Sushan Wu , 2019 +# +# #-#-#-#-# mako.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) +# Copyright (C) 2020 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# Sushan Wu , 2019 +# li ying , 2019 +# +# #-#-#-#-# mako-studio.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) +# Copyright (C) 2020 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# li ying , 2019 +# +# #-#-#-#-# wiki.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) +# Copyright (C) 2020 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# li ying , 2019 +# +# #-#-#-#-# membership.po (PROJECT VERSION) #-#-#-#-# +# #-#-#-#-# django-partial.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# #-#-#-#-# mako.po (PROJECT VERSION) #-#-#-#-# +# Translations template for PROJECT. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2019. +# +# Translators: +# li ying , 2019 +# +# #-#-#-#-# eliteu.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/en/). +# Copyright (C) 2019 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2019. +# +# Translators: +# li ying , 2019 +# li ying , 2019 +# +# #-#-#-#-# django-theme.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). +# Copyright (C) 2020 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# li ying , 2019 +# +# #-#-#-#-# mako-theme.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) +# Copyright (C) 2020 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# li ying , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: 0.1a\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2020-01-10 17:58+0800\n" +"PO-Revision-Date: 2019-06-19 06:25+0000\n" +"Last-Translator: li ying , 2020\n" +"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 1.3\n" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: 'Discussion' refers to the tab in the courseware that leads to +#. the discussion forums +#: cms/djangoapps/contentstore/views/component.py +#: lms/djangoapps/courseware/tabs.py lms/djangoapps/discussion/plugins.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Discussion" +msgstr "讨论" + +#: cms/djangoapps/contentstore/views/component.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "Problem" +msgstr "问题" + +#: cms/djangoapps/contentstore/views/component.py +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "Advanced" +msgstr "高级" + +#: cms/djangoapps/contentstore/views/entrance_exam.py +#: lms/djangoapps/courseware/tabs.py cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Entrance Exam" +msgstr "入学考试" + +#: cms/djangoapps/contentstore/views/helpers.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: cms/templates/course_outline.html lms/templates/seq_module.html +#: lms/templates/ccx/schedule.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Section" +msgstr "章" + +#: cms/djangoapps/contentstore/views/helpers.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/templates/ccx/schedule.html +msgid "Subsection" +msgstr "节" + +#: cms/djangoapps/contentstore/views/helpers.py +#: lms/djangoapps/instructor/views/tools.py lms/templates/ccx/schedule.html +msgid "Unit" +msgstr "单元" + +#: cms/djangoapps/contentstore/views/helpers.py +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Empty" +msgstr "空白页" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +#, python-brace-format +msgid "The following parameters are required: {missing}." +msgstr "以下参数是必填的:{missing}。" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +#, python-brace-format +msgid "A transcript with the \"{language_code}\" language code already exists." +msgstr "已有\"{language_code}\"版字幕" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +msgid "A transcript file is required." +msgstr "字幕文件是必需的。" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +msgid "" +"There is a problem with this transcript file. Try to upload a different " +"file." +msgstr "该字幕文件有问题,尝试上传其他文件" + +#: cms/djangoapps/contentstore/views/videos.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/receipt.html +msgid "Name" +msgstr "名字" + +#: cms/djangoapps/contentstore/views/videos.py +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video ID" +msgstr "视频 ID" + +#: cms/djangoapps/contentstore/views/videos.py +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/shoppingcart/receipt.html +msgid "Status" +msgstr "状态" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This is listed as the duration for a video that has not +#. yet reached the point in its processing by the servers where its +#. duration is determined. +#: cms/djangoapps/contentstore/views/videos.py +#: openedx/core/djangoapps/api_admin/models.py cms/templates/index.html +msgid "Pending" +msgstr "挂起" + +#: cms/envs/bok_choy.py lms/envs/bok_choy.py lms/envs/test.py +msgid "édX" +msgstr "édX" + +#: cms/envs/bok_choy.py lms/envs/bok_choy.py lms/envs/test.py +msgid "Open édX Platform" +msgstr "Open édX Platform" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +msgid "Django site admin" +msgstr "Django网站管理员" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +msgid "Django administration" +msgstr "Django管理" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +msgid "View site" +msgstr "查看网站" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +msgid "Documentation" +msgstr "文档" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +#: wiki/templates/wiki/base.html +msgid "Log out" +msgstr "注销" + +#: common/djangoapps/course_modes/admin.py +#: common/djangoapps/course_modes/models.py +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Mode" +msgstr "模式" + +#: common/djangoapps/course_modes/admin.py +#: lms/djangoapps/courseware/date_summary.py +msgid "Verification Deadline" +msgstr "认证截止日期" + +#: common/djangoapps/course_modes/admin.py +msgid "" +"OPTIONAL: After this date/time, users will no longer be able to submit " +"photos for verification. This appies ONLY to modes that require " +"verification." +msgstr "可选:这个日期/时间之后,用户将不能再提交照片验证。这只应用于需要验证的模式。" + +#: common/djangoapps/course_modes/helpers.py +msgid "Your verification is pending" +msgstr "您的验证正在挂起" + +#: common/djangoapps/course_modes/helpers.py +msgid "Verified: Pending Verification" +msgstr "已认证:等待验证" + +#: common/djangoapps/course_modes/helpers.py +msgid "ID verification pending" +msgstr "身份证件验证挂起" + +#: common/djangoapps/course_modes/helpers.py +msgid "You're enrolled as a verified student" +msgstr "您正作为已认证的学生选修" + +#: common/djangoapps/course_modes/helpers.py lms/envs/common.py +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Verified" +msgstr "已认证" + +#: common/djangoapps/course_modes/helpers.py +msgid "ID Verified Ribbon/Badge" +msgstr "身份证件已验证时的色带/徽章" + +#: common/djangoapps/course_modes/helpers.py +msgid "You're enrolled as an honor code student" +msgstr "您已作为诚信准则学员选修" + +#: common/djangoapps/course_modes/helpers.py lms/djangoapps/branding/api.py +#: openedx/core/djangoapps/user_api/api.py +#: lms/templates/static_templates/honor.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Honor Code" +msgstr "诚信准则" + +#: common/djangoapps/course_modes/helpers.py +msgid "You're enrolled as a professional education student" +msgstr "您已作为专业教育学生选修" + +#: common/djangoapps/course_modes/helpers.py +msgid "Professional Ed" +msgstr "专业教育" + +#: common/djangoapps/course_modes/models.py +#: common/lib/xmodule/xmodule/annotatable_module.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/conditional_module.py +#: common/lib/xmodule/xmodule/html_module.py +#: common/lib/xmodule/xmodule/library_content_module.py +#: common/lib/xmodule/xmodule/lti_module.py +#: common/lib/xmodule/xmodule/split_test_module.py +#: common/lib/xmodule/xmodule/word_cloud_module.py +#: common/lib/xmodule/xmodule/x_module.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +#: cms/templates/container.html cms/templates/library.html +msgid "Display Name" +msgstr "显示名称" + +#: common/djangoapps/course_modes/models.py +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Price" +msgstr "价格" + +#: common/djangoapps/course_modes/models.py +msgid "Upgrade Deadline" +msgstr "升级的截止日期" + +#: common/djangoapps/course_modes/models.py +msgid "" +"OPTIONAL: After this date/time, users will no longer be able to enroll in " +"this mode. Leave this blank if users can enroll in this mode until " +"enrollment closes for the course." +msgstr "可选:这个日期/时间之后,用户将不能选修该模式。如果用户在课程的选课关闭之间都可以选修该模式,则将此处留空。" + +#: common/djangoapps/course_modes/models.py +msgid "" +"OPTIONAL: This is the SKU (stock keeping unit) of this mode in the external " +"ecommerce service. Leave this blank if the course has not yet been migrated" +" to the ecommerce service." +msgstr "可选:这是外部电子商业服务中该模式的SKU(库存单元)。如果课程还未迁移到电子商业服务中,则将此处留空。" + +#: common/djangoapps/course_modes/models.py +msgid "" +"This is the bulk SKU (stock keeping unit) of this mode in the external " +"ecommerce service." +msgstr "这是此模式在外部电子商务服务中的批量库存单位(SKU)。" + +#: common/djangoapps/course_modes/models.py lms/envs/common.py +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Honor" +msgstr "荣誉" + +#: common/djangoapps/course_modes/models.py +msgid "" +"Professional education modes are not allowed to have expiration_datetime " +"set." +msgstr "专业的教育模式不允许有过期的日期时间设置。" + +#: common/djangoapps/course_modes/models.py +msgid "Verified modes cannot be free." +msgstr "已验证的模式要收取费用。" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This will look like '$50', where {currency_symbol} is a symbol +#. such as '$' and {price} is a +#. numerical amount in that currency. Adjust this display as needed for your +#. language. +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: currency_symbol is a symbol indicating type of currency, ex +#. "$". +#. This string would look like this when all variables are in: +#. "$500.00" +#: common/djangoapps/course_modes/models.py +#: lms/templates/shoppingcart/shopping_cart.html +#, python-brace-format +msgid "{currency_symbol}{price}" +msgstr "{currency_symbol}{price}" + +#. Translators: This refers to the cost of the course. In this case, the +#. course costs nothing so it is free. +#: common/djangoapps/course_modes/models.py +msgid "Free" +msgstr "免费" + +#: common/djangoapps/course_modes/models.py +msgid "" +"The time period before a course ends in which a course mode will expire" +msgstr "在课程结束前的时间段,其中一门课程模式将到期" + +#: common/djangoapps/course_modes/views.py +#, python-brace-format +msgid "Congratulations! You are now enrolled in {course_name}" +msgstr "恭喜!您已经选修了{course_name}" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment is closed" +msgstr "选课已关闭" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment mode not supported" +msgstr "不支持的选课模式" + +#: common/djangoapps/course_modes/views.py +msgid "Invalid amount selected." +msgstr "选择的数量无效。" + +#: common/djangoapps/course_modes/views.py +msgid "No selected price or selected price is too low." +msgstr "未选择价格或选择的价格过低。" + +#: common/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "管理员" + +#: common/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "版主" + +#: common/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "群主" + +#: common/djangoapps/django_comment_common/models.py +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Community TA" +msgstr "社区助教" + +#: common/djangoapps/django_comment_common/models.py +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Student" +msgstr "学生" + +#: common/djangoapps/student/admin.py +msgid "User profile" +msgstr "用户资料" + +#: common/djangoapps/student/admin.py +msgid "Account recovery" +msgstr "验证账户" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the login form +#. meant to hold the user's password. +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's password. +#: common/djangoapps/student/admin.py openedx/core/djangoapps/user_api/api.py +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/login.html lms/templates/provider_login.html +#: lms/templates/register-form.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Password" +msgstr "密码" + +#: common/djangoapps/student/admin.py +msgid "" +"Raw passwords are not stored, so there is no way to see this user's " +"password." +msgstr "未存储原始密码,因此无法查看此用户的密码。" + +#: common/djangoapps/student/forms.py +msgid "" +"That e-mail address doesn't have an associated user account. Are you sure " +"you've registered?" +msgstr "该电子邮件地址不具有相关联的用户帐户。您确定您已经注册?" + +#: common/djangoapps/student/forms.py +msgid "" +"The user account associated with this e-mail address cannot reset the " +"password." +msgstr "与此电子邮件地址关联的用户帐户不能重新设置密码。" + +#: common/djangoapps/student/forms.py +msgid "Full Name cannot contain the following characters: < >" +msgstr "全名中不能包含这些字符:< >" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "需要正确的邮件格式" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "您的合法名字必须至少包含两个字符的长度" + +#: common/djangoapps/student/forms.py +#, python-format +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "Email长度不能超过 %(limit_value)s 个字符" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "您必须接受本服务条款。" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "需要以上学历" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "您的性别是必填项" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "您的出生年份是必填项" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "您的邮件地址是必填项" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "您的目标描述是必填项" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "城市是必填项" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "国家是必填项" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "您必须遵循诚信准则才能选修。" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "您遗漏了一个或多个必须填写字段" + +#: common/djangoapps/student/forms.py +msgid "Unauthorized email address." +msgstr "未经授权的电子邮件地址" + +#: common/djangoapps/student/forms.py +#, python-brace-format +msgid "" +"It looks like {email} belongs to an existing account. Try again with a " +"different email address." +msgstr "看起来像现有的帐户 {email} 。使用不同的电子邮件地址再试一次。" + +#: common/djangoapps/student/helpers.py +#, python-brace-format +msgid "An account with the Public Username '{username}' already exists." +msgstr "公开用户名'{username}'对应的账号已存在。" + +#: common/djangoapps/student/helpers.py +#, python-brace-format +msgid "An account with the Email '{email}' already exists." +msgstr "电子邮件'{email}'对应的账号已存在。" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "Removed group: \"{}\"" +msgstr "已移除的组: \"{}\"" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "Did not find a group with name \"{}\" - skipping." +msgstr "没有找到\"{}\"的组 - 跳过。" + +#: common/djangoapps/student/management/commands/manage_group.py +#, python-brace-format +msgid "Invalid group name: \"{group_name}\". {messages}" +msgstr "无效的组名: \"{group_name}\". {messages}" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "Created new group: \"{}\"" +msgstr "创建新内容组: \"{}\"" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "Found existing group: \"{}\"" +msgstr "找到已存在的内容组: \"{}\"" + +#: common/djangoapps/student/management/commands/manage_group.py +#, python-brace-format +msgid "Adding {codenames} permissions to group \"{group}\"" +msgstr "添加群组{codenames}权限\"{group}\"" + +#: common/djangoapps/student/management/commands/manage_group.py +#, python-brace-format +msgid "Removing {codenames} permissions from group \"{group}\"" +msgstr "移除群组{codenames}权限\"{group}\"" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "" +"Invalid permission option: \"{}\". Please specify permissions using the " +"format: app_label:model_name:permission_codename." +msgstr "\"{}\"权限选项无效,请按照以下格式设置权限:app_label:model_name:permission_codename。" + +#: common/djangoapps/student/management/commands/manage_group.py +#, python-brace-format +msgid "" +"Invalid permission codename: \"{codename}\". No such permission exists for " +"the model {module}.{model_name}." +msgstr "\"{codename}\"权限代号无效,{module}.{model_name} model的此权限不存在。" + +#: common/djangoapps/student/management/commands/manage_user.py +#, python-brace-format +msgid "Setting {attribute} for user \"{username}\" to \"{new_value}\"" +msgstr "设置用户\"{username}\"的{attribute}值为\"{new_value}\"" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "" +"Skipping user \"{}\" because the specified and existing email addresses do " +"not match." +msgstr "设置的邮箱与现存邮箱地址不匹配,跳过用户\"{}\"。" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Did not find a user with username \"{}\" - skipping." +msgstr "没有找到用户名为\"{}\" - 跳过。" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Removing user: \"{}\"" +msgstr "移除用户: \"{}\"" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Created new user: \"{}\"" +msgstr "创建用户: \"{}\"" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Found existing user: \"{}\"" +msgstr "找到已存在的用户: \"{}\"" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Setting unusable password for user \"{}\"" +msgstr "设置用户\"{}\"的不可用密码" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Created new profile for user: \"{}\"" +msgstr "已创建新账号:\"{}\"" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Could not find a group named \"{}\" - skipping." +msgstr "没有找到名为\"{}\"的组 - 跳过。" + +#: common/djangoapps/student/management/commands/manage_user.py +#, python-brace-format +msgid "Adding user \"{username}\" to groups {group_names}" +msgstr "正在添加用户\"{username}\"至{group_names}群组中" + +#: common/djangoapps/student/management/commands/manage_user.py +#, python-brace-format +msgid "Removing user \"{username}\" from groups {group_names}" +msgstr "把用户 \"{username}\" 从{group_names}组中移除" + +#: common/djangoapps/student/middleware.py +#, python-brace-format +msgid "" +"Your account has been disabled. If you believe this was done in error, " +"please contact us at {support_email}" +msgstr "您的账号已经被禁用。如果您有任何疑问请联系我们{support_email}" + +#: common/djangoapps/student/middleware.py +msgid "Disabled Account" +msgstr "已停用的账号" + +#: common/djangoapps/student/models.py +msgid "Male" +msgstr "男" + +#: common/djangoapps/student/models.py +msgid "Female" +msgstr "女" + +#. Translators: 'Other' refers to the student's gender +#: common/djangoapps/student/models.py +msgid "Other/Prefer Not to Say" +msgstr "其他/不想说" + +#: common/djangoapps/student/models.py +msgid "Doctorate" +msgstr "博士" + +#: common/djangoapps/student/models.py +msgid "Master's or professional degree" +msgstr "硕士" + +#: common/djangoapps/student/models.py +msgid "Bachelor's degree" +msgstr "学士" + +#: common/djangoapps/student/models.py +msgid "Associate degree" +msgstr "肄业证书" + +#: common/djangoapps/student/models.py +msgid "Secondary/high school" +msgstr "高中" + +#: common/djangoapps/student/models.py +msgid "Junior secondary/junior high/middle school" +msgstr "初中" + +#: common/djangoapps/student/models.py +msgid "Elementary/primary school" +msgstr "小学" + +#. Translators: 'None' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "No formal education" +msgstr "未受正规教育" + +#. Translators: 'Other' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "Other education" +msgstr "其他教育程度" + +#: common/djangoapps/student/models.py +#, python-brace-format +msgid "{platform_name} Honor Code Certificate for {course_name}" +msgstr "{platform_name}荣誉代码证书{course_name}" + +#: common/djangoapps/student/models.py +#, python-brace-format +msgid "{platform_name} Verified Certificate for {course_name}" +msgstr "{platform_name}经认证的证书{course_name}" + +#: common/djangoapps/student/models.py +#, python-brace-format +msgid "{platform_name} Professional Certificate for {course_name}" +msgstr "{platform_name}专业证书{course_name}" + +#: common/djangoapps/student/models.py +msgid "" +"The company identifier for the LinkedIn Add-to-Profile button e.g " +"0_0dPSPyS070e0HsE9HNz_13_d11_" +msgstr "LinkedIn“添加到配置文件”按钮的公司标识符,例如0_0dPSPyS070e0HsE9HNz_13_d11_" + +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "领英伙伴的短标识符被用在跟踪代码中。 (比如: 'edx') 如果没有提供任何值,跟踪代码不会发送到领英。" + +#: common/djangoapps/student/models.py +#, python-brace-format +msgid "{platform_name} Certificate for {course_name}" +msgstr "{platform_name} 证书 {course_name}" + +#: common/djangoapps/student/models.py +msgid "The ISO 639-1 language code for this language." +msgstr "该语言的 ISO 639-1 代码" + +#: common/djangoapps/student/models.py +msgid "Namespace of enrollment attribute" +msgstr "选课属性中的命名空间" + +#: common/djangoapps/student/models.py +msgid "Name of the enrollment attribute" +msgstr "选课属性中的名称" + +#: common/djangoapps/student/models.py +msgid "Value of the enrollment attribute" +msgstr "选课属性中的值" + +#: common/djangoapps/student/models.py +msgid "" +"The window of time after enrolling during which users can be granted a " +"refund, represented in microseconds. The default is 14 days." +msgstr "注册课程后用户可以退款的期限,以微秒表示。默认值是14天。" + +#: common/djangoapps/student/models.py +msgid "Name of the UTM cookie" +msgstr "UTM cookie名称" + +#: common/djangoapps/student/models.py +msgid "Name of the affiliate cookie" +msgstr "附属cookie名称" + +#: common/djangoapps/student/models.py +msgid "Name of this user attribute." +msgstr "用户属性名称。" + +#: common/djangoapps/student/models.py +msgid "Value of this user attribute." +msgstr "此用户属性值。" + +#: common/djangoapps/student/models.py +msgid "Secondary email address" +msgstr "备选邮箱" + +#: common/djangoapps/student/models.py +msgid "Secondary email address to recover linked account." +msgstr "用于恢复关联账号的备选邮箱。" + +#: common/djangoapps/student/views/dashboard.py +msgid " and " +msgstr "与" + +#: common/djangoapps/student/views/dashboard.py +msgid "Photos are mismatched" +msgstr "照片误匹配" + +#: common/djangoapps/student/views/dashboard.py +msgid "Name missing from ID photo" +msgstr "ID照片缺少名称" + +#: common/djangoapps/student/views/dashboard.py +msgid "ID photo not provided" +msgstr "未提供ID照片" + +#: common/djangoapps/student/views/dashboard.py +msgid "ID is invalid" +msgstr "无效ID" + +#: common/djangoapps/student/views/dashboard.py +msgid "Learner photo is blurry" +msgstr "学生照片模糊" + +#: common/djangoapps/student/views/dashboard.py +msgid "Name on ID does not match name on account" +msgstr "ID名称与账号名称不匹配" + +#: common/djangoapps/student/views/dashboard.py +msgid "Learner photo not provided" +msgstr "未提供学员图片" + +#: common/djangoapps/student/views/dashboard.py +msgid "ID photo is blurry" +msgstr "ID照片模糊" + +#: common/djangoapps/student/views/dashboard.py +#, python-brace-format +msgid "" +"Check your {email_start}{email}{email_end} inbox for an account activation " +"link from {platform_name}. If you need help, contact " +"{link_start}{platform_name} Support{link_end}." +msgstr "" +"去邮箱{email_start}{email}{email_end} " +"查看{platform_name}的账号激活链接。如需帮助,请联系{link_start}{platform_name}的技术支持{link_end}。" + +#: common/djangoapps/student/views/dashboard.py +#, python-brace-format +msgid "" +"Add a recovery email to retain access when single-sign on is not available. " +"Go to {link_start}your Account Settings{link_end}." +msgstr "添加验证电子邮件,以便在无法使用单点登录时保留访问权限。转到{link_start}您的账户设置{link_end}。" + +#: common/djangoapps/student/views/dashboard.py +msgid "" +"Recovery email is not activated yet. Kindly visit your email and follow the " +"instructions to activate it." +msgstr "验证邮件尚未激活。请访问您的电子邮件,并按照说明已激活它。" + +#: common/djangoapps/student/views/dashboard.py +#, python-brace-format +msgid "The course you are looking for does not start until {date}." +msgstr "您查找的课程将在{date}后开课。" + +#: common/djangoapps/student/views/dashboard.py +#, python-brace-format +msgid "The course you are looking for is closed for enrollment as of {date}." +msgstr "您搜索的课程登记关闭时间截止至 {date}。" + +#: common/djangoapps/student/views/management.py +msgid "No inactive user with this e-mail exists" +msgstr "无非激活用户与本邮件地址关联。" + +#: common/djangoapps/student/views/management.py +msgid "Unable to send reactivation email" +msgstr "无法发送重新激活的电子邮件" + +#: common/djangoapps/student/views/management.py +msgid "Course id not specified" +msgstr "课程编号未指定" + +#: common/djangoapps/student/views/management.py +msgid "Invalid course id" +msgstr "无效的课程编号" + +#: common/djangoapps/student/views/management.py +msgid "Course id is invalid" +msgstr "课程编号无效" + +#: common/djangoapps/student/views/management.py +msgid "Could not enroll" +msgstr "无法选修" + +#: common/djangoapps/student/views/management.py +msgid "You are not enrolled in this course" +msgstr "您还没有选修本课程" + +#: common/djangoapps/student/views/management.py +msgid "Your certificate prevents you from unenrolling from this course" +msgstr "您的证书会让您从无法取消注册" + +#: common/djangoapps/student/views/management.py +msgid "Enrollment action is invalid" +msgstr "选课操作无效" + +#: common/djangoapps/student/views/management.py +msgid "Please enter a username" +msgstr "请输入用户名" + +#: common/djangoapps/student/views/management.py +msgid "Please choose an option" +msgstr "请选择" + +#: common/djangoapps/student/views/management.py +msgid "User with username {} does not exist" +msgstr "用户名 {} 不存在" + +#: common/djangoapps/student/views/management.py +msgid "Successfully disabled {}'s account" +msgstr "成功停用{}的账号" + +#: common/djangoapps/student/views/management.py +msgid "Successfully reenabled {}'s account" +msgstr "成功重新启用{}的账号" + +#: common/djangoapps/student/views/management.py +msgid "Unexpected account status" +msgstr "异常的账号状态" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "" +"{html_start}Your account could not be activated{html_end}Something went " +"wrong, please contact support to resolve this " +"issue." +msgstr "" +"{html_start} 您的账号无法激活 {html_end} 什么地方发生错误了, 请联系支持 解决此问题。" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "{html_start}This account has already been activated.{html_end}" +msgstr "{html_start} 此账号已被激活。{html_end}" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "{html_start}Success{html_end} You have activated your account." +msgstr "{html_start} 成功! {html_end} 您已激活您的账号。" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "" +"{html_start}Success! You have activated your account.{html_end}You will now " +"receive email updates and alerts from us related to the courses you are " +"enrolled in. Sign In to continue." +msgstr "{html_start}您已成功激活账号!{html_end}我们会将您的课程更新以电子邮件通知您,请登录。" + +#: common/djangoapps/student/views/management.py +msgid "Some error occured during password change. Please try again" +msgstr "重设密码时发生错误,请重试" + +#: common/djangoapps/student/views/management.py +msgid "No email address provided." +msgstr "未提供Email地址。" + +#: common/djangoapps/student/views/management.py +msgid "Password reset unsuccessful" +msgstr "重新设置密码不成功" + +#: common/djangoapps/student/views/management.py +msgid "Error in resetting your password." +msgstr "重设密码时发生错误。" + +#: common/djangoapps/student/views/management.py +msgid "Error in resetting your password. Please try again." +msgstr "重置密码操作发生错误。请再尝试一次。" + +#: common/djangoapps/student/views/management.py +msgid "Password creation unsuccessful" +msgstr "密码设置不成功" + +#: common/djangoapps/student/views/management.py +msgid "Error in creating your password. Please try again." +msgstr "密码设置发生错误。请再试一次。" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "" +"{html_start}Password Creation Complete{html_end}Your password has been " +"created. {bold_start}{email}{bold_end} is now your primary login email." +msgstr "" +"{html_start}密码创建完成{html_end}已经创建了您的密码。{bold_start}{email}{bold_end}现在是您的主登录电子邮件。" + +#: common/djangoapps/student/views/management.py +msgid "Valid e-mail address required." +msgstr "需要有效的电子邮件地址" + +#: common/djangoapps/student/views/management.py +msgid "Old email is the same as the new email." +msgstr "新邮件地址与旧邮件地址相同。" + +#: common/djangoapps/student/views/management.py +msgid "E-mail address has been used." +msgstr "邮件地址已被使用。" + +#: common/djangoapps/student/views/management.py +msgid "Cannot be same as your sign in email address." +msgstr "不能与登录邮箱相同" + +#: common/djangoapps/student/views/management.py +msgid "Unable to send email activation link. Please try again later." +msgstr "无法发送邮箱激活链接,请重试 。" + +#: common/djangoapps/third_party_auth/admin.py +msgid "Deleted the selected configuration(s)." +msgstr "删除所选配置(或多个)。" + +#: common/djangoapps/third_party_auth/admin.py +msgid "Delete the selected configuration" +msgstr "删除所选设置" + +#: common/djangoapps/third_party_auth/middleware.py +msgid "Unable to connect with the external provider, please try again" +msgstr "无法连接外部提供程序,请重试" + +#: common/djangoapps/third_party_auth/models.py +msgid "Authentication with {} is currently unavailable." +msgstr "当前不可使用{}认证。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"Secondary providers are displayed less prominently, in a separate list of " +"\"Institution\" login providers." +msgstr "二级供应商不会突出显示,将出现在一个单独的登录供应商列表“机构”中。" + +#: common/djangoapps/third_party_auth/models.py +msgid "The Site that this provider configuration belongs to." +msgstr "此提供程序设置所从属的网站。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is enabled, users that visit a \"TPA hinted\" URL for this " +"provider (e.g. a URL ending with `?tpa_hint=[provider_name]`) will be " +"forwarded directly to the login URL of the provider instead of being first " +"prompted with a login dialog." +msgstr "" +"如果启用此项,则访问此Provider的“TPA提示”URL(例如:以“?tpa_hint=[provider_name]”结尾的URL)的用户将被直接发送到Provider的登录URL,而非首先弹出登录对话框。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is enabled, users will not be asked to confirm their details " +"(name, email, etc.) during the registration process. Only select this option" +" for trusted providers that are known to provide accurate user information." +msgstr "" +"如果启用了该选项,用户在注册过程中将不会被要求验证他们的详细信息(姓名、电子邮件等)。只有对可信任的供应商,即已知会提供确切用户信息的供应商,才可启用该选项。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is selected, users will not be required to confirm their " +"email, and their account will be activated immediately upon registration." +msgstr "如果选择该选项,用户将不会被要求验证他们的邮箱,他们的账号将在注册后立刻被激活。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is selected, users will be sent a welcome email upon " +"registration." +msgstr "如果选择此选项,那么会在用户完成注册时发送一封欢迎电子邮件。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is not selected, users will not be presented with the " +"provider as an option to authenticate with on the login screen, but manual " +"authentication using the correct link is still possible." +msgstr "如果不勾选此项,用户将无法在登录页面使用Provider验证,不过可以使用正确的链接进行手动验证。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is set, then users logging in using this SSO provider will " +"have their session length limited to no longer than this value. If set to 0 " +"(zero), the session will expire upon the user closing their browser. If left" +" blank, the Django platform session default length will be used." +msgstr "" +"如果设置此项,那么使用此SSO " +"Provider登录的用户的会话时长不超过此设置值。如果设为0(零),则会话在用户关闭浏览器时过期。如果留空,则采用Django平台会话的默认时长。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is selected, users will be directed to the registration page " +"immediately after authenticating with the third party instead of the login " +"page." +msgstr "如果选择此选项,则用户在与第三方验证后会直接跳转至注册页面,而不是登录页面。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"Synchronize user profile data received from the identity provider with the " +"edX user account on each SSO login. The user will be notified if the email " +"address associated with their account is changed as a part of this " +"synchronization." +msgstr "在每次SSO登录中,将来自身份provider程序的用户账号数据与edX用户账号相同步。当修改绑定邮箱时,用户会收到通知。" + +#: common/djangoapps/third_party_auth/models.py +msgid "The Site that this SAML configuration belongs to." +msgstr "此SAML设置所从属的网站。" + +#: common/djangoapps/third_party_auth/models.py lms/templates/help_modal.html +#, python-brace-format +msgid "{platform_name} Support" +msgstr "{platform_name}支援" + +#: common/djangoapps/third_party_auth/templates/third_party_auth/post_custom_auth_entry.html +#: lms/templates/student_account/finish_auth.html +#: themes/elitemba-theme/lms/templates/student_account/finish_auth.html +msgid "Please wait" +msgstr "请稍候" + +#. Translators: the translation for "LONG_DATE_FORMAT" must be a format +#. string for formatting dates in a long form. For example, the +#. American English form is "%A, %B %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "LONG_DATE_FORMAT" +msgstr "LONG_DATE_FORMAT" + +#. Translators: the translation for "DATE_TIME_FORMAT" must be a format +#. string for formatting dates with times. For example, the American +#. English form is "%b %d, %Y at %H:%M". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "DATE_TIME_FORMAT" +msgstr "DATE_TIME_FORMAT" + +#. Translators: the translation for "SHORT_DATE_FORMAT" must be a +#. format string for formatting dates in a brief form. For example, +#. the American English form is "%b %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "SHORT_DATE_FORMAT" +msgstr "SHORT_DATE_FORMAT" + +#. Translators: the translation for "TIME_FORMAT" must be a format +#. string for formatting times. For example, the American English +#. form is "%H:%M:%S". See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "TIME_FORMAT" +msgstr "TIME_FORMAT" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "AM" +msgstr "上午" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "PM" +msgstr "下午" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Monday Februrary 10, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Monday" +msgstr "星期一" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Tuesday" +msgstr "星期二" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Wednesday" +msgstr "星期三" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Thursday" +msgstr "星期四" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Friday Februrary 14, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Friday" +msgstr "星期五" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Saturday" +msgstr "星期六" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Sunday" +msgstr "星期天" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "周一" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "周二" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "周三" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "周四" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "周五" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "周六" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "周日" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jan 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "一月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Feb 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "二月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Mar 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "三月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Apr 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "四月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "May 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "May" +msgstr "五月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jun 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "六月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jul 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "七月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Aug 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "八月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Sep 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "九月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Oct 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "十月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Nov 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "十一月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Dec 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "十二月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "January 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "January" +msgstr "一月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "February 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "February" +msgstr "二月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "March 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "March" +msgstr "三月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "April 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "April" +msgstr "四月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "May 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "May" +msgstr "五月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "June 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "June" +msgstr "六月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "July 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "July" +msgstr "七月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "August 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "August" +msgstr "八月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "September 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "September" +msgstr "九月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "October 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "October" +msgstr "十月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "November 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "November" +msgstr "十一月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "December 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "December" +msgstr "十二月" + +#: common/djangoapps/util/file.py +#, python-brace-format +msgid "The file must end with the extension '{file_types}'." +msgid_plural "" +"The file must end with one of the following extensions: '{file_types}'." +msgstr[0] "文件的扩展名必须为'{file_types}'。" + +#: common/djangoapps/util/file.py +#, python-brace-format +msgid "Maximum upload file size is {file_size} bytes." +msgstr "上传文件最大为{file_size} 字节。" + +#: common/djangoapps/util/milestones_helpers.py +#, python-brace-format +msgid "Course {course_id} requires {prerequisite_course_id}" +msgstr "课程{course_id}要求 {prerequisite_course_id}" + +#: common/djangoapps/util/milestones_helpers.py openedx/core/lib/gating/api.py +msgid "System defined milestone" +msgstr "系统定义的里程碑" + +#: common/djangoapps/util/password_policy_validators.py +#, python-brace-format +msgid "" +"Your password must contain {length_instruction}, including " +"{complexity_instructions}." +msgstr "您的密码必须包含{length_instruction},包括{complexity_instructions}。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-brace-format +msgid "Your password must contain {length_instruction}." +msgstr "您的密码必须包含{length_instruction}。" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Invalid password." +msgstr "密码无效。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "" +"This password is too short. It must contain at least %(min_length)d " +"character." +msgid_plural "" +"This password is too short. It must contain at least %(min_length)d " +"characters." +msgstr[0] "这个密码太短了,它必须包含至少%(min_length)d个字符。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_length)d character." +msgid_plural "Your password must contain at least %(min_length)d characters." +msgstr[0] "您的密码必须至少包含%(min_length)d个字符。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "at least %(min_length)d character" +msgid_plural "at least %(min_length)d characters" +msgstr[0] "至少%(min_length)d个字符" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "" +"This password is too long. It must contain no more than %(max_length)d " +"character." +msgid_plural "" +"This password is too long. It must contain no more than %(max_length)d " +"characters." +msgstr[0] "这个密码太长了。它必须包含不超过 %(max_length)d 字符。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain no more than %(max_length)d character." +msgid_plural "" +"Your password must contain no more than %(max_length)d characters." +msgstr[0] "您的密码必须包含不超过%(max_length)d字符。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_alphabetic)d letter." +msgid_plural "This password must contain at least %(min_alphabetic)d letters." +msgstr[0] "这个密码必须包含至少 %(min_alphabetic)d字母。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_alphabetic)d letter." +msgid_plural "Your password must contain at least %(min_alphabetic)d letters." +msgstr[0] "您的密码必须包含至少%(min_alphabetic)d 字母。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d letter" +msgid_plural "%(num)d letters" +msgstr[0] "%(num)d字母" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_numeric)d number." +msgid_plural "This password must contain at least %(min_numeric)d numbers." +msgstr[0] "这个密码必须包含至少%(min_numeric)d数字。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_numeric)d number." +msgid_plural "Your password must contain at least %(min_numeric)d numbers." +msgstr[0] "您的密码必须包含至少%(min_numeric)d数字。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d number" +msgid_plural "%(num)d numbers" +msgstr[0] "%(num)d数字" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_upper)d uppercase letter." +msgid_plural "" +"This password must contain at least %(min_upper)d uppercase letters." +msgstr[0] "这个密码必须包含至少%(min_upper)d大写字母。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_upper)d uppercase letter." +msgid_plural "" +"Your password must contain at least %(min_upper)d uppercase letters." +msgstr[0] "您的密码必须包含至少%(min_upper)d大写字母。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d uppercase letter" +msgid_plural "%(num)d uppercase letters" +msgstr[0] "%(num)d大写字母" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_lower)d lowercase letter." +msgid_plural "" +"This password must contain at least %(min_lower)d lowercase letters." +msgstr[0] "这个密码必须包含至少%(min_lower)d小写字母。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_lower)d lowercase letter." +msgid_plural "" +"Your password must contain at least %(min_lower)d lowercase letters." +msgstr[0] "您的密码必须包含至少%(min_lower)d小写字母。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d lowercase letter" +msgid_plural "%(num)d lowercase letters" +msgstr[0] "%(num)d小写字母" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "" +"This password must contain at least %(min_punctuation)d punctuation mark." +msgid_plural "" +"This password must contain at least %(min_punctuation)d punctuation marks." +msgstr[0] "这个密码必须包含至少%(min_punctuation)d标点符号。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "" +"Your password must contain at least %(min_punctuation)d punctuation mark." +msgid_plural "" +"Your password must contain at least %(min_punctuation)d punctuation marks." +msgstr[0] "您的密码必须包含至少%(min_punctuation)d标点符号。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d punctuation mark" +msgid_plural "%(num)d punctuation marks" +msgstr[0] "%(num)d标点符号" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_symbol)d symbol." +msgid_plural "This password must contain at least %(min_symbol)d symbols." +msgstr[0] "这个密码必须包含至少%(min_symbol)d符号。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_symbol)d symbol." +msgid_plural "Your password must contain at least %(min_symbol)d symbols." +msgstr[0] "您的密码必须包含至少%(min_symbol)d符号。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d symbol" +msgid_plural "%(num)d symbols" +msgstr[0] "%(num)d符号" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "The password is too similar to the %(verbose_name)s." +msgstr "密码与%(verbose_name)s太相似。" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Your password can't be too similar to your other personal information." +msgstr "您的密码不能与您的其他个人信息太相似。" + +#: common/djangoapps/xblock_django/admin.py +msgid "" +"To disable the XBlock and prevent rendering in the LMS, leave \"Enabled\" " +"deselected; for clarity, update XBlockStudioConfiguration support state " +"accordingly." +msgstr "取消勾选“启用”按钮即可禁用XBlock和LMS渲染;按需更新XBlockStudioConfiguration的支持状态即可调整清晰度。" + +#: common/djangoapps/xblock_django/admin.py +msgid "" +"Only XBlocks listed in a course's Advanced Module List can be flagged as " +"deprecated. Remember to update XBlockStudioConfiguration support state " +"accordingly, as deprecated does not impact whether or not new XBlock " +"instances can be created in Studio." +msgstr "" +"只能够将在高级模块列表中的XBlocks标记为不推荐允许,请记住要根据需要而更新XBlockStudioConfiguration的支持状态,因为设置了不推荐允许是不会影响在Studio中创建XBlock场景的。" + +#: common/djangoapps/xblock_django/admin.py +msgid "" +"XBlock/template combinations that are disabled cannot be edited in Studio, " +"regardless of support level. Remember to also check if all instances of the " +"XBlock are disabled in XBlockConfiguration." +msgstr "" +"无论支持级别多少,都无法在Studio中编辑被禁用的XBlock/模板组合。请记住还要检查所有XBlock场景是否在XBlockConfiguration中已被禁用。" + +#: common/djangoapps/xblock_django/admin.py +msgid "" +"Enabled XBlock/template combinations with full or provisional support can " +"always be created in Studio. Unsupported XBlock/template combinations " +"require course author opt-in." +msgstr "在Studio中,完全或暂时支持启用XBlock/模板组合总是可以创建。不支持XBlock或模板组合需要课程作者选择加入。" + +#: common/djangoapps/xblock_django/models.py +msgid "show deprecation messaging in Studio" +msgstr "在Studio中显示不推荐通知" + +#: common/djangoapps/xblock_django/models.py +msgid "Fully Supported" +msgstr "全部支持" + +#: common/djangoapps/xblock_django/models.py +msgid "Provisionally Supported" +msgstr "暂行支持" + +#: common/djangoapps/xblock_django/models.py +msgid "Unsupported" +msgstr "不支持" + +#: common/lib/capa/capa/capa_problem.py +msgid "Cannot rescore problems with possible file submissions" +msgstr "无法对可能的文件提交重新评分" + +#: common/lib/capa/capa/capa_problem.py +#, python-brace-format +msgid "Question {0}" +msgstr "问题{0}" + +#: common/lib/capa/capa/capa_problem.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Incorrect" +msgstr "不正确" + +#: common/lib/capa/capa/capa_problem.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Correct" +msgstr "正确" + +#: common/lib/capa/capa/inputtypes.py +msgid "correct" +msgstr "正确" + +#: common/lib/capa/capa/inputtypes.py +msgid "incorrect" +msgstr "不正确" + +#: common/lib/capa/capa/inputtypes.py +msgid "partially correct" +msgstr "部分正确" + +#: common/lib/capa/capa/inputtypes.py +msgid "incomplete" +msgstr "不完整" + +#: common/lib/capa/capa/inputtypes.py +msgid "unanswered" +msgstr "未答复" + +#: common/lib/capa/capa/inputtypes.py +msgid "submitted" +msgstr "已提交" + +#: common/lib/capa/capa/inputtypes.py +msgid "processing" +msgstr "处理中" + +#. Translators: these are tooltips that indicate the state of an assessment +#. question +#: common/lib/capa/capa/inputtypes.py +msgid "This answer is correct." +msgstr "这个回答是正确的。" + +#: common/lib/capa/capa/inputtypes.py +msgid "This answer is incorrect." +msgstr "这个回答是不正确的。" + +#: common/lib/capa/capa/inputtypes.py +msgid "This answer is partially correct." +msgstr "这个回答是部分正确的。" + +#: common/lib/capa/capa/inputtypes.py +msgid "This answer is being processed." +msgstr "这个回答正在处理中。" + +#: common/lib/capa/capa/inputtypes.py +msgid "Not yet answered." +msgstr "未回答。" + +#: common/lib/capa/capa/inputtypes.py wiki/forms.py +msgid "Select an option" +msgstr "请选择" + +#. Translators: 'ChoiceGroup' is an input type and should not be translated. +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "ChoiceGroup: unexpected tag {tag_name}" +msgstr "ChoiceGroup:未知标签{tag_name}" + +#: common/lib/capa/capa/inputtypes.py +msgid "Answer received." +msgstr "收到答案" + +#. Translators: '' and '' are tag names and should not +#. be translated. +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "Expected a or tag; got {given_tag} instead" +msgstr "期望一个标签;实际获得{given_tag}" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your files have been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "您的文件已经提交。当评定完成后,此消息将被评定者的反馈所替代。" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your answer has been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "您的答案已经发布。当评定完成,此消息将被显示评定者的反馈所替代。" + +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "{programming_language} editor" +msgstr "{programming_language} 编辑者" + +#: common/lib/capa/capa/inputtypes.py +msgid "Press ESC then TAB or click outside of the code editor to exit" +msgstr "按ESC键然后TAB键可退出,或者鼠标点击代码编辑器以外的区域也可退出。" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Submitted. As soon as a response is returned, this message will be replaced " +"by that feedback." +msgstr "已提交。当得到反馈,此消息将被反馈信息所替代。" + +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr " Xqueue在 {xqueue_timeout} 秒内无响应,终止。" + +#: common/lib/capa/capa/inputtypes.py +msgid "Error running code." +msgstr "运行代码错误。" + +#: common/lib/capa/capa/inputtypes.py +msgid "Cannot connect to the queue" +msgstr "无法连接到队列。" + +#: common/lib/capa/capa/inputtypes.py +msgid "No formula specified." +msgstr "没有指定公式" + +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "Couldn't parse formula: {error_msg}" +msgstr "无法解析公式: {error_msg}" + +#: common/lib/capa/capa/inputtypes.py +msgid "Error while rendering preview" +msgstr "渲染预览出错" + +#: common/lib/capa/capa/inputtypes.py +msgid "Sorry, couldn't parse formula" +msgstr "抱歉,不能解析公式" + +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "{input_type}: unexpected tag {tag_name}" +msgstr "{input_type}: 未知标签 {tag_name}" + +#. Translators: a "tag" is an XML element, such as "" in HTML +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "Expected a {expected_tag} tag; got {given_tag} instead" +msgstr "期望一个 {expected_tag}标签;实际获得 {given_tag}" + +#. Translators: index here could be 1,2,3 and so on +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Question {index}" +msgstr "问题 {index}" + +#: common/lib/capa/capa/responsetypes.py +msgid "Correct:" +msgstr "正确:" + +#: common/lib/capa/capa/responsetypes.py +msgid "Incorrect:" +msgstr "不正确:" + +#: common/lib/capa/capa/responsetypes.py +#: common/lib/xmodule/xmodule/capa_module.py +msgid "Answer" +msgstr "答案" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Error {err} in evaluating hint function {hintfn}." +msgstr "在对提示函数 {hintfn} 求值时发生错误 {err}。" + +#: common/lib/capa/capa/responsetypes.py +msgid "(Source code line unavailable)" +msgstr "(源代码不可用 )" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "See XML source line {sourcenum}." +msgstr "参见 XML 源文件中的行{sourcenum}。" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Checkboxes" +msgstr "选框" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Multiple Choice" +msgstr "多项选择" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "请勿同时使用拖拽和答案池" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "答案池的值必须是整数" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "Choicegroup必须包含至少1个正确选项和1个错误选项" + +#: common/lib/capa/capa/responsetypes.py +msgid "True/False Choice" +msgstr "True/False 选择" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Dropdown" +msgstr "下拉列表" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Numerical Input" +msgstr "数值输入" + +#: common/lib/capa/capa/responsetypes.py +msgid "There was a problem with the staff answer to this problem." +msgstr "工作人员对这个问题的答案有问题。" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Could not interpret '{student_answer}' as a number." +msgstr "无法将“{student_answer}”解释为一个数字。" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Factorial function evaluated outside its domain:'{student_answer}'" +msgstr "在阶乘函数的定义域之外对其求值:“{student_answer}”" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Invalid math syntax: '{student_answer}'" +msgstr "无效的数学表达式:'{student_answer}'" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use complex numbers in range tolerance problems" +msgstr "范围公差类型的问题不可以使用复数" + +#. Translators: This is an error message for a math problem. If the instructor +#. provided a +#. boundary (end limit) for a variable that is a complex number (a + bi), this +#. message displays. +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: complex boundary." +msgstr "工作人员对此问题的解答存在问题:复杂边界。" + +#. Translators: This is an error message for a math problem. If the instructor +#. did not +#. provide a boundary (end limit) for a variable, this message displays. +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: empty boundary." +msgstr "工作人员对此问题的解答存在问题:边界未设置。" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: Separator used in NumericalResponse to display multiple +#. answers. +#. Translators: Separator used in StringResponse to display multiple answers. +#. Example: "Answer: Answer_1 or Answer_2 or Answer_3". +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: common/lib/capa/capa/responsetypes.py lms/templates/login.html +#: lms/templates/register-form.html lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "or" +msgstr "或者" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Text Input" +msgstr "文本输入" + +#: common/lib/capa/capa/responsetypes.py +msgid "error" +msgstr "错误" + +#: common/lib/capa/capa/responsetypes.py +msgid "Custom Evaluated Script" +msgstr "自定义评估脚本" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "error getting student answer from {student_answers}" +msgstr "获取学生答案 {student_answers} 时发生错误" + +#: common/lib/capa/capa/responsetypes.py +msgid "No answer entered!" +msgstr "没有输入答案!" + +#: common/lib/capa/capa/responsetypes.py +msgid "CustomResponse: check function returned an invalid dictionary!" +msgstr "客户端响应:检查函数返回无效字典!" + +#: common/lib/capa/capa/responsetypes.py +msgid "Symbolic Math Input" +msgstr "数学符号输入" + +#. Translators: 'SymbolicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "An error occurred with SymbolicResponse. The error was: {error_msg}" +msgstr "SymbolicResponse时发生一个错误。错误描述: {error_msg}" + +#: common/lib/capa/capa/responsetypes.py +msgid "Code Input" +msgstr "代码输入" + +#: common/lib/capa/capa/responsetypes.py +msgid "No answer provided." +msgstr "未提供答案。" + +#: common/lib/capa/capa/responsetypes.py +msgid "Error: No grader has been set up for this problem." +msgstr "错误:未设立该问题的评分者" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "" +"Unable to deliver your submission to grader (Reason: {error_msg}). Please " +"try again later." +msgstr "无法将您的提交答案发送给评分者 (原因:{error_msg})。 请稍后重试。" + +#. Translators: 'grader' refers to the edX automatic code grader. +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid grader reply. Please contact the course staff." +msgstr "无效评分回复。请联系课程工作人员。" + +#: common/lib/capa/capa/responsetypes.py +msgid "External Grader" +msgstr "外部评分者" + +#: common/lib/capa/capa/responsetypes.py +msgid "Math Expression Input" +msgstr "数学表达式输入" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "" +"Factorial function not permitted in answer for this problem. Provided answer" +" was: {bad_input}" +msgstr "此题目的作答不允许使用阶乘函数,可使用:{bad_input}" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Invalid input: Could not parse '{bad_input}' as a formula." +msgstr "无效输入:无法将'{bad_input}'解析为公式。" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Invalid input: Could not parse '{bad_input}' as a formula" +msgstr "无效输入:无法将'{bad_input}'解析为一个公式" + +#: common/lib/capa/capa/responsetypes.py +msgid "Circuit Schematic Builder" +msgstr "电路原理图生成器" + +#. Translators: 'SchematicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" +msgstr "评估SchematicResponse出错。错误为: {error_msg}" + +#: common/lib/capa/capa/responsetypes.py +msgid "Image Mapped Input" +msgstr "热点图片输入" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "error grading {image_input_id} (input={user_input})" +msgstr "评分出错 {image_input_id} (input={user_input})" + +#. Translators: {sr_coords} are the coordinates of a rectangle +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Error in problem specification! Cannot parse rectangle in {sr_coords}" +msgstr "问题说明中存在错误!在 {sr_coords} 中无法解析出矩形" + +#: common/lib/capa/capa/responsetypes.py +msgid "Annotation Input" +msgstr "批注输入" + +#: common/lib/capa/capa/responsetypes.py +msgid "Checkboxes With Text Input" +msgstr "文本输入复选框" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Answer not provided for {input_type}" +msgstr "未提供 {input_type}的解决方案" + +#: common/lib/capa/capa/responsetypes.py +msgid "The Staff answer could not be interpreted as a number." +msgstr "工作人员的大幅无法被解析为一个数字。" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Could not interpret '{given_answer}' as a number." +msgstr "无法将'{given_answer}'解析为一个数字。" + +#: common/lib/xmodule/xmodule/annotatable_module.py +msgid "XML data for the annotation" +msgstr "用于批注的XML数据" + +#: common/lib/xmodule/xmodule/annotatable_module.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/conditional_module.py +#: common/lib/xmodule/xmodule/html_module.py +#: common/lib/xmodule/xmodule/library_content_module.py +#: common/lib/xmodule/xmodule/library_root_xblock.py +#: common/lib/xmodule/xmodule/poll_module.py +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +#: common/lib/xmodule/xmodule/word_cloud_module.py +#: common/lib/xmodule/xmodule/x_module.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "The display name for this component." +msgstr "组件显示的名称。" + +#: common/lib/xmodule/xmodule/annotatable_module.py +msgid "Annotation" +msgstr "批注" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Blank Advanced Problem" +msgstr "空白进阶问题" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Number of attempts taken by the student on this problem" +msgstr "学生尝试解答这个问题的次数" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Maximum Attempts" +msgstr "最大尝试次数" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines the number of times a student can try to answer this problem. If the" +" value is not set, infinite attempts are allowed." +msgstr "定义学生在回答这个问题时所允许的尝试次数。如果未设置,则允许无限次尝试。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Date that this problem is due by" +msgstr "问题的截至日期为" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Amount of time after the due date that submissions will be accepted" +msgstr "超过截止日期后仍接受提交作业的时间段 " + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Show Results" +msgstr "显示结果" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines when to show whether a learner's answer to the problem is correct. " +"Configured on the subsection." +msgstr "设置显示学员答案是否正确的时间。在“节”中设置。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Always" +msgstr "总是" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Never" +msgstr "从不" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Past Due" +msgstr "超过截止日期" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "Show Answer" +msgstr "显示答案" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines when to show the answer to the problem. A default value can be set " +"in Advanced Settings." +msgstr "定义何时显示问题的答案,默认值可在高级设置里设定。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Answered" +msgstr "已回答" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Attempted" +msgstr "已尝试" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Closed" +msgstr "已关闭" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Finished" +msgstr "已完成" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Correct or Past Due" +msgstr "正确或超过截止日期" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Whether to force the save button to appear on the page" +msgstr "是否强制显示保存按钮" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Show Reset Button" +msgstr "显示重置按钮" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Determines whether a 'Reset' button is shown so the user may reset their " +"answer. A default value can be set in Advanced Settings." +msgstr "决定是否显示“重置”键,以便用户重新填写他们的答案。 默认设置可以在“高级设置”中进行。" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Randomization" +msgstr "随机化" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines when to randomize the variables specified in the associated Python " +"script. For problems that do not randomize values, specify \"Never\". " +msgstr "定义何时随机化Python脚本中的变量。如果不需要随机化的变量,请选择“从不”。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "On Reset" +msgstr "在重置时" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Per Student" +msgstr "每学生" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "XML data for the problem" +msgstr "问题的XML数据" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Dictionary with the correctness of current student answers" +msgstr "当前学生答案正确性词典" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Dictionary for maintaining the state of inputtypes" +msgstr "维护状态的输入类型词典" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Dictionary with the current student responses" +msgstr "当前学生的回应词典" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Dictionary with the current student score" +msgstr "带当前学生分数的字典" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Whether or not the answers have been saved since last submit" +msgstr "上次提交的答案是否已保存" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Whether the student has answered the problem" +msgstr "学生是否已经回答问题" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Random seed for this student" +msgstr "该学生的随机名次" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Last submission time" +msgstr "最后提交时间" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Timer Between Attempts" +msgstr "两次尝试答题间计时" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Seconds a student must wait between submissions for a problem with multiple " +"attempts." +msgstr "一个学生再次尝试答题前需等待的时间" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem Weight" +msgstr "问题权重" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines the number of points each problem is worth. If the value is not set," +" each response field in the problem is worth one point." +msgstr "设置每个问题的分值。如果不设置,那么问题中的每空为一分。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Markdown source of this module" +msgstr "减记该模块资源" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Source code for LaTeX and Word problems. This feature is not well-supported." +msgstr "LaTeX及Word相关源代码问题,对该功能的支持尚不完备。" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/html_module.py +msgid "Enable LaTeX templates?" +msgstr "启用LaTeX模板?" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Matlab API key" +msgstr "Matlab API 密钥" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Enter the API key provided by MathWorks for accessing the MATLAB Hosted " +"Service. This key is granted for exclusive use by this course for the " +"specified duration. Please do not share the API key with other courses and " +"notify MathWorks immediately if you believe the key is exposed or " +"compromised. To obtain a key for your course, or to report an issue, please " +"contact moocsupport@mathworks.com" +msgstr "" +"输入 " +"MATLAB讬管服务提供MathWorks公司的API密钥。这个密钥被授予通过本课程的指定时间独家使用。请不要共享的API密钥与其他课程,并立即通知MathWorks公司,如果您认为密钥被暴露或损害。为了获得一个关键的课程,或报告的问题,请联系moocsupport@mathworks.com" + +#: common/lib/xmodule/xmodule/capa_base.py +#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html +#: cms/templates/index.html cms/templates/videos_index_pagination.html +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +#: lms/templates/peer_grading/peer_grading_problem.html +#: lms/templates/survey/survey.html +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Submit" +msgstr "提交" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Submitting" +msgstr "正在提交中" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Warning: The problem has been reset to its initial state!" +msgstr "警告:这个问题已经被重置为其初始状态!" + +#. Translators: Following this message, there will be a bulleted list of +#. items. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"The problem's state was corrupted by an invalid submission. The submission " +"consisted of:" +msgstr "该问题的描述被一个无效的发布损坏。该发布包含:" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "If this error persists, please contact the course staff." +msgstr "如果该问题依然存在,请联系课程工作人员。" + +#. Translators: {previous_hints} is the HTML of hints that have already been +#. generated, {hint_number_prefix} +#. is a header for this hint, and {hint_text} is the text of the hint itself. +#. This string is being passed to translation only for possible reordering of +#. the placeholders. +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "{previous_hints}{list_start_tag}{strong_text}{hint_text}" +msgstr "{previous_hints}{list_start_tag}{strong_text}{hint_text}" + +#. Translators: e.g. "Hint 1 of 3: " meaning we are showing the first of three +#. hints. +#. This text is shown in bold before the accompanying hint text. +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "Hint ({hint_num} of {hints_count}): " +msgstr "提示(第 {hint_num} 个,共 {hints_count} 个):" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "" +"Your answers were previously saved. Click '{button_name}' to grade them." +msgstr "您的答案已经保存。点击{button_name}检查看分数。" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "Incorrect ({progress} point)" +msgid_plural "Incorrect ({progress} points)" +msgstr[0] "不正确 ({progress} 分)" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "Correct ({progress} point)" +msgid_plural "Correct ({progress} points)" +msgstr[0] "正确 ({progress} 分)" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "Partially correct ({progress} point)" +msgid_plural "Partially correct ({progress} points)" +msgstr[0] "部分正确 ({progress} 分)" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Partially Correct" +msgstr "部分正确" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Answer submitted." +msgstr "答案已提交。" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem is closed." +msgstr "问题已结束。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be reset before it can be submitted again." +msgstr "在重新检查问题之前必须把它重置。" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "You must wait at least {wait} seconds between submissions." +msgstr "在两次发布之间您至少需要等待{wait}秒。" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "在两次提交之间需要等待 {wait_secs} 秒。还需等待{remaining_secs}秒。" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "{num_hour} hour" +msgid_plural "{num_hour} hours" +msgstr[0] "{num_hour} 小时" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "{num_minute} minute" +msgid_plural "{num_minute} minutes" +msgstr[0] "{num_minute} 分钟" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "{num_second} second" +msgid_plural "{num_second} seconds" +msgstr[0] "{num_second} 秒钟" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem needs to be reset prior to save." +msgstr "问题在保存之前需要重置。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Your answers have been saved." +msgstr "您的答案已保存。" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "" +"Your answers have been saved but not graded. Click '{button_name}' to grade " +"them." +msgstr "您的答案已保存,点击'{button_name}'以供评分。" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You cannot select Reset for a problem that is closed." +msgstr "无法重置已关闭的题目。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You must submit an answer before you can select Reset." +msgstr "您必须先提交答案,再选择重置。" + +#. Translators: 'rescoring' refers to the act of re-submitting a student's +#. solution so it can get a new score. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem's definition does not support rescoring." +msgstr "问题定义不支持重新打分。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be answered before it can be graded again." +msgstr "回答问题后才能够重新评定。" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"We're sorry, there was an error with processing your request. Please try " +"reloading your page and trying again." +msgstr "很抱歉,在处理您的请求时出现错误。请重新加载您的页面并再次尝试操作。" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"The state of this problem has changed since you loaded this page. Please " +"refresh your page." +msgstr "该问题的描述在您加载本页面之后已经发生变化了。请刷新您的页面。" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "Answer ID" +msgstr "答案ID" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "Question" +msgstr "问题" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "Correct Answer" +msgstr "正确答案" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Conditional" +msgstr "条件" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "List of urls of children that are references to external modules" +msgstr "引用外部模块的子URL列表" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Source Components" +msgstr "来源组件" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "" +"The component location IDs of all source components that are used to " +"determine whether a learner is shown the content of this conditional module." +" Copy the component location ID of a component from its Settings dialog in " +"Studio." +msgstr "决定学员是否可见此条件模块内容的所有源组件的组件位置ID。在Studio的设置对话框中复制此组件地址ID。" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Conditional Attribute" +msgstr "条件属性" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "" +"The attribute of the source components that determines whether a learner is " +"shown the content of this conditional module." +msgstr "决定学员是否可见此条件模块内容的源组件的属性。" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Conditional Value" +msgstr "条件值" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "" +"The value that the conditional attribute of the source components must match" +" before a learner is shown the content of this conditional module." +msgstr "在学员可见此条件模块内容前,源组件的条件属性必须匹配的值。" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Blocked Content Message" +msgstr "已屏蔽内容信息" + +#: common/lib/xmodule/xmodule/conditional_module.py +#, python-brace-format +msgid "" +"The message that is shown to learners when not all conditions are met to " +"show the content of this conditional module. Include {link} in the text of " +"your message to give learners a direct link to required units. For example, " +"'You must complete {link} before you can access this unit'." +msgstr "" +"当无法满足显示此条件模块的所有条件时,则显示此条消息。在您的短信中附有获取所需单元的链接{link}。例如:“您必须先完成{link},才能访问此单元”。" + +#: common/lib/xmodule/xmodule/conditional_module.py +#, python-brace-format +msgid "You must complete {link} before you can access this unit." +msgstr "您必须先完成{link},才能访问此单元。" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "This component has no source components configured yet." +msgstr "此组件尚未配置源组件。" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Configure list of sources" +msgstr "配置来源列表" + +#: common/lib/xmodule/xmodule/course_module.py +#, python-brace-format +msgid "" +"The selected proctoring provider, {proctoring_provider}, is not a valid " +"provider. Please select from one of {available_providers}." +msgstr "所选的处理提供程序{proctoring_provider}不是有效的提供程序。请从{available_providers}中选择。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "LTI Passports" +msgstr "LTI 账号" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the passports for course LTI tools in the following format: " +"\"id:client_key:client_secret\"." +msgstr "以下列格式输入课程 LTI 工具的通行证:“id:client_key:client_secret”。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"List of Textbook objects with (title, url) for textbooks used in this course" +msgstr "本课程所用教材的教材目标列表(标题、网址)" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Slug that points to the wiki for this course" +msgstr "指向该课程维基的固定链接地址" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Date that enrollment for this class is opened" +msgstr "选修该课程的日期已经开放" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Date that enrollment for this class is closed" +msgstr "选修该课程的日期已经结束" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Start time when this module is visible" +msgstr "该模块可见的起始时间" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Date that this class ends" +msgstr "该课程结束的日期" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Date that certificates become available to learners" +msgstr "学员可开始申请证书的日期" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Cosmetic Course Display Price" +msgstr "掩饰课程显示价格" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"The cost displayed to students for enrolling in the course. If a paid course" +" registration price is set by an administrator in the database, that price " +"will be displayed instead of this one." +msgstr "费用已经显示给了选修该课程的学生。如果管理员在数据库中修改了付费课程的注册价格,那么该价格将会覆盖原来的费用。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Advertised Start" +msgstr "开课的宣传时间" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the text that you want to use as the advertised starting time frame " +"for the course, such as \"Winter 2018\". If you enter null for this value, " +"the start date that you have set for this course is used." +msgstr "请输入开课的宣传时间,比如“Winter2018”。如果您输入null,则您之前已设置的开课时间会生效。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Pre-Requisite Courses" +msgstr "先修课程" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Pre-Requisite Course key if this course has a pre-requisite course" +msgstr "如果本课程有先修课程,则指定先修课程的课程标识" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Grading policy definition for this class" +msgstr "该课程的评分标准定义" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Show Calculator" +msgstr "显示计算器" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. When true, students can see the calculator in the " +"course." +msgstr "输入true或false。当输入为true时,学生可以造课程中看到计算器。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the name of the course as it should appear in the EliteMBA.cn course " +"list." +msgstr "输入应当出现在 EliteMBA.cn 课程列表中的课程名称。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Display Name" +msgstr "课程显示名字" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Course Editor" +msgstr "课程编辑器" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enter the method by which this course is edited (\"XML\" or \"Studio\")." +msgstr "输入这门课程的编辑方式(“XML”或者“Studio”)。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Survey URL" +msgstr "课程调查链接" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the URL for the end-of-course survey. If your course does not have a " +"survey, enter null." +msgstr "输入课程最终调查的链接URL。如果您的课程没有最终调查,输入null。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Discussion Blackout Dates" +msgstr "讨论管制日期" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter pairs of dates between which students cannot post to discussion " +"forums. Inside the provided brackets, enter an additional set of square " +"brackets surrounding each pair of dates you add. Format each pair of dates " +"as [\"YYYY-MM-DD\", \"YYYY-MM-DD\"]. To specify times as well as dates, " +"format each pair as [\"YYYY-MM-DDTHH:MM\", \"YYYY-MM-DDTHH:MM\"]. Be sure to" +" include the \"T\" between the date and time. For example, an entry defining" +" two blackout periods looks like this, including the outer pair of square " +"brackets: [[\"2015-09-15\", \"2015-09-21\"], [\"2015-10-01\", " +"\"2015-10-08\"]] " +msgstr "" +"输入一对日期,在此期间内不允许学生往在讨论区上发帖。请在所提供的括号之内输入日期,每一对日期应由一组方括号包围,其格式为 [\"YYYY-MM-" +"DD\", \"YYYY-MM-DD\"]。如果还需要指定时间,请使用格式 [\"YYYY-MM-DDTHH:MM\", \"YYYY-MM-" +"DDTHH:MM\"],请确保在日期和时间的中间一定要有“T”。例如,一项定义了两段禁用时期的项应该是如下列格式所示(包括了最外层的一对方括号):[[\"2015-09-15\"," +" \"2015-09-21\"], [\"2015-10-01\", \"2015-10-08\"]]" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Discussion Topic Mapping" +msgstr "讨论主题映射" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter discussion categories in the following format: \"CategoryName\": " +"{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " +"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" +"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " +"must be unique. In \"id\" values, the only special characters that are " +"supported are underscore, hyphen, and period. You can also specify a " +"category as the default for new posts in the Discussion page by setting its " +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" +"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +msgstr "" +"请按照以下格式输入讨论目录:\"课程名称\": {\"id\": \"i4x-InstitutionName-CourseNumber-course-" +"CourseRun\"}。例如:\"Lydian Mode\": {\"id\": \"i4x-UniversityX-MUS101-course-" +"2015_T1\"},其中每个目录的“id”值必须不同。“id”值的输入只支持三种特殊符号:下划线、连字符、句号。您也可以设置讨论页面的默认新帖子目录,只需设置其“默认”属性为“true”,例如:\"Lydian" +" Mode\": {\"id\": \"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": " +"true}。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Discussion Sorting Alphabetical" +msgstr "讨论排序字母" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, discussion categories and subcategories are " +"sorted alphabetically. If false, they are sorted chronologically by creation" +" date and time." +msgstr "请输入true或false。如果为true,讨论类別和子类別会依字母排序。否则按时间顺序排序。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Announcement Date" +msgstr "课程公开日期" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter the date to announce your course." +msgstr "输入公开您课程的日期。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Cohort Configuration" +msgstr "群组配置" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter policy keys and values to enable the cohort feature, define automated " +"student assignment to groups, or identify any course-wide discussion topics " +"as private to cohort members." +msgstr "请输入策略键和值以启用群组功能、定义如何自动将学生分配到群组中、或者将任何全课程范围内的讨论主题标识为对群组成员私有的主题。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Is New" +msgstr "新课程" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, the course appears in the list of new courses " +"on EliteMBA.cn, and a New! badge temporarily appears next to the course " +"image." +msgstr "" +"输入true或者false。如果输入true,课程会出现在EliteMBA.cn的新课程列表中,并且在课程图片旁边会出现一个New!样式的临时图标。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Mobile Course Available" +msgstr "手机端可见的课程" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, the course will be available to mobile " +"devices." +msgstr "请输入true或false,如果为true,这门课程将支持移动设备上学习" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Video Upload Credentials" +msgstr "视频上传凭据" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the unique identifier for your course's video files provided by " +"EliteMBA." +msgstr "请为EliteMBA提供给您的课程视频文件输入唯一标识符。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Not Graded" +msgstr "课程不评分" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter true or false. If true, the course will not be graded." +msgstr "输入 true 或 false。为 true 时,该课程将不会被评分。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Disable Progress Graph" +msgstr "禁用进度图表" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter true or false. If true, students cannot view the progress graph." +msgstr "输入true或者false。如果输入true,学生将不能看到进度图。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "PDF Textbooks" +msgstr "PDF 课本" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "List of dictionaries containing pdf_textbook configuration" +msgstr "字典列表包含pdf_textbook的结构" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "HTML Textbooks" +msgstr "HTML 课本" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"For HTML textbooks that appear as separate tabs in the course, enter the " +"name of the tab (usually the title of the book) as well as the URLs and " +"titles of each chapter in the book." +msgstr "对于在课程中以单独标签显示的 HTML 教材,则输入标签的名称(通常为课本的名称)以及教材每一章节的 URL 和标题。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Remote Gradebook" +msgstr "远程成绩册" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the remote gradebook mapping. Only use this setting when " +"REMOTE_GRADEBOOK_URL has been specified." +msgstr "输入远程的成绩薄映射。只使用此设置时,remote_gradebook_url已被指定。" + +#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using +#. course content. CCX Coach is +#. a role created by a course Instructor to enable a person (the "Coach") to +#. manage the custom course for +#. his students. +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enable CCX" +msgstr "启用CCX" + +#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using +#. course content. CCX Coach is +#. a role created by a course Instructor to enable a person (the "Coach") to +#. manage the custom course for +#. his students. +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Allow course instructors to assign CCX Coach roles, and allow coaches to " +"manage Custom Courses on EliteMBA. When false, Custom Courses cannot be " +"created, but existing Custom Courses will be preserved." +msgstr "" +"允许课程的主讲老师指派CCX指导角色,并允许指导们在EliteMBA上管理自定义课程。当值为“false”时,将不能创建自定义课程,但已有的自定义课程将会保留。" + +#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using +#. course content. +#: common/lib/xmodule/xmodule/course_module.py +msgid "CCX Connector URL" +msgstr "CCX Connector URL" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"URL for CCX Connector application for managing creation of CCXs. (optional)." +" Ignored unless 'Enable CCX' is set to 'true'." +msgstr "" +"URL for CCX Connector application for managing creation of CCXs. (optional)." +" Ignored unless 'Enable CCX' is set to 'true'." + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allow Anonymous Discussion Posts" +msgstr "允许匿名讨论帖" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, students can create discussion posts that are " +"anonymous to all users." +msgstr "输入true或false。如果是true,学生可以匿名创建讨论的帖子。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allow Anonymous Discussion Posts to Peers" +msgstr "允许同伴间的匿名讨论帖" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, students can create discussion posts that are " +"anonymous to other students. This setting does not make posts anonymous to " +"course staff." +msgstr "输入 true 或者 false。如果输入为 true ,学生可以创建对其他学生匿名的讨论帖。这个设置不能对课程工作人员匿名发帖。" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/library_root_xblock.py +msgid "Advanced Module List" +msgstr "高级模块列表" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter the names of the advanced modules to use in your course." +msgstr "请输入您想要加入课程的高级模块名称。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Home Sidebar Name" +msgstr "课程主页的边栏名称" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the heading that you want students to see above your course handouts " +"on the Course Home page. Your course handouts appear in the right panel of " +"the page." +msgstr "输入您想要学生可以在课程首页看到此课程讲义的标题。您的讲义会出现在页面的右边。" + +#: common/lib/xmodule/xmodule/course_module.py +#: lms/templates/courseware/info.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Course Handouts" +msgstr "课程讲义" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"True if timezones should be shown on dates in the course. Deprecated in " +"favor of due_date_display_format." +msgstr "如果课程中的日期上应显示时区则正确。到期_日期_显示_格式已弃用。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Due Date Display Format" +msgstr "截止日期显示格式" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the format for due dates. The default is Mon DD, YYYY. Enter " +"\"%m-%d-%Y\" for MM-DD-YYYY, \"%d-%m-%Y\" for DD-MM-YYYY, \"%Y-%m-%d\" for " +"YYYY-MM-DD, or \"%Y-%d-%m\" for YYYY-DD-MM." +msgstr "" +"输入截止日期的格式,默认的格式是 Mon DD, YYYY。要使用 MM-DD-YYYY 格式,请输入“%m-%d-%Y”;要使用 DD-MM-" +"YYYY,请输入“%d-%m-%Y”;要使用 YYYY-MM-DD 格式,请输入“%Y-%m-%d”;要使用 YYYY-DD-MM " +"格式,请输入“%Y-%d-%m”。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "External Login Domain" +msgstr "外部登录域" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter the external login method students can use for the course." +msgstr "输入学生可参加课程的外部登陆方法。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificates Downloadable Before End" +msgstr "课程结束前可下载证书" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, students can download certificates before the " +"course ends, if they've met certificate requirements." +msgstr "输入真或假。如果是真的,学生遇到下载证书的要求,可以在课程结束前下载证书。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificates Display Behavior" +msgstr "认证演示行为" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter end, early_with_info, or early_no_info. After certificate generation, " +"students who passed see a link to their certificates on the dashboard and " +"students who did not pass see information about the grading configuration. " +"The default is end, which displays this certificate information to all " +"students after the course end date. To display this certificate information " +"to all students as soon as certificates are generated, enter " +"early_with_info. To display only the links to passing students as soon as " +"certificates are generated, enter early_no_info." +msgstr "" +"输入“end”、“early_with_info”或“early_no_info”。在证书生成后,所有通过考核的学生们会在他们的课程面板上看到证书的链接,而没有通过的学生则会看到关于成绩配置的信息。默认值是“end”,即在课程结束日期之后向所有学生显示证书信息。如果希望在证书生成后尽快让所有学生看到证书信息,请输入“early_with_info”。而如果只是希望在证书生成后尽快向已经通过的学生显示链接,请输入“early_no_info”。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course About Page Image" +msgstr "课程介绍页面图片" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Edit the name of the course image file. You must upload this file on the " +"Files & Uploads page. You can also set the course image on the Settings & " +"Details page." +msgstr "" +"编辑课程图片文件的名字。您必须在Files & Uploads页面上传这个文件。您也可以在 Settings & Details页面设置课程图片。" + +#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Banner Image" +msgstr "课程图标" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Edit the name of the banner image file. You can set the banner image on the " +"Settings & Details page." +msgstr "编辑横幅图片文件名称。您可以在设置&详情页面对横幅图片进行设置。" + +#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Video Thumbnail Image" +msgstr "课程视频缩略图" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Edit the name of the video thumbnail image file. You can set the video " +"thumbnail image on the Settings & Details page." +msgstr "编辑视频缩略图文件名称。您可以在设置&详情页面对视频缩略图进行设置。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Issue Open Badges" +msgstr "颁发徽章" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Issue Open Badges badges for this course. Badges are generated when " +"certificates are created." +msgstr "为该课程颁发徽章。徽章在证书创建的时候已经生成了。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Use this setting only when generating PDF certificates. Between quotation " +"marks, enter the short name of the type of certificate that students receive" +" when they complete the course. For instance, \"Certificate\"." +msgstr "" +"只有在要产生证书的PDF档时,才使用这项设定。当学生完成课程所获得的证书,在引文标号中间输入 证书类型简称於学生证书上。例如,“修课证明”。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Name (Short)" +msgstr "证书名称(短)" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Use this setting only when generating PDF certificates. Between quotation " +"marks, enter the long name of the type of certificate that students receive " +"when they complete the course. For instance, \"Certificate of Achievement\"." +msgstr "" +"只有在要产生证书的PDF档时,才使用这项设定。当学生完成课程所获得的证书,在引文标号中间输入 证书类型全名於学生证书上。例如,“成绩证书”。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Name (Long)" +msgstr "证书名称(长)" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Web/HTML View Enabled" +msgstr "启用证书的Web/HTML视图" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "If true, certificate Web/HTML views are enabled for the course." +msgstr "若为“true”,将会启用课程证书的Web/HTML视图。" + +#. Translators: This field is the container for course-specific certificate +#. configuration values +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Web/HTML View Overrides" +msgstr "证书 Web/HTML View Overrides" + +#. Translators: These overrides allow for an alternative configuration of the +#. certificate web view +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter course-specific overrides for the Web/HTML template parameters here " +"(JSON format)" +msgstr "为网页模板参数输入课程指定的接口(JSON格式)" + +#. Translators: This field is the container for course-specific certificate +#. configuration values +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Configuration" +msgstr "证书配置" + +#. Translators: These overrides allow for an alternative configuration of the +#. certificate web view +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter course-specific configuration information here (JSON format)" +msgstr "在这里输入课程指定的配置信息(JSON格式)" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "CSS Class for Course Reruns" +msgstr "重新开课的 CSS 类" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Allows courses to share the same css class across runs even if they have " +"different numbers." +msgstr "即使他们有不同的数字,也可以允许课程在运行过程中共享相同的CSS类。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Discussion Forum External Link" +msgstr "讨论区的外部链接" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allows specification of an external link to replace discussion forums." +msgstr "允许更换论坛外部链接规范。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Hide Progress Tab" +msgstr "隐藏进度页面" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allows hiding of the progress tab." +msgstr "允许进程选项卡隐藏。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Organization Display String" +msgstr "课程所属机构的显示名称" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the course organization that you want to appear in the course. This " +"setting overrides the organization that you entered when you created the " +"course. To use the organization that you entered when you created the " +"course, enter null." +msgstr "输入您想在课程中出现的课程安排。此设置将覆盖您在创建课程时输入的课程安排。要使用您在创建课程时输入的课程安排,请输入空值。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Number Display String" +msgstr "课程编号的显示名称" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the course number that you want to appear in the course. This setting " +"overrides the course number that you entered when you created the course. To" +" use the course number that you entered when you created the course, enter " +"null." +msgstr "输入您想在课程中出现的课程编号。此设置将覆盖您在创建课程时输入的课程编号。要使用您在创建课程时输入的课程编号,请输入空值。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Maximum Student Enrollment" +msgstr "最大选课学生人数" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the maximum number of students that can enroll in the course. To allow" +" an unlimited number of students, enter null." +msgstr "输入该课程的最大选课学生人数;如无限制,输入null。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allow Public Wiki Access" +msgstr "允许公共 Wiki 访问" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, EliteMBA users can view the course wiki even " +"if they're not enrolled in the course." +msgstr "输入true或false。如果为true,EliteMBA用户即使未选修该课程也可以查看课程Wiki 。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Invitation Only" +msgstr "仅限受邀者" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Whether to restrict enrollment to invitation by the course staff." +msgstr "是否限制注册仅能透过课程工作人员邀请。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Pre-Course Survey Name" +msgstr "课前调查名称" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Name of SurveyForm to display as a pre-course survey to the user." +msgstr "用以显示的调查表(用户的先修课程调查)名称" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Pre-Course Survey Required" +msgstr "开课前需要填写调查问卷" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Specify whether students must complete a survey before they can view your " +"course content. If you set this value to true, you must add a name for the " +"survey to the Course Survey Name setting above." +msgstr "指定学生在查看您的课程内容之前是否必须完成一项调查。如果您设置该值为true,那么您必须在以上的课程调查名称设置中为该调查添加一个名称。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Visibility In Catalog" +msgstr "目录中课程可见性" + +#. Translators: the quoted words 'both', 'about', and 'none' must be +#. left untranslated. Leave them as English words. +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Defines the access permissions for showing the course in the course catalog." +" This can be set to one of three values: 'both' (show in catalog and allow " +"access to about page), 'about' (only allow access to about page), 'none' (do" +" not show in catalog and do not allow access to an about page)." +msgstr "" +"定义在课程目录中的显示课程的访问权限。可以设置为以下三个值的其中之一:“both”(在目录中显示且允许访问关于此页),“about”(只允许访问关于此页),“none”(不在目录中显示且不允许访问关于此页)。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Entrance Exam Enabled" +msgstr "入学考试开启" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Specify whether students must complete an entrance exam before they can view" +" your course content. Note, you must enable Entrance Exams for this course " +"setting to take effect." +msgstr "指定是否学生在浏览您的课程内容前必须完成一个入学考试。注意,您必须烤漆此课程设置的入学考试以便此设置起作用。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Entrance Exam Minimum Score (%)" +msgstr "入学考试最小分数(%)" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Specify a minimum percentage score for an entrance exam before students can " +"view your course content. Note, you must enable Entrance Exams for this " +"course setting to take effect." +msgstr "为学生能浏览您的课程前的入学考试定义一个的最小的百分比分数。注意,您必须开启此课程设置的入学考试以便此设置起作用。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Entrance Exam ID" +msgstr "入学考试ID" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Content module identifier (location) of entrance exam." +msgstr "入学考试内容模块标识符(位置)" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Social Media Sharing URL" +msgstr "社交媒体分享URL" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"If dashboard social sharing and custom course URLs are enabled, you can " +"provide a URL (such as the URL to a course About page) that social media " +"sites can link to. URLs must be fully qualified. For example: " +"http://www.edx.org/course/Introduction-to-MOOCs-ITM001" +msgstr "" +"若启动了课程面板的社交分享和自定义课程的URL功能,您则可以提供一个可链接社交媒体的URL(例如课程“关于此页”的URL)。所用的URL是完全规范合法的,例如:http://www.edx.org/course" +"/Introduction-to-MOOCs-ITM001" + +#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Language" +msgstr "课程语言" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Specify the language of your course." +msgstr "指定您的课程语言。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Teams Configuration" +msgstr "团队配置" + +#: common/lib/xmodule/xmodule/course_module.py +#, python-brace-format +msgid "" +"Specify the maximum team size and topics for teams inside the provided set " +"of curly braces. Make sure that you enclose all of the sets of topic values " +"within a set of square brackets, with a comma after the closing curly brace " +"for each topic, and another comma after the closing square brackets. For " +"example, to specify that teams should have a maximum of 5 participants and " +"provide a list of 2 topics, enter the configuration in this format: " +"{example_format}. In \"id\" values, the only supported special characters " +"are underscore, hyphen, and period." +msgstr "" +"将指定最大规模的团队和主题放置于大括号内。请确认您所有主题字段皆放置于中括号之内,每个主题大括号后加注逗号,而另一个逗号放加於中括号后。例如,指定团队应该最多5人为限,并提供2个主题,以这种形式进入配置" +" {example_format}。 \"id\"字段只支援特定符合,包括底线、破折号及句点。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enable Proctored Exams" +msgstr "启用监考考试" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, proctored exams are enabled in " +"your course. Note that enabling proctored exams will also enable timed " +"exams." +msgstr "输入 true 或 false。如果该值为true,监考的考试是在您的课程启用。请注意,使监考考试也将启动 限时考试。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Proctoring Provider" +msgstr "监考提供者" + +#: common/lib/xmodule/xmodule/course_module.py +#, python-brace-format +msgid "" +"Enter the proctoring provider you want to use for this course run. Choose " +"from the following options: {available_providers}." +msgstr "输入要用于本课程运行的监考提供程序。 从以下选项中选择: {available_providers}" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allow Opting Out of Proctored Exams" +msgstr "允许在监考下退出考试" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, learners can choose to take " +"proctored exams without proctoring. If this value is false, all learners " +"must take the exam with proctoring. This setting only applies if proctored " +"exams are enabled for the course." +msgstr "" +"请输入“true”或“false”。如果输入“true”,那么学员可以选择关掉监考模式。如果输入“false”,那么学员无法关掉监考模式。此设置仅适用于已启动监考模式的课程。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Create Zendesk Tickets For Suspicious Proctored Exam Attempts" +msgstr "对有作弊嫌疑的考试创建Zendesk记录" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, a Zendesk ticket will be created" +" for suspicious attempts." +msgstr "请输入true或false。如果输入true,那么会对有作弊嫌疑的考试创建Zendesk记录。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enable Timed Exams" +msgstr "启用限时考试" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, timed exams are enabled in your " +"course. Regardless of this setting, timed exams are enabled if Enable " +"Proctored Exams is set to true." +msgstr "" +"输入“true”或“false”。如果输入“true”,课程会开启限时考试模式。如果监考模式值设成“true”,那么无论此选项如何设置,限时考试模式都会开启。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Minimum Grade for Credit" +msgstr "能够获取学分的最低分" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"The minimum grade that a learner must earn to receive credit in the course, " +"as a decimal between 0.0 and 1.0. For example, for 75%, enter 0.75." +msgstr "" +"最低分,是指学员在课程中为获得学分必须取得的分数,是一个0.0到\n" +"1.0的十进制数。例如:75%,则输入0.75。" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Self Paced" +msgstr "自定进度" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Set this to \"true\" to mark this course as self-paced. Self-paced courses " +"do not have due dates for assignments, and students can progress through the" +" course at any rate before the course ends." +msgstr "将其设置为“true”,以设定这门课程为自学课程,没有截止日期的作业,学生可以在任何速度在课程结束之前进行学习。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Bypass Course Home" +msgstr "跳过课程主页" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Bypass the course home tab when students arrive from the dashboard, sending " +"them directly to course content." +msgstr "当学生从仪表板进入时跳过课程主页选项卡,让他们直接跳转到课程目录。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enable Subsection Prerequisites" +msgstr "可分段先修之要求" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, you can hide a subsection until " +"learners earn a minimum score in another, prerequisite subsection." +msgstr "输入 true 或 false。如果该值为 true,您可以隐藏某分段,直到学习者获得最低分数为止。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Learning Information" +msgstr "课程学习信息" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Specify what student can learn from the course." +msgstr "请设置课程教学细节。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Visibility For Unenrolled Learners" +msgstr "未选课学员课程可见情况" + +#. Translators: the quoted words 'private', 'public_outline', and 'public' +#. must be left untranslated. Leave them as English words. +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Defines the access permissions for unenrolled learners. This can be set to " +"one of three values: 'private' (default visibility, only allowed for " +"enrolled students), 'public_outline' (allow access to course outline) and " +"'public' (allow access to both outline and course content)." +msgstr "" +"定义未登记学员的访问权限。这可以设置为三个值之一: “private” (默认可见性,只允许在册学生使用)、“public_outline” " +"(允许访问课程概述)和 “public”(允许访问概述和课程内容)。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Instructor" +msgstr "课程导师" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter the details for Course Instructor" +msgstr "请输入授课老师详细信息" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Add Unsupported Problems and Tools" +msgstr "添加不支持的题目和工具" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, you can add unsupported problems and tools to " +"your course in Studio. Unsupported problems and tools are not recommended " +"for use in courses due to non-compliance with one or more of the base " +"requirements, such as testing, accessibility, internationalization, and " +"documentation." +msgstr "" +"请输入“true”或“false”。如果您输入“true”,那么可以在Studio中将不支持的题目和工具添加至课程中。由于与测试、公开权限、国际化和文件归档等基础要求相抵触,所以不推荐在课程中使用不支持的题目和工具。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Highlights Enabled for Messaging" +msgstr "启用消息通知重点内容" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, any highlights associated with content in the " +"course will be messaged to learners at their scheduled time." +msgstr "请输入true或false,如果输入true,那么任何与课程内容有关的标亮内容都将会在学员的规定时间内被发送给学员。" + +#: common/lib/xmodule/xmodule/course_module.py cms/templates/certificates.html +#: cms/templates/group_configurations.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Other Course Settings" +msgstr "课程其他设置" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Any additional information about the course that the platform needs or that " +"allows integration with external systems such as CRM software. Enter a " +"dictionary of values in JSON format, such as { \"my_custom_setting\": " +"\"value\", \"other_setting\": \"value\" }" +msgstr "" +"平台需要的课程或允许与CRM软件等外部系统集成的任何额外信息。输入JSON格式的值字典,例如{ \"my_custom_setting\": " +"\"value\", \"other_setting\": \"value\" }" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "General" +msgstr "一般" + +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "{assignment_type} = {weighted_percent:.2%} of a possible {weight:.2%}" +msgstr "{assignment_type} = {weighted_percent:.2%} of a possible {weight:.2%}" + +#: common/lib/xmodule/xmodule/graders.py +msgid "Generated" +msgstr "已生成" + +#. Translators: "Homework 1 - Unreleased - 0% (?/?)" The section has not been +#. released for viewing. +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "{section_type} {index} Unreleased - 0% (?/?)" +msgstr "{section_type} {index} 未公开 - 0% (?/?)" + +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "The lowest {drop_count} {section_type} scores are dropped." +msgstr "最低{drop_count} {section_type}分的科目会被弃用。" + +#. Translators: "Homework Average = 0%" +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "{section_type} Average = {percent:.0%}" +msgstr "{section_type} 平均分 = {percent:.0%}" + +#. Translators: Avg is short for Average +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "{short_label} Avg" +msgstr "{short_label} 平均分" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Text" +msgstr "文本" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Html contents to display for this module" +msgstr "本模块显示Html的内容" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Source code for LaTeX documents. This feature is not well-supported." +msgstr "此功能不支持LaTeX文件的源代码。" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "" +"Select Visual to enter content and have the editor automatically create the " +"HTML. Select Raw to edit HTML directly. If you change this setting, you must" +" save the component and then re-open it for editing." +msgstr "" +"选择“可视化”时,您只需输入内容,编辑器将生成相应的 HTML 代码。选择“代码”时,您可以直接编辑 HTML " +"代码。如果您改变了该设置,则该设置将在您保存并重新打开编辑器才生效。" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Editor" +msgstr "编辑器" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Visual" +msgstr "可视化" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Raw" +msgstr "代码" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Hide Page From Learners" +msgstr "对所有学生隐藏这一页" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "" +"If you select this option, only course team members with the Staff or Admin " +"role see this page." +msgstr "如果您勾选此选项,那么只有员工或管理员身份的课程团队成员才能浏览此界面。" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "HTML for the additional pages" +msgstr "额外的HTML页面" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "List of course update items" +msgstr "更新课程项目列表" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Any Type" +msgstr "任意类型" + +#: common/lib/xmodule/xmodule/library_content_module.py +#: cms/templates/widgets/header.html +msgid "Library" +msgstr "知识库" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Select the library from which you want to draw content." +msgstr "选择您想要从中拉取内容的知识库。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Library Version" +msgstr "知识库版本" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Determines how content is drawn from the library" +msgstr "确定内容如何被从知识库中拉取" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Choose n at random" +msgstr "随机选择一个数字n" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Count" +msgstr "计算" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Enter the number of components to display to each student." +msgstr "输入显示给每个学生的组件数量。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Problem Type" +msgstr "问题类型" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "" +"Choose a problem type to fetch from the library. If \"Any Type\" is selected" +" no filtering is applied." +msgstr "选择一个要从知识库中获取的问题类型,如果选择了“任意类型”,则不应用任何筛选。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "This component is out of date. The library has new content." +msgstr "该组件已过时。知识库有新的内容。" + +#. Translators: {refresh_icon} placeholder is substituted to "↻" (without +#. double quotes) +#: common/lib/xmodule/xmodule/library_content_module.py +#, python-brace-format +msgid "{refresh_icon} Update now." +msgstr "{refresh_icon} 立即更新。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Library is invalid, corrupt, or has been deleted." +msgstr "知识库无效,损坏或已经被删除。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Edit Library List." +msgstr "编辑库列表。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "" +"This course does not support content libraries. Contact your system " +"administrator for more information." +msgstr "此课程不支持内容库。联系您的系统管理员以获得更多信息。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "A library has not yet been selected." +msgstr "未选择一个知识库。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Select a Library." +msgstr "选择一个知识库。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "There are no matching problem types in the specified libraries." +msgstr "指定知识库中没有匹配的问题类型。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Select another problem type." +msgstr "选择其他问题类型。" + +#: common/lib/xmodule/xmodule/library_content_module.py +#, python-brace-format +msgid "The specified library is configured to fetch {count} problem, " +msgid_plural "The specified library is configured to fetch {count} problems, " +msgstr[0] "此专用库旨在用于取回 {count} 个问题," + +#: common/lib/xmodule/xmodule/library_content_module.py +#, python-brace-format +msgid "but there is only {actual} matching problem." +msgid_plural "but there are only {actual} matching problems." +msgstr[0] "但仅有 {actual} 个匹配问题。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Edit the library configuration." +msgstr "编辑知识库配置。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Invalid Library" +msgstr "无效的知识库" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "No Library Selected" +msgstr "未选择知识库" + +#: common/lib/xmodule/xmodule/library_root_xblock.py +msgid "Library Display Name" +msgstr "知识库显示名称" + +#: common/lib/xmodule/xmodule/library_root_xblock.py +msgid "Enter the names of the advanced components to use in your library." +msgstr "输入在您的知识库中使用的高级组件的名字。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"The display name for this component. Analytics reports may also use the " +"display name to identify this component." +msgstr "此组件的显示名称,分析报告也可使用该名称来识别此组件。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "LTI ID" +msgstr "LTI ID" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Enter the LTI ID for the external LTI provider. This value must be the same" +" LTI ID that you entered in the LTI Passports setting on the Advanced " +"Settings page.
    See {docs_anchor_open}the edX LTI " +"documentation{anchor_close} for more details on this setting." +msgstr "" +"输入外部LTI提供商提供的LTI编号。该值必须和您的LTI账号里高级设置里的LTI编号相同。
    关于该设置的更多信息请访问 " +"{docs_anchor_open}LTI 文档{anchor_close} " + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "LTI URL" +msgstr "LTI URL" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Enter the URL of the external tool that this component launches. This " +"setting is only used when Hide External Tool is set to False.
    See " +"{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " +"on this setting." +msgstr "" +"输入启动该组件的外部工具的URL。这个设置只有在“隐藏外部工具”为False时才能使用。
    关于该设置的更多信息请访问{docs_anchor_open}edX LTI文档{anchor_close}。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Custom Parameters" +msgstr "自定义参数" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Add the key/value pair for any custom parameters, such as the page your " +"e-book should open to or the background color for this component.
    See " +"{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " +"on this setting." +msgstr "" +"任意自定义的参数都要添加键/值且成对,例如您要打开的电子书的页面或者这个组件的背景颜色。
    这项设置的更多信息请查看{docs_anchor_open}edX LTI文档{anchor_close} " + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Open in New Page" +msgstr "在新的窗口打开" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Select True if you want students to click a link that opens the LTI tool in " +"a new window. Select False if you want the LTI content to open in an IFrame " +"in the current page. This setting is only used when Hide External Tool is " +"set to False. " +msgstr "" +"如果您想要学生通过点击一个链接在一个新窗口中打开LTI工具,选择True。如果您想要在当前页面的一个IFrame中打开LTI内容,选择False。这个设置只有在" +" 隐藏外部工具 设置为False的时候才能使用。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Scored" +msgstr "可评分" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Select True if this component will receive a numerical score from the " +"external LTI system." +msgstr "如果允许该组件接收来自外部的LTI系统的数值分数请选择True。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Weight" +msgstr "权重" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Enter the number of points possible for this component. The default value " +"is 1.0. This setting is only used when Scored is set to True." +msgstr "输入该组件可能的分数,默认值为 1.0。该设置仅在“可评分”设置为true的时候才有用。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"The score kept in the xblock KVS -- duplicate of the published score in " +"django DB" +msgstr "分数保存在xblock KVS中——已公布分数的分本存储在django数据库中" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Comment as returned from grader, LTI2.0 spec" +msgstr "Comment as returned from grader, LTI2.0 spec" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Hide External Tool" +msgstr "隐藏扩展工具" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Select True if you want to use this component as a placeholder for syncing " +"with an external grading system rather than launch an external tool. This " +"setting hides the Launch button and any IFrames for this component." +msgstr "" +"若您想要使用该组件作为一个与外部评分系统同步的占位符,而不是启动一个外部工具,则设该值为Ture。该设置会隐藏启动按钮和该组件的任何内联框架。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Request user's username" +msgstr "需要用户名" + +#. Translators: This is used to request the user's username for a third party +#. service. +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Select True to request the user's username." +msgstr "选择True 以要求用户的用户名 username。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Request user's email" +msgstr "需要用户邮箱" + +#. Translators: This is used to request the user's email for a third party +#. service. +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Select True to request the user's email address." +msgstr "选择True 以要求用户的电子邮件地址。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "LTI Application Information" +msgstr "LTI应用信息" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Enter a description of the third party application. If requesting username " +"and/or email, use this text box to inform users why their username and/or " +"email will be forwarded to a third party application." +msgstr "输入第三方应用程序的描述。用来告诉用户为什么第三方应用程序需要用户的用户名及E-mail。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Button Text" +msgstr "按钮文本" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Enter the text on the button used to launch the third party application." +msgstr "输入按钮上的文字用于加载第三方应用。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Accept grades past deadline" +msgstr "接受超过限期的成绩" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Select True to allow third party systems to post grades past the deadline." +msgstr "请选择“True”以同意第三方系统在截止日期之后发布成绩。" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "无法解析自定义参数:{custom_parameter}。参数格式必须类似于“x=y”。" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "无法解析LTI通行证:{lti_passport},这应当是一个由“id:key:secret”构成的字符串。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#: common/lib/xmodule/xmodule/seq_module.py lms/templates/ccx/schedule.html +msgid "Due Date" +msgstr "截止日期" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enter the default date by which problems are due." +msgstr "输入问题的默认截止日期。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#: lms/djangoapps/lms_xblock/mixin.py +msgid "If true, can be seen only by course staff, regardless of start date." +msgstr "如果为真,则无论开始日期为何时都只能被课程员工看到。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "GIT URL" +msgstr "GIT URL" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enter the URL for the course data GIT repository." +msgstr "为课程数据GIT仓库输入URL" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "XQA Key" +msgstr "XQA 密钥" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "This setting is not currently supported." +msgstr "当前不支持此设置。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enter the ids for the content groups this problem belongs to." +msgstr "输入这个问题所属的内容组的编号。" + +#. Translators: DO NOT translate the words in quotes here, they are +#. specific words for the acceptable values. +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Specify when the Show Answer button appears for each problem. Valid values " +"are \"always\", \"answered\", \"attempted\", \"closed\", \"finished\", " +"\"past_due\", \"correct_or_past_due\", and \"never\"." +msgstr "" +"在每个问题中何时出现显示答案按钮,有效值是:“always”,“answered”,“attempted”,“closed”,“finished”,“past_due”," +" \"correct_or_past_due\"和“never”。" + +#. Translators: DO NOT translate the words in quotes here, they are +#. specific words for the acceptable values. +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Specify when to show answer correctness and score to learners. Valid values " +"are \"always\", \"never\", and \"past_due\"." +msgstr "请设置显示答案是否正确和分数的方式。有效值为\"always\"、\"never\"和\"past_due\"。" + +#. Translators: DO NOT translate the words in quotes here, they are +#. specific words for the acceptable values. +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Specify the default for how often variable values in a problem are " +"randomized. This setting should be set to \"never\" unless you plan to " +"provide a Python script to identify and randomize values in most of the " +"problems in your course. Valid values are \"always\", \"onreset\", " +"\"never\", and \"per_student\"." +msgstr "" +"指定隐含变量值多久会发生问题是采随机系统默认。此设定应设为“从不”,除非您打算提供一个Python script " +"来随机辨识您的课程中大部分问题。有效字段为“永远”,“当reset 时”,“从不”,以及“每名学生”。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Days Early for Beta Users" +msgstr "Beta 测试用户提前访问天数" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the number of days before the start date that beta users can access " +"the course." +msgstr "输入课程测试员可以提前访问课程的天数。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Static Asset Path" +msgstr "静态资源路径" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the path to use for files on the Files & Uploads page. This value " +"overrides the Studio default, c4x://." +msgstr "请输入要使用的文件&上传页面中文件的路径。这将覆盖 Studio 的默认值(c4x:// 格式)。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enable LaTeX Compiler" +msgstr "启用 LaTeX 编译器" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, you can use the LaTeX templates for HTML " +"components and advanced Problem components." +msgstr "请输入true或false,当输入为true时,您可以使用LaTeX编辑器,编辑HTML模块和问题模块。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the maximum number of times a student can try to answer problems. By " +"default, Maximum Attempts is set to null, meaning that students have an " +"unlimited number of attempts for problems. You can override this course-wide" +" setting for individual problems. However, if the course-wide setting is a " +"specific number, you cannot set the Maximum Attempts for individual problems" +" to unlimited." +msgstr "" +"请输入学生可以尝试回答问题的最大次数。最大尝试次数默认被设置为null,也就是说学生可以无限制的尝试回答问题。对于不同的问题您可以设置不同的回答次数限制。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the API key provided by MathWorks for accessing the MATLAB Hosted " +"Service. This key is granted for exclusive use in this course for the " +"specified duration. Do not share the API key with other courses. Notify " +"MathWorks immediately if you believe the key is exposed or compromised. To " +"obtain a key for your course, or to report an issue, please contact " +"moocsupport@mathworks.com" +msgstr "" +"请输入由 MathWorks 提供的、用于访问 MATLAB 宿主服务的 API Key 。请保证该 API Key " +"在指定的一段时间内由本课程独占使用,不要与其他课程共享该 API Key 。如果您确认 API Key 泄露或受损,请立刻通知 MathWorks " +"。要为您的课程获取 API Key 或报告问题,请联系 moocsupport@mathworks.com" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Group Configurations" +msgstr "组配置" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the configurations that govern how students are grouped together." +msgstr "请输入学生分组的标准。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enable video caching system" +msgstr "启用视频缓存系统" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, video caching will be used for HTML5 videos." +msgstr "请输入true或者false。如果输入true,HTML5的视频将被缓存。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enable video auto-advance" +msgstr "自动播放下一个视频" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Specify whether to show an auto-advance button in videos. If the student " +"clicks it, when the last video in a unit finishes it will automatically move" +" to the next unit and autoplay the first video." +msgstr "" +"是否在视频中显示自动播放下一个视频按钮。如果学员点击该按钮,则当一个单元内的视频播放完成时,会自动跳转至下一个单元并播放该单元的第一个视频。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Video Pre-Roll" +msgstr "Video Pre-Roll" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#, python-brace-format +msgid "" +"Identify a video, 5-10 seconds in length, to play before course videos. " +"Enter the video ID from the Video Uploads page and one or more transcript " +"files in the following format: {format}. For example, an entry for a video " +"with two transcripts looks like this: {example}" +msgstr "" +"课程视频前指定一个 5-10 秒的视频。从 Video Uploads 中输入 Video " +"ID,以及一个或多个字幕档,以下面的格式:{format}。例如,使用两个字幕档的一段视频如同: {example}" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Show Reset Button for Problems" +msgstr "为问题显示重置按钮" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, problems in the course default to always " +"displaying a 'Reset' button. You can override this in each problem's " +"settings. All existing problems are affected when this course-wide setting " +"is changed." +msgstr "" +"输入true或false。为true时,课程中的问题总是默认显示一个“重置”按钮,您可以在每个问题的设置中重设。当该课程范围内的设置改变时,所有已存在的问题都将受影响。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enable Student Notes" +msgstr "启用学生笔记" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, students can use the Student Notes feature." +msgstr "输入true或false。为true时,学生可以使用学生笔记特性。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Indicates whether Student Notes are visible in the course. Students can also" +" show or hide their notes in the courseware." +msgstr "表明学生笔记是否在课程中可见。学生也可以在课件中显示或隐藏他们的笔记。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Tag this module as part of an Entrance Exam section" +msgstr "标记该模块为入学考试的部分" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, answer submissions for problem modules will be" +" considered in the Entrance Exam scoring/gating algorithm." +msgstr "输入true或false。若为true,问题模块的答案提交将会被考虑在入学考试的得分/控制算法中。" + +#: common/lib/xmodule/xmodule/partitions/partitions_service.py +#: cms/templates/group_configurations.html +msgid "Enrollment Track Groups" +msgstr "选课记录组" + +#: common/lib/xmodule/xmodule/partitions/partitions_service.py +msgid "Partition for segmenting users by enrollment track" +msgstr "通过选课记录划分用户的分区" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Whether this student has voted on the poll" +msgstr "这个学生是否已经投票" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Student answer" +msgstr "学生答案" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Poll answers from all students" +msgstr "来自所有学生的轮询" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Poll answers from xml" +msgstr "来自 xml 的投票选项" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Poll question" +msgstr "投票问题" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Enter the date by which problems are due." +msgstr "输入问题的截止日期。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Hide sequence content After Due Date" +msgstr "截止日期后隐藏序列内容" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"If set, the sequence content is hidden for non-staff users after the due " +"date has passed." +msgstr "如果设置此项,那么非工作人员用户将无法再截止日期过后查看后续内容。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Entrance Exam" +msgstr "是入学考试" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"Tag this course module as an Entrance Exam. Note, you must enable Entrance " +"Exams for this course setting to take effect." +msgstr "标记该课程模块作为入学考试。注意,您必须开启此课程设置的入学考试功能才可生效。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Time Limited" +msgstr "时间是否受限" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This setting indicates whether students have a limited time to view or " +"interact with this courseware component." +msgstr "该设置表明学生是否有一段有限的时间去查看或与课件组件交互。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Time Limit in Minutes" +msgstr "时间限制在几分钟内" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"The number of minutes available to students for viewing or interacting with " +"this courseware component." +msgstr "学生可查看或与课件交互的时间(分钟)。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Proctoring Enabled" +msgstr "是否启动监考" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "This setting indicates whether this exam is a proctored exam." +msgstr "该设置表明这场考试是否有人监考。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Software Secure Review Rules" +msgstr "软体安全审查规则" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This setting indicates what rules the proctoring team should follow when " +"viewing the videos." +msgstr "此设定表示在浏览视频时,团队必须遵循监考的规则。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Practice Exam" +msgstr "是否是模拟考试" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This setting indicates whether this exam is for testing purposes only. " +"Practice exams are not verified." +msgstr "该设置表明这场考试是否仅用于测试目的。模拟考试未经过身份认证。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This subsection is unlocked for learners when they meet the prerequisite " +"requirements." +msgstr "满足先修条件的学员可解锁此节内容。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "This exam is hidden from the learner." +msgstr "本次考试对学员隐藏。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"Because the course has ended, this assignment is hidden from the learner." +msgstr "由于课程已结束,所以此学员无法查看此作业。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"Because the due date has passed, this assignment is hidden from the learner." +msgstr "由于已超过截止日期,所以学员无法查看此作业。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This section is a prerequisite. You must complete this section in order to " +"unlock additional content." +msgstr "此章内容为先修条件,您必须先完成此章学习才可以解锁额外内容。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"A list summarizing what students should look forward to in this section." +msgstr "此章的内容概况列表。" + +#: common/lib/xmodule/xmodule/split_test_module.py +#, python-brace-format +msgid "Group ID {group_id}" +msgstr "组号{group_id}" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Not Selected" +msgstr "未选中" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "The display name for this component. (Not shown to learners)" +msgstr "此组件的显示名称(学员不可见)。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Content Experiment" +msgstr "实验内容" + +#: common/lib/xmodule/xmodule/split_test_module.py +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"The list of group configurations for partitioning students in content " +"experiments." +msgstr "在内容实验中学生分组的组配置列表。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The configuration defines how users are grouped for this content experiment." +" Caution: Changing the group configuration of a student-visible experiment " +"will impact the experiment data." +msgstr "该配置定义了用户如何为该内容实验分组。谨记:改变一个学生可见实验的组配置会影响实验数据。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Group Configuration" +msgstr "组配置" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Which child module students in a particular group_id should see" +msgstr "哪个子模块学生将会被特別的gouup_id所检视" + +#: common/lib/xmodule/xmodule/split_test_module.py +#, python-brace-format +msgid "{group_name} (inactive)" +msgstr "{group_name} (未激活)" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "The experiment is not associated with a group configuration." +msgstr "实验未与任何群组设定关联。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Select a Group Configuration" +msgstr "选择一个组别配置" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The experiment uses a deleted group configuration. Select a valid group " +"configuration or delete this experiment." +msgstr "该实验使用了一个已删除的组配置。请选择一个有效的组配置或删除该实验。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The experiment uses a group configuration that is not supported for " +"experiments. Select a valid group configuration or delete this experiment." +msgstr "该实验使用了一个实验不支持的组配置。请选择一个有效的组配置或删除该实验。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The experiment does not contain all of the groups in the configuration." +msgstr "该实验不包含配置中所有的组。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Add Missing Groups" +msgstr "增加丢失的分组" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The experiment has an inactive group. Move content into active groups, then " +"delete the inactive group." +msgstr "该实验有一个不活跃的小组。将其内容移至活跃的小组中,然后删除该不活跃的小组。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "This content experiment has issues that affect content visibility." +msgstr "该内容实验可能影响内容可见性。" + +#: common/lib/xmodule/xmodule/tabs.py +msgid "External Discussion" +msgstr "外部讨论" + +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +msgid "Home" +msgstr "主页" + +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +#: lms/djangoapps/courseware/views/views.py +#: lms/djangoapps/shoppingcart/reports.py +#: openedx/features/course_experience/__init__.py +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/courseware.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Course" +msgstr "课程" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +#, python-brace-format +msgid "" +"Can't receive transcripts from Youtube for {youtube_id}. Status code: " +"{status_code}." +msgstr "不能从Youtube接受{youtube_id}的成绩单。状态码为:{status_code}。" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "We support only SubRip (*.srt) transcripts format." +msgstr "我们只支持SubRip (*.srt)格式的字幕。" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +#, python-brace-format +msgid "" +"Something wrong with SubRip transcripts file during parsing. Inner message " +"is {error_message}" +msgstr "解析SubRip字幕文件时出错。内部消息是{error_message}" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Something wrong with SubRip transcripts file during parsing." +msgstr "解析SubRip字幕文件时出错。" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +#, python-brace-format +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "{exception_message}: 找不到上传的成绩单: {user_filename}" + +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +msgid "Language is required." +msgstr "语言是必填项" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "Basic" +msgstr "基本" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +#, python-brace-format +msgid "There is no transcript file associated with the {lang} language." +msgid_plural "" +"There are no transcript files associated with the {lang} languages." +msgstr[0] "没有与 {lang} 相关联的字幕文件。" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "" +"The URL for your video. This can be a YouTube URL or a link to an .mp4, " +".ogg, or .webm video file hosted elsewhere on the Internet." +msgstr "" +"该地址指向视频链接。这可能是一个YouTube的网址或者一个存储于其他互联网服务器的 .mp4, .ogg, 或者.webm 格式视频的链接地址。" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "Default Video URL" +msgstr "默认的视频 URL" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Component Display Name" +msgstr "组件显示名称" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Current position in the video." +msgstr "视频的当前位置。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Optional, for older browsers: the YouTube ID for the normal speed video." +msgstr "可选,针对较早的浏览器:正常速度视频的 YouTube ID。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "YouTube ID" +msgstr "YouTube ID" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Optional, for older browsers: the YouTube ID for the .75x speed video." +msgstr "可选,针对较早的浏览器:0.75 倍速视频的 YouTube ID。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "YouTube ID for .75x speed" +msgstr "YouTube ID(0.75 倍速)" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Optional, for older browsers: the YouTube ID for the 1.25x speed video." +msgstr "可选,针对较早的浏览器:1.25 倍速视频的 YouTube ID。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "YouTube ID for 1.25x speed" +msgstr "YouTube ID(1.25 倍速)" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Optional, for older browsers: the YouTube ID for the 1.5x speed video." +msgstr "可选,针对较早的浏览器:1.5 倍速视频的 YouTube ID。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "YouTube ID for 1.5x speed" +msgstr "YouTube ID(1.5 倍速)" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Time you want the video to start if you don't want the entire video to play." +" Not supported in the native mobile app: the full video file will play. " +"Formatted as HH:MM:SS. The maximum value is 23:59:59." +msgstr "" +"如果不希望播放整个视频,则在此提供视频播放的开始时间。该操作在本地的移动应用上不支持,即播放完整视频。格式为:HH:MM:SS,最大值为23:59:59。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video Start Time" +msgstr "视频开始时间" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Time you want the video to stop if you don't want the entire video to play. " +"Not supported in the native mobile app: the full video file will play. " +"Formatted as HH:MM:SS. The maximum value is 23:59:59." +msgstr "" +"如果不希望播放整个视频,则在此提供视频播放的结束时间。此操作在本地的移动应用上不支持,即播放完整视频。格式为:HH:MM:SS,最大值为23:59:59。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video Stop Time" +msgstr "视频结束时间" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "The external URL to download the video." +msgstr "下载视频的外部 URL。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Download Video" +msgstr "下载视频" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Allow students to download versions of this video in different formats if " +"they cannot use the edX video player or do not have access to YouTube. You " +"must add at least one non-YouTube URL in the Video File URLs field." +msgstr "" +"如果学生无法使用 edX 视频播放器,或者不能访问 YouTube,则可以允许学生以不同的格式下载该视频。为此,必须在“视频文件 " +"URL”域中添加至少一个非 YouTube 的视频 URL。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video Download Allowed" +msgstr "允许下载视频" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"The URL or URLs where you've posted non-YouTube versions of the video. Each " +"URL must end in .mpeg, .mp4, .ogg, or .webm and cannot be a YouTube URL. " +"(For browser compatibility, we strongly recommend .mp4 and .webm format.) " +"Students will be able to view the first listed video that's compatible with " +"the student's computer. To allow students to download these videos, set " +"Video Download Allowed to True." +msgstr "" +"非 YouTube 版本的视频 URL。每个 URL 应当以 .mpeg、.mp4、.ogg 或者 .webm 结尾,并且不得为 YouTube " +"URL。(为了浏览器的兼容性考虑,我们强烈建议您使用 .mp4 和 .webm " +"格式。)每个学生将看到列表中第一个与他自己的计算机兼容的视频。如果想让学生下载这些视频,请将“允许下载视频”设置为“True”。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video File URLs" +msgstr "视频文件 URL" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"By default, students can download an .srt or .txt transcript when you set " +"Download Transcript Allowed to True. If you want to provide a downloadable " +"transcript in a different format, we recommend that you upload a handout by " +"using the Upload a Handout field. If this isn't possible, you can post a " +"transcript file on the Files & Uploads page or on the Internet, and then add" +" the URL for the transcript here. Students see a link to download that " +"transcript below the video." +msgstr "" +"默认情况下,当“允许下载字幕”设置为“True”的时候,学生可以下载 .srt 或者 .txt " +"格式的字幕。如果您需要提供不同文件格式的字幕供学生下载,我们建议您首先考虑使用“上传讲义”域上传您的讲义;其次您可以将字幕文件上传至“文件&上传”页面或者" +" Internet,并在这里添加下载字幕的 URL。学生们会在视频的下方看到一个下载字幕的链接。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Downloadable Transcript URL" +msgstr "字幕下载 URL" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Allow students to download the timed transcript. A link to download the file" +" appears below the video. By default, the transcript is an .srt or .txt " +"file. If you want to provide the transcript for download in a different " +"format, upload a file by using the Upload Handout field." +msgstr "" +"允许学生下载字幕。下载链接会出现在视频的下方。默认情况下,下载的字幕是一个 .srt 或者 .txt " +"文件。如果您需要提供不同文件格式的字幕下载,使用“上传讲义”域上传该文件。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Download Transcript Allowed" +msgstr "允许下载字幕" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"The default transcript for the video, from the Default Timed Transcript " +"field on the Basic tab. This transcript should be in English. You don't have" +" to change this setting." +msgstr "视频的默认字幕,来自于“基本”面板的“默认字幕”域。该字幕应当是英语字幕。您不必修改这个设置。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Default Timed Transcript" +msgstr "默认字幕" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Specify whether the transcripts appear with the video by default." +msgstr "指定是否默认就显示字幕。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Show Transcript" +msgstr "显示字幕" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Add transcripts in different languages. Click below to specify a language " +"and upload an .srt transcript file for that language." +msgstr "添加不同语言的字幕。单击下方以指定语言并上传该语言对应的 .srt 字幕文件。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Transcript Languages" +msgstr "字幕语言" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Preferred language for transcript." +msgstr "首选的字幕语言。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Preferred language for transcript" +msgstr "首选的字幕语言" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Transcript file format to download by user." +msgstr "用户下载的字幕文件格式。" + +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "字幕 (.srt) 文件" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "文本 (.txt) 文件" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "The last speed that the user specified for the video." +msgstr "该视频上一次用户指定的速度。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "The default speed for the video." +msgstr "该视频的默认速度。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Specify whether to advance automatically to the next unit when the video " +"ends." +msgstr "设置是否自动播放下一单元的视频" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Specify whether YouTube is available for the user." +msgstr "指定 YouTube 是否对用户可用。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Upload a handout to accompany this video. Students can download the handout " +"by clicking Download Handout under the video." +msgstr "上传与该视频相关的讲义。学生可以单击视频下方的“下载讲义”按钮来下载该讲义。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Upload Handout" +msgstr "上传讲义" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Specify whether access to this video is limited to browsers only, or if it " +"can be accessed from other applications including mobile apps." +msgstr "指定是否限制为只有浏览器才能访问该视频,或可以再其他应用上访问,包括移动应用。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video Available on Web Only" +msgstr "视频只在网页版提供" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"If you were assigned a Video ID by edX for the video to play in this " +"component, enter the ID here. In this case, do not enter values in the " +"Default Video URL, the Video File URLs, and the YouTube ID fields. If you " +"were not assigned a Video ID, enter values in those other fields and ignore " +"this field." +msgstr "" +"如果您上传的视频分配了一个ID,请在此输入您的视频ID。请注意,如果您有被分配视频ID请不要输入默认视频ID,视频文件ID以及YouTube视频ID。如果您没有被分配ID请输入上述描述部分,这部分请不要填写。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Date of the last view of the bumper" +msgstr "最近浏览片头的日期" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Do not show bumper again" +msgstr "不重复显示片头" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +#: lms/templates/annotatable.html lms/templates/peer_grading/peer_grading.html +msgid "Instructions" +msgstr "指令" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "" +"Add instructions to help learners understand how to use the word cloud. " +"Clear instructions are important, especially for learners who have " +"accessibility requirements." +msgstr "添加指引帮助学员使用词语云盘,清楚明了的指引对有访问要求的学员特别重要。" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Inputs" +msgstr "投入" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "" +"The number of text boxes available for learners to add words and sentences." +msgstr "学员可用输入框的数量,可添加文字与句子。" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Maximum Words" +msgstr "字数上限" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "The maximum number of words displayed in the generated word cloud." +msgstr "在生成的词语云盘中最多能显示的词语数。" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Show Percents" +msgstr "显示百分比" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Statistics are shown for entered words near that word." +msgstr "展示了临近那个单词输入的单词的统计信息。" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Whether this learner has posted words to the cloud." +msgstr "此学员是否在云盘中发布过词语" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Student answer." +msgstr "学生答案" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "All possible words from all learners." +msgstr "所有学员发布的所有词语" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Top num_top_words words for word cloud." +msgstr "词云中的最热门词汇" + +#: common/lib/xmodule/xmodule/x_module.py +#, python-brace-format +msgid "" +"{display_name} is only accessible to enrolled learners. Sign in or register," +" and enroll in this course to view it." +msgstr "{display_name} 仅供注册的学员使用。 登录或注册,并注册此课程以查看它。" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +msgid "Create Password" +msgstr "创建密码" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#, python-format +msgid "" +"You're receiving this e-mail because you requested to create a password for " +"your user account at %(platform_name)s." +msgstr "您收到此电子邮件是因为您在%(platform_name)s申请了账户密码创建" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet created your password." +msgstr "如果您没有请求该变更,请忽略本邮件——我们尚未重置您的密码。" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +msgid "Create my Password" +msgstr "创建我的密码" + +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "Please go to the following page and choose a new password:" +msgstr "请到以下页面设置新的密码:" + +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "Thanks for using our site!" +msgstr "谢谢您访问我们的网站!" + +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.txt +#, python-format +msgid "The %(platform_name)s Team" +msgstr "%(platform_name)s 团队" + +#: common/templates/student/edx_ace/accountrecovery/email/subject.txt +#, python-format +msgid "Create password on %(platform_name)s" +msgstr "%(platform_name)s设置密码" + +#: common/templates/student/edx_ace/emailchange/email/body.html +msgid "Email Change" +msgstr "电子邮件变更" + +#: common/templates/student/edx_ace/emailchange/email/body.html +#: common/templates/student/edx_ace/emailchange/email/body.txt +#, python-format +msgid "" +"We received a request to change the secondary e-mail associated with your " +"%(platform_name)s account to %(new_email)s. If this is correct, please " +"confirm your new secondary e-mail address by visiting:" +msgstr "" +"我们收到了您需要将您的%(platform_name)s账号关联的电子邮箱变更为 %(new_email)s " +"的请求。如果该请求无误,请访问如下网页确认您的新电子邮件地址:" + +#: common/templates/student/edx_ace/emailchange/email/body.html +#: common/templates/student/edx_ace/emailchange/email/body.txt +#, python-format +msgid "" +"We received a request to change the e-mail associated with your " +"%(platform_name)s account from %(old_email)s to %(new_email)s. If this is " +"correct, please confirm your new e-mail address by visiting:" +msgstr "" +"我们收到了您需要将%(platform_name)s 账号的电子邮件关联由 %(old_email)s 变更为 %(new_email)s " +"的请求。如果该请求无误,请访问如下网页确认您的新电子邮件地址:" + +#: common/templates/student/edx_ace/emailchange/email/body.html +msgid "Confirm Email Change" +msgstr "确认电子邮箱变更" + +#: common/templates/student/edx_ace/emailchange/email/body.html +#: common/templates/student/edx_ace/emailchange/email/body.txt +#, python-format +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the %(platform_name)s web site." +msgstr "" +"如果您没发出过该请求,您可以忽略该邮件;您将不会收到其他任何我们的电子邮件。请不要回复此电子邮件;如果您需要帮助,请访问%(platform_name)s网站。" + +#: common/templates/student/edx_ace/emailchange/email/subject.txt +#, python-format +msgid "Request to change %(platform_name)s account secondary e-mail" +msgstr "变更%(platform_name)s账号电子邮箱的请求" + +#: common/templates/student/edx_ace/emailchange/email/subject.txt +#, python-format +msgid "Request to change %(platform_name)s account e-mail" +msgstr "变更%(platform_name)s账号电子邮件的请求" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: lms/templates/forgot_password_modal.html +msgid "Password Reset" +msgstr "密码重置" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +#, python-format +msgid "" +"You're receiving this email because you requested a password reset for your " +"user account at %(platform_name)s." +msgstr "您在%(platform_name)s申请了账号密码重置。" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +#, python-format +msgid "" +"However, there is currently no user account associated with your email " +"address: %(email_address)s." +msgstr "您的邮箱地址%(email_address)s暂时没有与任何账号相关联。" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "If you did not request this change, you can ignore this email." +msgstr "如果您没有申请作出更改,请忽略此邮件。" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "" +"If you didn't request this change, you can ignore this email - we have not " +"yet reset your password." +msgstr "如果您没有请求该变更,请忽略本邮件——我们尚未重置您的密码。" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +msgid "Change my Password" +msgstr "修改我的密码" + +#: common/templates/student/edx_ace/passwordreset/email/subject.txt +#, python-format +msgid "Password reset on %(platform_name)s" +msgstr "%(platform_name)s重置密码" + +#: lms/djangoapps/badges/events/course_complete.py +#, python-brace-format +msgid "" +"Completed the course \"{course_name}\" ({course_mode}, {start_date} - " +"{end_date})" +msgstr "已修完课程“{course_name}”({course_mode}, {start_date} - {end_date})" + +#: lms/djangoapps/badges/events/course_complete.py +#, python-brace-format +msgid "Completed the course \"{course_name}\" ({course_mode})" +msgstr "已修完课程“{course_name}”({course_mode})" + +#: lms/djangoapps/badges/models.py +msgid "The badge image must be square." +msgstr "徽章图片必须为正方形。" + +#: lms/djangoapps/badges/models.py +msgid "The badge image file size must be less than 250KB." +msgstr "徽章图片的文件大小必须小于250KB。" + +#: lms/djangoapps/badges/models.py +msgid "This value must be all lowercase." +msgstr "该值必须全部为小写字母。" + +#: lms/djangoapps/badges/models.py +msgid "The course mode for this badge image. For example, \"verified\" or \"honor\"." +msgstr "该课程模式的徽章图像。例如,“合格”或“荣誉”。" + +#: lms/djangoapps/badges/models.py +msgid "" +"Badge images must be square PNG files. The file size should be under 250KB." +msgstr "徽章图片必须为正方形的PNG文件,且文件大小应小于250KB。" + +#: lms/djangoapps/badges/models.py +msgid "" +"Set this value to True if you want this image to be the default image for " +"any course modes that do not have a specified badge image. You can have only" +" one default image." +msgstr "对于那些没有指定徽章图片的课程模式,如果您想设置此图为其默认图片,则将该值设为True。您只能设置一张默认图片。" + +#: lms/djangoapps/badges/models.py +msgid "There can be only one default image." +msgstr "只能有一张默认图片。" + +#: lms/djangoapps/badges/models.py +msgid "" +"On each line, put the number of completed courses to award a badge for, a " +"comma, and the slug of a badge class you have created that has the issuing " +"component 'openedx__course'. For example: 3,enrolled_3_courses" +msgstr "" +"在每一行上,列出为了获得徽章的已完成课程的数目、一个逗号以及您创建的具有发行组件“openedx__course”的徽章类别标语。例如:3, " +"已登记_3_个课程" + +#: lms/djangoapps/badges/models.py +msgid "" +"On each line, put the number of enrolled courses to award a badge for, a " +"comma, and the slug of a badge class you have created that has the issuing " +"component 'openedx__course'. For example: 3,enrolled_3_courses" +msgstr "" +"在每一行上,列出为了获得徽章的已登记课程的数目、一个逗号以及您创建的具有发行组件“openedx__course”的徽章类别标语。例如:3, " +"已登记_3_个课程" + +#: lms/djangoapps/badges/models.py +msgid "" +"Each line is a comma-separated list. The first item in each line is the slug" +" of a badge class you have created that has an issuing component of " +"'openedx__course'. The remaining items in each line are the course keys the " +"learner needs to complete to be awarded the badge. For example: " +"slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" +msgstr "" +"每一行都是以逗号分隔的列表。每一行的第一项是您创建的具有发行组件“openedx__course”的徽章类别标语。每一行的其余项是学员为了获得徽章需要完成的课程要领。例如:slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" + +#: lms/djangoapps/badges/models.py +msgid "Please check the syntax of your entry." +msgstr "请检查您的条目的句法。" + +#: lms/djangoapps/branding/api.py +msgid "Take free online courses at EliteMBA.cn" +msgstr "在EliteMBA.cn上学习免费课程" + +#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Please do not translate any of these trademarks and company names. +#: lms/djangoapps/branding/api.py +#, python-brace-format +msgid "" +"© {org_name}. All rights reserved except where noted. EdX, Open edX and " +"their respective logos are trademarks or registered trademarks of edX Inc." +msgstr "© {org_name}。版权所有,除非另有注明。EdX、Open edX和他们各自的标识都是edX Inc的商标或注册商标。" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. See http://openedx.org for more information. +#: lms/djangoapps/branding/api.py cms/templates/widgets/footer.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +msgid "Powered by Open edX" +msgstr "Powered by Open edX" + +#: lms/djangoapps/branding/api.py lms/templates/static_templates/blog.html +msgid "Blog" +msgstr "博客" + +#: lms/djangoapps/branding/api.py cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "Contact Us" +msgstr "联系我们" + +#: lms/djangoapps/branding/api.py +msgid "Help Center" +msgstr "帮助中心" + +#: lms/djangoapps/branding/api.py +#: lms/templates/static_templates/media-kit.html +msgid "Media Kit" +msgstr "多媒体工具箱" + +#: lms/djangoapps/branding/api.py lms/templates/static_templates/donate.html +msgid "Donate" +msgstr "捐助" + +#: lms/djangoapps/branding/api.py lms/templates/footer.html +#: lms/templates/static_templates/about.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "About" +msgstr "关于我们" + +#: lms/djangoapps/branding/api.py +#, python-brace-format +msgid "{platform_name} for Business" +msgstr "{platform_name} 为商业" + +#: lms/djangoapps/branding/api.py +msgid "News" +msgstr "新闻" + +#: lms/djangoapps/branding/api.py lms/templates/static_templates/contact.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "Contact" +msgstr "联系我们" + +#: lms/djangoapps/branding/api.py +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "Careers" +msgstr "招聘" + +#: lms/djangoapps/branding/api.py lms/djangoapps/certificates/views/webview.py +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +msgid "Terms of Service & Honor Code" +msgstr "服务条款 & 荣誉准则" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: A 'Privacy Policy' is a legal document/statement describing a +#. website's use of personal information +#: lms/djangoapps/branding/api.py lms/djangoapps/certificates/views/webview.py +#: cms/templates/widgets/footer.html +#: lms/templates/static_templates/privacy.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +#: themes/elitemba-theme/lms/templates/static_templates/privacy.html +#: themes/elitemba-theme/lms/templates/static_templates/privacy_policy.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Privacy Policy" +msgstr "隐私政策" + +#: lms/djangoapps/branding/api.py +msgid "Accessibility Policy" +msgstr "可访问策略" + +#: lms/djangoapps/branding/api.py +msgid "Sitemap" +msgstr "网站导航" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This is a legal document users must agree to +#. in order to register a new account. +#: lms/djangoapps/branding/api.py openedx/core/djangoapps/user_api/api.py +#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Terms of Service" +msgstr "服务条款" + +#: lms/djangoapps/branding/api.py +msgid "Affiliates" +msgstr "附属机构" + +#: lms/djangoapps/branding/api.py +msgid "Open edX" +msgstr "Open edX" + +#: lms/djangoapps/branding/api.py +msgid "Trademark Policy" +msgstr "商标政策" + +#: lms/djangoapps/branding/api.py +#, python-brace-format +msgid "Download the {platform_name} mobile app from the Apple App Store" +msgstr "从Apple App Store下载{platform_name}的移动客户端" + +#: lms/djangoapps/branding/api.py +#, python-brace-format +msgid "Download the {platform_name} mobile app from Google Play" +msgstr "从Google Play下载{platform_name}的移动客户端" + +#. Translators: Bulk email from address e.g. ("Physics 101" Course Staff) +#: lms/djangoapps/bulk_email/tasks.py +#, python-brace-format +msgid "\"{course_title}\" Course Staff" +msgstr "\"{course_title}\" 课程员工" + +#: lms/djangoapps/ccx/plugins.py +msgid "CCX Coach" +msgstr "CCX指导" + +#: lms/djangoapps/ccx/utils.py +msgid "" +"A CCX can only be created on this course through an external service. " +"Contact a course admin to give you access." +msgstr "CCX 仅可以通过外部服务在此课程上创建。联系课程管理员授予您访问权限。" + +#: lms/djangoapps/ccx/utils.py +#, python-brace-format +msgid "The course is full: the limit is {max_student_enrollments_allowed}" +msgstr "此门课已额满:人数限制为 {max_student_enrollments_allowed}" + +#: lms/djangoapps/ccx/views.py +msgid "You must be a CCX Coach to access this view." +msgstr "您需要成为CCX指导才能访问该视图。" + +#: lms/djangoapps/ccx/views.py +msgid "You must be the coach for this ccx to access this view" +msgstr "您必须要成为该CCX的指导才能够访问该视图" + +#: lms/djangoapps/ccx/views.py +msgid "" +"You cannot create a CCX from a course using a deprecated id. Please create a" +" rerun of this course in the studio to allow this action." +msgstr "您不能使用一个过时的ID从课程中创建CCX,请在studio中创建该课程的重启以允许此操作。" + +#: lms/djangoapps/certificates/models.py wiki/admin.py wiki/models/article.py +msgid "created" +msgstr "创建" + +#. Translators: This is a past-tense verb that is used for task action +#. messages. +#: lms/djangoapps/certificates/models.py +msgid "regenerated" +msgstr "重新产生" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/certificates/models.py +#: lms/djangoapps/instructor_task/tasks.py +msgid "generated" +msgstr "已生成" + +#. Translators: This string represents task was executed for all learners. +#: lms/djangoapps/certificates/models.py +msgid "All learners" +msgstr "所有学习者" + +#. Translators: This string represents task was executed for students having +#. exceptions. +#: lms/djangoapps/certificates/models.py +msgid "For exceptions" +msgstr "例外" + +#: lms/djangoapps/certificates/models.py +msgid "" +"A human-readable description of the example certificate. For example, " +"'verified' or 'honor' to differentiate between two types of certificates." +msgstr "范例证书的可读说明。例如,“合格”或“荣誉\"两类证书区分。" + +#: lms/djangoapps/certificates/models.py +msgid "" +"A unique identifier for the example certificate. This is used when we " +"receive a response from the queue to determine which example certificate was" +" processed." +msgstr "示例证书的唯一标识符。可用于当我们从队列中得到响应以决定哪个示例证书已被处理。" + +#: lms/djangoapps/certificates/models.py +msgid "" +"An access key for the example certificate. This is used when we receive a " +"response from the queue to validate that the sender is the same entity we " +"asked to generate the certificate." +msgstr "范例证书会有访问的金钥。我们接收到回应是用来检核与验证,与我们申请产生证书的验证是相同的。" + +#: lms/djangoapps/certificates/models.py +msgid "The full name that will appear on the certificate." +msgstr "将显示在证书上的全名" + +#: lms/djangoapps/certificates/models.py +msgid "The template file to use when generating the certificate." +msgstr "当生成证书时使用的模板文件。" + +#: lms/djangoapps/certificates/models.py +msgid "The status of the example certificate." +msgstr "示例证书状态。" + +#: lms/djangoapps/certificates/models.py +msgid "The reason an error occurred during certificate generation." +msgstr "生成证书过程中发生错误的原因" + +#: lms/djangoapps/certificates/models.py +msgid "The download URL for the generated certificate." +msgstr "已生成证书的下载URL。" + +#: lms/djangoapps/certificates/models.py +msgid "Name of template." +msgstr "模板名称。" + +#: lms/djangoapps/certificates/models.py +msgid "Description and/or admin notes." +msgstr "叙述与/或管理员笔记" + +#: lms/djangoapps/certificates/models.py +msgid "Django template HTML." +msgstr "Django模板HTML" + +#: lms/djangoapps/certificates/models.py +msgid "Organization of template." +msgstr "模板的组织" + +#: lms/djangoapps/certificates/models.py +msgid "The course mode for this template." +msgstr "该模板的课程模式。" + +#: lms/djangoapps/certificates/models.py +msgid "On/Off switch." +msgstr "开/关切换" + +#: lms/djangoapps/certificates/models.py +msgid "Description of the asset." +msgstr "该资源的描述。" + +#: lms/djangoapps/certificates/models.py +msgid "Asset file. It could be an image or css file." +msgstr "资源档。可以是一张图片或css文件。" + +#: lms/djangoapps/certificates/models.py +msgid "" +"Asset's unique slug. We can reference the asset in templates using this " +"value." +msgstr "Asset's unique slug.我们可以参考使用这个参数用在这个模版。" + +#: lms/djangoapps/certificates/views/support.py +msgid "user is not given." +msgstr "没有提供使用者" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "user '{user}' does not exist" +msgstr "使用者'{user}'不存在" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "Course id '{course_id}' is not valid" +msgstr "无效之课程id '{course_id}'" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "The course does not exist against the given key '{course_key}'" +msgstr "本课程不存在指定的金钥'{course_key}'" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "User {username} does not exist" +msgstr "使用者 {username} 不存在。" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "{course_key} is not a valid course key" +msgstr "{course_key} 不是有效的课程密钥。" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "The course {course_key} does not exist" +msgstr "{course_key} 课程不存在。" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "User {username} is not enrolled in the course {course_key}" +msgstr "使用者 {username} 还没有注册 {course_key} 课程。" + +#: lms/djangoapps/certificates/views/support.py +msgid "An unexpected error occurred while regenerating certificates." +msgstr "在重新产生证书时,发生了一个未预期的错误。" + +#. Translators: This text describes the 'Honor' course certificate type. +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"An {cert_type} certificate signifies that a learner has agreed to abide by " +"the honor code established by {platform_name} and has completed all of the " +"required tasks for this course under its guidelines." +msgstr "" +"An {cert_type} 证书象征著学习者已同意由{platform_name}建立及遵守荣誉守则,并已经完成根据此门课之指引完成所有任务。" + +#. Translators: This text describes the 'ID Verified' course certificate +#. type, which is a higher level of +#. verification offered by edX. This type of verification is useful for +#. professional education/certifications +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"A {cert_type} certificate signifies that a learner has agreed to abide by " +"the honor code established by {platform_name} and has completed all of the " +"required tasks for this course under its guidelines. A {cert_type} " +"certificate also indicates that the identity of the learner has been checked" +" and is valid." +msgstr "" +"A {cert_type} 证书象征著学习者已同意由{platform_name}建立及遵守荣誉守则,并已经完成根据此门课之指引完成所有任务。A " +"{cert_type} 证书也意味着学习者的身份已被确认且是有效的。" + +#. Translators: This text describes the 'XSeries' course certificate type. +#. An XSeries is a collection of +#. courses related to each other in a meaningful way, such as a specific topic +#. or theme, or even an organization +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"An {cert_type} certificate demonstrates a high level of achievement in a " +"program of study, and includes verification of the student's identity." +msgstr "一张 {cert_type} 证书证明学习课程高水準的成果,并包括验证学生的身份。" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{month} {day}, {year}" +msgstr "{year} {month} {day}" + +#. Translators: This text represents the verification of the certificate +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"This is a valid {platform_name} certificate for {user_name}, who " +"participated in {partner_short_name} {course_number}" +msgstr "" +"此为有效的 {platform_name} 证书给{user_name},并参与了{partner_short_name}{course_number}" + +#. Translators: This text is bound to the HTML 'title' element of the page +#. and appears in the browser title bar +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{partner_short_name} {course_number} Certificate | {platform_name}" +msgstr "{partner_short_name} {course_number} 修课证明 | {platform_name}" + +#. Translators: This text fragment appears after the student's name +#. (displayed in a large font) on the certificate +#. screen. The text describes the accomplishment represented by the +#. certificate information displayed to the user +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"successfully completed, received a passing grade, and was awarded this " +"{platform_name} {certificate_type} Certificate of Completion in " +msgstr "完成课程、测验及格,并荣获该{platform_name} {certificate_type} 之证书" + +#. Translators: This text describes the purpose (and therefore, value) of a +#. course certificate +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"{platform_name} acknowledges achievements through certificates, which are " +"awarded for course activities that {platform_name} students complete." +msgstr "{platform_name}借由证书承认已完成修习课程,该课之修课证书证明学生完成 {platform_name}课程活动。" + +#. Translators: 'All rights reserved' is a legal term used in copyrighting to +#. protect published content +#: lms/djangoapps/certificates/views/webview.py +msgid "All rights reserved" +msgstr "保留所有权利" + +#. Translators: This text is bound to the HTML 'title' element of the page +#. and appears +#. in the browser title bar when a requested certificate is not found or +#. recognized +#: lms/djangoapps/certificates/views/webview.py +msgid "Invalid Certificate" +msgstr "无效的证书" + +#. Translators: This line appears as a byline to a header image and describes +#. the purpose of the page +#: lms/djangoapps/certificates/views/webview.py +msgid "Certificate Validation" +msgstr "证书认可" + +#. Translators: Accomplishments describe the awards/certifications obtained by +#. students on this platform +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "About {platform_name} Accomplishments" +msgstr "关于{platform_name}的成就" + +#. Translators: This line appears on the page just before the generation date +#. for the certificate +#: lms/djangoapps/certificates/views/webview.py +msgid "Issued On" +msgstr "签发日期" + +#. Translators: The Certificate ID Number is an alphanumeric value unique to +#. each individual certificate +#: lms/djangoapps/certificates/views/webview.py +msgid "Certificate ID Number" +msgstr "证书ID编号" + +#: lms/djangoapps/certificates/views/webview.py +#: lms/templates/certificates/invalid.html +#, python-brace-format +msgid "About {platform_name} Certificates" +msgstr "关于 {platform_name} 认证证书" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "How {platform_name} Validates Student Certificates" +msgstr "{platform_name}如何验证学生证书" + +#. Translators: This text describes the validation mechanism for a +#. certificate file (known as GPG security) +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"Certificates issued by {platform_name} are signed by a gpg key so that they " +"can be validated independently by anyone with the {platform_name} public " +"key. For independent verification, {platform_name} uses what is called a " +"\"detached signature\""\"." +msgstr "" +"通过 {platform_name} 颁发证书由gpg密钥簽署,使他们可以被任何人与 " +"{platform_name}公钥独立验证。对于独立核查,{platform_name}使用所谓的\"detached " +"signature\""\"。" + +#: lms/djangoapps/certificates/views/webview.py +msgid "Validate this certificate for yourself" +msgstr "为自己验证此证书" + +#. Translators: This text describes (at a high level) the mission and charter +#. the edX platform and organization +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{platform_name} offers interactive online classes and MOOCs." +msgstr "{platform_name}提供线上互动课程和MOOCs课程。" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "About {platform_name}" +msgstr "关于{platform_name}" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "Learn more about {platform_name}" +msgstr "了解更多关于{platform_name}的信息" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "Learn with {platform_name}" +msgstr "了解{platform_name}" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "Work at {platform_name}" +msgstr "工作于{platform_name}" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "Contact {platform_name}" +msgstr "联系{platform_name}" + +#. Translators: This text appears near the top of the certficate and +#. describes the guarantee provided by edX +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{platform_name} acknowledges the following student accomplishment" +msgstr "{platform_name}承认以下的学生成就" + +#. Translators: This text represents the description of course +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"a course of study offered by {partner_short_name}, an online learning " +"initiative of {partner_long_name}." +msgstr "课程的学习是由 {partner_short_name}所提供,和 {partner_long_name}的主动线上学习。" + +#. Translators: This text represents the description of course +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "a course of study offered by {partner_short_name}." +msgstr "课程的学习是由 {partner_short_name}所提供。" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "I completed the {course_title} course on {platform_name}." +msgstr "我在{platform_name}上完成了{course_title}课程。" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"I completed a course at {platform_name}. Take a look at my certificate." +msgstr "我已经完成了一门课在{platform_name}。检视我的证书。" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "More Information About {user_name}'s Certificate:" +msgstr "关于 {user_name} 证书的更多信息:" + +#. Translators: This line is displayed to a user who has completed a course +#. and achieved a certification +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{fullname}, you earned a certificate!" +msgstr "{fullname},您已经取得证书!" + +#. Translators: This line congratulates the user and instructs them to share +#. their accomplishment on social networks +#: lms/djangoapps/certificates/views/webview.py +msgid "" +"Congratulations! This page summarizes what you accomplished. Show it off to " +"family, friends, and colleagues in your social and professional networks." +msgstr "恭喜!本页总结您所完成之项目。" + +#. Translators: This line leads the reader to understand more about the +#. certificate that a student has been awarded +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "More about {fullname}'s accomplishment" +msgstr "了解更多有关{fullname}的成就" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/schedules/admin.py +#: lms/templates/staff_problem_info.html +#: lms/templates/api_admin/catalogs/search.html +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Username" +msgstr "用户名" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "成绩" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "百分比" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "Opened by this number of students" +msgstr "打开过的学生" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "subsections" +msgstr "节" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "Count of Students" +msgstr "学生数量" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "Percent of Students" +msgstr "学生百分比" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Score" +msgstr "分数" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "problems" +msgstr "问题" + +#: lms/djangoapps/commerce/api/v1/serializers.py +#, python-brace-format +msgid "{course_id} is not a valid course key." +msgstr "{course_id} 不是有效的课程密钥。" + +#: lms/djangoapps/commerce/api/v1/serializers.py +#, python-brace-format +msgid "Course {course_id} does not exist." +msgstr "{course_id} 课程不存在。" + +#: lms/djangoapps/commerce/models.py +msgid "Use the checkout page hosted by the E-Commerce service." +msgstr "透过使用电子商务服务承载结帐页面。" + +#: lms/djangoapps/commerce/models.py +msgid "Path to course(s) checkout page hosted by the E-Commerce service." +msgstr "电子商务服务托管的课程(或多个)结帐路径。" + +#: lms/djangoapps/commerce/models.py openedx/core/djangoapps/catalog/models.py +#: openedx/core/djangoapps/credentials/models.py +#: openedx/core/djangoapps/credit/models.py +msgid "Cache Time To Live" +msgstr "快取存留时间" + +#: lms/djangoapps/commerce/models.py +#: openedx/core/djangoapps/credentials/models.py +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Specified in seconds. Enable caching by setting this to a value greater than" +" 0." +msgstr "指定为秒。借由设定这个大于0的值来启动快取。" + +#: lms/djangoapps/commerce/models.py +msgid "Path to order receipt page." +msgstr "接收订单页面的路径。" + +#: lms/djangoapps/commerce/models.py +msgid "Automatically approve valid refund requests, without manual processing" +msgstr "自动批准有效的退款申请,无需人工处理。" + +#: lms/djangoapps/commerce/utils.py lms/djangoapps/shoppingcart/models.py +msgid "[Refund] User-Requested Refund" +msgstr "[Refund] 用户申请退款" + +#: lms/djangoapps/commerce/utils.py +#, python-brace-format +msgid "" +"A refund request has been initiated for {username} ({email}). To process " +"this request, please visit the link(s) below." +msgstr "{username} ({email}) 的退款要求已经建立。为了处理此请求,请访问以下联结(s) 。" + +#: lms/djangoapps/commerce/views.py lms/djangoapps/shoppingcart/pdf.py +msgid "Receipt" +msgstr "收据" + +#: lms/djangoapps/commerce/views.py +msgid "Payment Failed" +msgstr "支付失败" + +#: lms/djangoapps/commerce/views.py +msgid "There was a problem with this transaction. You have not been charged." +msgstr "交易出现问题。您尚未缴费。" + +#: lms/djangoapps/commerce/views.py +msgid "" +"Make sure your information is correct, or try again with a different card or" +" another form of payment." +msgstr "确保您的信息正确无误了,或换一张信用重试或换用其他支付方式。" + +#: lms/djangoapps/commerce/views.py +msgid "" +"A system error occurred while processing your payment. You have not been " +"charged." +msgstr "在处理您的付款时出现系统错误。您尚未缴费。" + +#: lms/djangoapps/commerce/views.py +msgid "Please wait a few minutes and then try again." +msgstr "请等待几分钟后重试。" + +#: lms/djangoapps/commerce/views.py +#, python-brace-format +msgid "For help, contact {payment_support_link}." +msgstr "联系{payment_support_link}寻求帮助。" + +#: lms/djangoapps/commerce/views.py +msgid "An error occurred while creating your receipt." +msgstr "创建您的收据时出错。" + +#: lms/djangoapps/commerce/views.py +#, python-brace-format +msgid "" +"If your course does not appear on your dashboard, contact " +"{payment_support_link}." +msgstr "如果您的课程未出现在您的课程面板上,请联系{payment_support_link}。" + +#: lms/djangoapps/course_goals/models.py +msgid "Earn a certificate" +msgstr "获取证书" + +#: lms/djangoapps/course_goals/models.py +msgid "Complete the course" +msgstr "完成课程" + +#: lms/djangoapps/course_goals/models.py +msgid "Explore the course" +msgstr "发现课程" + +#: lms/djangoapps/course_goals/models.py +msgid "Not sure yet" +msgstr "再想想" + +#: lms/djangoapps/course_wiki/tab.py lms/djangoapps/course_wiki/views.py +#: lms/templates/wiki/base.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Wiki" +msgstr "维基" + +#. Translators: this string includes wiki markup. Leave the ** and the _ +#. alone. +#: lms/djangoapps/course_wiki/views.py +#, python-brace-format +msgid "This is the wiki for _{course_name}_." +msgstr "这是 _{course_name}_ 的wiki。" + +#: lms/djangoapps/course_wiki/views.py +msgid "Course page automatically created." +msgstr "课程网页已经自动创建" + +#: lms/djangoapps/course_wiki/views.py +#, python-brace-format +msgid "Welcome to the {platform_name} Wiki" +msgstr "欢迎来到 {platform_name} Wiki" + +#: lms/djangoapps/course_wiki/views.py +msgid "Visit a course wiki to add an article." +msgstr "浏览课程维基添加课程标题" + +#: lms/djangoapps/courseware/access_response.py +msgid "Course has not started" +msgstr "课程尚未开始" + +#: lms/djangoapps/courseware/access_response.py +msgid "Course does not start until {}" +msgstr "课程将在{}后开课" + +#: lms/djangoapps/courseware/access_response.py +msgid "You have unfulfilled milestones" +msgstr "您有未完成的里程碑" + +#: lms/djangoapps/courseware/access_response.py +msgid "You do not have access to this course" +msgstr "您无权访问学习该课程" + +#: lms/djangoapps/courseware/access_response.py +msgid "You do not have access to this course on a mobile device" +msgstr "您无法在移动设备上学习该课程" + +#: lms/djangoapps/courseware/course_tools.py +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Upgrade to Verified" +msgstr "升级到验证" + +#. Translators: 'absolute' is a date such as "Jan 01, +#. 2020". 'relative' is a fuzzy description of the time until +#. 'absolute'. For example, 'absolute' might be "Jan 01, 2020", +#. and if today were December 5th, 2020, 'relative' would be "1 +#. month". +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "{relative} ago - {absolute}" +msgstr "{relative} 前 - {absolute}" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "in {relative} - {absolute}" +msgstr " {relative}后 - {absolute}" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Course Starts" +msgstr "课程开始" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Don't forget to add a calendar reminder!" +msgstr "请记得要添加提醒!" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "Course starts in {time_remaining_string} on {course_start_date}." +msgstr "课程开始日期:{course_start_date},即{time_remaining_string}后开始。" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "Course starts in {time_remaining_string} at {course_start_time}." +msgstr "课程开始时间:{course_start_time},即{time_remaining_string}后开始。" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Course End" +msgstr "课程结束" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"To earn a certificate, you must complete all requirements before this date." +msgstr "要获取修课证明,您必须在这个期限之前完成课程的所有要求。" + +#: lms/djangoapps/courseware/date_summary.py +msgid "After this date, course content will be archived." +msgstr "在此日期之后,课程内容将被存档。" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"This course is archived, which means you can review course content but it is" +" no longer active." +msgstr "这门课程已经归档:您可以复习课程内容,但该课程不再有活动(active)。" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "This course is ending in {time_remaining_string} on {course_end_date}." +msgstr "课程结束日期:{course_end_date},即{time_remaining_string}后结束。" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "This course is ending in {time_remaining_string} at {course_end_time}." +msgstr "课程结束时间:{course_end_time},即{time_remaining_string}后结束。" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Certificate Available" +msgstr "可申请的证书" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Day certificates will become available for passing verified learners." +msgstr "及格的已认证学员可获得证书的时间。" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "" +"If you have earned a certificate, you will be able to access it " +"{time_remaining_string} from now. You will also be able to view your " +"certificates on your {learner_profile_link}." +msgstr "如果您已获取证书,则可在{time_remaining_string}内前往{learner_profile_link}上查看您的证书。" + +#: lms/djangoapps/courseware/date_summary.py +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "Learner Profile" +msgstr "学生用户资料" + +#: lms/djangoapps/courseware/date_summary.py +msgid "We are working on generating course certificates." +msgstr "正在生成课程证书。" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Upgrade to Verified Certificate" +msgstr "身份认证升级" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Verification Upgrade Deadline" +msgstr "验证升级期限" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"Don't miss the opportunity to highlight your new knowledge and skills by " +"earning a verified certificate." +msgstr "学习新知识、磨炼新技能、获取认证证书,好机会不容错过!" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"You are still eligible to upgrade to a Verified Certificate! Pursue it to " +"highlight the knowledge and skills you gain in this course." +msgstr "您仍有资格升级至合格证书!继续努力精进您从这个课程所获的知识和技能。" + +#. Translators: This describes the time by which the user +#. should upgrade to the verified track. 'date' will be +#. their personalized verified upgrade deadline formatted +#. according to their locale. +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "by {date}" +msgstr "截止于{date}" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "" +"Don't forget, you have {time_remaining_string} left to upgrade to a Verified" +" Certificate." +msgstr "温馨提示,您升级成认证证书的剩余时间为{time_remaining_string}。" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "Don't forget to upgrade to a verified certificate by {localized_date}." +msgstr "温馨提示,请在{localized_date}前升级成认证证书。" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "" +"In order to qualify for a certificate, you must meet all course grading " +"requirements, upgrade before the course deadline, and successfully verify " +"your identity on {platform_name} if you have not done so " +"already.{button_panel}" +msgstr "" +"您必须满足所有课程评分要求才能申请证书,请在课程截止日期前进行升级,并在{platform_name}成功认证身份。{button_panel}" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "Upgrade ({upgrade_price})" +msgstr "升级({upgrade_price})" + +#: lms/djangoapps/courseware/date_summary.py +#: cms/templates/group_configurations.html +#: lms/templates/courseware/program_marketing.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Learn More" +msgstr "了解更多" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Retry Verification" +msgstr "重试验证" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Verify My Identity" +msgstr "验证我的身份" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Missed Verification Deadline" +msgstr "已错过验证期限" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"Unfortunately you missed this course's deadline for a successful " +"verification." +msgstr "很抱歉您错过了成功验证这堂课的截止期限。" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"You must successfully complete verification before this date to qualify for " +"a Verified Certificate." +msgstr "您必须在这个日期之前成功完成验证,以具备获取合格证书的资格。" + +#: lms/djangoapps/courseware/masquerade.py +#, python-brace-format +msgid "" +"There is no user with the username or email address \"{user_identifier}\" " +"enrolled in this course." +msgstr "在此门课程的学员中,未找到使用用户名或邮箱为{user_identifier}的用户。" + +#: lms/djangoapps/courseware/masquerade.py +msgid "" +"This user does not have access to this content because" +" the content start date is in the future" +msgstr "此用户无权访问此内容,因为内容开始日期在将来" + +#: lms/djangoapps/courseware/masquerade.py +msgid "" +"This type of component cannot be shown while viewing the course as a " +"specific student." +msgstr "特定学生查看课程时,该类型组件无法显示。" + +#: lms/djangoapps/courseware/models.py +msgid "" +"Number of days a learner has to upgrade after content is made available" +msgstr "当内容开放后,学员必须升级的天数期限。" + +#: lms/djangoapps/courseware/models.py +msgid "Disable the dynamic upgrade deadline for this course run." +msgstr "禁用此门开课的可变升级截止日期。" + +#: lms/djangoapps/courseware/models.py +msgid "Disable the dynamic upgrade deadline for this organization." +msgstr "禁用此组织的可变升级截止日期。" + +#: lms/djangoapps/courseware/tabs.py lms/templates/courseware/syllabus.html +msgid "Syllabus" +msgstr "教学大纲" + +#: lms/djangoapps/courseware/tabs.py +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Progress" +msgstr "进度" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: 'Textbooks' refers to the tab in the course that leads to the +#. course' textbooks +#: lms/djangoapps/courseware/tabs.py cms/templates/textbooks.html +#: cms/templates/widgets/header.html +msgid "Textbooks" +msgstr "教材" + +#: lms/djangoapps/courseware/views/index.py +#, python-brace-format +msgid "" +"You are not signed in. To see additional course content, {sign_in_link} or " +"{register_link}, and enroll in this course." +msgstr "您尚未登录,如需查看额外课程内容,请{sign_in_link}或{register_link}并报名此门课程。" + +#: lms/djangoapps/courseware/views/index.py +#: lms/djangoapps/courseware/views/views.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "sign in" +msgstr "登录" + +#: lms/djangoapps/courseware/views/index.py +#: lms/djangoapps/courseware/views/views.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +#: openedx/features/course_experience/views/course_home_messages.py +msgid "register" +msgstr "注册" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your enrollment: Audit track" +msgstr "您已报名旁听" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"You are enrolled in the audit track for this course. The audit track does " +"not include a certificate." +msgstr "您已报名旁听此门课程,旁听无法获得证书。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your enrollment: Honor track" +msgstr "您已报名旁听" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"You are enrolled in the honor track for this course. The honor track does " +"not include a certificate." +msgstr "您已报名旁听此门课程,旁听无法获得证书。" + +#: lms/djangoapps/courseware/views/views.py +msgid "We're working on it..." +msgstr "我们正在努力..." + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"We're creating your certificate. You can keep working in your courses and a " +"link to it will appear here and on your Dashboard when it is ready." +msgstr "我们正在为您生成证书。您可以继续学习您的课程,一旦证书准备就绪,这里及您的课程面板中都会显示指向证书的链接。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your certificate has been invalidated" +msgstr "您的证书已失效" + +#: lms/djangoapps/courseware/views/views.py +msgid "Please contact your course team if you have any questions." +msgstr "如果您有任何问题,请联系您的课程团队。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Congratulations, you qualified for a certificate!" +msgstr "恭喜!您已经通过认证!" + +#: lms/djangoapps/courseware/views/views.py +msgid "You've earned a certificate for this course." +msgstr "您已获取此门课程的证书。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Certificate unavailable" +msgstr "无法查看证书" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "" +"You have not received a certificate because you do not have a current " +"{platform_name} verified identity." +msgstr "您未收到证书,因为您尚未认证{platform_name}的身份。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your certificate is available" +msgstr "您的证书有效" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "To see course content, {sign_in_link} or {register_link}." +msgstr "请{sign_in_link}或{register_link}以查看课程内容。" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "" +"You must be enrolled in the course to see course content." +" {enroll_link_start}Enroll now{enroll_link_end}." +msgstr "您必须{enroll_link_start}报名课程{enroll_link_end}才能查看课程内容。" + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +msgid "You must be enrolled in the course to see course content." +msgstr "您必须报名课程才能查看课程内容。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Invalid location." +msgstr "无效地址" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "User {username} has never accessed problem {location}" +msgstr "用户{username} 从来没有访问{location}问答" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "您必须先登录{platform_name}才可创建证书。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Course is not valid" +msgstr "课程无效" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your certificate will be available when you pass the course." +msgstr "您的认证在您通过课程后有效。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Certificate has already been created." +msgstr "证书已经被创建。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Certificate is being created." +msgstr "认证已被创建。" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "" +"{platform_name} now offers financial assistance for learners who want to earn Verified Certificates but who may not be able to pay the Verified Certificate fee. Eligible learners may receive up to 90{percent_sign} off the Verified Certificate fee for a course.\n" +"To apply for financial assistance, enroll in the audit track for a course that offers Verified Certificates, and then complete this application. Note that you must complete a separate application for each course you take.\n" +" We plan to use this information to evaluate your application for financial assistance and to further develop our financial assistance program." +msgstr "" +"{platform_name} 现今提供经济援助,使想获得合格证书却无法支付证书费用之学习者能拿到证书。有资格的学习者可获得高达免 90 {percent_sign} 的合格证书优惠价。\n" +"申请经济援助,报名参加提供合格证书之审核作业,接着完成申请。请注意,您必须分別申请每一门您修习完毕之课程。\n" +"计画利用这些讯息来评估您的经济援助申请,并进一步发展经济援助计划。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Annual Household Income" +msgstr "家庭年收入" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your current financial situation. Why do you need assistance?" +msgstr "请告诉我们关于您目前的经济状况。为什么您需要协助?" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your learning or professional goals. How will a Verified " +"Certificate in this course help you achieve these goals?" +msgstr "请告诉我们关于您的学习或专业目标。一份这门课的认证证书,将会如何帮助您达成这些目标?" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your plans for this course. What steps will you take to help " +"you complete the course work and receive a certificate?" +msgstr "告诉我们有关于您计画的这门课程。您会采取什么措施来帮助您完成课程学习,并获得证书?" + +#: lms/djangoapps/courseware/views/views.py +msgid "Use between 250 and 500 words or so in your response." +msgstr "您的回应字数应在250到500字之间。" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Select the course for which you want to earn a verified certificate. If the " +"course does not appear in the list, make sure that you have enrolled in the " +"audit track for the course." +msgstr "选择您想要获得修课证明之课程。如果课程没出现在列表中,请确认您已经注册及追踪该课程。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Specify your annual household income in US Dollars." +msgstr "说明您以美金计算之家庭年收入。" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"I allow EliteMBA to use the information provided in this application (except" +" for financial information) for EliteMBA marketing purposes." +msgstr "我同意EliteMBA.cn使用此申请中所提供之资讯(除财务资讯)作为edX销售之目的。" + +#: lms/djangoapps/dashboard/git_import.py +#, python-brace-format +msgid "" +"Path {0} doesn't exist, please create it, or configure a different path with" +" GIT_REPO_DIR" +msgstr "路径 {0} 不存在,请创建,或为GIT_REPO_DIR设置一个不同的路径。" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Non usable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "没有可写的Git地址。期待类似这样的地址:git@github.com:mitocw/edx4edx_lite.git" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to get git log" +msgstr "不能取得git 日志" + +#: lms/djangoapps/dashboard/git_import.py +msgid "git clone or pull failed!" +msgstr "git clone或pull失败!" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to run import command." +msgstr "不能执行导入命令。" + +#: lms/djangoapps/dashboard/git_import.py +msgid "The underlying module store does not support import." +msgstr "底层模块存储不支持导入。" + +#. Translators: This is an error message when they ask for a +#. particular version of a git repository and that version isn't +#. available from the remote source they specified +#: lms/djangoapps/dashboard/git_import.py +msgid "The specified remote branch is not available." +msgstr "指定的远程分支无效。" + +#. Translators: Error message shown when they have asked for a git +#. repository branch, a specific version within a repository, that +#. doesn't exist, or there is a problem changing to it. +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to switch to specified branch. Please check your branch name." +msgstr "无法切换到指定的分支。请检查您的分支名。" + +#: lms/djangoapps/dashboard/management/commands/git_add_course.py +msgid "" +"Import the specified git repository and optional branch into the modulestore" +" and optionally specified directory." +msgstr "倒入指定的git代码仓库和可选分支到模块库与可选的指定目录。" + +#. Translators: This message means that the user could not be authenticated +#. (that is, we could +#. not log them in for some reason - maybe they don't have permission, or +#. their password was wrong) +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Failed in authenticating {username}, error {error}\n" +msgstr "认证{username}失败, 错误代码{error}\n" + +#. Translators: This message means that the user could not be authenticated +#. (that is, we could +#. not log them in for some reason - maybe they don't have permission, or +#. their password was wrong) +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Failed in authenticating {username}\n" +msgstr "验证{username}失败\n" + +#. Translators: this means that the password has been corrected (sometimes the +#. database needs to be resynchronized) +#. Translate this as meaning "the password was fixed" or "the password was +#. corrected". +#: lms/djangoapps/dashboard/sysadmin.py +msgid "fixed password" +msgstr "修改后的密码" + +#. Translators: this means everything happened successfully, yay! +#: lms/djangoapps/dashboard/sysadmin.py +msgid "All ok!" +msgstr "一切正常!" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Must provide username" +msgstr "请提供用户名" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Must provide full name" +msgstr "请提供全名" + +#. Translators: Domain is an email domain, such as "@gmail.com" +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Email address must end in {domain}" +msgstr "电子邮箱地址必须以{domain}结尾" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Failed - email {email_addr} already exists as {external_id}" +msgstr "失败 - Email {email_addr} 已经存在为 {external_id}" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Password must be supplied if not using certificates" +msgstr "没有使用认证时必须提供密码。" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email address required (not username)" +msgstr "电子邮件地址必填(不是用户名)" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Oops, failed to create user {user}, {error}" +msgstr "啊, 用户 {user}创建失败, {error}" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "User {user} created successfully!" +msgstr "用户{user}创建成功!" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Cannot find user with email address {email_addr}" +msgstr "未能找到使用{email_addr}注册的用户" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Cannot find user with username {username} - {error}" +msgstr "无法找到用户名为 {username} 的用户 - {error}" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Deleted user {username}" +msgstr "删除用户{username}" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Statistic" +msgstr "统计" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Value" +msgstr "值" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Site statistics" +msgstr "网站统计" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Total number of users" +msgstr "用户总数" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Courses loaded in the modulestore" +msgstr "已加载课程至模块仓库" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/support/views/manage_user.py lms/templates/tracking_log.html +msgid "username" +msgstr "用户名" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email" +msgstr "电子邮件" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Repair Results" +msgstr "修复结果" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Create User Results" +msgstr "创建用户结果" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Delete User Results" +msgstr "删除用户结果" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "The git repo location should end with '.git', and be a valid url" +msgstr "Git仓库应为以“.git”结尾的有效 URL" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Added Course" +msgstr "添加课程" + +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html +#: lms/templates/support/feature_based_enrollments.html +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Course Name" +msgstr "课程名称" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Directory/ID" +msgstr "目录/ID" + +#. Translators: "Git Commit" is a computer command; see +#. http://gitref.org/basic/#commit +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Git Commit" +msgstr "Git提交" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Change" +msgstr "最后一次修改" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Editor" +msgstr "最后一次编辑者" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Information about all courses" +msgstr "所有课程信息" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Error - cannot get course with ID {0}
    {1}
    " +msgstr "错误,不能通过 ID {0}
    {1}
    取得课程" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted" +msgstr "删除" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "course_id" +msgstr "课程ID" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# enrolled" +msgstr "# 已选修" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# staff" +msgstr "# 员工" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "instructors" +msgstr "主讲教师" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Enrollment information for all courses" +msgstr "所有课程的选课信息" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "role" +msgstr "角色" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "full_name" +msgstr "全名" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to %(thread_title)s:" +msgstr "%(comment_username)s回复了%(thread_title)s:" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "查看讨论" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "%(thread_title)s的回复" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Title can't be empty" +msgstr "标题不能为空" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Body can't be empty" +msgstr "内容不能为空" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Topic doesn't exist" +msgstr "主题不存在" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Comment level too deep" +msgstr "评论层级过深" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "" +"Error uploading file. Please contact the site administrator. Thank you." +msgstr "上传文件出错,请联系网站管理员,谢谢。" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Good" +msgstr "好" + +#: lms/djangoapps/edxnotes/helpers.py +msgid "EdxNotes Service is unavailable. Please try again in a few minutes." +msgstr "EdxNotes服务不可用。请几分钟后重试。" + +#: lms/djangoapps/edxnotes/helpers.py +msgid "Invalid JSON response received from notes api." +msgstr "Notes api 接收到的 JSON 响应无效。" + +#: lms/djangoapps/edxnotes/helpers.py +msgid "Incorrect data received from notes api." +msgstr "notes api 接收到的数据错误。" + +#: lms/djangoapps/edxnotes/helpers.py +msgid "No endpoint was provided for EdxNotes." +msgstr "未为EdxNotes提供终端点。" + +#: lms/djangoapps/edxnotes/plugins.py lms/templates/edxnotes/edxnotes.html +msgid "Notes" +msgstr "笔记" + +#: lms/djangoapps/email_marketing/models.py +msgid "API key for accessing Sailthru. " +msgstr "用于访问Sailthru的AIP key" + +#: lms/djangoapps/email_marketing/models.py +msgid "API secret for accessing Sailthru. " +msgstr "用于访问Sailthru的API secret。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru list name to add new users to. " +msgstr "添加新用户的Salithru列表名称。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru connection retry interval (secs)." +msgstr "Sailthru连接重试间隔时间(秒)" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru maximum retries." +msgstr "Sailthru最多可重试次数。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru template to use on welcome send." +msgstr "Sailthru用于欢迎发送的模板。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru template to use on abandoned cart reminder. Deprecated." +msgstr "Sailthru用于废弃的购物车提醒通知的模板。弃用。" + +#: lms/djangoapps/email_marketing/models.py +msgid "" +"Sailthru minutes to wait before sending abandoned cart message. Deprecated." +msgstr "Sailthru等待了几分钟才发送了废弃的购物车消息。弃用。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on enrolling for audit. " +msgstr "用于报名旁听的Sailthru模板。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on passed ID verification." +msgstr "Sailthru发送模板以便在通过的ID验证时使用。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on failed ID verification." +msgstr "Sailthru发送模板用于失败的ID验证。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on upgrading a course. Deprecated " +msgstr "Sailthru发送模板用于更新课程。弃用。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on purchasing a course seat. Deprecated " +msgstr "Sailthru发送模板用于购买一个课程名额。弃用。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Use the Sailthru content API to fetch course tags." +msgstr "使用Sailthru内容API来获取课程标签。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Number of seconds to cache course content retrieved from Sailthru." +msgstr "隐藏从Sailthru所获取的课程内容的所需时间。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Cost in cents to report to Sailthru for enrolls." +msgstr "向Sailthru报告入学申请的费用以美分计。" + +#: lms/djangoapps/email_marketing/models.py +msgid "" +"Optional lms url scheme + host used to construct urls for content library, " +"e.g. https://courses.edx.org." +msgstr "可选LMS URL方案 + 用于构建内容库的主URL,例如:https://courses.edx.org。" + +#: lms/djangoapps/email_marketing/models.py +msgid "" +"Number of seconds to delay the sending of User Welcome email after user has " +"been created" +msgstr "在用户已注册账号后,发送欢迎邮件的延迟秒数" + +#: lms/djangoapps/email_marketing/models.py +msgid "" +"The number of seconds to delay/timeout wait to get cookie values from " +"sailthru." +msgstr "从sailthru获取cookie值的延迟/超时等待秒数" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#, python-brace-format +msgid "{platform_name} Staff" +msgstr "{platform_name} 员工" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Course Staff" +msgstr "授课教师" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: lms/templates/preview_menu.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Staff" +msgstr "教员" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Used Registration Code" +msgstr "已使用的注册编号" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Credit Card - Individual" +msgstr "信用卡—个人" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#, python-brace-format +msgid "manually enrolled by username: {username}" +msgstr "透过使用者: {username}手动注册" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Manually Enrolled" +msgstr "手动注册" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Data Integrity Error" +msgstr "数据完整性错误" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "TBD" +msgstr "待定" + +#: lms/djangoapps/instructor/services.py +#, python-brace-format +msgid "Proctored Exam Review: {review_status}" +msgstr "监考模式考试审查: {review_status}" + +#: lms/djangoapps/instructor/services.py +#, python-brace-format +msgid "" +"A proctored exam attempt for {exam_name} in {course_name} by username: {student_username} was reviewed as {review_status} by the proctored exam review provider.\n" +"Review link: {review_url}" +msgstr "" +"在{course_name}中的{exam_name}监考考试:由监考考试审核者审核用户名{student_username}为{review_status}\n" +"审核链接:{review_url}" + +#: lms/djangoapps/instructor/settings/common.py +msgid "Your Platform Insights" +msgstr "您的平台Insights" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"The {report_type} report is being created. To view the status of the report," +" see Pending Tasks below." +msgstr "正在创建{report_type}报告,请在下面的“进行中的任务”查看报告状态。" + +#: lms/djangoapps/instructor/views/api.py +msgid "User does not exist." +msgstr "该用户不存在。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Found a conflict with given identifier. Please try an alternative identifier" +msgstr "发现一处与给定标识发生的冲突,请使用其他标识" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Make sure that the file you upload is in CSV format with no extraneous " +"characters or rows." +msgstr "确认您上传的CSV格式的文件里不包含无关的字符或行。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Could not read uploaded file." +msgstr "不能读取已上传的文件。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Data in row #{row_num} must have exactly four columns: email, username, full" +" name, and country" +msgstr "第#{row_num}行的数据必须是以下四列:E-mail、用户名、全名以及国家" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Invalid email {email_address}." +msgstr "无效的邮箱{email_address}。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"An account with email {email} exists but the provided username {username} is" +" different. Enrolling anyway with {email}." +msgstr "电子邮件{email}的帐户已存在但是所提供的使用者名称{username}是不同的。可以用{email}注册。" + +#: lms/djangoapps/instructor/views/api.py +msgid "File is not attached." +msgstr "文件未附上。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Username {user} already exists." +msgstr "用户名 {user} 已经存在了。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Error '{error}' while sending email to new user (user email={email}). " +"Without the email student would not be able to login. Please contact support" +" for further information." +msgstr "" +"Error '{error}'同时发送电子邮件给新用户(user email={email})。\n" +"如果没有电子邮件的学生将无法登录。请联系以获取更多讯息的支援。" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "problem responses" +msgstr "问题回答" + +#: lms/djangoapps/instructor/views/api.py +msgid "Could not find problem with this location." +msgstr "无法於此位置找到问题。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Invoice number '{num}' does not exist." +msgstr "发票号 '{num}' 不存在。" + +#: lms/djangoapps/instructor/views/api.py +msgid "The sale associated with this invoice has already been invalidated." +msgstr "与此相关联的发票出售已经失效。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Invoice number {0} has been invalidated." +msgstr "发票号 {0} 已经无效。" + +#: lms/djangoapps/instructor/views/api.py +msgid "This invoice is already active." +msgstr "此发货单已经激活。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "The registration codes for invoice {0} have been re-activated." +msgstr "收据 {0}的注册编号已经被重新激活。" + +#: lms/djangoapps/instructor/views/api.py +msgid "CourseID" +msgstr "课程 ID" + +#: lms/djangoapps/instructor/views/api.py +msgid "Certificate Type" +msgstr "证书类型" + +#: lms/djangoapps/instructor/views/api.py +msgid "Total Certificates Issued" +msgstr "发行的证书总计" + +#: lms/djangoapps/instructor/views/api.py +msgid "Date Report Run" +msgstr "报告实行日期" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "enrolled learner profile" +msgstr "已报名学员的资料" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "User ID" +msgstr "用户ID" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Email" +msgstr "电子邮件" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Language" +msgstr "语言" + +#: lms/djangoapps/instructor/views/api.py +msgid "Location" +msgstr "位置" + +#: lms/djangoapps/instructor/views/api.py +msgid "Birth Year" +msgstr "出生年度" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's gender. +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/api.py lms/templates/register-form.html +#: lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Gender" +msgstr "性别" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Level of Education" +msgstr "教育水平" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Mailing Address" +msgstr "邮寄地址" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Goals" +msgstr "目标" + +#: lms/djangoapps/instructor/views/api.py +msgid "Enrollment Mode" +msgstr "选课模式" + +#: lms/djangoapps/instructor/views/api.py +msgid "Verification Status" +msgstr "验证状态" + +#: lms/djangoapps/instructor/views/api.py +msgid "Cohort" +msgstr "群组" + +#: lms/djangoapps/instructor/views/api.py +msgid "Team" +msgstr "团队" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the city in which they live. +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py lms/templates/register-form.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/shoppingcart/receipt.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "City" +msgstr "城市" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: lms/templates/register-form.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/shoppingcart/receipt.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Country" +msgstr "国家/地区" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "enrollment" +msgstr "报名" + +#: lms/djangoapps/instructor/views/api.py +msgid "The file must contain a 'cohort' column containing cohort names." +msgstr "该文件必须包含一个“群组”列,该列中包含了群组的名称。" + +#: lms/djangoapps/instructor/views/api.py +msgid "The file must contain a 'username' column, an 'email' column, or both." +msgstr "该文件必须包含一个“username”列,或一个“email”列,或两者都包含。" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Coupon Code" +msgstr "优惠券编码" + +#: lms/djangoapps/instructor/views/api.py +#: openedx/core/djangoapps/schedules/admin.py +msgid "Course Id" +msgstr "课程编号" + +#: lms/djangoapps/instructor/views/api.py +msgid "% Discount" +msgstr "%折扣" + +#: lms/djangoapps/instructor/views/api.py lms/djangoapps/shoppingcart/pdf.py +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: wiki/plugins/attachments/forms.py +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +msgid "Description" +msgstr "描述" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "过期日期" + +#: lms/djangoapps/instructor/views/api.py +msgid "Is Active" +msgstr "是否活跃" + +#: lms/djangoapps/instructor/views/api.py +msgid "Code Redeemed Count" +msgstr "推广折扣额代码" + +#: lms/djangoapps/instructor/views/api.py +msgid "Total Discounted Seats" +msgstr "总折扣名额" + +#: lms/djangoapps/instructor/views/api.py +msgid "Total Discounted Amount" +msgstr "总折扣金额" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "detailed enrollment" +msgstr "报名详情" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "executive summary" +msgstr "摘要信息" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "survey" +msgstr "调查" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "proctored exam results" +msgstr "监考模式考试结果" + +#: lms/djangoapps/instructor/views/api.py +msgid "Could not parse amount as a decimal" +msgstr "无法解析总数为十进制" + +#: lms/djangoapps/instructor/views/api.py +msgid "Unable to generate redeem codes because of course misconfiguration." +msgstr "由于课程的错误配置,无法生成兑换码。" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/shoppingcart/models.py +msgid "pdf download unavailable right now, please contact support." +msgstr "pdf文件现在无法下载,请联系技术支持。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: unknown" +msgstr "{student}的选课状态:未知" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: active" +msgstr "{student}的选课状态:有效" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: inactive" +msgstr "{student}的选课状态:无效" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: pending" +msgstr "{student}的选课状态:挂起" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: never enrolled" +msgstr "{student}的选课状态:从未加入" + +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "模块不存在。" + +#: lms/djangoapps/instructor/views/api.py +msgid "An error occurred while deleting the score." +msgstr "删除该分数时出错。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Course has no entrance exam section." +msgstr "本课程无入学测试部分。" + +#: lms/djangoapps/instructor/views/api.py +msgid "all_students and unique_student_identifier are mutually exclusive." +msgstr "all_students和unique_student_identifier是相互不包含的。" + +#: lms/djangoapps/instructor/views/api.py +msgid "all_students and delete_module are mutually exclusive." +msgstr "all_students和delete_module是相互不包含的。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Requires instructor access." +msgstr "需要教师访问。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Course has no valid entrance exam section." +msgstr "课程无有效的入学测试部分。" + +#: lms/djangoapps/instructor/views/api.py +msgid "All Students" +msgstr "所有学生" + +#: lms/djangoapps/instructor/views/api.py +msgid "Cannot rescore with all_students and unique_student_identifier." +msgstr "不能重新评定all_students和unique_student_identifier。" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "ORA data" +msgstr "ORA数据" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "grade" +msgstr "成绩" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "problem grade" +msgstr "问题计分情况" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Successfully changed due date for student {0} for {1} to {2}" +msgstr "成功修改了学生{0}的截止日期从{1}变为{2}" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Successfully removed invalid due date extension (unit has no due date)." +msgstr "已经成功的移除了无效的延长截止日期 (单元没有截止日期)。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Successfully reset due date for student {0} for {1} to {2}" +msgstr "成功重置了学生{0}的截止日期从{1}变为{2}" + +#: lms/djangoapps/instructor/views/api.py +#, python-format +msgid "This student (%s) will skip the entrance exam." +msgstr "此学生 (%s) 将会跳过入学考试。" + +#: lms/djangoapps/instructor/views/api.py +#, python-format +msgid "This student (%s) is already allowed to skip the entrance exam." +msgstr "此学生 (%s) 已被允许跳过入学考试。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Certificate generation task for all students of this course has been " +"started. You can view the status of the generation task in the \"Pending " +"Tasks\" section." +msgstr "该课程所有学生的证书生成任务已经启动,您可以在“主讲教师待处理的任务”板块中查看该生成任务的状态。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Please select one or more certificate statuses that require certificate " +"regeneration." +msgstr "请选择需要一个或多个修课证明重制之状态。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Please select certificate statuses from the list only." +msgstr "请只从清单中选取证书形式。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Certificate regeneration task has been started. You can view the status of " +"the generation task in the \"Pending Tasks\" section." +msgstr "修课证明重新产出任务已启动。您可以在“待处理任务”区域中查看证明产出任务的状态。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Student (username/email={user}) already in certificate exception list." +msgstr "学生 (username/email={user}) 已经排除於证书名单之外。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Certificate exception (user={user}) does not exist in certificate white " +"list. Please refresh the page and try again." +msgstr "证书例外 (user={user}) 不存在于证书批准名单中。请重新载入页面或再试一次。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Student username/email field is required and can not be empty. Kindly fill " +"in username/email and then press \"Add to Exception List\" button." +msgstr "学生使用者名称及电子邮件是必填且不能空白。请填入使用者名称及电子邮件,并按“加入例外名单”按钮。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"The record is not in the correct format. Please add a valid username or " +"email address." +msgstr "记录非为正确之格式。请加入有效使用者名称或email 网址。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"{user} does not exist in the LMS. Please check your spelling and retry." +msgstr "{user} 不存在于LMS。请确认您的拼字并再试一次。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"{user} is not enrolled in this course. Please check your spelling and retry." +msgstr "{user} 没有注册此课程。请确认您的拼字并再试一次。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Invalid data, generate_for must be \"new\" or \"all\"." +msgstr "无效数据,generate_for 必须为 \"新\" 或 \"全部\"。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Certificate generation started for white listed students." +msgstr "被批准的学生之证书开始产生。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "user \"{user}\" in row# {row}" +msgstr "使用者 \"{user}\" in row# {row}" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "user \"{username}\" in row# {row}" +msgstr "使用者 \"{username}\" in row# {row}" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Certificate of {user} has already been invalidated. Please check your " +"spelling and retry." +msgstr "使用者之证书 {user} 已经无失效。请确认拼字或再试一次。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Certificate for student {user} is already invalid, kindly verify that " +"certificate was generated for this student and then proceed." +msgstr "学生 {user}的证书已无效,请核对该证书是否是为此学生产出后再做后续动作。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Certificate Invalidation does not exist, Please refresh the page and try " +"again." +msgstr "证书失效是不存在的,请重新载入页面或再试一次。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Student username/email field is required and can not be empty. Kindly fill " +"in username/email and then press \"Invalidate Certificate\" button." +msgstr "学生使用者名称及email是必填的且不能空白。请填入使用者名称及email,并按“作废证书”的按钮。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"The student {student} does not have certificate for the course {course}. " +"Kindly verify student username/email and the selected course are correct and" +" try again." +msgstr "" +"学生 {student} 没有此门课程 {course}之修课证明。请验证学生使用者名称/email以及确认所选之课程是否正确,然后再试一次。" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "coupon id is None" +msgstr "优惠券ID不存在" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" +msgstr "编号为({coupon_id})的优惠券不存在" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon id ({coupon_id}) is already inactive" +msgstr "编号为({coupon_id})的优惠券已经被激活" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon id ({coupon_id}) updated successfully" +msgstr "编号为({coupon_id})的优惠券更新成功" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "" +"The code ({code}) that you have tried to define is already in use as a " +"registration code" +msgstr "您试图定义的这个卡号 ({code})已经被注册码使用了" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "Please Enter the Integer Value for Coupon Discount" +msgstr "请输入整数值的折扣率" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "Please Enter the Coupon Discount Value Less than or Equal to 100" +msgstr "请输入不大于100的优惠券折扣度" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "Please enter the date in this format i-e month/day/year" +msgstr "请以该格式输入日期,如:月/日/年" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon code ({code}) added successfully" +msgstr "使用优惠代码({code})的优惠券添加成功。" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon code ({code}) already exists for this course" +msgstr "优惠代码为({code})的优惠券对于该课程已经存在" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "coupon id not found" +msgstr "优惠券编号无法找到" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon id ({coupon_id}) updated Successfully" +msgstr "编号为({coupon_id})的优惠券更新成功" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Instructor" +msgstr "主讲教师" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#, python-brace-format +msgid "" +"To gain insights into student enrollment and participation {link_start}visit" +" {analytics_dashboard_name}, our new course analytics product{link_end}." +msgstr "" +"要深入了解学生的选课和参与信息,请{link_start}访问我们全新的课程分析产品{analytics_dashboard_name}{link_end}。" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "E-Commerce" +msgstr "电子商务" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Special Exams" +msgstr "专业测验" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/djangoapps/support/views/index.py cms/templates/certificates.html +#: cms/templates/export.html cms/templates/widgets/header.html +msgid "Certificates" +msgstr "证书" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Please Enter the numeric value for the course price" +msgstr "课程价格只能是数字" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#, python-brace-format +msgid "CourseMode with the mode slug({mode_slug}) DoesNotExist" +msgstr "课程模型中的模型类({mode_slug})不存在" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "CourseMode price updated successfully" +msgstr "课程模式价格更新成功" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Course Info" +msgstr "课程信息" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#, python-brace-format +msgid "Enrollment data is now available in {dashboard_link}." +msgstr "选课数据现已可通过{dashboard_link}查看。" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Membership" +msgstr "会员资格" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Cohorts" +msgstr "群组" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html +msgid "Discussions" +msgstr "讨论" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/ccx/coach_dashboard.html +msgid "Student Admin" +msgstr "学生管理" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Extensions" +msgstr "扩展" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Data Download" +msgstr "数据下载" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Analytics" +msgstr "分析" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Metrics" +msgstr "度量" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Open Responses" +msgstr "开放性题目" + +#. Translators: number sent refers to the number of emails sent +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +msgid "0 sent" +msgstr "已发送0封邮件" + +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +#, python-brace-format +msgid "{num_emails} sent" +msgid_plural "{num_emails} sent" +msgstr[0] "{num_emails} 已发送" + +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +#, python-brace-format +msgid "{num_emails} failed" +msgid_plural "{num_emails} failed" +msgstr[0] "{num_emails} 失败" + +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +msgid "Complete" +msgstr "已经完成" + +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +msgid "Incomplete" +msgstr "未完成" + +#: lms/djangoapps/instructor/views/registration_codes.py +#, python-brace-format +msgid "" +"The enrollment code ({code}) was not found for the {course_name} course." +msgstr "对于{course_name}课程的选课码({code})未找到。" + +#: lms/djangoapps/instructor/views/registration_codes.py +msgid "This enrollment code has been canceled. It can no longer be used." +msgstr "该选课码已经被取消,不能再使用。" + +#: lms/djangoapps/instructor/views/registration_codes.py +msgid "This enrollment code has been marked as unused." +msgstr "该选课码已被标记为未使用过的。" + +#: lms/djangoapps/instructor/views/registration_codes.py +msgid "The enrollment code has been restored." +msgstr "选课码已修复。" + +#: lms/djangoapps/instructor/views/registration_codes.py +#, python-brace-format +msgid "The redemption does not exist against enrollment code ({code})." +msgstr "针对redemption 注册代码 ({code})是不存在的。" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Could not find student matching identifier: {student_identifier}" +msgstr "无法找到与标识符:{student_identifier}匹配的学生" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unable to parse date: " +msgstr "不能解析日期" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Couldn't find module for url: {0}" +msgstr "不能为url {0} 找到合适的模块" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Unit {0} has no due date to extend." +msgstr "单元{0}没有要延长的截止日期。" + +#: lms/djangoapps/instructor/views/tools.py +msgid "An extended due date must be later than the original due date." +msgstr "延长的截止日期必须在正常截止日期之后。" + +#: lms/djangoapps/instructor/views/tools.py +msgid "No due date extension is set for that student and unit." +msgstr "还没有为学生和单元设置可延长的截止日期。" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's full name. +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/api.py cms/templates/register.html +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Full Name" +msgstr "全名" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Extended Due Date" +msgstr "扩展截止日期" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Users with due date extensions for {0}" +msgstr "拥有到期扩展{0}的用户" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Due date extensions for {0} {1} ({2})" +msgstr "到期扩展{0} {1} ({2})" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "Requested task is already running" +msgstr "请求任务已在运行中" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "Error occured. Please try again later." +msgstr "发生错误,请稍后重试。" + +#: lms/djangoapps/instructor_task/api_helper.py +#, python-brace-format +msgid "" +"The {report_type} report is being created. To view the status of the report," +" see Pending Tasks below. You will be able to download the report when it is" +" complete." +msgstr "正在创建{report_type}报告,请在下面的“进行中的任务”查看报告状态。您可以在任务完成时下载报告。" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "This component cannot be rescored." +msgstr "无法重新评分此组件。" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "This component does not support score override." +msgstr "此组件不支持覆盖分数操作。" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "Scores must be between 0 and the value of the problem." +msgstr "分数必须为0与题目分值之间。" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "Not all problems in entrance exam support re-scoring." +msgstr "入学考试中不是所有的问题都支持重新打分。" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "rescored" +msgstr "重新评分" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/djangoapps/instructor_task/tasks_helper/module_state.py +msgid "overridden" +msgstr "已覆盖" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "reset" +msgstr "重置" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/templates/wiki/plugins/attachments/index.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/models/article.py +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +#: wiki/templates/wiki/includes/revision_info.html +msgid "deleted" +msgstr "已删除" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "emailed" +msgstr "已邮件通知" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "graded" +msgstr "已评价" + +#. Translators: This is a past-tense phrase that is inserted into task +#. progress messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "problem distribution graded" +msgstr "问题分布已评价" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "generating_enrollment_report" +msgstr "正在生成选课报告" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "certificates generated" +msgstr "证书已生成" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#. An example of such a message is: "Progress: {action} {succeeded} of +#. {attempted} so far" +#: lms/djangoapps/instructor_task/tasks.py +msgid "cohorted" +msgstr "群组化" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the First Name +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "First Name" +msgstr "名" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the First Name +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Last Name" +msgstr "姓" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: lms/templates/shoppingcart/receipt.html +msgid "Company Name" +msgstr "公司名称" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the Title +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py wiki/forms.py +#: wiki/templates/wiki/dir.html +msgid "Title" +msgstr "标题" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's year of birth. +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/api.py lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Year of Birth" +msgstr "出生年份" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Enrollment Date" +msgstr "选课日期" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Currently Enrolled" +msgstr "当前注册" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Enrollment Source" +msgstr "注册来源" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Manual (Un)Enrollment Reason" +msgstr "招生手册 (Un)" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Enrollment Role" +msgstr "注册身份" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "List Price" +msgstr "列表价格" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Payment Amount" +msgstr "支付金额" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Coupon Codes Used" +msgstr "优惠券代码已使用" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Registration Code Used" +msgstr "注册编号已使用" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Payment Status" +msgstr "付款状态" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Transaction Reference Number" +msgstr "交易参考编码" + +#: lms/djangoapps/instructor_task/views.py +msgid "No status information available" +msgstr "尚无状态信息" + +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "No task_output information found for instructor_task {0}" +msgstr "无主讲教师任务 {0}的输出信息" + +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "No parsable task_output information found for instructor_task {0}: {1}" +msgstr "未找到主讲教师任务{0}:{1} 的可解析的任务输出信息" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable status information available" +msgstr "尚无可解析的状态信息" + +#: lms/djangoapps/instructor_task/views.py +msgid "No message provided" +msgstr "尚无消息" + +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Invalid task_output information found for instructor_task {0}: {1}" +msgstr "发现主讲教师任务{0}: {1}的无效的任务输出信息" + +#: lms/djangoapps/instructor_task/views.py +msgid "No progress status information available" +msgstr "尚无进度状态信息" + +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "No parsable task_input information found for instructor_task {0}: {1}" +msgstr "未找到主讲教师任务{0}:{1} 的可解析的任务输入信息" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} and {succeeded} are counts. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Progress: {action} {succeeded} of {attempted} so far" +msgstr "进度: 目前 {attempted}的{action} {succeeded} " + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Unable to find submission to be {action} for student '{student}'" +msgstr "无法找到学生“{student}”的要被{action}的提交" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem failed to be {action} for student '{student}'" +msgstr "学生“{student}”的问题{action}失败" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem successfully {action} for student '{student}'" +msgstr "学生“{student}”的问题{action}成功" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "" +"Unable to find entrance exam submission to be {action} for student " +"'{student}'" +msgstr "无法找到学生“{student}”的要被{action}的入学考试提交" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Entrance exam successfully {action} for student '{student}'" +msgstr "为学生 '{student}'{action} 入学考试成功" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Unable to find any students with submissions to be {action}" +msgstr "无法找到任何为{action}提交的学生" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem failed to be {action} for any of {attempted} students" +msgstr "对于{attempted}学生的问题{action}失败" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem successfully {action} for {attempted} students" +msgstr "对于{attempted}学生的问题{action}成功" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem {action} for {succeeded} of {attempted} students" +msgstr "对于{attempted} 学生的问题 {action}{succeeded}" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Unable to find any recipients to be {action}" +msgstr "无法找到{action}的接受者" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Message failed to be {action} for any of {attempted} recipients " +msgstr "对{attempted}接受者的消息{action}失败" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Message successfully {action} for {attempted} recipients" +msgstr "对于{attempted}接受者的消息{action}成功" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Message {action} for {succeeded} of {attempted} recipients" +msgstr "对于{attempted}接受者的消息{action}{succeeded}" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Status: {action} {succeeded} of {attempted}" +msgstr "状态: 对于{attempted}{action} {succeeded} " + +#. Translators: {skipped} is a count. This message is appended to task +#. progress status messages. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid " (skipping {skipped})" +msgstr "(忽略 {skipped})" + +#. Translators: {total} is a count. This message is appended to task progress +#. status messages. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid " (out of {total})" +msgstr "( /{total} )" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"This component's access settings refer to deleted or invalid group " +"configurations." +msgstr "此组件的访问设置指的是已删除或无效的分组设置。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"This unit's access settings refer to deleted or invalid group " +"configurations." +msgstr "此单元的访问设置指的是已删除的或无效的分组配置项。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "This component's access settings refer to deleted or invalid groups." +msgstr "此组件的访问设置指的是已删除的或无效的分组。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "This unit's access settings refer to deleted or invalid groups." +msgstr "此单元的访问设置指的是已删除的或无效的分组。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"This component's access settings contradict its parent's access settings." +msgstr "此组件的访问设置与其父级访问设置相冲突。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "Whether to display this module in the table of contents" +msgstr "是否在表格内容中展示该模块" + +#. Translators: "TOC" stands for "Table of Contents" +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"What format this module is in (used for deciding which grader to apply, and " +"what to show in the TOC)" +msgstr "该模块的格式是什么(用于决定应用哪一个评分者,以及在TOC中显示什么)" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "Course Chrome" +msgstr "课程Chrome" + +#. Translators: DO NOT translate the words in quotes here, they are +#. specific words for the acceptable values. +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"Enter the chrome, or navigation tools, to use for the XBlock in the LMS. Valid values are: \n" +"\"chromeless\" -- to not use tabs or the accordion; \n" +"\"tabs\" -- to use tabs only; \n" +"\"accordion\" -- to use the accordion only; or \n" +"\"tabs,accordion\" -- to use tabs and the accordion." +msgstr "" +"输入在 LMS 的 XBlock 中要使用的镶边(导航工具条)。允许的取值有:\n" +"“chromeless”——不使用选项卡及风琴栏;\n" +"“tabs”——只使用选项卡;\n" +"“accordion”——只使用风琴栏;\n" +"“tabs,accordion”——既使用选项卡也使用风琴栏。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "Default Tab" +msgstr "默认页面" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"Enter the tab that is selected in the XBlock. If not set, the Course tab is " +"selected." +msgstr "输入在XBlock中被选择的选项卡,如未设置,则选择课件选项卡。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "LaTeX Source File Name" +msgstr "LaTex 源文件名" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "Enter the source file name for LaTeX." +msgstr "输入 LaTex 源文件名。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"A dictionary that maps which groups can be shown this block. The keys are " +"group configuration ids and the values are a list of group IDs. If there is " +"no key for a group configuration or if the set of group IDs is empty then " +"the block is considered visible to all. Note that this field is ignored if " +"the block is visible_to_staff_only." +msgstr "" +"被字典对映到的群组可以被显示在此区块中。关键字是群组设定id和数值是群组 ID的列表。假如没有关键字给群组设定或者群组 " +"ID的集合是空的那么区块就会对所有公开。如果该区块是visible_to_staff_only则字段会被忽略。" + +#: lms/djangoapps/mobile_api/views.py +msgid "Missing requested parameter 'platform'" +msgstr "缺少必要参数 ‘平台’" + +#: lms/djangoapps/mobile_api/views.py +msgid "Unable to find information about the latest version of the platform" +msgstr "未能找到平台最新版本的相关信息" + +#: lms/djangoapps/notes/views.py lms/templates/notes.html +msgid "My Notes" +msgstr "我的笔记" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Order Payment Confirmation" +msgstr "订单付款确认" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"Confirmation and Registration Codes for the following courses: " +"{course_name_list}" +msgstr "接下来的课程:{course_name_list}的确认和注册编号" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Trying to add a different currency into the cart" +msgstr "尝试添加不同的货币到购物车" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Internal reference code for this invoice." +msgstr "该发票的内部参考代码。" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Customer's reference code for this invoice." +msgstr "该发票的客户参考代码。" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"The amount of the transaction. Use positive amounts for payments and " +"negative amounts for refunds." +msgstr "交易的总额,使用正总额的当作付款,负总额的当作退款。" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Lower-case ISO currency codes" +msgstr "小写国际标準组织通货代号" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Optional: provide additional information for this transaction" +msgstr "可选:为该交易提供附加信息" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"The status of the payment or refund. 'started' means that payment is " +"expected, but money has not yet been transferred. 'completed' means that the" +" payment or refund was received. 'cancelled' means that payment or refund " +"was expected, but was cancelled before money was transferred. " +msgstr "" +"付款和退款的状态。“开始”意味着即将付款,但钱尚未转移。“完成”意味着付款或退款已经收到。“取消”意味着即将付款或退款,但在钱转移之前就被取消了。" + +#: lms/djangoapps/shoppingcart/models.py +msgid "The number of items sold." +msgstr "已售项目的数量。" + +#: lms/djangoapps/shoppingcart/models.py +msgid "The price per item sold, including discounts." +msgstr "没意见商品出售的价格,包括折扣。" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Registration for Course: {course_name}" +msgstr "注册课程:{course_name}" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"Please visit your {link_start}dashboard{link_end} to see your new course." +msgstr "请前往您的{link_start}课程面板{link_end}查看新课程。" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Enrollment codes for Course: {course_name}" +msgstr "课程:{course_name}的选课码" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Mode {mode} does not exist for {course_id}" +msgstr "{course_id}不存在 {mode}模式" + +#. Translators: In this particular case, mode_name refers to a +#. particular mode (i.e. Honor Code Certificate, Verified Certificate, etc) +#. by which a user could enroll in the given course. +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "{mode_name} for course {course}" +msgstr "课程{course}的{mode_name} " + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"You can unenroll in the course and receive a full refund for 14 days after " +"the course start date. " +msgstr "您可以取消注册课程,并在开课后14天收到全额退费。" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"If you haven't verified your identity yet, please start the verification " +"process ({verification_url})." +msgstr "如果您还没有验证您的身份,请立即开始验证过程吧({verification_url})。" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"You can unenroll in the course and receive a full refund for 2 days after " +"the course start date. " +msgstr "您可以取消注册课程,并在开课后2天收到全额退费。" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"{refund_reminder_msg}To receive your refund, contact {billing_email}. Please" +" include your order number in your email. Please do NOT include your credit " +"card information." +msgstr "" +"{refund_reminder_msg} 如要收到退费请联系 " +"{billing_email}。请包含您的订单号码及您的email。请不要提供您的信用卡讯息。" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"We greatly appreciate this generous contribution and your support of the " +"{platform_name} mission. This receipt was prepared to support charitable " +"contributions for tax purposes. We confirm that neither goods nor services " +"were provided in exchange for this gift." +msgstr "" +"我们非常感谢慷慨的贡献,您的支持{platform_name}的任务。该收据準备支持为稅收目的的慈善捐款。我们确认,没有商品,也没有服务,以换取这份礼物。" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Could not find a course with the ID '{course_id}'" +msgstr "无法找到ID为‘{course_id}’的课程" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Donation for {course}" +msgstr "给{course}捐款" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Donation for {platform_name}" +msgstr "为 {platform_name}捐款" + +#: lms/djangoapps/shoppingcart/pdf.py +#, python-brace-format +msgid "Page {page_number} of {page_count}" +msgstr "翻到{page_count}的{page_number}" + +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html +msgid "Invoice" +msgstr "收据" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "Order" +msgstr "顺序" + +#: lms/djangoapps/shoppingcart/pdf.py +#, python-brace-format +msgid "{id_label} # {item_id}" +msgstr "{id_label} # {item_id}" + +#: lms/djangoapps/shoppingcart/pdf.py +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +#, python-brace-format +msgid "Date: {date}" +msgstr "日期: {date}" + +#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/reports.py +msgid "Quantity" +msgstr "数量" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "" +"List Price\n" +"per item" +msgstr "数量" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "" +"Discount\n" +"per item" +msgstr "" +"折扣\n" +"每一项" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "Amount" +msgstr "量" + +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/courseware/gradebook.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/receipt.html +msgid "Total" +msgstr "总计" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "Payment Received" +msgstr "付款已收到" + +#: lms/djangoapps/shoppingcart/pdf.py membership/models.py +msgid "Balance" +msgstr "金额" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "Billing Address" +msgstr "帐单地址" + +#: lms/djangoapps/shoppingcart/pdf.py openedx/core/djangoapps/user_api/api.py +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/disclaimer.html +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Disclaimer" +msgstr "免责声明" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "TERMS AND CONDITIONS" +msgstr "条款声明" + +#. Translators: this text appears when an unfamiliar error code occurs during +#. payment, +#. for which we don't know a user-friendly message to display in advance. +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "UNKNOWN REASON" +msgstr "未知原因" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "The payment processor did not return a required parameter: {parameter}" +msgstr "支付处理程序没有返回一个必须的参数:{parameter}" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"The payment processor returned a badly-typed value {value} for parameter " +"{parameter}." +msgstr "支付处理程序返回一个参数 {parameter}的错误输入值 {value}。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The payment processor accepted an order whose number is not in our system." +msgstr "付款处理器接受了一个号码不在我们系统中的订单。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"The amount charged by the processor {charged_amount} " +"{charged_amount_currency} is different than the total cost of the order " +"{total_cost} {total_cost_currency}." +msgstr "" +"付款处理器收取的总金额{charged_amount} {charged_amount_currency}与订单总费用{total_cost} " +"{total_cost_currency}不一致。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Our payment processor did not accept your payment. The decision they" +" returned was {decision}, and the reason was {reason}. You were not " +"charged. Please try a different form of payment. Contact us with payment-" +"related questions at {email}." +msgstr "" +"抱歉!支付系统没有受理您的缴费申请。答复是:{decision},原因为:{reason}。您尚未缴费,请尝试其他支付方式。相关问题请联系{email}。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Our payment processor sent us back a payment confirmation that had " +"inconsistent data! We apologize that we cannot verify whether the charge " +"went through and take further action on your order. The specific error " +"message is: {msg} Your credit card may possibly have been charged. Contact " +"us with payment-specific questions at {email}." +msgstr "" +"抱歉!支付系统返回的支付确认数据不一致。无法确认支付成功并进一步处理您的订单,我们深表歉意。具体的错误信息为: " +"{msg}。您的信用卡可能已被扣费。相关问题请联系{email}。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Due to an error your purchase was charged for a different amount than" +" the order total! The specific error message is: {msg}. Your credit card has" +" probably been charged. Contact us with payment-specific questions at " +"{email}." +msgstr "抱歉!实际扣费金额与订单总额不符!具体的错误信息为:{msg}。您的信用卡可能已被扣费。相关问题请联系{email}。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Our payment processor sent us back a corrupted message regarding your" +" charge, so we are unable to validate that the message actually came from " +"the payment processor. The specific error message is: {msg}. We apologize " +"that we cannot verify whether the charge went through and take further " +"action on your order. Your credit card may possibly have been charged. " +"Contact us with payment-specific questions at {email}." +msgstr "" +"抱歉!支付系统返回信息受损,无法解析返回结果。具体的错误信息为{msg}。无法确认支付成功并进一步处理您的订单,对此我们深表歉意。您的信用卡可能已被扣费。相关问题请联系{email}。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Our payment processor sent us back a message saying that you have " +"cancelled this transaction. The items in your shopping cart will exist for " +"future purchase. If you feel that this is in error, please contact us with " +"payment-specific questions at {email}." +msgstr "" +"抱歉!我们的支付系统发送了一条您已取消该交易的消息。您购物车中的商品将为存在于您未来的购买中。若您觉得此处发生错误,请联系{email}询问具体的付款问题。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"We're sorry, but this payment was declined. The items in your shopping cart " +"have been saved. If you have any questions about this transaction, please " +"contact us at {email}." +msgstr "对不起,此次支付无效。您的购物车中的内容将会被保留。若对此次交易有任何问题,请通过{email}联系我们。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Your payment could not be processed because an unexpected exception " +"occurred. Please contact us at {email} for assistance." +msgstr "抱歉!您的付款由于出现异常未被受理。请联系{email}寻求帮助。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Successful transaction." +msgstr "交易成功。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The request is missing one or more required fields." +msgstr "请求缺少了一个或多个必须的字段" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "One or more fields in the request contains invalid data." +msgstr "请求中的一个或多个字段包含了无效数据。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The merchant reference code for this authorization request matches the merchant reference code of another\n" +" authorization request that you sent within the past 15 minutes.\n" +" Possible action: Resend the request with a unique merchant reference code.\n" +" " +msgstr "" +"\n" +"此授权要求商家参考代码需於过去15分钟之内匹配另一家商家参考代码。\n" +"可能解决的方法:重新发送一个特定商家需求的参考代码。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Only a partial amount was approved." +msgstr "仅有部分金额被批准。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "General system failure." +msgstr "系统故障。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The request was received but there was a server timeout. This error does not include timeouts between the\n" +" client and the server.\n" +" " +msgstr "" +"\n" +"请求已接受但服务器超时。该错误不包括\n" +"客户端与服务器之间的超时" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The request was received, but a service did not finish running in time." +msgstr "请求已接受,但服务为按时完成。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource\n" +" because it did not pass the Address Verification System (AVS).\n" +" " +msgstr "" +"\n" +"授权请求已被发卡行通过但被CyberSource拒绝\n" +"因为没有通过地址认证系统(AVS)。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The issuing bank has questions about the request. You do not receive an\n" +" authorization code programmatically, but you might receive one verbally by calling the processor.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" +"\n" +"发卡银行对此申请有问题。您没收到授权代码,但您可能收到从处理端发出口头通知。可能的解决方法,用另一种付款方式重试一遍。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" Expired card. You might also receive this if the expiration date you\n" +" provided does not match the date the issuing bank has on file.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" +"\n" +"信用卡已过期。也有可能是由于您所提供的有效期\n" +"与银行提供的日期不一致。\n" +"解决办法:尝试其他支付形式。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" General decline of the card. No other information provided by the issuing bank.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" +"\n" +"拒绝支付。发卡行未提供其他信息。\n" +"可能的解决办法:尝试另一种支付方式。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"Insufficient funds in the account. Possible action: retry with another form " +"of payment." +msgstr "账号中的资金不足。可能的解决方法:重试另一种付款方式。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Stolen or lost card." +msgstr "被盗或者遗失的卡。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"Issuing bank unavailable. Possible action: retry again after a few minutes." +msgstr "发卡银行无响应。可能的解决方法:几分钟后重试。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" Inactive card or card not authorized for card-not-present transactions.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" +"\n" +"未激活的卡或卡主未授权无卡交易。\n" +"解决办法:尝试其他交易形式。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "CVN did not match." +msgstr "信用卡验证码不匹配。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The card has reached the credit limit. Possible action: retry with another " +"form of payment." +msgstr "已超过该卡信用额度。可能的解决方法:重试另一种付款方式。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"Invalid card verification number (CVN). Possible action: retry with another " +"form of payment." +msgstr "无效的信用卡验证码(CVN)。可能的解决方法:重试另一种付款方式。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The customer matched an entry on the processors negative file." +msgstr "此客户符合於处理者的黑名单格上。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Account frozen. Possible action: retry with another form of payment." +msgstr "账号被冻结。可能的解决方法:尝试另一种付款方式。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by\n" +" CyberSource because it did not pass the CVN check.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" +"\n" +"授权请求已被发卡行通过但被CyberSource拒绝\n" +"因为没有通过CVN检查。\n" +"可能的解决办法:尝试另一种付款方式。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"Invalid account number. Possible action: retry with another form of payment." +msgstr "无效的帐户号码。可能的解决方法:重试另一种付款方式。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The card type is not accepted by the payment processor.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" +"\n" +"支付系统不受理该类型的信用卡。\n" +"可能的解决办法:尝试另一种付款方式。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"General decline by the processor. Possible action: retry with another form " +"of payment." +msgstr "付款被拒绝。可能的解决方法:重试另一种付款方式。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"There is a problem with the information in your CyberSource account. Please" +" let us know at {0}" +msgstr "此问题可能与您的CyberSource账号信息有关。请通知我们{0}" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The requested capture amount exceeds the originally authorized amount." +msgstr "所请求的捕获量超过了原先授权的数量。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Processor Failure. Possible action: retry the payment" +msgstr "处理器故障。可能的解决方法:重试支付。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The authorization has already been reversed." +msgstr "授权已被撤回。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The authorization has already been captured." +msgstr "已获得授权。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The requested transaction amount must match the previous transaction amount." +msgstr "要求的交易金额必须与先前的交易金额一致。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The card type sent is invalid or does not correlate with the credit card number.\n" +" Possible action: retry with the same card or another form of payment.\n" +" " +msgstr "" +"\n" +"所发送的信用卡类型无效或所关联的信用卡卡号错误。\n" +"可能的解决办法:以此卡重试或尝试另一种支付方式。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The request ID is invalid." +msgstr "请求ID无效。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" You requested a capture, but there is no corresponding, unused authorization record. Occurs if there was\n" +" not a previously successful authorization request or if the previously successful authorization has already\n" +" been used by another capture request.\n" +" " +msgstr "" +"\n" +"您想申请留存,但没有相应及未使用的授权记录。如果有发生非以前成功申请授权,或者以前已经申请授权成功。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The transaction has already been settled or reversed." +msgstr "该交易已经得到处理或已被退回。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" Either the capture or credit is not voidable because the capture or credit information has already been\n" +" submitted to your processor, or you requested a void for a type of transaction that cannot be voided.\n" +" " +msgstr "" +"\n" +"扣费/预授权申请信息已经提交到支付系统,不可撤销。\n" +"或者,您所请求的交易类型是不可撤销的。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "You requested a credit for a capture that was previously voided." +msgstr "您请求确认扣款的预授权已经撤销。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The request was received, but there was a timeout at the payment processor." +msgstr "请求已收到,但是支付服务超时。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Stand-alone credits are not allowed." +msgstr "不允许" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The cardholder is enrolled for payer authentication" +msgstr "持卡人注册为付款人验证" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Payer authentication could not be authenticated" +msgstr "无法验证付款人身份。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource based\n" +" on your legacy Smart Authorization settings.\n" +" Possible action: retry with a different form of payment.\n" +" " +msgstr "" +"\n" +"授权请求已被发卡行通过,\n" +"但由于您的传统只能授权设置被CyberSouce拒绝。\n" +"可能的解决办法:尝试另一种支付方式。\n" +" " + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order Number" +msgstr "订单号" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Customer Name" +msgstr "客户姓名" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Original Transaction" +msgstr "原本事务的日期" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Refund" +msgstr "偿还日期" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Amount of Refund" +msgstr "偿还总数" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Service Fees (if any)" +msgstr "服务费(如果有的话)" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Purchase Time" +msgstr "购买时间" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order ID" +msgstr "订单ID" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Unit Cost" +msgstr "单位价格" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Cost" +msgstr "总价格" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Currency" +msgstr "货币" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Comments" +msgstr "评语" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "University" +msgstr "大学" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Announce Date" +msgstr "课程发布日期" + +#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Start Date" +msgstr "课程开始日期" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Close Date" +msgstr "课程注册截止日期" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Period" +msgstr "课程注册期" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Enrolled" +msgstr "总计选修人数" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Audit Enrollment" +msgstr "审核选课" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Honor Code Enrollment" +msgstr "诚信准则选课" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Verified Enrollment" +msgstr "已认证的选课人数" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Gross Revenue" +msgstr "总收入" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue over the Minimum" +msgstr "总收入超过最低" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Verified Students Contributing More than the Minimum" +msgstr "已验证的学生贡献数量超过最低" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Refunds" +msgstr "偿还数量" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Dollars Refunded" +msgstr "已偿还金额" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Transactions" +msgstr "事务数量" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Payments Collected" +msgstr "总的已收集支付" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Successful Refunds" +msgstr "成功偿还的数量" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Amount of Refunds" +msgstr "总偿还数量" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You must be logged-in to add to a shopping cart" +msgstr "您必须登录才能添加到购物车" + +#: lms/djangoapps/shoppingcart/views.py +msgid "The course you requested does not exist." +msgstr "您请求的课程不存在。" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "The course {course_id} is already in your cart." +msgstr "课程 {course_id} 已经在您的购物车中。" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "You are already registered in course {course_id}." +msgstr "您已经在课程 {course_id} 中注册。" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Course added to cart." +msgstr "课程添加到购物车。" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "Discount does not exist against code '{code}'." +msgstr "对应的折扣码 '{code}' 不存在。" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "This enrollment code ({enrollment_code}) is no longer valid." +msgstr "该选课码({enrollment_code})不再有效。" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "This enrollment code ({enrollment_code}) is not valid." +msgstr "该选课码({enrollment_code})无效" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "" +"Code '{registration_code}' is not valid for any course in the shopping cart." +msgstr "注册编号‘{registration_code}’对于购物车中的任何课程都无效。" + +#: lms/djangoapps/shoppingcart/views.py +msgid "" +"Cart item quantity should not be greater than 1 when applying activation " +"code" +msgstr "当应用激活码时,购物车中的商品数量不应大于1" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Only one coupon redemption is allowed against an order" +msgstr "每个订单只能对应一个返券" + +#: lms/djangoapps/shoppingcart/views.py +msgid "success" +msgstr "成功" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You do not have permission to view this page." +msgstr "您没有访问此页面的权限。" + +#: lms/djangoapps/support/views/index.py +msgid "View and regenerate certificates." +msgstr "查看并产生证书。" + +#: lms/djangoapps/support/views/index.py lms/templates/support/refund.html +msgid "Manual Refund" +msgstr "人工退费" + +#: lms/djangoapps/support/views/index.py +msgid "Track refunds issued directly through CyberSource." +msgstr "直接透过CyberSource追踪退款问题。" + +#: lms/djangoapps/support/views/index.py +#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/enrollment.html +#: lms/templates/support/enrollment.html +msgid "Enrollment" +msgstr "选课" + +#: lms/djangoapps/support/views/index.py +msgid "View and update learner enrollments." +msgstr "查看及更新学习者注册资讯。" + +#: lms/djangoapps/support/views/index.py +#: lms/templates/support/manage_user.html +msgid "Manage User" +msgstr "管理用户" + +#: lms/djangoapps/support/views/index.py +msgid "Disable User Account" +msgstr "禁用用户账号" + +#: lms/djangoapps/support/views/index.py +#: lms/templates/support/entitlement.html +msgid "Entitlements" +msgstr "授权" + +#: lms/djangoapps/support/views/index.py +msgid "View, create, and reissue learner entitlements" +msgstr "查看、新建、重新分发学员授权" + +#: lms/djangoapps/support/views/index.py +#: lms/templates/support/feature_based_enrollments.html +msgid "Feature Based Enrollments" +msgstr "基于功能的注册" + +#: lms/djangoapps/support/views/index.py +msgid "View feature based enrollment settings" +msgstr "查看基于功能的注册设置" + +#: lms/djangoapps/support/views/manage_user.py +msgid "user_support_url" +msgstr "user_support_url" + +#: lms/djangoapps/support/views/manage_user.py +msgid "user_detail_url" +msgstr "user_detail_url" + +#: lms/djangoapps/support/views/manage_user.py +msgid "Usable" +msgstr "可用" + +#: lms/djangoapps/support/views/manage_user.py +msgid "Unusable" +msgstr "不可用" + +#: lms/djangoapps/support/views/manage_user.py +msgid "User Enabled Successfully" +msgstr "用户激活成功" + +#: lms/djangoapps/support/views/manage_user.py +msgid "User Disabled Successfully" +msgstr "成功禁用用户" + +#: lms/djangoapps/support/views/refund.py +#: lms/templates/shoppingcart/billing_details.html +msgid "Email Address" +msgstr "电子邮件地址" + +#: lms/djangoapps/support/views/refund.py +#: openedx/core/djangoapps/schedules/admin.py +#: cms/templates/maintenance/_force_publish_course.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: lms/templates/support/feature_based_enrollments.html +msgid "Course ID" +msgstr "课程编号" + +#: lms/djangoapps/support/views/refund.py +msgid "User not found" +msgstr "未找到用户" + +#: lms/djangoapps/support/views/refund.py +#, python-brace-format +msgid "Course {course_id} not past the refund window." +msgstr "课程 {course_id}没有通过退费窗口。" + +#: lms/djangoapps/support/views/refund.py +#, python-brace-format +msgid "No order found for {user} in course {course_id}" +msgstr "在课程{course_id}中没有为{user}找到订单。" + +#: lms/djangoapps/support/views/refund.py +#, python-brace-format +msgid "Unenrolled {user} from {course_id}" +msgstr "放弃选修{course_id}的{user}" + +#: lms/djangoapps/support/views/refund.py +#, python-brace-format +msgid "Refunded {cost} for order id {order_id}" +msgstr "订单{order_id}已退款{cost}" + +#: lms/djangoapps/teams/models.py +msgid "Optional language the team uses as ISO 639-1 code." +msgstr "团队所使用之选择性语言的代码为 ISO 639-1 。" + +#: lms/djangoapps/teams/plugins.py +#: lms/djangoapps/teams/templates/teams/teams.html +msgid "Teams" +msgstr "团队" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The supplied course id {course_id} is not valid." +msgstr "提供的课程编号{course_id}无效。" + +#: lms/djangoapps/teams/views.py +msgid "course_id must be provided" +msgstr "必须提供课程编号" + +#: lms/djangoapps/teams/views.py +msgid "text_search and order_by cannot be provided together" +msgstr "text_search和 order_by 不能一起被提供" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The supplied topic id {topic_id} is not valid" +msgstr "提供的主题编号{topic_id}无效" + +#: lms/djangoapps/teams/views.py +msgid "Error connecting to elasticsearch" +msgstr "到elasticsearch 的错误链接" + +#. Translators: 'ordering' is a string describing a way +#. of ordering a list. For example, {ordering} may be +#. 'name', indicating that the user wants to sort the +#. list by lower case name. +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The ordering {ordering} is not supported" +msgstr "不支持{ordering}排序" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The supplied course_id {course_id} is not valid." +msgstr "提供的课程编号{course_id}无效。" + +#: lms/djangoapps/teams/views.py +msgid "You are already in a team in this course." +msgstr "您已经加入了该课程中的一个小组。" + +#: lms/djangoapps/teams/views.py +msgid "username or team_id must be specified." +msgstr "必须制定用户名和team_id。" + +#: lms/djangoapps/teams/views.py +msgid "Username is required." +msgstr "需要填写用户名" + +#: lms/djangoapps/teams/views.py +msgid "Team id is required." +msgstr "需要填写Team id" + +#: lms/djangoapps/teams/views.py +msgid "This team is already full." +msgstr "该组已经满员。" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The user {username} is already a member of a team in this course." +msgstr "用户{username}已经是该课程团队中的一员了。" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "" +"The user {username} is not enrolled in the course associated with this team." +msgstr "{username}用户未选修与该团队相关的课程。" + +#: lms/djangoapps/verify_student/admin.py +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "Your {platform_name} ID Verification Approved" +msgstr "您的{platform_name}身份认证已通过" + +#: lms/djangoapps/verify_student/admin.py +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "Your {platform_name} Verification Has Been Denied" +msgstr "您的{platform_name}身份认证已被拒绝" + +#: lms/djangoapps/verify_student/models.py +msgid "The course for which this deadline applies" +msgstr "使用该截止日期的课程" + +#: lms/djangoapps/verify_student/models.py +msgid "" +"The datetime after which users are no longer allowed to submit photos for " +"verification." +msgstr "该日期之后,用户将不再允许提交照片用于认证了。" + +#: lms/djangoapps/verify_student/services.py +#, python-brace-format +msgid "Your {platform_name} verification has expired." +msgstr "您的 {platform_name} 认证已经过期。" + +#: lms/djangoapps/verify_student/views.py +msgid "Intro" +msgstr "简介" + +#: lms/djangoapps/verify_student/views.py +msgid "Make payment" +msgstr "付款" + +#: lms/djangoapps/verify_student/views.py +msgid "Payment confirmation" +msgstr "付款确认" + +#: lms/djangoapps/verify_student/views.py +msgid "Take photo" +msgstr "拍摄" + +#: lms/djangoapps/verify_student/views.py +msgid "Take a photo of your ID" +msgstr "拍摄一张您身份证件的照片" + +#: lms/djangoapps/verify_student/views.py +msgid "Review your info" +msgstr "审核您的信息" + +#: lms/djangoapps/verify_student/views.py +msgid "Enrollment confirmation" +msgstr "选课确认" + +#: lms/djangoapps/verify_student/views.py +msgid "Selected price is not valid number." +msgstr "选择的价格不是有效数字。" + +#: lms/djangoapps/verify_student/views.py +msgid "This course doesn't support paid certificates" +msgstr "本课程不支持付费认证证书。" + +#: lms/djangoapps/verify_student/views.py +msgid "No selected price or selected price is below minimum." +msgstr "未选择价格或选择的价格低于最低价。" + +#: lms/djangoapps/verify_student/views.py +msgid "" +"Photo ID image is required if the user does not have an initial verification" +" attempt." +msgstr "如果用户没有一个初步的验证尝试,则需要提供带照片的身份证件图片。" + +#: lms/djangoapps/verify_student/views.py +msgid "Missing required parameter face_image" +msgstr "缺少必要的参数:面部图像" + +#: lms/djangoapps/verify_student/views.py +msgid "Invalid course key" +msgstr "无效的课程标识" + +#: lms/djangoapps/verify_student/views.py +msgid "No profile found for user" +msgstr "未找到用户档案" + +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "Name must be at least {min_length} characters long." +msgstr "名字不能少于{min_length}字符。" + +#: lms/djangoapps/verify_student/views.py +msgid "Image data is not valid." +msgstr "图像数据无效." + +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "{platform_name} ID Verification Photos Received" +msgstr "已收到{platform_name}身份认证照片" + +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "Review ID Verification Photos For {username}" +msgstr "查看{username}的身份验证照片" + +#: lms/envs/common.py +msgid "Your Platform Name Here" +msgstr "这里是平台名称" + +#: lms/envs/common.py +msgid "Your Platform Description Here" +msgstr "您的平台描述" + +#: lms/envs/common.py +msgid "Read access" +msgstr "访问权限" + +#: lms/envs/common.py +msgid "Write access" +msgstr "写访问权限" + +#: lms/envs/common.py +msgid "Know your email address" +msgstr "找回邮箱地址" + +#: lms/envs/common.py +msgid "Know your name and username" +msgstr "找回姓名及用户名" + +#: lms/envs/common.py +msgid "Retrieve your grades for your enrolled courses" +msgstr "重新获取已修课程的分数" + +#: lms/envs/common.py +msgid "Retrieve your course certificates" +msgstr "获取您的课程证书" + +#: lms/envs/common.py +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Audit" +msgstr "旁听" + +#. Translators: This is the website name of www.facebook.com. Please +#. translate this the way that Facebook advertises in your language. +#: lms/envs/common.py +msgid "Facebook" +msgstr "Facebook" + +#: lms/envs/common.py +#, python-brace-format +msgid "Like {platform_name} on Facebook" +msgstr "在Facebook上为{platform_name}点赞" + +#. Translators: This is the website name of www.twitter.com. Please +#. translate this the way that Twitter advertises in your language. +#: lms/envs/common.py +msgid "Twitter" +msgstr "Twitter" + +#: lms/envs/common.py +#, python-brace-format +msgid "Follow {platform_name} on Twitter" +msgstr "在Twitter上关注{platform_name}" + +#. Translators: This is the website name of www.linkedin.com. Please +#. translate this the way that LinkedIn advertises in your language. +#: lms/envs/common.py +msgid "LinkedIn" +msgstr "领英" + +#: lms/envs/common.py +#, python-brace-format +msgid "Follow {platform_name} on LinkedIn" +msgstr "在领英上关注 {platform_name}" + +#. Translators: This is the website name of plus.google.com. Please +#. translate this the way that Google+ advertises in your language. +#: lms/envs/common.py +msgid "Google+" +msgstr "Google+" + +#: lms/envs/common.py +#, python-brace-format +msgid "Follow {platform_name} on Google+" +msgstr "关注{platform_name} 的Google+账号" + +#. Translators: This is the website name of www.tumblr.com. Please +#. translate this the way that Tumblr advertises in your language. +#: lms/envs/common.py +msgid "Tumblr" +msgstr "Tumblr" + +#. Translators: This is the website name of www.meetup.com. Please +#. translate this the way that MeetUp advertises in your language. +#: lms/envs/common.py +msgid "Meetup" +msgstr "Meetup" + +#. Translators: This is the website name of www.reddit.com. Please +#. translate this the way that Reddit advertises in your language. +#: lms/envs/common.py +msgid "Reddit" +msgstr "Reddit网站" + +#: lms/envs/common.py +#, python-brace-format +msgid "Subscribe to the {platform_name} subreddit" +msgstr "订阅 {platform_name} 在Reddit网站的子板块" + +#. Translators: This is the website name of https://vk.com. Please +#. translate this the way that VK advertises in your language. +#: lms/envs/common.py +msgid "VK" +msgstr "VK" + +#. Translators: This is the website name of http://www.weibo.com. Please +#. translate this the way that Weibo advertises in your language. +#: lms/envs/common.py +msgid "Weibo" +msgstr "微博" + +#. Translators: This is the website name of www.youtube.com. Please +#. translate this the way that YouTube advertises in your language. +#: lms/envs/common.py +msgid "Youtube" +msgstr "YouTube" + +#: lms/envs/common.py +#, python-brace-format +msgid "Subscribe to the {platform_name} YouTube channel" +msgstr "订阅 {platform_name} 的YouTube频道" + +#: lms/envs/common.py lms/envs/eliteu_common.py +msgid "Kosovo" +msgstr "科索沃" + +#: lms/envs/common.py +#, python-brace-format +msgid "Welcome to {platform_name}." +msgstr "欢迎来到 {platform_name}" + +#: lms/envs/common.py +#, python-brace-format +msgid "" +"You have left the {start_bold}{enterprise_name}{end_bold} website and are " +"now on the {platform_name} site. {enterprise_name} has partnered with " +"{platform_name} to offer you high-quality, always available learning " +"programs to help you advance your knowledge and career. {line_break}Please " +"note that {platform_name} has a different {privacy_policy_link_start}Privacy" +" Policy{privacy_policy_link_end} from {enterprise_name}." +msgstr "" +"您已经离开 {start_bold}{enterprise_name}{end_bold} 页面,来到 {platform_name} 网站。 " +"{enterprise_name} 携手 {platform_name} " +"为您提供高质量,能随时随地学习的课程,助力您的知识扩展,事业进阶。{line_break}请注意, {platform_name} " +"的{privacy_policy_link_start}隐私政策{privacy_policy_link_end}与 {enterprise_name}" +" 不一致。" + +#: lms/envs/common.py +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Professional" +msgstr "教授" + +#: lms/envs/common.py +msgid "No-Id-Professional" +msgstr "未注册教授" + +#: lms/envs/common.py +msgid "Credit" +msgstr "学分" + +#: lms/envs/eliteu_common.py membership/templates/membership/card.html +#: membership/templates/membership/index.html +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/certificates/verify.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "EliteMBA" +msgstr "英荔商学院" + +#: lms/envs/eliteu_common.py +msgid "Certificate" +msgstr "结课证书" + +#: lms/envs/eliteu_common.py +msgid "Certificate of Achievement" +msgstr "荣誉证书" + +#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html +msgid "Please correct the errors below." +msgstr "请修正下面的错误" + +#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html +#, python-format +msgid "Are you sure you want to cancel retirement for user \"%(username)s\"? " +msgstr "您确定要为用户\"%(username)s\"取消退出计划吗?" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#, python-format +msgid "" +"\n" +" Welcome to %(course_name)s\n" +" " +msgstr "" +"\n" +"欢迎 %(course_name)s" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#, python-format +msgid "To get started, please visit https://%(site_name)s." +msgstr "开始。请访问 https://%(site_name)s" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +msgid "The login information for your account follows:" +msgstr "您的账号登录信息如下:" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "email: %(email_address)s" +msgstr "电子邮件:%(email_address)s" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "password: %(password)s" +msgstr "密码:%(password)s" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +msgid "It is recommended that you change your password." +msgstr "建议您修改密码" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "Sincerely yours, The %(course_name)s Team" +msgstr "您的真挚的,%(course_name)s 团队" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "Welcome to %(course_name)s" +msgstr "欢迎 %(course_name)s" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "" +"To get started, please visit https://%(site_name)s. The login information " +"for your account follows." +msgstr "开始。请访问https://%(site_name)s 。您的账号登录信息如下。" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/subject.txt +#: lms/templates/instructor/edx_ace/enrollenrolled/email/subject.txt +#, python-format +msgid "You have been enrolled in %(course_name)s" +msgstr "您已经选修了%(course_name)s" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +#, python-format +msgid "" +"\n" +" You have been invited to be a beta tester for %(course_name)s at %(site_name)s\n" +" " +msgstr "" +"\n" +"您已被邀请作为 Beta 测试员加入%(site_name)s上的%(course_name)s。" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +msgid "The invitation has been sent by a member of the course staff." +msgstr "邀请已经由一名课程工作人员发出。" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +msgid "To start accessing course materials, please visit:" +msgstr "获取课程资料,请访问:" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +msgid "To enroll in this course and begin the beta test:" +msgstr "报名参加本课程并开始测试:" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +#, python-format +msgid "Visit %(course_name)s" +msgstr "访问%(course_name)s" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +#, python-format +msgid "Visit %(site_name)s" +msgstr "访问%(site_name)s" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#, python-format +msgid "" +"This email was automatically sent from %(site_name)s to %(email_address)s" +msgstr "该电子邮件是由%(site_name)s向%(email_address)s自动发出的" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt +#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt +#, python-format +msgid "Dear %(full_name)s" +msgstr "亲爱的%(full_name)s" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#, python-format +msgid "" +"You have been invited to be a beta tester for %(course_name)s at " +"%(site_name)s by a member of the course staff." +msgstr "您已被课程工作人员邀请作为 Beta 测试员加入%(site_name)s上的 %(course_name)s。" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt +#, python-format +msgid "To start accessing course materials, please visit %(course_url)s" +msgstr "获取课程资料,请访问 %(course_url)s" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#, python-format +msgid "" +"Visit %(course_about_url)s to enroll in this course and begin the beta test." +msgstr "访问%(course_about_url)s以加入该课程并开始Beta测试。" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#, python-format +msgid "Visit %(site_name)s to enroll in this course and begin the beta test." +msgstr "访问%(site_name)s以选修此课程并开始Beta测试。" + +#: lms/templates/instructor/edx_ace/addbetatester/email/subject.txt +#, python-format +msgid "You have been invited to a beta test for %(course_name)s" +msgstr "您被邀请参与一个%(course_name)sBeta测试。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#, python-format +msgid "You have been invited to %(course_name)s" +msgstr "您被邀请去%(course_name)s。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"You have been invited to join %(course_name)s at %(site_name)s by a member " +"of the course staff." +msgstr "您已被课程工作人员邀请加入 %(course_name)s上的%(site_name)s。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +msgid "To access this course click on the button below and login:" +msgstr "访问本课程,请点击下面的按钮并登录:" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +msgid "To access this course visit it and register:" +msgstr "要访问本课程,请访问并注册:" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#, python-format +msgid "" +"Please finish your registration and fill out the registration form making " +"sure to use %(email_address)s in the Email field:" +msgstr "请填写您的注册表,确保在电子邮件中使用%(email_address)s:" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +msgid "Finish Your Registration" +msgstr "完成您的注册" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"Once you have registered and activated your account, you will see " +"%(course_name)s listed on your dashboard." +msgstr "一旦您完成注册并已激活了您的账号,您将在课程面板中见到 %(course_name)s。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +msgid "" +"Once you have registered and activated your account, you will be able to " +"access this course:" +msgstr "一旦您完成注册并已激活了账号,您将可以访问该课程:" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "You can then enroll in %(course_name)s." +msgstr "您可以选修课程%(course_name)s。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +msgid "Dear student," +msgstr "亲爱的同学," + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "To access this course visit %(course_url)s and login." +msgstr "要进入该课程,请访问%(course_url)s登录。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"To access this course visit %(course_about_url)s and register for this " +"course." +msgstr "要进入该课程,请访问 %(course_about_url)s并注册该课程。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"To finish your registration, please visit %(registration_url)s and fill out " +"the registration form making sure to use %(email_address)s in the Email " +"field." +msgstr "要完成您的注册,请访问%(registration_url)s填写注册表格,并确保将 %(email_address)s填写在电子邮件中。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"Once you have registered and activated your account, visit " +"%(course_about_url)s to join this course." +msgstr "一旦您完成注册并已激活了您的账号,请访问%(course_about_url)s以加入该课程。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/subject.txt +#, python-format +msgid "You have been invited to register for %(course_name)s" +msgstr "您已被邀请注册%(course_name)s" + +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedunenroll/email/subject.txt +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/subject.txt +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#, python-format +msgid "You have been unenrolled from %(course_name)s" +msgstr "您已从课程%(course_name)s中被移除。" + +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#, python-format +msgid "" +"You have been unenrolled from the course %(course_name)s by a member of the " +"course staff. Please disregard the invitation previously sent." +msgstr "您已被课程工作人员从 %(course_name)s课程移除。请忽略之前向您发出的所有请求。" + +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +msgid "Dear Student," +msgstr "亲爱的同学," + +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html +#, python-format +msgid "" +"\n" +" You have been unenrolled from %(course_name)s\n" +" " +msgstr "" +"\n" +"您已从课程%(course_name)s中被移除。" + +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt +#, python-format +msgid "" +"You have been unenrolled from %(course_name)s at %(site_name)s by a member " +"of the course staff. This course will no longer appear on your %(site_name)s" +" dashboard." +msgstr "" +"您已被课程工作人员加入到了%(site_name)s上的%(course_name)s。该课程应会立即出现在您的%(site_name)s课程面板中。" + +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt +msgid "Your other courses have not been affected." +msgstr "您参加的其他课程没有受到影响。" + +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt +#, python-format +msgid "This email was automatically sent from %(site_name)s to %(full_name)s" +msgstr "这封电子邮件是由%(site_name)s向%(full_name)s自动发送的" + +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html +#, python-format +msgid "" +"\n" +" You have been enrolled in %(course_name)s\n" +" " +msgstr "" +"\n" +"您已经选修了%(course_name)s" + +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt +#, python-format +msgid "" +"You have been enrolled in %(course_name)s at %(site_name)s by a member of " +"the course staff. This course will now appear on your %(site_name)s " +"dashboard." +msgstr "" +"您已被课程工作人员加入到了%(site_name)s上的%(course_name)s中。该课程应会立即出现在您的%(site_name)s课程面板中。" + +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html +msgid "Access the Course Materials Now" +msgstr "现在访问课程资料" + +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +#, python-format +msgid "" +"You have been removed as a beta tester for %(course_name)s at %(site_name)s" +msgstr "在%(site_name)s,您已经从%(course_name)s课程的 Beta 测试中被移除" + +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +#, python-format +msgid "" +"You have been removed as a beta tester for %(course_name)s at %(site_name)s " +"by a member of the course staff." +msgstr "在%(site_name)s,您作为测试者已经被课程工作人员从%(course_name)s的 移除" + +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +msgid "" +"This course will remain on your dashboard, but you will no longer be part of" +" the beta testing group." +msgstr "这门课程将留在您的面板上,但您将不再是beta测试组的一员。" + +#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt +#, python-format +msgid "" +"You have been removed as a beta tester for %(course_name)s at %(site_name)s " +"by a member of the course staff. This course will remain on your dashboard, " +"but you will no longer be part of the beta testing group." +msgstr "" +"您在%(site_name)s上的%(course_name)s课程的 Beta " +"测试员身份已被课程教员移除。该课程仍将显示在您的课程面板中,但您已不再是 Beta 测试组的一员。" + +#: lms/templates/instructor/edx_ace/removebetatester/email/subject.txt +#, python-format +msgid "You have been removed from a beta test for %(course_name)s" +msgstr "您已经从课程 %(course_name)sBeta 测试中被移除" + +#: lms/templates/logout.html themes/elitemba-theme/lms/templates/logout.html +msgid "Signed Out" +msgstr "已注销" + +#: lms/templates/logout.html themes/elitemba-theme/lms/templates/logout.html +msgid "You have signed out." +msgstr "您已注销。" + +#: lms/templates/logout.html themes/elitemba-theme/lms/templates/logout.html +#, python-format +msgid "" +"If you are not redirected within 5 seconds, click " +"here to go to the home page." +msgstr "如果您在5秒内没有被重定向,点击这里进入主页。" + +#: lms/templates/main_django.html cms/templates/base.html +#: lms/templates/main.html themes/elitemba-theme/cms/templates/base.html +#: themes/elitemba-theme/lms/templates/main.html +msgid "Skip to main content" +msgstr "跳至主要内容" + +#: lms/templates/oauth2_provider/authorize.html +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Authorize" +msgstr "授权" + +#: lms/templates/oauth2_provider/authorize.html +msgid "" +"The above application requests the following permissions from your account:" +msgstr "以上应用需要您账号进行以下授权:" + +#: lms/templates/oauth2_provider/authorize.html +msgid "" +"These permissions will be granted for data from your courses associated with" +" the following content providers:" +msgstr "这些授权用于与以下内容Provider相关的课程数据:" + +#: lms/templates/oauth2_provider/authorize.html +msgid "" +"Please click the 'Allow' button to grant these permissions to the above " +"application. Otherwise, to withhold these permissions, please click the " +"'Cancel' button." +msgstr "请点击“允许”按钮给以上应用进行授权。如果您不希望授权,请点击“取消”按钮。" + +#: lms/templates/oauth2_provider/authorize.html +#: openedx/core/djangoapps/user_api/admin.py +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +#: cms/templates/videos_index_pagination.html +#: lms/templates/provider/authorize.html +msgid "Cancel" +msgstr "取消" + +#: lms/templates/oauth2_provider/authorize.html +msgid "Allow" +msgstr "允许" + +#: lms/templates/oauth2_provider/authorize.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/ccx/schedule.html +msgid "Error" +msgstr "错误" + +#: lms/templates/wiki/article.html +#: themes/elitemba-theme/lms/templates/wiki/article.html +msgid "Last modified:" +msgstr "最后修改:" + +#: lms/templates/wiki/article.html +#: themes/elitemba-theme/lms/templates/wiki/article.html +msgid "See all children" +msgstr "查看所有子文章" + +#: lms/templates/wiki/article.html +#: themes/elitemba-theme/lms/templates/wiki/article.html +#: wiki/templates/wiki/article.html +msgid "This article was last modified:" +msgstr "这篇文章最后修改:" + +#: lms/templates/wiki/create.html wiki/templates/wiki/create.html +msgid "Add new article" +msgstr "增加新文章" + +#: lms/templates/wiki/create.html wiki/templates/wiki/create.html +msgid "Create article" +msgstr "创建文章" + +#: lms/templates/wiki/create.html lms/templates/wiki/delete.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +#: wiki/plugins/images/templates/wiki/plugins/images/purge.html +#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html +#: wiki/templates/wiki/create.html wiki/templates/wiki/delete.html +msgid "Go back" +msgstr "返回" + +#: lms/templates/wiki/delete.html lms/templates/wiki/edit.html +#: wiki/templates/wiki/delete.html wiki/templates/wiki/edit.html +msgid "Delete article" +msgstr "删除文章" + +#: lms/templates/wiki/delete.html +#: lms/templates/wiki/plugins/attachments/index.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/templates/wiki/delete.html +msgid "Delete" +msgstr "删除" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "You cannot delete a root article." +msgstr "根文章不可删除。" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "" +"You cannot delete this article because you do not have permission to delete " +"articles with children. Try to remove the children manually one-by-one." +msgstr "当文章带有子文章时您无权删除,请尝试手动逐一删除子文章。" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "" +"You are deleting an article. This means that its children will be deleted as" +" well. If you choose to purge, children will also be purged!" +msgstr "删除这篇文章将会导致相关子文章会同时被删除。如果您选择清除,子文章也将同时被清除。" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "Articles that will be deleted" +msgstr "将要被删除的文章" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "...and more!" +msgstr "……还有更多!" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "You are deleting an article. Please confirm." +msgstr "您正试图删除文章。请确认!" + +#: lms/templates/wiki/edit.html cms/templates/component.html +#: cms/templates/container.html cms/templates/studio_xblock_wrapper.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html +#: wiki/templates/wiki/includes/article_menu.html +msgid "Edit" +msgstr "编辑" + +#: lms/templates/wiki/edit.html lms/templates/ccx/schedule.html +#: wiki/templates/wiki/edit.html wiki/templates/wiki/settings.html +msgid "Save changes" +msgstr "保存修改" + +#: lms/templates/wiki/edit.html cms/templates/container.html +#: wiki/templates/wiki/edit.html +msgid "Preview" +msgstr "预览" + +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: this is a control to allow users to exit out of this modal +#. interface (a menu or piece of UI that takes the full focus of the screen) +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/includes/cheatsheet.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html +#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/ccx/schedule.html +#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +#: lms/templates/modal/_modal-settings-language.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Close" +msgstr "关闭" + +#: lms/templates/wiki/edit.html +msgid "Wiki Preview" +msgstr "Wiki预览" + +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/includes/cheatsheet.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: lms/templates/modal/_modal-settings-language.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "window open" +msgstr "窗口打开" + +#: lms/templates/wiki/edit.html wiki/templates/wiki/edit.html +msgid "Back to editor" +msgstr "返回编辑器" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +#: wiki/templates/wiki/history.html +msgid "History" +msgstr "历史记录" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "" +"Click each revision to see a list of edited lines. Click the Preview button " +"to see how the article looked at this stage. At the bottom of this page, you" +" can change to a particular revision or merge an old revision with the " +"current one." +msgstr "" +"点击每一个版本,您将会看到被编辑行的列表。点击预览按钮,您可以看到这篇文章目前的状态。在页面的底部,您可以切换到一个指定版本,或者合并两个现存的版本生成新版本。" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "(no log message)" +msgstr "(无日志消息)" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Preview this revision" +msgstr "预览本次修改" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Auto log:" +msgstr "自动日志" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: cms/templates/videos_index_pagination.html +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +#: wiki/templates/wiki/history.html +msgid "Change" +msgstr "修改" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Merge selected with current..." +msgstr "合并选择项和当前项……" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Switch to selected version" +msgstr "转到选择的版本" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "Wiki Revision Preview" +msgstr "Wiki修订预览" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Back to history view" +msgstr "返回历史视图" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Switch to this version" +msgstr "切换到这个版本" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "Merge Revision" +msgstr "合并修订" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Merge with current" +msgstr "和当前版本合并" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "" +"When you merge a revision with the current, all data will be retained from " +"both versions and merged at its approximate location from each revision." +msgstr "当您合并修订版本与当前版本时,所有的数据都会被保留。修改信息将会合并到系统择优选择的位置。" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "After this, it's important to do a manual review." +msgstr "注意:请在操作完成后做一次人工检查。" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Create new merged version" +msgstr "创建新的合并版本" + +#: lms/templates/wiki/includes/anonymous_blocked.html +#: wiki/templates/wiki/includes/anonymous_blocked.html +#, python-format +msgid "" +"You need to log in or sign up to use this function." +msgstr "" +"您必须登录注册才能使用这项功能。" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in or sign up to use this function." +msgstr "您需要注册或者登录才能使用这个功能。" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Cheatsheet" +msgstr "Wiki简单说明" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Syntax Help" +msgstr "Wiki语法帮助" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"This wiki uses Markdown for styling. There are several " +"useful guides online. See any of the links below for in-depth details:" +msgstr "本Wiki使用了Markdown语法,网上可以找到很多有用的资料。点击以下链接可了解更多细节:" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Markdown: Basics" +msgstr "Markdown:基础知识" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quick Markdown Syntax Guide" +msgstr "Markdown 语法快速指南" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Miniature Markdown Guide" +msgstr "简明 Markdown 语法指南" + +#: lms/templates/wiki/includes/cheatsheet.html +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "" +"To create a new wiki article, create a link to it. Clicking the link gives " +"you the creation page." +msgstr "若想创建一篇新文章,可以先创建一个指向它的链接。点击该链接转向自动创建页面。" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "[Article Name](wiki:ArticleName)" +msgstr "[文章名称](wiki:ArticleName)" + +#: lms/templates/wiki/includes/cheatsheet.html +#, python-format +msgid "%(platform_name)s Additions:" +msgstr "%(platform_name)s 附加:" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Math Expression" +msgstr "数学表达式" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Useful examples:" +msgstr "实用的例子:" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wikipedia" +msgstr "Wikipedia" + +#: lms/templates/wiki/includes/cheatsheet.html +#, python-format +msgid "%(platform_name)s Wiki" +msgstr "%(platform_name)s Wiki" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Huge Header" +msgstr "大标题" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Smaller Header" +msgstr "小标题" + +#. Translators: Leave the punctuation, but translate "emphasis" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "*emphasis* or _emphasis_" +msgstr "*重点* or _重点_" + +#. Translators: Leave the punctuation, but translate "strong" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "**strong** or __strong__" +msgstr "**强调** or __强调__" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Unordered List" +msgstr "无序列表" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 1" +msgstr "子项目1" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 2" +msgstr "子项目2" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Ordered" +msgstr "排序" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "List" +msgstr "列表" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quotes" +msgstr "引言" + +#: lms/templates/wiki/includes/editor_widget.html +#, python-format +msgid "" +"Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for" +" help." +msgstr "允许使用MarkDown语法。请参阅%(start_link)s快捷键管理%(end_link)s以获得帮助。" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/wiki_plugin.py +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Attachments" +msgstr "附件" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Upload new file" +msgstr "上传新文件" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Search and add file" +msgstr "搜索并添加文件" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload File" +msgstr "上传文件" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Upload file" +msgstr "上传文件" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Search files and articles" +msgstr "搜索文件和文章" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "" +"You can reuse files from other articles. These files are subject to updates " +"on other articles which may or may not be a good thing." +msgstr "您可以从其他文章中重用一些文件。但是该文件的更新依赖于原始文章,请判断该引用关系是否恰当。" + +#: lms/templates/wiki/plugins/attachments/index.html +#: lms/templates/dashboard.html lms/templates/index.html +#: lms/templates/api_admin/catalogs/search.html +#: lms/templates/courseware/courses.html +#: lms/templates/courseware/courseware.html +#: lms/templates/edxnotes/edxnotes.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +#: openedx/features/course_search/templates/course_search/course-search-fragment.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/index.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +#: themes/stanford-style/lms/templates/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Search" +msgstr "搜索" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "" +"The following files are available for this article. Copy the markdown tag to" +" directly refer to a file from the article text." +msgstr "下列文件对这篇文章可用,请复制markdown标记到文本中,直接指向对应文件。" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Markdown tag" +msgstr "Markdown标记" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Uploaded by" +msgstr "上传者是" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Size" +msgstr "大小" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File History" +msgstr "文件历史记录" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Detach" +msgstr "分离" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Replace" +msgstr "替换" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/templates/wiki/deleted.html +msgid "Restore" +msgstr "恢复" + +#: lms/templates/wiki/plugins/attachments/index.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/includes/revision_info.html +msgid "anonymous (IP logged)" +msgstr "匿名(IP已记录)" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "File history" +msgstr "文件历史" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "revisions" +msgstr "修订版" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "There are no attachments for this article." +msgstr "这篇文章没有附件" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing revision:" +msgstr "预览修改:" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing a merge between two revisions:" +msgstr "预览合并效果:" + +#: lms/templates/wiki/preview_inline.html +#: wiki/templates/wiki/preview_inline.html +msgid "This revision has been deleted." +msgstr "该修订已被删除。" + +#: lms/templates/wiki/preview_inline.html +#: wiki/templates/wiki/preview_inline.html +msgid "Restoring to this revision will mark the article as deleted." +msgstr "恢复该修订将标记本文章为已删除状态。" + +#: lms/urls.py +msgid "LMS Administration" +msgstr "LMS管理" + +#: openedx/core/djangoapps/ace_common/apps.py +msgid "ACE Common" +msgstr "ACE 共享" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "Go to %(platform_name)s Home Page" +msgstr "前往%(platform_name)s主页" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#: cms/templates/login.html cms/templates/widgets/header.html +msgid "Sign In" +msgstr "登录" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on LinkedIn" +msgstr "%(platform_name)s的领英官方号" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on Twitter" +msgstr "%(platform_name)s的推特官方账号" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on Facebook" +msgstr "%(platform_name)s的Facebook官方账号" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on Google Plus" +msgstr "%(platform_name)s的Google+官方账号" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on Reddit" +msgstr "%(platform_name)s的Reddit官方账号" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +msgid "Download the iOS app on the Apple Store" +msgstr "在平台官方应用商店下载iOS App" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +msgid "Download the Android app on the Google Play Store" +msgstr "在Google Play商店下载安卓App" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +msgid "," +msgstr "," + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +msgid "All rights reserved." +msgstr "保留所有权利。" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +msgid "Our mailing address is" +msgstr "我们的邮箱地址" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_head.html +msgid "EliteMBA Email" +msgstr "英荔商学院邮箱" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.html +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.txt +#, python-format +msgid "" +"Don't miss the opportunity to highlight your new knowledge and skills by " +"earning a verified certificate. Upgrade by " +"%(user_schedule_upgrade_deadline_time)s." +msgstr "" +"抓住冲刺认证证书的机会,以此学习新知识、掌握新技能。请于%(user_schedule_upgrade_deadline_time)s前升级证书。" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.html +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.txt +msgid "Upgrade Now" +msgstr "立刻升级" + +#: openedx/core/djangoapps/api_admin/admin.py +#, python-brace-format +msgid "" +"Once you have approved this request, go to {catalog_admin_url} to set up a " +"catalog for this user." +msgstr "一旦您已批准此请求,请前往{catalog_admin_url}为此用户设置一个目录。" + +#: openedx/core/djangoapps/api_admin/forms.py +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Organization Name" +msgstr "机构名称" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "Organization Address" +msgstr "组织地址" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "Describe what your application does." +msgstr "描述您的应用的功能。" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "The URL of your organization's website." +msgstr "您组织网站的URL。" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "The name of your organization." +msgstr "您组织的名称。" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "The contact address of your organization." +msgstr "您组织的联系地址。" + +#: openedx/core/djangoapps/api_admin/forms.py +#, python-brace-format +msgid "The following users do not exist: {usernames}." +msgstr "以下用户不存在: {usernames}." + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "" +"Comma-separated list of usernames which will be able to view this catalog." +msgstr "在此目录中可查看逗号隔开的用户名列表。" + +#: openedx/core/djangoapps/api_admin/models.py cms/templates/index.html +msgid "Denied" +msgstr "拒绝" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "Approved" +msgstr "已批准" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "Status of this API access request" +msgstr "此 API 访问请求的状态" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "The URL of the website associated with this API user." +msgstr "与此 API 用户相关的网站的 URL。" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "The reason this user wants to access the API." +msgstr "此用户希望访问 API 的原因。" + +#: openedx/core/djangoapps/api_admin/models.py +#, python-brace-format +msgid "API access request from {company}" +msgstr "{company} 的 API 访问请求" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "API access request" +msgstr "API 访问请求" + +#: openedx/core/djangoapps/api_admin/widgets.py +#, python-brace-format +msgid "" +"I, and my organization, accept the {link_start}{platform_name} API Terms of " +"Service{link_end}." +msgstr "我和我的组织均同意此{link_start}{platform_name}API服务条款{link_end}。" + +#: openedx/core/djangoapps/bookmarks/apps.py +#: openedx/features/course_bookmarks/plugins.py +#: openedx/features/course_bookmarks/views/course_bookmarks.py +#: lms/templates/courseware/courseware.html +#: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html +msgid "Bookmarks" +msgstr "书签" + +#: openedx/core/djangoapps/bookmarks/views.py +msgid "An error has occurred. Please try again." +msgstr "发生了一个未知错误,请重试。" + +#: openedx/core/djangoapps/bookmarks/views.py +msgid "No data provided." +msgstr "未提供数据。" + +#: openedx/core/djangoapps/bookmarks/views.py +msgid "Parameter usage_id not provided." +msgstr "未提供参数usage_id。" + +#: openedx/core/djangoapps/bookmarks/views.py +#, python-brace-format +msgid "Invalid usage_id: {usage_id}." +msgstr "无效 usage_id: {usage_id}。" + +#: openedx/core/djangoapps/bookmarks/views.py +#, python-brace-format +msgid "Block with usage_id: {usage_id} not found." +msgstr "封锁 usage_id: {usage_id}搜寻不到。" + +#: openedx/core/djangoapps/bookmarks/views.py +#, python-brace-format +msgid "" +"You can create up to {max_num_bookmarks_per_course} bookmarks. You must " +"remove some bookmarks before you can add new ones." +msgstr "您可以建立 {max_num_bookmarks_per_course} 书签。您必须在新增书签前删除一些书签。" + +#: openedx/core/djangoapps/bookmarks/views.py +#, python-brace-format +msgid "Bookmark with usage_id: {usage_id} does not exist." +msgstr "书签 usage_id: {usage_id} 不存在。" + +#: openedx/core/djangoapps/catalog/models.py +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Internal API URL" +msgstr "内部API URL" + +#: openedx/core/djangoapps/catalog/models.py +msgid "DEPRECATED: Use the setting COURSE_CATALOG_API_URL." +msgstr "不推荐项:使用设置项“COURSE_CATALOG_API_URL”。" + +#: openedx/core/djangoapps/catalog/models.py +msgid "" +"Specified in seconds. Enable caching of API responses by setting this to a " +"value greater than 0." +msgstr "以秒为单位,通过将此值设置为大于0来启用API回复缓存。" + +#: openedx/core/djangoapps/catalog/models.py +msgid "Long Term Cache Time To Live" +msgstr "长期缓存有效时间" + +#: openedx/core/djangoapps/catalog/models.py +msgid "" +"Specified in seconds (defaults to 86400s, 24hr). In some cases the cache " +"does needs to be refreshed less frequently. Enable long term caching of API " +"responses by setting this to a value greater than 0." +msgstr "精确到秒(默认值86400秒/24小时)。有时候请勿太频繁刷新缓存,通过将此值设置为大于0来启用长期API回复缓存。" + +#: openedx/core/djangoapps/catalog/models.py +msgid "" +"Username created for Course Catalog Integration, e.g. " +"lms_catalog_service_user." +msgstr "用于课程目录整合的用户名,例如:lms_catalog_service_user。" + +#: openedx/core/djangoapps/catalog/models.py +msgid "Page Size" +msgstr "页面尺寸" + +#: openedx/core/djangoapps/catalog/models.py +msgid "" +"Maximum number of records in paginated response of a single request to " +"catalog service." +msgstr "对目录服务的单个请求的最大记录数量,表现形式为分页回复。" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "Enabled" +msgstr "已启用" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "Configuration may not be specified at more than one level at once." +msgstr "不能一次在多个级别指定配置。" + +#: openedx/core/djangoapps/cors_csrf/models.py +msgid "" +"List of domains that are allowed to make cross-domain requests to this site." +" Please list each domain on its own line." +msgstr "允许进行跨域请求至此页面的主机列表。请在每一行列出一个主机。" + +#: openedx/core/djangoapps/course_groups/cohorts.py +msgid "Default Group" +msgstr "默认组" + +#: openedx/core/djangoapps/course_groups/cohorts.py +msgid "You cannot create two cohorts with the same name" +msgstr "您无法创建两个具有相同名称的群组。" + +#: openedx/core/djangoapps/course_groups/cohorts.py +msgid "" +"There must be one cohort to which students can automatically be assigned." +msgstr "必须存在一个可以将学生自动分配进去的群组。" + +#: openedx/core/djangoapps/course_groups/views.py +msgid "A cohort with the same name already exists." +msgstr "具有相同名称的群组已存在。" + +#: openedx/core/djangoapps/credentials/apps.py +msgid "Credentials" +msgstr "证书" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Internal Service URL" +msgstr "内部服务链接" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Public Service URL" +msgstr "公众服务链接" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Enable Learner Issuance" +msgstr "使学习者发表问题" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Enable issuance of credentials via Credential Service." +msgstr "透过证书服务启动发布认证" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Enable Authoring of Credential in Studio" +msgstr "在工作室中,启动编辑的证书" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Enable authoring of Credential Service credentials in Studio." +msgstr "在工作室中,启动编辑证书服务的资格" + +#: openedx/core/djangoapps/credit/email_utils.py +msgid "Course Credit Eligibility" +msgstr "学分评定资格" + +#: openedx/core/djangoapps/credit/email_utils.py +#, python-brace-format +msgid "You are eligible for credit from {providers_string}" +msgstr "您有资格获得 {providers_string} 的学分" + +#. Translators: The join of two university names (e.g., Harvard and MIT). +#: openedx/core/djangoapps/credit/email_utils.py +#, python-brace-format +msgid "{first_provider} and {second_provider}" +msgstr "{first_provider} 和{second_provider}" + +#. Translators: The join of three or more university names. The first of these +#. formatting strings +#. represents a comma-separated list of names (e.g., MIT, Harvard, Dartmouth). +#: openedx/core/djangoapps/credit/email_utils.py +#, python-brace-format +msgid "{first_providers}, and {last_provider}" +msgstr "{first_providers},和{last_provider}" + +#: openedx/core/djangoapps/credit/exceptions.py +#, python-brace-format +msgid "[{username}] is not eligible for credit for [{course_key}]." +msgstr "[{username}] 没有获得[{course_key}]学分的资格。" + +#: openedx/core/djangoapps/credit/exceptions.py +#, python-brace-format +msgid "[{course_key}] is not a valid course key." +msgstr "[{course_key}] 不是有效课程密钥。" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Unique identifier for this credit provider. Only alphanumeric characters and" +" hyphens (-) are allowed. The identifier is case-sensitive." +msgstr "学分提供方的唯一标识符。只允许使用数字、字母和连字符(-),且大小写敏感。" + +#: openedx/core/djangoapps/credit/models.py +msgid "Whether the credit provider is currently enabled." +msgstr "当前是否启用学分提供方。" + +#: openedx/core/djangoapps/credit/models.py +msgid "Name of the credit provider displayed to users" +msgstr "展现给用户的学分提供者的名称" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"When true, automatically notify the credit provider when a user requests " +"credit. In order for this to work, a shared secret key MUST be configured " +"for the credit provider in secure auth settings." +msgstr "当该值为True时,若用户请求学分则自动通知学分提供方。为使该操作生效,共享密钥必须配置学分提供方的安全认证设置。" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"URL of the credit provider. If automatic integration is enabled, this will " +"the the end-point that we POST to to notify the provider of a credit " +"request. Otherwise, the user will be shown a link to this URL, so the user " +"can request credit from the provider directly." +msgstr "" +"信贷提供者之网址。如果可以启动自动集成,这将是最后一次发布通知信贷提供者。除此之外,使用者将可看到一个链接网址,使用者可以直接向信贷提供者申请贷款。" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"URL from the credit provider where the user can check the status of his or " +"her request for credit. This is displayed to students *after* they have " +"requested credit." +msgstr "信贷提供者可从网址让使用者可检查他或她申请贷款之状态。这是显示於学生们申请贷款后。" + +#: openedx/core/djangoapps/credit/models.py +msgid "Description for the credit provider displayed to users." +msgstr "展现给用户的学分提供方的描述。" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Plain text or html content for displaying further steps on receipt page " +"*after* paying for the credit to get credit for a credit course against a " +"credit provider." +msgstr "纯文本或html内容显示进一步收据页面於支付款项后,获得信贷提供者所提供之学分课程。" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Plain text or html content for displaying custom message inside credit " +"eligibility email content which is sent when user has met all credit " +"eligibility requirements." +msgstr "纯文本或html内容显示,当使用者符合所有信贷资格时,会被发送用户信贷资格讯息通知。" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Plain text or html content for displaying custom message inside credit " +"receipt email content which is sent *after* paying to get credit for a " +"credit course." +msgstr "纯文本或html内容显示,当支付学分课程后,会发送使用者收据讯息。" + +#: openedx/core/djangoapps/credit/models.py +msgid "Thumbnail image url of the credit provider." +msgstr "学分提供者的缩图网址。" + +#: openedx/core/djangoapps/credit/models.py +msgid "Credit requirement statuses" +msgstr "学分要求状态" + +#: openedx/core/djangoapps/credit/models.py +msgid "Deadline for purchasing and requesting credit." +msgstr "购买和请求学分的截止日期。" + +#: openedx/core/djangoapps/dark_lang/views.py +msgid "Preview Language Administration" +msgstr "预览语言管理" + +#: openedx/core/djangoapps/dark_lang/views.py +msgid "Language not provided" +msgstr "未提供语言" + +#: openedx/core/djangoapps/dark_lang/views.py +#, python-brace-format +msgid "Language set to {preview_language}" +msgstr "语言为{preview_language}" + +#: openedx/core/djangoapps/dark_lang/views.py +msgid "Language reset to the default" +msgstr "重置为默认语言" + +#: openedx/core/djangoapps/debug/views.py +msgid "This is a test message" +msgstr "这是一条测试信息" + +#: openedx/core/djangoapps/debug/views.py +msgid "This is a success message" +msgstr "这是一条成功的信息" + +#: openedx/core/djangoapps/debug/views.py +msgid "This is a test warning" +msgstr "这是一个测试警告" + +#: openedx/core/djangoapps/debug/views.py +msgid "This is a test error" +msgstr "这是一个测试错误" + +#: openedx/core/djangoapps/embargo/forms.py +#: openedx/core/djangoapps/verified_track_content/forms.py +msgid "COURSE NOT FOUND. Please check that the course ID is valid." +msgstr "课程未找到,请检查课程 ID 是否有效。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The course key for the restricted course." +msgstr "此受限课程的课程标识。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The message to show when a user is blocked from enrollment." +msgstr "当用户被阻止选课时显示的信息。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The message to show when a user is blocked from accessing a course." +msgstr "对不起,您暂时无法进入此课程的学习。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "" +"Allow users who enrolled in an allowed country to access restricted courses " +"from excluded countries." +msgstr "允许注册于许可国家或地区的用户能从受限国家或地区登入受限课程。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "Two character ISO country code." +msgstr "ISO国家代码 (2位)" + +#: openedx/core/djangoapps/embargo/models.py +msgid "" +"Whether to include or exclude the given course. If whitelist countries are " +"specified, then ONLY users from whitelisted countries will be able to access" +" the course. If blacklist countries are specified, then users from " +"blacklisted countries will NOT be able to access the course." +msgstr "无论保留或者删减指定课程。一旦某国被认定为白名单,则只有这个国家的用户可以参加课程;一旦某国被认定为黑名单,则这个国家的用户不能参加课程。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The course to which this rule applies." +msgstr "使用该规则的课程。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The country to which this rule applies." +msgstr "这条规律同样适用于这个国家。" + +#: openedx/core/djangoapps/embargo/models.py +#, python-brace-format +msgid "Whitelist {country} for {course}" +msgstr "课程{course}的白名单国家: {country}" + +#: openedx/core/djangoapps/embargo/models.py +#, python-brace-format +msgid "Blacklist {country} for {course}" +msgstr "课程{course}的黑名单国家: {country}" + +#: openedx/core/djangoapps/external_auth/views.py +#, python-brace-format +msgid "" +"You have already created an account using an external login like WebAuth or " +"Shibboleth. Please contact {tech_support_email} for support." +msgstr "您已经创建使用外部登录类似的WebAuth或Shibboleth的帐户。请联系{tech_support_email}支持。" + +#: openedx/core/djangoapps/external_auth/views.py +msgid "" +"\n" +" Your university identity server did not return your ID information to us.\n" +" Please try logging in again. (You may need to restart your browser.)\n" +" " +msgstr "" +"\n" +" 您的大学身份服务器未将您的身份信息返回给我们,\n" +" 请重新登录(可能需要重启浏览器。)\n" +" " + +#: openedx/core/djangoapps/oauth_dispatch/models.py +msgid "" +"Comma-separated list of scopes that this application will be allowed to " +"request." +msgstr "用逗号隔开的此应用可申请范围列表。" + +#: openedx/core/djangoapps/oauth_dispatch/models.py +msgid "Content Provider" +msgstr "内容Provider" + +#: openedx/core/djangoapps/password_policy/apps.py +msgid "Password Policy" +msgstr "密码政策" + +#: openedx/core/djangoapps/password_policy/compliance.py +#, python-brace-format +msgid "" +"{strong_tag_open}We recently changed our password " +"requirements{strong_tag_close}{break_line_tag}Your current password does not" +" meet the new security requirements. We just sent a password-reset message " +"to the email address associated with this account. Thank you for helping us " +"keep your data safe." +msgstr "" +"{strong_tag_open}我们最近更改了密码要求{strong_tag_close}{break_line_tag}您当前的密码不符合新的安全要求。我们刚刚发送了一个密码重置消息到与这个账号相关联的电子邮件地址。感谢您帮助我们保护您的数据安全。" + +#: openedx/core/djangoapps/password_policy/compliance.py +#, python-brace-format +msgid "" +"{strong_tag_open}Required Action: Please update your " +"password{strong_tag_close}{break_line_tag}As of {deadline}, {platform_name} " +"will require all learners to have complex passwords. Your current password " +"does not meet these requirements. To reset your password, go to to " +"{anchor_tag_open}Account Settings{anchor_tag_close}." +msgstr "" +"{strong_tag_open}要求的行动:请更新您的密码{strong_tag_close}{break_line_tag}自 " +"{deadline}起, " +"{platform_name}将要求所有的学员有复杂的密码。您当前的密码不满足这些要求。要重置密码,去{anchor_tag_open}账号设置{anchor_tag_close}。" + +#: openedx/core/djangoapps/profile_images/images.py +#, python-brace-format +msgid "The file must be smaller than {image_max_size} in size." +msgstr "文件必须小于 {image_max_size} 。" + +#: openedx/core/djangoapps/profile_images/images.py +#, python-brace-format +msgid "The file must be at least {image_min_size} in size." +msgstr "文件必须大于 {image_min_size} 。" + +#: openedx/core/djangoapps/profile_images/images.py +#, python-brace-format +msgid "The file must be one of the following types: {valid_file_types}." +msgstr "文件必须为以下其中一项样式:{valid_file_types}。" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "" +"The Content-Type header for this file does not match the file data. The file" +" may be corrupted." +msgstr "此文件内容类型标题不匹配文件数据。该文件可能已损坏。" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "" +"The file name extension for this file does not match the file data. The file" +" may be corrupted." +msgstr "扩展之文件名称不匹配文件数据。该文件可能已损坏。" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "bytes" +msgstr "字节" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "KB" +msgstr "KB" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "MB" +msgstr "MB" + +#: openedx/core/djangoapps/profile_images/views.py +msgid "No file provided for profile image" +msgstr "未向档案照片提交文件" + +#: openedx/core/djangoapps/programs/models.py +msgid "Path used to construct URLs to programs marketing pages (e.g., \"/foo\")." +msgstr "用于构建方案销售页面URL的路径(例如:\"/foo\")。" + +#: openedx/core/djangoapps/schedules/admin.py +msgid "Known Error Case" +msgstr "已知错误案例" + +#: openedx/core/djangoapps/schedules/admin.py +msgid "Schedule start < course start" +msgstr "计划开始时间 < 课程开始时间" + +#: openedx/core/djangoapps/schedules/admin.py +msgid "All" +msgstr "所有" + +#: openedx/core/djangoapps/schedules/admin.py +msgid "Experience" +msgstr "经验" + +#: openedx/core/djangoapps/schedules/apps.py +#: openedx/core/djangoapps/schedules/models.py +msgid "Schedules" +msgstr "时间表" + +#: openedx/core/djangoapps/schedules/models.py +msgid "Indicates if this schedule is actively used" +msgstr "表明此时间表是否生效" + +#: openedx/core/djangoapps/schedules/models.py +msgid "Date this schedule went into effect" +msgstr "此时间表生效日期" + +#: openedx/core/djangoapps/schedules/models.py +msgid "Deadline by which the learner must upgrade to a verified seat" +msgstr "学员必须升级为认证名额的截止日期" + +#: openedx/core/djangoapps/schedules/models.py +#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/schedule.html +msgid "Schedule" +msgstr "时间表" + +#: openedx/core/djangoapps/schedules/templates/dropdown_filter.html +#, python-format +msgid " By %(filter_title)s " +msgstr "于%(filter_title)s前" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html +#, python-format +msgid "Welcome to week %(week_num)s of %(course_name)s!" +msgstr "%(week_num)s学习的第%(course_name)s周!" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html +#, python-format +msgid "" +"We hope you're enjoying %(course_name)s! We want to let you" +" know what you can look forward to in week %(week_num)s:" +msgstr "希望您喜欢我们的课程%(course_name)s!以下是第%(week_num)s周的学习内容:" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.txt +msgid "" +"With self-paced courses, you learn on your own schedule. We encourage you to" +" spend time with the course each week. Your focused attention will pay off " +"in the end!" +msgstr "自定学习进度的课程,由您自定学习计划时间表。我们建议您每周都学习,您的孜孜不倦会换来硕果累累。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html +msgid "Resume your course now" +msgstr "继续学习课程" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.txt +#, python-format +msgid "" +"We hope you're enjoying %(course_name)s! We want to let you know what you " +"can look forward to in week %(week_num)s:" +msgstr "希望您喜欢我们的课程%(course_name)s!以下是第%(week_num)s周的学习内容:" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/subject.txt +#, python-format +msgid "Welcome to week %(week_num)s" +msgstr "欢迎来到第%(week_num)s周" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt +#, python-format +msgid "" +"Many %(platform_name)s learners are completing more problems every week, and" +" participating in the discussion forums. What do you want to do to keep " +"learning?" +msgstr "每周都有许多%(platform_name)s学员完成越来越多的题目,并参与讨论。您想要继续学习什么内容?" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt +#, python-format +msgid "" +"Many %(platform_name)s learners in %(course_name)s are completing more " +"problems every week, and participating in the discussion forums. What do you" +" want to do to keep learning?" +msgstr "" +"每周都有许多%(platform_name)s学员完成越来越多的%(course_name)s课程题目,并参与讨论。您想要继续学习什么内容?" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/subject.txt +msgid "Keep up the momentum!" +msgstr "保持势头!" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#, python-format +msgid "" +"Many %(platform_name)s learners in %(course_name)s are " +"completing more problems every week, and participating in the discussion " +"forums. What do you want to do to keep learning?" +msgstr "" +"每周都有许多%(platform_name)s学员完成越来越多的%(course_name)s课程题目,并参与讨论。您想要继续学习什么内容?" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt +msgid "Keep learning" +msgstr "继续学习" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s, and other courses on " +"%(platform_name)s? We do, and we’re glad to have you! Come see what everyone" +" is learning." +msgstr "" +"您还记得在%(platform_name)s上报名了%(course_name)s和其他课程吗?很荣幸您报名了我们的课程!赶紧来看看大家都在学习什么吧。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s on %(platform_name)s? We do, " +"and we’re glad to have you! Come see what everyone is learning." +msgstr "" +"您还记得在%(platform_name)s上报名了%(course_name)s吗?很荣幸您报名了我们的课程!赶紧来看看大家都在学习什么吧。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +msgid "Keep learning today" +msgstr "继续学习" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s, and other " +"courses on %(platform_name)s? We do, and we’re glad to have you! Come see " +"what everyone is learning." +msgstr "" +"您还记得在%(platform_name)s上报名了%(course_name)s吗?很荣幸您报名了我们的课程!赶紧来看看大家都在学习什么吧。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s on " +"%(platform_name)s? We do, and we’re glad to have you! Come see what everyone" +" is learning." +msgstr "" +"您还记得在%(platform_name)s上报名了%(course_name)s吗?很荣幸您报名了我们的课程!赶紧来看看大家都在学习什么吧。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#: themes/elitemba-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +msgid "Start learning now" +msgstr "马上开始学习" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/subject.txt +#, python-format +msgid "Keep learning on %(platform_name)s" +msgstr "继续在%(platform_name)s学习" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/subject.txt +#, python-format +msgid "Keep learning in %(course_name)s" +msgstr "继续学习%(course_name)s" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt +#, python-format +msgid "" +"We hope you are enjoying learning with us so far on %(platform_name)s! A " +"verified certificate allows you to highlight your new knowledge and skills. " +"An %(platform_name)s certificate is official and easily shareable. Upgrade " +"by %(user_schedule_upgrade_deadline_time)s." +msgstr "" +"感谢您在我们%(platform_name)s上学习!您可以考取认证证书来突显您的新知识、新技能。专业且易于分享的%(platform_name)s认证证书,欢迎您于%(user_schedule_upgrade_deadline_time)s前进行升级。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt +#, python-format +msgid "" +"We hope you are enjoying learning with us so far in %(first_course_name)s! A" +" verified certificate allows you to highlight your new knowledge and skills." +" An %(platform_name)s certificate is official and easily shareable. Upgrade " +"by %(user_schedule_upgrade_deadline_time)s." +msgstr "" +"感谢您至今在我们%(first_course_name)s上的学习!您可以考取认证证书来突显您的新知识、新技能。专业且易于分享的%(platform_name)s认证证书,欢迎您于%(user_schedule_upgrade_deadline_time)s前进行升级。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +msgid "Upgrade now" +msgstr "马上升级" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#, python-format +msgid "" +"We hope you are enjoying learning with us so far on " +"%(platform_name)s! A verified certificate allows you to " +"highlight your new knowledge and skills. An %(platform_name)s certificate is" +" official and easily shareable." +msgstr "" +"感谢您至今在我们%(platform_name)s上的学习!您可以考取我们专业且易于分享的%(platform_name)s认证证书来突显您的新知识、新技能。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#, python-format +msgid "" +"We hope you are enjoying learning with us so far in " +"%(first_course_name)s! A verified certificate allows you to" +" highlight your new knowledge and skills. An %(platform_name)s certificate " +"is official and easily shareable." +msgstr "" +"感谢您至今在我们%(first_course_name)s上的学习!您可以考取我们专业且易于分享的%(platform_name)s认证证书来突显您的新知识、新技能。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#, python-format +msgid "Upgrade by %(user_schedule_upgrade_deadline_time)s." +msgstr "请于%(user_schedule_upgrade_deadline_time)s前进行升级。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +msgid "You are eligible to upgrade in these courses:" +msgstr "您具备以下课程的证书升级资格:" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +msgid "Example of a verified certificate" +msgstr "认证证书示例" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt +msgid "Upgrade now at" +msgstr "马上升级" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/subject.txt +#, python-format +msgid "Upgrade to earn a verified certificate on %(platform_name)s" +msgstr "在%(platform_name)s升级考取认证证书" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/subject.txt +#, python-format +msgid "Upgrade to earn a verified certificate in %(first_course_name)s" +msgstr "在%(first_course_name)s升级考取认证证书" + +#: openedx/core/djangoapps/self_paced/models.py +msgid "Enable course home page improvements." +msgstr "启用改进版课程主页" + +#: openedx/core/djangoapps/theming/views.py +#, python-brace-format +msgid "Site theme changed to {site_theme}" +msgstr "网站主题切换至{site_theme}" + +#: openedx/core/djangoapps/theming/views.py +#, python-brace-format +msgid "Theme {site_theme} does not exist" +msgstr " {site_theme}主题不存在" + +#: openedx/core/djangoapps/theming/views.py +msgid "Site theme reverted to the default" +msgstr "网站主题恢复至默认主题" + +#: openedx/core/djangoapps/theming/views.py +#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html +msgid "Theming Administration" +msgstr "网站主题管理" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "" +"Usernames can only contain letters (A-Z, a-z), numerals (0-9), underscores " +"(_), and hyphens (-)." +msgstr "用户名只能包含罗字母(A-Z、a-z)、下划线数字(0-9)、下划线(_)、连字符(-)。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Usernames can only contain letters, numerals, and @.+-_ characters." +msgstr "用户名只能包含字母、数字、“@.+-_”字符。" + +#. Translators: This message is shown to users who attempt to create a new +#. account using +#. an invalid email format. +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "\"{email}\" is not a valid email address." +msgstr "“{email}”邮箱地址无效。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "" +"It looks like {email_address} belongs to an existing account. Try again with" +" a different email address." +msgstr "{email_address} 已经被注册了。请更换邮箱重试。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "" +"It looks like {username} belongs to an existing account. Try again with a " +"different username." +msgstr "{username}已经被注册了。请更换用户名重试。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "Username must be between {min} and {max} characters long." +msgstr "用户名字符数{min}到{max}位。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "Enter a valid email address that contains at least {min} characters." +msgstr "请输入有效的邮箱地址,不少于{min}个字符。" + +#. Translators: These messages are shown to users who do not enter information +#. into the required field or enter it incorrectly. +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your full name." +msgstr "请输入您的全名。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "The email addresses do not match." +msgstr "邮箱地址不一致。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Select your country or region of residence." +msgstr "选择您的居住地国家或地区。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Select your profession." +msgstr "选择您的职业。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Select your specialty." +msgstr "选择您的专业技能。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your profession." +msgstr "输入您的职业。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your specialty." +msgstr "输入您的专业技能。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your city." +msgstr "输入您的城市。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Tell us your goals." +msgstr "说说您的目标。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Select the highest level of education you have completed." +msgstr "选择您已完成的最高学历。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your mailing address." +msgstr "输入您的邮寄地址。" + +#: openedx/core/djangoapps/user_api/accounts/api.py +#, python-brace-format +msgid "The '{field_name}' field cannot be edited." +msgstr "'{field_name}'字段无法编辑." + +#: openedx/core/djangoapps/user_api/accounts/api.py +#: openedx/core/djangoapps/user_api/views.py +#: openedx/core/djangoapps/user_authn/views/auto_auth.py +#: openedx/core/djangoapps/user_authn/views/deprecated.py +msgid "Account creation not allowed." +msgstr "禁止创建账号" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the State/Province/Region in which they +#. live. +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "State/Province/Region" +msgstr "州/省/地区" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the Company +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Company" +msgstr "公司" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the Job Title +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Job Title" +msgstr "职业头衔" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's mailing address. +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py lms/templates/signup_modal.html +msgid "Mailing address" +msgstr "邮寄地址" + +#. Translators: This phrase appears above a field on the registration form +#. meant to hold the user's reasons for registering with edX. +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "Tell us why you're interested in {platform_name}" +msgstr "告诉我们您为何对{platform_name}感兴趣" + +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's profession +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Profession" +msgstr "专业领域" + +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's specialty +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Specialty" +msgstr "专业领域" + +#: openedx/core/djangoapps/user_api/accounts/utils.py +msgid "" +" Make sure that you are providing a valid username or a URL that contains \"" +msgstr "请提供有效的用户名或包含“”的URL" + +#: openedx/core/djangoapps/user_api/accounts/views.py +#: openedx/core/djangoapps/user_authn/views/login.py +msgid "" +"Due to multiple login failures, the account is temporarily locked. Please " +"try again after 15 minutes." +msgstr "由于登录失败次数过多,该账号暂时被锁定,请于15分钟后再次尝试登录。" + +#: openedx/core/djangoapps/user_api/accounts/views.py +#: lms/templates/provider_login.html +msgid "Email or password is incorrect." +msgstr "邮箱或密码错误。" + +#: openedx/core/djangoapps/user_api/accounts/views.py +msgid "Verification failed" +msgstr "验证失败" + +#: openedx/core/djangoapps/user_api/accounts/views.py +msgid "Please check mobile number format;" +msgstr "请检查电话号码格式" + +#: openedx/core/djangoapps/user_api/accounts/views.py +msgid "The mobile number has been occupied." +msgstr "此手机号码已绑定到其他帐户。" + +#: openedx/core/djangoapps/user_api/admin.py +#: wiki/templates/wiki/permission_denied.html +msgid "Permission Denied" +msgstr "没有权限" + +#: openedx/core/djangoapps/user_api/admin.py +msgid "Retirement does not exist!" +msgstr "退出是不存在的!" + +#: openedx/core/djangoapps/user_api/admin.py cms/templates/export.html +#: cms/templates/import.html +msgid "Success" +msgstr "成功" + +#: openedx/core/djangoapps/user_api/admin.py +#: lms/templates/staff_problem_info.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Actions" +msgstr "操作" + +#. Translators: This label appears above a field on the password reset +#. form meant to hold the user's email address. +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgctxt "Register and Login" +msgid "Email" +msgstr "邮箱" + +#. Translators: This example email address is used as a placeholder in +#. a field on the password reset form meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgid "username@domain.com" +msgstr "username@domain.com" + +#. Translators: These instructions appear on the password reset form, +#. immediately below a field meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "The email address you used to register with {platform_name}" +msgstr "您在{platform_name}上注册的邮箱" + +#. Translators: This label appears above a field on the password reset +#. form meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgid "Secondary email" +msgstr "备选邮箱" + +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"Secondary email address you registered with {platform_name} using account " +"settings page" +msgstr "使用帐户设置页面在{platform_name}注册的辅助电子邮箱地址" + +#. Translators: This label appears above a field on the login form +#. meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgctxt "Register and Login" +msgid "Email or Phone Number" +msgstr "邮箱或手机号" + +#. Translators: These instructions appear on the login form, immediately +#. below a field meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"The email address you registered on {platform_name}, or the phone number " +"that is bound." +msgstr "您在{platform_name}上注册的邮箱,或绑定的手机号" + +#: openedx/core/djangoapps/user_api/api.py lms/templates/login.html +msgid "Remember me" +msgstr "记住我" + +#. Translators: These instructions appear on the registration form, +#. immediately +#. below a field meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgid "This is what you will use to login." +msgstr "登录邮箱地址。" + +#. Translators: This label appears above a field on the registration form +#. meant to confirm the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgid "Confirm Email" +msgstr "确认邮箱地址" + +#. Translators: These instructions appear on the registration form, +#. immediately +#. below a field meant to hold the user's full name. +#: openedx/core/djangoapps/user_api/api.py +msgid "This name will be used on any certificates that you earn." +msgstr "显示在您证书的姓名。" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's public username. +#: openedx/core/djangoapps/user_api/api.py cms/templates/register.html +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/signup_modal.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Public Username" +msgstr "公开用户名" + +#. Translators: These instructions appear on the registration form, +#. immediately +#. below a field meant to hold the user's public username. +#: openedx/core/djangoapps/user_api/api.py +msgid "" +"The name that will identify you in your courses. It cannot be changed later." +msgstr "您在课程中的姓名,一旦确定便无法更改。" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's highest completed level of education. +#: openedx/core/djangoapps/user_api/api.py lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Highest Level of Education Completed" +msgstr "最高教育程度" + +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the country in which the user lives. +#: openedx/core/djangoapps/user_api/api.py +msgid "Country or Region of Residence" +msgstr "您所居住的国家或地区" + +#. Translators: These instructions appear on the registration form, +#. immediately +#. below a field meant to hold the user's country. +#: openedx/core/djangoapps/user_api/api.py +msgid "The country or region where you live." +msgstr "您所居住的国家或地区。" + +#. Translators: This is a legal document users must agree to +#. in order to register a new account. +#: openedx/core/djangoapps/user_api/api.py +msgid "Terms of Service and Honor Code" +msgstr "服务条款和诚信准则" + +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"I agree to the {platform_name} " +"{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" +msgstr "" +"我同意{platform_name} " +"{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" + +#. Translators: "Terms of Service" is a legal document users must agree to +#. in order to register a new account. +#. Translators: "Terms of service" is a legal document users must agree to +#. in order to register a new account. +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "You must agree to the {platform_name} {terms_of_service}" +msgstr "您必须同意接受{platform_name}的{terms_of_service}" + +#: openedx/core/djangoapps/user_api/api.py +msgid "" +"Account can only be created after you agree to our User Agreement, " +"Disclaimer and Privacy Policy." +msgstr "只有同意遵守英荔商学院的用户协议、免责声明和隐私政策,才能创建账号。" + +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"By checking this box, you agree to abide by EliteMBA's" +" " +"{user_agreement_link_start}{user_agreement}{user_agreement_link_end}, " +"{disclaimer_link_start}{disclaimer}{disclaimer_link_end} " +"and {privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." +msgstr "" +"勾选即表示同意遵守英荔商学院的{user_agreement_link_start}{user_agreement}{user_agreement_link_end}、{disclaimer_link_start}{disclaimer}{disclaimer_link_end}和{privacy_policy_link_start}隐私政策{privacy_policy_link_end}" + +#: openedx/core/djangoapps/user_api/api.py +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +#: themes/elitemba-theme/lms/templates/static_templates/user_agreement.html +msgid "User Agreement" +msgstr "用户协议" + +#. Translators: "Terms of service" is a legal document users must agree to +#. in order to register a new account. +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"I agree to the {platform_name} " +"{tos_link_start}{terms_of_service}{tos_link_end}" +msgstr "我同意{platform_name} {tos_link_start}{terms_of_service}{tos_link_end}" + +#: openedx/core/djangoapps/user_api/config/waffle.py +msgid "System maintenance in progress. Please try again later." +msgstr "正在系统维护中,请稍后重试。" + +#: openedx/core/djangoapps/user_api/elite_password_reset.py +#, python-brace-format +msgid "Request parameter {key} missing!" +msgstr "请求参数{key}缺失!" + +#: openedx/core/djangoapps/user_api/elite_password_reset.py +msgid "New passwords do not match. Please try again." +msgstr "密码前后不一致,请重试。" + +#: openedx/core/djangoapps/user_api/elite_password_reset.py +msgid "Password modified." +msgstr "修改密码成功" + +#: openedx/core/djangoapps/user_api/elite_password_reset.py +msgid "Wrong password" +msgstr "密码错误" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Delete failed for user preference '{preference_key}'." +msgstr "用户设置 '{preference_key}' 删除失败." + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Preference '{preference_key}' cannot be set to an empty value." +msgstr "首选项“{preference_key}”不能设置为空值。" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Invalid user preference key '{preference_key}'." +msgstr "无效的用户参数项'{preference_key}'." + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "" +"Value '{preference_value}' is not valid for user preference " +"'{preference_key}'." +msgstr "对于用户参数'{preference_key}',值'{preference_value}'无效." + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "" +"Value '{preference_value}' not valid for preference '{preference_key}': Not " +"in timezone set." +msgstr "{preference_key}偏好的{preference_value}值无效:不在所设置的时区内。" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Value '{preference_value}' is not a valid time zone selection." +msgstr "{preference_value}值是无效的时区值选项。" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Save failed for user preference '{key}' with value '{value}'." +msgstr "使用值'{value}'保存用户参数'{key}'失败." + +#: openedx/core/djangoapps/user_api/preferences/views.py +msgid "No data provided for user preference update" +msgstr "未向用户参数更新提供数据" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "Hello %(full_name)s," +msgstr "您好,%(full_name)s" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "" +"We received a deletion request for your account on %(platform_name)s. We're " +"sorry to see you go!" +msgstr "我们收到您删除%(platform_name)s账号的申请,有缘再见!" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +msgid "" +"Your account will be deleted shortly. Account deletion, including removal " +"from email lists, may take a few weeks to fully process through our system. " +"If you want to opt-out of emails before then, please unsubscribe from the " +"footer of any email." +msgstr "马上帮您删除账号,包括从邮箱地址列表中移除您的邮箱地址,系统可能需要耗时数周才能处理完成。如果您想更快,请从页脚处取消订阅所有邮件。" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "" +"This is an informational email only. If you did not initiate this request, " +"please contact %(contact_email)s." +msgstr "这是一封信息邮件,如果您没有发起此申请,请联系 %(contact_email)s。" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "Best, %(platform_name)s" +msgstr "致敬,%(platform_name)s" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/subject.txt +msgid "Your Account Has Been Queued For Deletion" +msgstr "您的账号已进入删除队列" + +#: openedx/core/djangoapps/user_authn/views/auto_auth.py +msgid "Superuser creation not allowed" +msgstr "不允许创建超级用户" + +#: openedx/core/djangoapps/user_authn/views/auto_auth.py +msgid "Account modification not allowed." +msgstr "不允许修改账号。" + +#: openedx/core/djangoapps/user_authn/views/login.py +#, python-brace-format +msgid "" +"You've successfully logged into your {provider_name} account, but this " +"account isn't linked with an {platform_name} account yet." +msgstr "您已成功登录{provider_name}帐户,但该账号尚未与{platform_name}帐户关联。" + +#: openedx/core/djangoapps/user_authn/views/login.py +#, python-brace-format +msgid "" +"Use your {platform_name} username and password to log into {platform_name} " +"below, and then link your {platform_name} account with {provider_name} from " +"your dashboard." +msgstr "" +"用您的{platform_name}用户名和密码登陆{platform_name},然后从课程面板页面关联{platform_name}账号和{provider_name}。" + +#: openedx/core/djangoapps/user_authn/views/login.py +#, python-brace-format +msgid "" +"If you don't have an {platform_name} account yet, click " +"{register_label_strong} at the top of the page." +msgstr "如果您没有{platform_name},请点击页面上方的{register_label_strong}按钮。" + +#: openedx/core/djangoapps/user_authn/views/login.py +#: lms/templates/register-form.html +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Register" +msgstr "注册" + +#: openedx/core/djangoapps/user_authn/views/login.py +msgid "There was an error receiving your login information. Please email us." +msgstr "接受您的登录信息时出现错误,请发电子邮件给我们。" + +#: openedx/core/djangoapps/user_authn/views/login.py +#, python-brace-format +msgid "" +"In order to sign in, you need to activate your account.

    We just " +"sent an activation link to {email}. If you do not receive " +"an email, check your spam folders or contact " +"{platform} Support." +msgstr "" +"如需登录,请先激活您的账号。

    我们会发送激活链接至 " +"{email}。如果您未收到邮件,请查看邮箱的垃圾箱或 联系{platform}的技术支持。" + +#: openedx/core/djangoapps/user_authn/views/login.py +msgid "Too many failed login attempts. Try again later." +msgstr "失败次数超过限制,请稍后再试!" + +#: openedx/core/djangoapps/user_authn/views/login.py +msgid "Login account or password is wrong." +msgstr "账号或密码错误。" + +#: openedx/core/djangoapps/user_authn/views/login_form.py +msgid "Create Account" +msgstr "创建账号" + +#: openedx/core/djangoapps/user_authn/views/register.py +#, python-brace-format +msgid "Registration using {provider} has timed out." +msgstr "使用{provider}注册已超时。" + +#: openedx/core/djangoapps/user_authn/views/register.py +msgid "An access_token is required when passing value ({}) for provider." +msgstr "传递值({})给提供者的时候需要访问令牌。" + +#: openedx/core/djangoapps/user_authn/views/register.py +msgid "The provided access_token is already associated with another user." +msgstr "提供的access_token已与另一个用户关联了。" + +#: openedx/core/djangoapps/user_authn/views/register.py +msgid "The provided access_token is not valid." +msgstr "提供的access_token无效。" + +#: openedx/core/djangoapps/util/user_messages.py +#, python-brace-format +msgid "{header_open}{title}{header_close}{body}" +msgstr "{header_open}{title}{header_close}{body}" + +#: openedx/core/djangoapps/util/user_messages.py +#, python-brace-format +msgid "{header_open}{title}{header_close}" +msgstr "{header_open}{title}{header_close}" + +#: openedx/core/djangoapps/util/user_messages.py +#: cms/templates/course_outline.html cms/templates/index.html +#: openedx/features/course_experience/templates/course_experience/latest-update-fragment.html +#: openedx/features/course_experience/templates/course_experience/welcome-message-fragment.html +msgid "Dismiss" +msgstr "解散" + +#: openedx/core/djangoapps/verified_track_content/models.py +msgid "The course key for the course we would like to be auto-cohorted." +msgstr "我们想要自动分配队列的课程要领。" + +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Oauth client name of video pipeline service." +msgstr "视频通道服务的Oauth客户端名称" + +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "edx-video-pipeline API URL." +msgstr "edx-video-pipeline API URL" + +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "" +"Username created for Video Pipeline Integration, e.g. veda_service_user." +msgstr "用于视频管道整合的用户名,例如:veda_service_user。" + +#: openedx/core/djangoapps/waffle_utils/models.py +msgid "Force On" +msgstr "强制开启" + +#: openedx/core/djangoapps/waffle_utils/models.py +msgid "Force Off" +msgstr "强制关闭" + +#: openedx/core/lib/api/view_utils.py +msgid "This value is invalid." +msgstr "该值无效。" + +#: openedx/core/lib/api/view_utils.py +msgid "This field is not editable" +msgstr "该区域不能编辑" + +#: openedx/core/lib/gating/api.py +#, python-format +msgid "%(min_score)s is not a valid grade percentage" +msgstr "%(min_score)s 不是一个有效的评分尺度" + +#: openedx/core/lib/gating/api.py +#, python-brace-format +msgid "Gating milestone for {usage_key}" +msgstr "{usage_key}的途径" + +#: openedx/core/lib/license/mixin.py +msgid "License" +msgstr "许可" + +#: openedx/core/lib/license/mixin.py +msgid "" +"A license defines how the contents of this block can be shared and reused." +msgstr "许可定义了此块的内容能如何被分享和重用。" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "Category" +msgstr "分类" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "Week 1" +msgstr "第一周" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "" +"A category name for the discussion. This name appears in the left pane of " +"the discussion forum for the course." +msgstr "讨论类别名称时,该名称会出现在课程论坛的左窗格里" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "Subcategory" +msgstr "子分类" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "" +"A subcategory name for the discussion. This name appears in the left pane of" +" the discussion forum for the course." +msgstr "讨论子类别名称时,该名称会出现在课程论坛的左窗格里。" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +#, python-brace-format +msgid "" +"You are not signed in. To view the discussion content, {sign_in_link} or " +"{register_link}, and enroll in this course." +msgstr "您尚未登录,如需查看此讨论内容,请{sign_in_link}或{register_link}并报名此门课程。" + +#: openedx/features/content_type_gating/admin.py +#: openedx/features/course_duration_limits/admin.py +msgid "" +"These define the context to enable course duration limits on. If no values " +"are set, then the configuration applies globally. If a single value is set, " +"then the configuration applies to all courses within that context. At most " +"one value can be set at a time.
    If multiple contexts apply to a course " +"(for example, if configuration is specified for the course specifically, and" +" for the org that the course is in, then the more specific context overrides" +" the more general context." +msgstr "" +"这些选项规定了启用课程持续时间限制的场景。如果未设置任何值,则配置将全局应用。 如果设置了单个值,则配置将应用于该场景中的所有课程。 " +"一次最多只能设置一个值。
    如果课程适用于多个场景(例如,如果课程有自身特定的配置,并且课程所在的组织也有特定配置,则更具体化的场景会覆盖通用场景。" + +#: openedx/features/content_type_gating/admin.py +#: openedx/features/course_duration_limits/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Enabled\" is left as \"Unknown\" in the course context, " +"then that course will be Enabled only if the org that it is in is Enabled." +msgstr "" +"如果这些值中的任何一个为空或“未知”,则运行时的值将恢复到下一个最具体化场景应用的值。 " +"例如,如果在课程场景中“已启用”被保留为“未知”,则仅当其所在的组织已启用时,该课程才会启用。" + +#: openedx/features/content_type_gating/models.py +#: openedx/features/course_duration_limits/models.py +#: lms/templates/support/feature_based_enrollments.html +msgid "Enabled As Of" +msgstr "启用至" + +#: openedx/features/content_type_gating/models.py +#: openedx/features/course_duration_limits/models.py +msgid "" +"If the configuration is Enabled, then all enrollments created after this " +"date and time (UTC) will be affected." +msgstr "如果配置为“已启用”,则在此日期和时间(世界标准时间UTC)之后创建的所有注册都将受到影响。" + +#: openedx/features/content_type_gating/models.py +msgid "Studio Override Enabled" +msgstr "已启用覆盖Studio功能" + +#: openedx/features/content_type_gating/models.py +msgid "" +"Allow Feature Based Enrollment visibility to be overriden on a per-component" +" basis in Studio." +msgstr "允许在Studio中每个基础组件覆盖基于功能的选课可见性。" + +#: openedx/features/content_type_gating/models.py +#: openedx/features/course_duration_limits/models.py +msgid "enabled_as_of must be set when enabled is True" +msgstr "当enabled为True时,必须设置enabled_as_of" + +#: openedx/features/content_type_gating/partitions.py +msgid "Feature-based Enrollments" +msgstr "基于功能的选课" + +#: openedx/features/content_type_gating/partitions.py +msgid "Partition for segmenting users by access to gated content types" +msgstr "通过访问封闭的内容类型来划分用户的分区" + +#: openedx/features/content_type_gating/partitions.py +msgid "" +"Graded assessments are available to Verified Track learners. Upgrade to " +"Unlock." +msgstr "已通过认证的学员可获得等级评估。 升级至解锁。" + +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Content available only to verified track learners" +msgstr "仅供经过身份认证的学员使用的内容" + +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Verified Track Access" +msgstr "已经过身份认证的跟踪访问" + +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Graded assessments are available to Verified Track learners." +msgstr "分级评估可用于已经过身份认证的跟踪学员。" + +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Upgrade to unlock" +msgstr "升级到解锁" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "Access expired on {expiration_date}" +msgstr "访问于 {expiration_date}过期" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "Access to {course_name} expired on {expiration_date}" +msgstr "访问{course_name} 于 {expiration_date}过期" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "Access to the course you were looking for expired on {expiration_date}" +msgstr "您要查看的课程访问已于 {expiration_date} 过期" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "" +"This learner does not have access to this course. Their access expired on " +"{expiration_date}." +msgstr "该学员无权进入此课程。此权利于{expiration_date}到期。" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "" +"{strong_open}Audit Access Expires " +"{expiration_date}{strong_close}{line_break}You lose all access to this " +"course, including your progress, on {expiration_date}." +msgstr "" +"{strong_open} 旁听访问入口过期 {expiration_date}{strong_close}{line_break}。您已于 " +"{expiration_date} 失去课程访问权限,包括正在上的课程。" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "" +"{line_break}Upgrade by {upgrade_deadline} to get unlimited access to the " +"course as long as it exists on the site. {a_open}Upgrade " +"now{sronly_span_open} to retain access past " +"{expiration_date}{span_close}{a_close}" +msgstr "" +"{line_break} 在 {upgrade_deadline} 前升级,获取网站内课程的无限访问权, " +"{a_open}现在升级{sronly_span_open} 以确保{expiration_date}前保留访问权 " +"{span_close}{a_close}。" + +#: openedx/features/course_experience/plugins.py +#: cms/templates/widgets/header.html +#: lms/templates/api_admin/terms_of_service.html +#: openedx/features/course_experience/templates/course_experience/course-updates-fragment.html +msgid "Updates" +msgstr "更新" + +#: openedx/features/course_experience/plugins.py +#: openedx/features/course_experience/templates/course_experience/course-reviews-fragment.html +msgid "Reviews" +msgstr "评论" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link} and then enroll in this course." +msgstr "{sign_in_link}或{register_link}并报名此门课程。" + +#: openedx/features/course_experience/views/course_home_messages.py +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "登录" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "" +"{open_enroll_link}Enroll now{close_enroll_link} to access the full course." +msgstr "{open_enroll_link}马上报名课程{close_enroll_link}充分体验课程内容。" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "Welcome to {course_display_name}" +msgstr "欢迎来到{course_display_name}" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "" +"To start, set a course goal by selecting the option below that best " +"describes your learning plan. {goal_options_container}" +msgstr "设置课程学习目标,挑选一个最能贴切描述您学习计划的选项{goal_options_container}。" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "Set goal to: {choice}" +msgstr "设置课程学习目标:{choice}" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{choice}" +msgstr "{choice}" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "Set goal to: {goal_text}" +msgstr "设置课程学习目标为:{goal_text}" + +#: openedx/features/enterprise_support/api.py +#, python-brace-format +msgid "Enrollment in {course_title} was not complete." +msgstr "未完成报名课程{course_title}。" + +#: openedx/features/enterprise_support/api.py +#, python-brace-format +msgid "" +"If you have concerns about sharing your data, please contact your " +"administrator at {enterprise_customer_name}." +msgstr "如果您对分享您的数据有顾虑,请联系您的{enterprise_customer_name}管理员。" + +#: openedx/features/enterprise_support/utils.py +#, python-brace-format +msgid "" +"We are sorry, you are not authorized to access {platform_name} via this " +"channel. Please contact your learning administrator or manager in order to " +"access {platform_name}.{line_break}{line_break}" +msgstr "" +"非常抱歉,您无权通过此渠道访问{platform_name}。请向您的学习管理员或协调员寻求帮助访问{platform_name}。{line_break}{line_break}" + +#: openedx/features/enterprise_support/utils.py +#, python-brace-format +msgid "" +"Thank you for joining {platform_name}. Just a couple steps before you start " +"learning!" +msgstr "感谢您加入{platform_name},请根据步骤来开启您的学习之旅!" + +#: openedx/features/enterprise_support/utils.py +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Continue" +msgstr "继续" + +#: openedx/features/learner_profile/views/learner_profile.py +#, python-brace-format +msgid "" +"Welcome to the new learner profile page. Your full profile now displays more" +" information to other learners. You can instead choose to display a limited " +"profile. {learn_more_link_start}Learn more{learn_more_link_end}" +msgstr "" +"欢迎来到新学员账号页面,提供更多账号信息方便其他学员查看。您也可以选择只显示部分内容。{learn_more_link_start}了解更多内容{learn_more_link_end}" + +#: cms/djangoapps/api/v1/serializers/course_runs.py +msgid "Course team user does not exist" +msgstr "课程团队用户不存在" + +#: cms/djangoapps/contentstore/course_group_config.py +msgid "" +"The groups in this configuration can be mapped to cohorts in the Instructor " +"Dashboard." +msgstr "可以将此配置下的分组与授课老师面板的群组相对应。" + +#: cms/djangoapps/contentstore/course_group_config.py +#: cms/templates/group_configurations.html +msgid "Content Groups" +msgstr "内容组" + +#: cms/djangoapps/contentstore/course_group_config.py +#: cms/djangoapps/contentstore/views/certificates.py +msgid "invalid JSON" +msgstr "无效的 JSON" + +#: cms/djangoapps/contentstore/course_group_config.py +msgid "must have name of the configuration" +msgstr "必须有配置的名称" + +#: cms/djangoapps/contentstore/course_group_config.py +msgid "must have at least one group" +msgstr "必须至少有一个组" + +#: cms/djangoapps/contentstore/course_group_config.py +msgid "unable to load this type of group configuration" +msgstr "无法加载此类组配置" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Invalid course update id." +msgstr "课程ID更新无效。" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Course update not found." +msgstr "课程更新没有找到。" + +#: cms/djangoapps/contentstore/courseware_index.py +msgid "Could not index item: {}" +msgstr "无法索引项:{}" + +#: cms/djangoapps/contentstore/courseware_index.py +msgid "General indexing error occurred" +msgstr "发生了一般性索引错误" + +#: cms/djangoapps/contentstore/courseware_index.py +msgid "(Unnamed)" +msgstr "(未命名)" + +#: cms/djangoapps/contentstore/git_export_utils.py +#, python-brace-format +msgid "" +"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " +"configure a different path with GIT_REPO_EXPORT_DIR" +msgstr "" +"GIT_REPO_EXPORT_DIR 未被设置或者路径 {0} 不存在,请创建它,或者为 GIT_REPO_EXPORT_DIR 设置一个不同的路径。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Non writable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "没有可写的Git地址。期待类似这样的地址:git@github.com:mitocw/edx4edx_lite.git" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"If using http urls, you must provide the username and password in the url. " +"Similar to https://user:pass@github.com/user/course." +msgstr "" +"如果使用HTTP地址,您必须在地址里提供用户名和密码,类似于 https://user:pass@github.com/user/course 。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to determine branch, repo in detached HEAD mode" +msgstr "无法找到分支,源正处于分离HEAD模式。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to update or clone git repository." +msgstr "无法更新或者复制Git源。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to export course to xml." +msgstr "无法将课程导出成XML文件。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to configure git username and password" +msgstr "无法配置Git的用户名和密码" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to commit changes. This is usually because there are no changes to be" +" committed" +msgstr "无法提交变更,这通常是因为没有变更之处,不需要提交。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to push changes. This is usually because the remote repository " +"cannot be contacted" +msgstr "无法推送变更,这通常是因为无法连接远程源。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Bad course location provided" +msgstr "提供了错误的课程地址" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Missing branch on fresh clone" +msgstr "在最近的复制中,丢失一些分支" + +#: cms/djangoapps/contentstore/management/commands/git_export.py +msgid "" +"Take the specified course and attempt to export it to a git repository\n" +". Course directory must already be a git repository. Usage: git_export " +msgstr "" +"取得指定的课程然后尝试将其导出到一个Git源。\n" +"课程目录必须已经是一个Git源。用法: git_export " + +#: cms/djangoapps/contentstore/tasks.py +#, python-brace-format +msgid "Unknown User ID: {0}" +msgstr "未知用户ID: {0}" + +#: cms/djangoapps/contentstore/tasks.py +msgid "Permission denied" +msgstr "没有权限" + +#: cms/djangoapps/contentstore/tasks.py +#: cms/djangoapps/contentstore/views/import_export.py +msgid "We only support uploading a .tar.gz file." +msgstr "我们仅支持上传.tar.gz格式文件。" + +#: cms/djangoapps/contentstore/tasks.py +msgid "Tar file not found" +msgstr "未找到Tar文件" + +#: cms/djangoapps/contentstore/tasks.py +msgid "Unsafe tar file. Aborting import." +msgstr "不安全的tar文件,正在取消导入。" + +#: cms/djangoapps/contentstore/tasks.py +#, python-brace-format +msgid "Could not find the {0} file in the package." +msgstr "无法在包中找到{0}文件。" + +#: cms/djangoapps/contentstore/utils.py cms/templates/visibility_editor.html +msgid "Deleted Group" +msgstr "已删除组" + +#. Translators: This is building up a list of groups. It is marked for +#. translation because of the +#. comma, which is used as a separator between each group. +#: cms/djangoapps/contentstore/utils.py +#, python-brace-format +msgid "{previous_groups}, {current_group}" +msgstr "{previous_groups}, {current_group}" + +#: cms/djangoapps/contentstore/video_utils.py +msgid "The image must have name, content type, and size information." +msgstr "图片必须有名称、内容类型、尺寸信息。" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "" +"This image file type is not supported. Supported file types are " +"{supported_file_formats}." +msgstr "不支持此图片文件类型;支持的文件类型有{supported_file_formats}。" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "This image file must be smaller than {image_max_size}." +msgstr "此图片文件不得超过{image_max_size}。" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "This image file must be larger than {image_min_size}." +msgstr "图片文件必须大于{image_min_size}。" + +#: cms/djangoapps/contentstore/video_utils.py +msgid "" +"There is a problem with this image file. Try to upload a different file." +msgstr "此图片文件发生问题,请上传其他文件。" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "" +"Recommended image resolution is " +"{image_file_max_width}x{image_file_max_height}. The minimum resolution is " +"{image_file_min_width}x{image_file_min_height}." +msgstr "" +"建议图片分辨率为{image_file_max_width}x{image_file_max_height},最小分辨率为{image_file_min_width}x{image_file_min_height}。" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "" +"This image file must have an aspect ratio of " +"{video_image_aspect_ratio_text}." +msgstr "此图片文件的宽高比必须为{video_image_aspect_ratio_text}。" + +#: cms/djangoapps/contentstore/video_utils.py +msgid "" +"The image file name can only contain letters, numbers, hyphens (-), and " +"underscores (_)." +msgstr "图片文件名只支持字母、数字、连字符(-)、下划线(_)。" + +#: cms/djangoapps/contentstore/views/assets.py +msgid "Upload completed" +msgstr "上传完成" + +#: cms/djangoapps/contentstore/views/assets.py +#, python-brace-format +msgid "" +"File {filename} exceeds maximum size of {maximum_size_in_megabytes} MB." +msgstr "{filename}文件超过{maximum_size_in_megabytes}。" + +#: cms/djangoapps/contentstore/views/certificates.py +msgid "must have name of the certificate" +msgstr "证书必有有名称" + +#: cms/djangoapps/contentstore/views/certificates.py +#, python-brace-format +msgid "Certificate dict {0} missing value key '{1}'" +msgstr "证书字典{0}确实数值'{1}'" + +#: cms/djangoapps/contentstore/views/certificates.py +#, python-brace-format +msgid "PermissionDenied: Failed in authenticating {user}" +msgstr "拒绝访问: {user}验证失败" + +#: cms/djangoapps/contentstore/views/component.py +#, python-brace-format +msgid "{platform_name} Support Levels:" +msgstr "{platform_name} 支持等级:" + +#: cms/djangoapps/contentstore/views/component.py +msgid "HTML" +msgstr "HTML" + +#: cms/djangoapps/contentstore/views/component.py lms/templates/video.html +#: membership/templates/membership/index.html +msgid "Video" +msgstr "视频" + +#: cms/djangoapps/contentstore/views/component.py +msgid "Blank" +msgstr "空白" + +#: cms/djangoapps/contentstore/views/course.py +msgid "Course has been successfully reindexed." +msgstr "课程重新索引成功。" + +#: cms/djangoapps/contentstore/views/course.py +msgid "Set Date" +msgstr "设置日期" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Special characters not allowed in organization, course number, and course " +"run." +msgstr "在机构、课程编号和开课时间中,不允许使用特殊字符。" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization and course " +"number. Please change either organization or course number to be unique." +msgstr "已经存在一个具有相同机构和课程编号的课程,请更改机构名称或者课程编号以保证其唯一性。" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Please change either the organization or course number so that it is unique." +msgstr "请更改机构或者课程编号以确保唯一性。" + +#: cms/djangoapps/contentstore/views/course.py +#, python-brace-format +msgid "" +"Unable to create course '{name}'.\n" +"\n" +"{err}" +msgstr "" +"无法创建课程“{name}”。\n" +"\n" +"{err}" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"You must link this course to an organization in order to continue. " +"Organization you selected does not exist in the system, you will need to add" +" it to the system" +msgstr "您为了继续必须将此课程链接到一个机构。您选择了不存在于系统中的机构,您需要将此机构新增到系统" + +#: cms/djangoapps/contentstore/views/course.py +msgid "Invalid prerequisite course key" +msgstr "先修课程标识无效" + +#: cms/djangoapps/contentstore/views/course.py +msgid "An error occurred while trying to save your tabs" +msgstr "当您尝试保存书签时发生错误" + +#: cms/djangoapps/contentstore/views/course.py +msgid "Tabs Exception" +msgstr "书签异常" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This group configuration is in use and cannot be deleted." +msgstr "不能删除正在使用中的组配置。" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." +msgstr "不能删除正在使用中的内容组。" + +#: cms/djangoapps/contentstore/views/entrance_exam.py +msgid "Entrance Exam - Subsection" +msgstr "入学考试—节" + +#: cms/djangoapps/contentstore/views/entrance_exam.py +msgid "Completed Course Entrance Exam" +msgstr "已完成的课程入学考试" + +#: cms/djangoapps/contentstore/views/export_git.py +msgid "Course successfully exported to git repository" +msgstr "课程成功被导出到Git仓库" + +#: cms/djangoapps/contentstore/views/helpers.py +msgid "Vertical" +msgstr "纵列块" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "File upload corrupted. Please try again" +msgstr "文件上传失败,请重试" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Invalid data" +msgstr "无效的数据" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "Invalid data ({details})" +msgstr "无效的数据 ({details})" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "You can not move {source_type} into {target_parent_type}." +msgstr "无法将 {source_type}移进 {target_parent_type}内。" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Item is already present in target location." +msgstr "目标位置已显示该项。" + +#: cms/djangoapps/contentstore/views/item.py +msgid "You can not move an item into itself." +msgstr "无法将项移动至本身目录。" + +#: cms/djangoapps/contentstore/views/item.py +msgid "You can not move an item into it's child." +msgstr "无法将项移动至子目录下。" + +#: cms/djangoapps/contentstore/views/item.py +msgid "You can not move an item directly into content experiment." +msgstr "无法直接将项移动至内容实验中。" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "{source_usage_key} not found in {parent_usage_key}." +msgstr "在{parent_usage_key}中未找到{source_usage_key} 。" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "" +"You can not move {source_usage_key} at an invalid index ({target_index})." +msgstr "无法将{source_usage_key}移动至无效索引中({target_index})。" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "You must provide target_index ({target_index}) as an integer." +msgstr "您必须提供整数的target_index ({target_index})。" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "Duplicate of {0}" +msgstr "“{0}”的副本" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "Duplicate of '{0}'" +msgstr "“{0}”的副本" + +#. Translators: The {pct_sign} here represents the percent sign, i.e., '%' +#. in many languages. This is used to avoid Transifex's misinterpreting of +#. '% o'. The percent sign is also translatable as a standalone string. +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "" +"Students must score {score}{pct_sign} or higher to access course materials." +msgstr "学生必须获得 {score}{pct_sign} 或者更高的分数才能查看课程资料。" + +#. Translators: This is the percent sign. It will be used to represent +#. a percent value out of 100, e.g. "58%" means "58/100". +#: cms/djangoapps/contentstore/views/item.py +msgid "%" +msgstr "%" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "{section_or_subsection} \"{display_name}\"" +msgstr "{section_or_subsection}“{display_name}”" + +#: cms/djangoapps/contentstore/views/library.py +#, python-brace-format +msgid "Unable to create library - missing required field '{field}'" +msgstr "无法创建知识库—缺少必填字段“{field}”" + +#: cms/djangoapps/contentstore/views/library.py +#, python-brace-format +msgid "" +"Unable to create library '{name}'.\n" +"\n" +"{err}" +msgstr "" +"无法创建知识库“{name}”。\n" +"\n" +"{err}" + +#: cms/djangoapps/contentstore/views/library.py +msgid "" +"There is already a library defined with the same organization and library " +"code. Please change your library code so that it is unique within your " +"organization." +msgstr "已经存在一个具有相同机构和知识库编号的知识库,请更改您的知识库编号以保证其在您的机构中是唯一的。" + +#: cms/djangoapps/contentstore/views/preview.py +#, python-brace-format +msgid "Access restricted to: {list_of_groups}" +msgstr "仅限可访问人群:{list_of_groups}" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +msgid "The information you entered is incorrect." +msgstr "您输入的信息不正确。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Transcripts are supported only for \"video\" modules." +msgstr "字幕只支持视频模块。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Cannot find item by locator." +msgstr "定位工具未找到该项。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Video locator is required." +msgstr "必须要有视频定位工具。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "This transcript file type is not supported." +msgstr "不支持此字幕文件类型。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Video ID is required." +msgstr "必须提供视频ID。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Incoming video data is empty." +msgstr "来源视频数据为空。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Can't find item by locator." +msgstr "定位器无法找到它们。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "No such transcript." +msgstr "没有该字幕。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "There is a problem with the chosen transcript file." +msgstr "已选中的字幕文件发生问题。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "" +"There is a problem with the existing transcript file. Please upload a " +"different file." +msgstr "当前字幕文件发生问题,请上传其他文件。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "YouTube ID is required." +msgstr "必须提供YouTube ID。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "There is a problem with the YouTube transcript file." +msgstr "YouTube字幕文件有问题。" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Insufficient permissions" +msgstr "没有足够的权限" + +#: cms/djangoapps/contentstore/views/user.py +#, python-brace-format +msgid "Could not find user by email address '{email}'." +msgstr "无法通过邮件地址“{email}”找到用户。" + +#: cms/djangoapps/contentstore/views/user.py +msgid "No `role` specified." +msgstr "“角色”未指定。" + +#: cms/djangoapps/contentstore/views/user.py +#, python-brace-format +msgid "User {email} has registered but has not yet activated his/her account." +msgstr "用户{email}已注册但尚未激活其账号。" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Invalid `role` specified." +msgstr "指定的“角色”无效。" + +#: cms/djangoapps/contentstore/views/user.py +msgid "You may not remove the last Admin. Add another Admin first." +msgstr "您不能移除最后一个管理员,请先添加另一个管理员后再移除。" + +#. #-#-#-#-# django-studio.po (0.1a) #-#-#-#-# +#. Translators: This is the status of an active video upload +#: cms/djangoapps/contentstore/views/videos.py cms/templates/import.html +msgid "Uploading" +msgstr "上传中" + +#. Translators: This is the status for a video that the servers are currently +#. processing +#: cms/djangoapps/contentstore/views/videos.py +msgid "In Progress" +msgstr "正在进行中" + +#. Translators: This is the status for a video that the servers have +#. successfully processed +#: cms/djangoapps/contentstore/views/videos.py +msgid "Ready" +msgstr "就绪" + +#. Translators: This is the status for a video that is uploaded completely +#: cms/djangoapps/contentstore/views/videos.py +msgid "Uploaded" +msgstr "上传完成" + +#. Translators: This is the status for a video that the servers have failed to +#. process +#: cms/djangoapps/contentstore/views/videos.py +msgid "Failed" +msgstr "已失败" + +#. #-#-#-#-# django-studio.po (0.1a) #-#-#-#-# +#. Translators: This is the status for a video that is cancelled during upload +#. by user +#: cms/djangoapps/contentstore/views/videos.py membership/models.py +msgid "Cancelled" +msgstr "已取消" + +#. Translators: This is the status for a video which has failed +#. due to being flagged as a duplicate by an external or internal CMS +#: cms/djangoapps/contentstore/views/videos.py +msgid "Failed Duplicate" +msgstr "复制失败" + +#. Translators: This is the status for a video which has duplicate token for +#. youtube +#: cms/djangoapps/contentstore/views/videos.py +msgid "YouTube Duplicate" +msgstr "YouTube拷贝视频" + +#. Translators: This is the status for a video for which an invalid +#. processing token was provided in the course settings +#: cms/djangoapps/contentstore/views/videos.py +msgid "Invalid Token" +msgstr "无效的令牌" + +#. Translators: This is the status for a video that was included in a course +#. import +#: cms/djangoapps/contentstore/views/videos.py +msgid "Imported" +msgstr "已导入" + +#. Translators: This is the status for a video that is in an unknown state +#: cms/djangoapps/contentstore/views/videos.py +msgid "Unknown" +msgstr "未知" + +#. Translators: This is the status for a video that is having its +#. transcription in progress on servers +#: cms/djangoapps/contentstore/views/videos.py +msgid "Transcription in Progress" +msgstr "字幕转载进行中" + +#. Translators: This is the status for a video whose transcription is complete +#: cms/djangoapps/contentstore/views/videos.py +msgid "Transcript Ready" +msgstr "字幕完成" + +#: cms/djangoapps/contentstore/views/videos.py +msgid "An image file is required." +msgstr "必须提供图片文件。" + +#. Translators: This is the header for a CSV file column +#. containing URLs for video encodings for the named profile +#. (e.g. desktop, mobile high quality, mobile low quality) +#: cms/djangoapps/contentstore/views/videos.py +#, python-brace-format +msgid "{profile_name} URL" +msgstr "{profile_name} URL" + +#: cms/djangoapps/contentstore/views/videos.py +msgid "Duration" +msgstr "长度" + +#: cms/djangoapps/contentstore/views/videos.py +msgid "Date Added" +msgstr "添加日期" + +#. Translators: This is the suggested filename when downloading the URL +#. listing for videos uploaded through Studio +#: cms/djangoapps/contentstore/views/videos.py +#, python-brace-format +msgid "{course}_video_urls" +msgstr "{course}_video_urls" + +#: cms/djangoapps/contentstore/views/videos.py +msgid "A non zero positive integer is expected" +msgstr "需要一个非零的正整数" + +#: cms/djangoapps/course_creators/models.py +msgid "unrequested" +msgstr "未请求的" + +#: cms/djangoapps/course_creators/models.py +msgid "pending" +msgstr "挂起" + +#: cms/djangoapps/course_creators/models.py +msgid "granted" +msgstr "已授权" + +#: cms/djangoapps/course_creators/models.py +msgid "denied" +msgstr "已拒绝" + +#: cms/djangoapps/course_creators/models.py +msgid "Studio user" +msgstr "Studio用户" + +#: cms/djangoapps/course_creators/models.py +msgid "The date when state was last updated" +msgstr "状态最后更新日期" + +#: cms/djangoapps/course_creators/models.py +msgid "Current course creator state" +msgstr "课程创建者当前状态" + +#: cms/djangoapps/course_creators/models.py +msgid "" +"Optional notes about this user (for example, why course creation access was " +"denied)" +msgstr "关于本用户的可选备注(例如,课程创建被拒绝的原因)" + +#: cms/djangoapps/maintenance/views.py +#: cms/templates/maintenance/_force_publish_course.html +msgid "Force Publish Course" +msgstr "强制发布课程" + +#: cms/djangoapps/maintenance/views.py +msgid "" +"Sometimes the draft and published branches of a course can get out of sync. " +"Force publish course command resets the published branch of a course to " +"point to the draft branch, effectively force publishing the course. This " +"view dry runs the force publish command" +msgstr "" +"有时候课程初稿分支与已发布分支会不同步。强制发布课程指令会将已发布的课程分支指向初稿分支,以此有效地强制发布该课程。此视图DRY运行该强制发布指令" + +#: cms/djangoapps/maintenance/views.py +msgid "Please provide course id." +msgstr "请提供课程编号。" + +#: cms/djangoapps/maintenance/views.py +msgid "Invalid course key." +msgstr "无效的课程标识。" + +#: cms/djangoapps/maintenance/views.py +msgid "No matching course found." +msgstr "未找到符合条件得课程。" + +#: cms/djangoapps/maintenance/views.py +msgid "Force publishing course is not supported with old mongo courses." +msgstr "强制发布的课程不支持旧mongo课程。" + +#: cms/djangoapps/maintenance/views.py +msgid "Course is already in published state." +msgstr "课程已经是发布状态了。" + +#: cms/djangoapps/models/settings/course_metadata.py +#, python-brace-format +msgid "Incorrect format for field '{name}'. {detailed_message}" +msgstr "“{name}”字段的格式不正确。{detailed_message}" + +#: cms/envs/bok_choy.py cms/envs/test.py +msgid "Your Platform 𝓢𝓽𝓾𝓭𝓲𝓸" +msgstr "您的平台𝓢𝓽𝓾𝓭𝓲𝓸" + +#: cms/envs/bok_choy.py cms/envs/test.py +msgid "𝓢𝓽𝓾𝓭𝓲𝓸" +msgstr "𝓢𝓽𝓾𝓭𝓲𝓸" + +#: cms/envs/common.py +msgid "Your Platform Studio" +msgstr "Studio" + +#: cms/envs/common.py +msgid "Studio" +msgstr "Studio" + +#: cms/lib/xblock/tagging/tagging.py +msgid "Dictionary with the available tags" +msgstr "可使用标签的字典" + +#: cms/urls.py +msgid "Studio Administration" +msgstr "Studio管理" + +#: cms/templates/404.html cms/templates/error.html +#: lms/templates/static_templates/404.html +#: themes/elitemba-theme/lms/templates/static_templates/404.html +msgid "Page Not Found" +msgstr "找不到页面" + +#: cms/templates/404.html lms/templates/static_templates/404.html +#: themes/elitemba-theme/lms/templates/static_templates/404.html +msgid "Page not found" +msgstr "找不到页面" + +#: cms/templates/asset_index.html cms/templates/course_info.html +#: cms/templates/course_outline.html cms/templates/edit-tabs.html +#: cms/templates/textbooks.html cms/templates/videos_index.html +#: cms/templates/widgets/header.html lms/templates/static_htmlbook.html +#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +msgid "Content" +msgstr "内容" + +#: cms/templates/certificates.html +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +msgid "Course Certificates" +msgstr "课程证书" + +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +#: themes/elitemba-theme/cms/templates/settings.html +#: wiki/templates/wiki/settings.html +#: wiki/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "设置" + +#: cms/templates/certificates.html cms/templates/container.html +#: cms/templates/course_outline.html cms/templates/group_configurations.html +#: cms/templates/library.html cms/templates/manage_users.html +#: cms/templates/manage_users_lib.html lms/templates/courseware/courses.html +#: lms/templates/edxnotes/edxnotes.html +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +msgid "Loading" +msgstr "正在加载" + +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Grading" +msgstr "评分" + +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Team" +msgstr "课程团队" + +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Advanced Settings" +msgstr "高级设置" + +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Organization" +msgstr "组织" + +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/settings.html lms/templates/courseware/course_about.html +#: themes/elitemba-theme/cms/templates/settings.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Course Number" +msgstr "课程代码" + +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Run" +msgstr "课程" + +#: cms/templates/course_outline.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Course Outline" +msgstr "课程大纲" + +#: cms/templates/html_error.html lms/templates/module-error.html +msgid "Error:" +msgstr "错误:" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Organization:" +msgstr "机构:" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Number:" +msgstr "课程代码:" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Run:" +msgstr "课程长度:" + +#: cms/templates/index.html lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/courseware/courses.html +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Courses" +msgstr "课程" + +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/help_modal.html lms/templates/login.html +#: lms/templates/provider_login.html lms/templates/register-form.html +#: lms/templates/register-shib.html lms/templates/signup_modal.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "E-mail" +msgstr "电子邮件" + +#. Translators: This is the placeholder text for a field that requests an +#. email +#. address. +#: cms/templates/login.html cms/templates/manage_users.html +#: cms/templates/manage_users_lib.html cms/templates/register.html +#: lms/templates/login.html lms/templates/register-form.html +#: lms/templates/register-shib.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "example: username@domain.com" +msgstr "例:username@domain.com" + +#: cms/templates/login.html lms/templates/login.html +msgid "Forgot password?" +msgstr "忘记密码?" + +#: cms/templates/register.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Sign Up" +msgstr "注册" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Sign Up for {studio_name}" +msgstr "注册{studio_name}" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Already have a {studio_name} Account? Sign in" +msgstr "已经有一个{studio_name}账号了?请登录" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"Ready to start creating online courses? Sign up below and start creating " +"your first {platform_name} course today." +msgstr "准备好创建在线课程了?请今天注册并创建您的第一个{platform_name}课程。" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Required Information to Sign Up for {studio_name}" +msgstr "注册{studio_name}所必须的信息" + +#. Translators: This is the placeholder text for a field that requests the +#. user's full name. +#: cms/templates/register.html lms/templates/register-form.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "example: Jane Doe" +msgstr "例:Jane Doe" + +#. Translators: This is the placeholder text for a field that asks the user to +#. pick a username +#: cms/templates/register.html lms/templates/register-form.html +#: lms/templates/register-shib.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "example: JaneDoe" +msgstr "例:JaneDoe" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"This will be used in public discussions with your courses and in our edX101 " +"support forums" +msgstr "这将会被用于您课程的公开讨论中以及我们edX101课程的支持论坛" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Your Location" +msgstr "您的位置" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Preferred Language" +msgstr "首选语言" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "I agree to the {a_start} Terms of Service {a_end}" +msgstr "我同意{a_start}服务条约{a_end}" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Create My Account & Start Authoring Courses" +msgstr "创建我的账号&开始创建课程" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Common {studio_name} Questions" +msgstr "关于{studio_name}的常见问题" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Who is {studio_name} for?" +msgstr "{studio_name}是为谁而建的?" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"{studio_name} is for anyone that wants to create online courses that " +"leverage the global {platform_name} platform. Our users are often faculty " +"members, teaching assistants and course staff, and members of instructional " +"technology groups." +msgstr "" +"{studio_name}面向任何希望在全球化的{platform_name}平台上创建在线课程的用户。我们的用户通常是教员、助教、课程员工或教学技术小组成员。" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"How technically savvy do I need to be to create courses in {studio_name}?" +msgstr "在{studio_name}创建课程需要怎样的技术程度?" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"{studio_name} is designed to be easy to use by almost anyone familiar with " +"common web-based authoring environments (Wordpress, Moodle, etc.). No " +"programming knowledge is required, but for some of the more advanced " +"features, a technical background would be helpful. As always, we are here to" +" help, so don't hesitate to dive right in." +msgstr "" +"对几乎所有熟悉基于网页的编辑环境(WordPress、Moodle等)的人而言,{studio_name}都是很容易使用的。它无需编程知识,但拥有一些技术背景会在使用一些高级特性时有所帮助。我们会一如既往地为您提供帮助。不要犹豫,赶快加入吧。" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "I've never authored a course online before. Is there help?" +msgstr "我以前从来没创建过在线课程,可以帮帮我吗?" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"Absolutely. We have created an online course, edX101, that describes some " +"best practices: from filming video, creating exercises, to the basics of " +"running an online course. Additionally, we're always here to help, just drop" +" us a note." +msgstr "" +"当然。我们创建了一个在线课程:edX101,它介绍了一些创建在线课程的最佳实践:从拍摄视频,创建练习到开展在线教学的基础。另外,我们会尽力提供所需帮助,需要时请随时给我们留言。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Schedule & Details Settings" +msgstr "日程与细节设置" + +#: cms/templates/settings.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Schedule & Details" +msgstr "日程 & 细节" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Basic Information" +msgstr "基本信息" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "The nuts and bolts of your course" +msgstr "您课程的具体细节" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "This field is disabled: this information cannot be changed." +msgstr "该字段已禁用:信息不可修改。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Summary Page" +msgstr "课程概要页面" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "(for student enrollment and access)" +msgstr "(用于学生选修和访问)" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enroll in {course_display_name}" +msgstr "选修{course_display_name}" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"The course \"{course_display_name}\", provided by {platform_name}, is open " +"for enrollment. Please navigate to this course at {link_for_about_page} to " +"enroll." +msgstr "" +"由{platform_name}提供的课程“{course_display_name}”现已开放选课,请通过{link_for_about_page}选修该课程。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Send a note to students via email" +msgstr "通过电子邮件给学生发送笔记" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Invite your students" +msgstr "邀请您的学生" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Promoting Your Course with {platform_name}" +msgstr "通过{platform_name}推广您的课程" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course summary page will not be viewable until your course has been " +"announced. To provide content for the page and preview it, follow the " +"instructions provided by your Program Manager." +msgstr "您的课程概要页面在您的课程公开之后才对外可见。为了向该页面提供信息并预览该页面,请遵循您的项目经理提供的指导。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Credit Requirements" +msgstr "课程学分要求" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Steps required to earn course credit" +msgstr "获取课程学分必要的步骤" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Minimum Grade" +msgstr "最低分" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Successful Proctored Exam" +msgstr "成功设置考试监考" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Proctored Exam {number}" +msgstr "监考考试{number}" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "ID Verification" +msgstr "身份验证" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "In-Course Reverification {number}" +msgstr "考前复检检测{number}" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Pacing" +msgstr "课程开始" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Set the pacing for this course" +msgstr "设定课程开始" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Instructor-Paced" +msgstr "讲师进度" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Instructor-paced courses progress at the pace that the course author sets. " +"You can configure release dates for course content and due dates for " +"assignments." +msgstr "教师教学课程的进度可以由该课程作者设置。您可以为该课程设置课程内容发布时间及停止观看时间。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Self-Paced" +msgstr "自定进度" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Self-paced courses do not have release dates for course content or due dates" +" for assignments. Learners can complete course material at any time before " +"the course end date." +msgstr "自学课程没有课程发布时间与作业缴交时间,学生可以在课程结束时间间自由地完成。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Schedule" +msgstr "课程时间表" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Dates that control when your course can be viewed" +msgstr "调整您的课程可以浏览的日期" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "First day the course begins" +msgstr "课程开始的第一天" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Start Time" +msgstr "课程开始时间" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "(UTC)" +msgstr "(UTC)" + +#: cms/templates/settings.html +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course End Date" +msgstr "课程结束日期" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Last day your course is active" +msgstr "课程活跃的最后一天" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course End Time" +msgstr "课程结束时间" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Certificates Available Date" +msgstr "证书获取日期" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "By default, 48 hours after course end date" +msgstr "默认为结课日期的48小时候" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enrollment Start Date" +msgstr "选课开始日期" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "First day students can enroll" +msgstr "学生可以选课的第一天" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enrollment Start Time" +msgstr "选课开始时间" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enrollment End Date" +msgstr "选课截止日期" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Last day students can enroll." +msgstr "学生可以选课的最后一天。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enrollment End Time" +msgstr "选课截止时间" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Details" +msgstr "课程详情" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Provide useful information about your course" +msgstr "提供有关您的课程的有用信息" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Identify the course language here. This is used to assist users find courses" +" that are taught in a specific language. It is also used to localize the " +"'From:' field in bulk emails." +msgstr "设置课程语言,用于帮助用户寻找用某个语言教学的课程,并本地化批量邮箱地址中的“From”输入框。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Introducing Your Course" +msgstr "介绍您的课程" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Information for prospective students" +msgstr "提供给预期学生的信息" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Title" +msgstr "课程标题" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Displayed as title on the course details page. Limit to 50 characters." +msgstr "课程详情页面的标题,不超过50个字符。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Subtitle" +msgstr "课程子标题" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Displayed as subtitle on the course details page. Limit to 150 characters." +msgstr "课程详情页面的副标题,不超过150个字符。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Duration" +msgstr "课时" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Displayed on the course details page. Limit to 50 characters." +msgstr "显示于课程详情页面,不超过50个字符。" + +#: cms/templates/settings.html lms/templates/courseware/program_marketing.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Description" +msgstr "课程简介" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Displayed on the course details page. Limit to 1000 characters." +msgstr "显示于课程详情页面,不超过1000个字符。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Short Description" +msgstr "课程简介" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Appears on the course catalog page when students roll over the course name. " +"Limit to ~150 characters" +msgstr "将在学生浏览课程目录时出现。限制150个字符。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Overview" +msgstr "课程概览" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "HTML Code Editor" +msgstr "HTML代码编辑器" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Introductions, prerequisites, FAQs that are used on {a_link_start}your " +"course summary page{a_link_end} (formatted in HTML)" +msgstr "在{a_link_start}您的课程摘要页面{a_link_end}的简介、先修条件、常见问题解答(HTML格式)。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course About Sidebar HTML" +msgstr "关于边栏HTML的课程" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Custom sidebar content for {a_link_start}your course summary " +"page{a_link_end} (formatted in HTML)" +msgstr "{a_link_start}您课程摘要页面{a_link_end}的自定义工具栏内容 (HTML格式)" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Card Image" +msgstr "课程卡图片" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"You can manage this image along with all of your other {a_link_start}files " +"and uploads{a_link_end}" +msgstr "您可以管理此图片和其他所有{a_link_start}上传的文件和资料{a_link_end}" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 375px wide by 200px tall)" +msgstr "您的课程目前没有图片。请上传一张(JPEG或PNG格式,最小建议大小为375像素宽、200像素高)" + +#. Translators: This is the placeholder text for a field that requests the URL +#. for a course image +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Your course image URL" +msgstr "您的课程图片 URL" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your course image (Note: only JPEG " +"or PNG format supported)" +msgstr "请为您的课程图片提供一个有效的路径和名字(注意:仅支持JPEG和PNG格式)" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Upload Course Card Image" +msgstr "上传课程卡图片" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 1440px wide by 400px tall)" +msgstr "您的课程暂无图片,请上传一张图片(JPEG/PNG),推荐最小尺寸1440px 宽 x 400px高" + +#. Translators: This is the placeholder text for a field that requests the URL +#. for a course banner image +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Your banner image URL" +msgstr "您的横幅图片URL" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your banner image (Note: only JPEG " +"or PNG format supported)" +msgstr "请输入有效的横幅图片路径和名称(注意:只支持JPEG/PNG格式图片)" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Upload Course Banner Image" +msgstr "上传课程横幅图片" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Video Thumbnail Image" +msgstr "视频缩略图" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course currently does not have a video thumbnail image. Please upload " +"one (JPEG or PNG format, and minimum suggested dimensions are 375px wide by " +"200px tall)" +msgstr "您的课程缺少视频缩略图,请上传一张视频缩略图(JPEG或PNG格式,推荐最小尺寸为375px 宽 X 200px 高)" + +#. Translators: This is the placeholder text for a field that requests the URL +#. for a course video thumbnail image +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Your video thumbnail image URL" +msgstr "您视频缩略图URL" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your video thumbnail image (Note: " +"only JPEG or PNG format supported)" +msgstr "请输入有效的视频缩略图的路径和名称(注意:只支持JPEG/PNG格式图片)" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Upload Video Thumbnail Image" +msgstr "上传视频缩略图" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Introduction Video" +msgstr "课程介绍视频" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Delete Current Video" +msgstr "删除当前视频" + +#. Translators: This is the placeholder text for a field that requests a +#. YouTube video ID for a course video +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "your YouTube video's ID" +msgstr "您的 YouTube 视频 ID" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enter your YouTube video's ID (along with any restriction parameters)" +msgstr "请输入您的YouTube视频编号(以及任何必要的限制参数)" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Learning Outcomes" +msgstr "学习成果" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Add the learning outcomes for this course" +msgstr "添加本门课程的预期学习成果" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Add Learning Outcome" +msgstr "添加学习预期成果" + +#: cms/templates/settings.html lms/templates/courseware/program_marketing.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Instructors" +msgstr "主讲教师" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Add details about the instructors for this course" +msgstr "添加本门课程教授的详细信息" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Add Instructor" +msgstr "添加主讲教师" + +#: cms/templates/settings.html lms/templates/courseware/course_about.html +#: themes/elitemba-theme/cms/templates/settings.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Requirements" +msgstr "修习要求" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Expectations of the students taking this course" +msgstr "对参加本门课程的学生的期望" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Hours of Effort per Week" +msgstr "每周投入课程学习的小时数" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Time spent on all course work" +msgstr "在整个课程上投入的时间" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Prerequisite Course" +msgstr "先修课程" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "None" +msgstr "无" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course that students must complete before beginning this course" +msgstr "学生在开始本课程之前必须完成的课程" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "set pre-requisite course" +msgstr "设置先修课程" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Require students to pass an exam before beginning the course." +msgstr "要求学生在课程开始前通过考试。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"You can now view and author your course entrance exam from the " +"{link_start}Course Outline{link_end}." +msgstr "您现在可以从{link_start}课程大纲{link_end}中查看并编写您课程的入学考试内容。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Grade Requirements" +msgstr "评分要求" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid " %" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"The score student must meet in order to successfully complete the entrance " +"exam. " +msgstr "学生要顺利完成入学考试所必须满足的分数。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Content License" +msgstr "课程内容许可" + +#. Translators: At the course settings, the editor is able to select the +#. default course content license. +#. The course content will have this license set, some assets can override the +#. license with their own. +#. In the form, the license selector for course content is described using the +#. following string: +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Select the default license for course content" +msgstr "选择默认的课程内容许可" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "How are these settings used?" +msgstr "如何使用这些设置?" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course's schedule determines when students can enroll in and begin a " +"course." +msgstr "您的课程时间表决定何时学生可以注册和开始本门课程。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Other information from this page appears on the About page for your course. " +"This information includes the course overview, course image, introduction " +"video, and estimated time requirements. Students use About pages to choose " +"new courses to take." +msgstr "" +"本页面的其他信息将会出现在您课程的关于页面上。这些信息包括课程概要,课程图片,介绍视频,以及预估的时间要求。学生们使用关于页面来选择要上的课程。" + +#: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html +#: lms/templates/module-error.html +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Details" +msgstr "细节" + +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: this is a verb describing the action of viewing more details +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/wiki/includes/article_menu.html +#: wiki/templates/wiki/includes/article_menu.html +msgid "View" +msgstr "阅览" + +#: cms/templates/emails/activation_email.txt +#: themes/elitemba-theme/cms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for {studio_name}! To activate your account, please" +" copy and paste this address into your web browser's address bar:" +msgstr "感谢您注册{studio_name}!要激活您的账号,请复制并粘贴下面的网址到您的浏览器的地址栏:" + +#: cms/templates/emails/activation_email.txt +#: themes/elitemba-theme/cms/templates/emails/activation_email.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the {studio_name} web site." +msgstr "" +"如果您没发出过该请求,您不需要做任何事情,您将不会收到其他任何电子邮件。请不要回复此电子邮件。如果您需要帮助,请访问{studio_name}网站。" + +#: cms/templates/maintenance/_force_publish_course.html +#: lms/templates/problem.html lms/templates/shoppingcart/shopping_cart.html +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html +#: themes/elitemba-theme/lms/templates/problem.html +msgid "Reset" +msgstr "重置" + +#: cms/templates/widgets/footer.html lms/templates/footer.html +msgid "Legal" +msgstr "合法" + +#: cms/templates/widgets/header.html lms/templates/header/header.html +#: lms/templates/navigation/navigation.html +#: lms/templates/widgets/footer-language-selector.html +msgid "Choose Language" +msgstr "选择语言" + +#: cms/templates/widgets/header.html lms/templates/user_dropdown.html +#: lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Account" +msgstr "账号" + +#: cms/templates/widgets/header.html +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: lms/templates/static_templates/help.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: wiki/plugins/help/wiki_plugin.py +msgid "Help" +msgstr "帮助" + +#: cms/templates/widgets/sock.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Looking for help with {studio_name}?" +msgstr "查找有关{studio_name}的帮助?" + +#: cms/templates/widgets/sock.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Hide {studio_name} Help" +msgstr "隐藏{studio_name}帮助" + +#: cms/templates/widgets/sock.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "{studio_name} Documentation" +msgstr "{studio_name}文档" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Access documentation on http://docs.edx.org" +msgstr "到 http://docs.edx.org 获取文档" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "edX Documentation" +msgstr "edX文档" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Enroll in edX101: Overview of Creating an edX Course" +msgstr "参加 edX101:关于创建一门 edX 课程的概述" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Enroll in edX101" +msgstr "选修edX101" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Enroll in StudioX: Creating a Course with edX Studio" +msgstr "参加 StudioX:使用 edX Studio 创建一门课程" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Enroll in StudioX" +msgstr "参加 StudioX" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Send an email to {email}" +msgstr "发送邮件到 {email}" + +#: cms/templates/widgets/tabs-aggregator.html +#: lms/templates/courseware/static_tab.html +#: lms/templates/courseware/tab-view-v2.html +#: lms/templates/courseware/tab-view.html +msgid "name" +msgstr "名称" + +#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html +msgid "Usermenu" +msgstr "用户菜单" + +#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html +msgid "Usermenu dropdown" +msgstr "用户菜单下拉列表" + +#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html +#: lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Sign Out" +msgstr "退出" + +#: common/lib/capa/capa/templates/codeinput.html +msgid "Code Editor" +msgstr "代码编辑器" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Feedback Form" +msgstr "反馈表格" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Email: {email}" +msgstr "电子邮件: {email}" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Full Name: {realname}" +msgstr "全名: {realname}" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Inquiry Type: {inquiry_type}" +msgstr "查询类型: {inquiry_type}" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Message: {message}" +msgstr "信息: {message}" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Tags: {tags}" +msgstr "标签: {tags}" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Additional Info:" +msgstr "附加信息" + +#: common/templates/emails/contact_us_feedback_email_subject.txt +msgid "Feedback from user" +msgstr "使用者反馈意见" + +#: common/templates/emails/sync_learner_profile_data_email_change_body.txt +msgid "" +"The email associated with your {platform_name} account has changed from " +"{old_email} to {new_email}." +msgstr "与您账号 {platform_name} 相关联的电子邮件地址由 {old_email} 修改为 {new_email}。" + +#: common/templates/emails/sync_learner_profile_data_email_change_body.txt +msgid "No action is needed on your part." +msgstr "您不需要进行任何操作。" + +#: common/templates/emails/sync_learner_profile_data_email_change_body.txt +msgid "" +"If this change is not correct, contact {link_start}{platform_name} " +"Support{link_end} or your administrator." +msgstr "如果此更改有误,请联系{link_start}{platform_name}客户支持服务{link_end}或您的管理员。" + +#: common/templates/emails/sync_learner_profile_data_email_change_subject.txt +msgid "Your {platform_name} account email has been updated" +msgstr "您的 {platform_name} 账号电子邮件已更新" + +#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html +msgid "Add a Post" +msgstr "添加一个讨论帖" + +#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html +msgid "New topic form" +msgstr "新主题表格" + +#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html +msgid "Discussion thread list" +msgstr "讨论列表" + +#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html +#: lms/templates/discussion/_user_profile.html +#, python-format +msgid "%s discussion started" +msgid_plural "%s discussions started" +msgstr[0] "%s 场讨论已开始" + +#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html +#: lms/templates/discussion/_user_profile.html +#, python-format +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "%s 条评论" + +#: lms/djangoapps/discussion/templates/discussion/maintenance_fragment.html +msgid "Discussion unavailable" +msgstr "讨论不可用" + +#: lms/djangoapps/discussion/templates/discussion/maintenance_fragment.html +msgid "" +"The discussions are currently undergoing maintenance. We'll have them back " +"up shortly!" +msgstr "讨论板块正在进行维护。我们会很快备份内容!" + +#: lms/templates/_gated_content.html lms/templates/seq_module.html +msgid "Content Locked" +msgstr "未解锁内容" + +#: lms/templates/_gated_content.html +msgid "" +"You must complete the prerequisites for '{prereq_section_name}' to access " +"this content." +msgstr "您必须先完成'{prereq_section_name}'的先修课程,才能访问此内容。" + +#: lms/templates/_gated_content.html +msgid "Go to Prerequisite Section" +msgstr "前往“先修课程要求”" + +#: lms/templates/annotatable.html +msgid "Collapse Instructions" +msgstr "折叠说明" + +#: lms/templates/annotatable.html +msgid "Guided Discussion" +msgstr "指导性讨论" + +#: lms/templates/annotatable.html +msgid "Hide Annotations" +msgstr "隐藏批注" + +#: lms/templates/bookmark_button.html lms/templates/seq_module.html +msgid "Bookmarked" +msgstr "已收藏" + +#: lms/templates/bookmark_button.html +msgid "Bookmark this page" +msgstr "收藏此页" + +#: lms/templates/conditional_module.html +msgid "You do not have access to this dependency module." +msgstr "您无权访问此依赖模块。" + +#: lms/templates/course.html +#: openedx/features/journals/templates/journals/bundle_card.html +#: openedx/features/journals/templates/journals/journal_card.html +#: themes/elitemba-theme/lms/templates/course.html +msgid "LEARN MORE" +msgstr "了解更多" + +#: lms/templates/course.html themes/elitemba-theme/lms/templates/course.html +msgid "Starts" +msgstr "开始" + +#: lms/templates/course.html themes/elitemba-theme/lms/templates/course.html +msgid "Starts: {date}" +msgstr "开课日期: {date}" + +#: lms/templates/courses_list.html +msgid "View all Courses" +msgstr "浏览所有课程" + +#: lms/templates/dashboard.html lms/templates/user_dropdown.html +#: lms/templates/header/user_dropdown.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Dashboard" +msgstr "课程面板" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "You are not enrolled in any courses yet." +msgstr "您尚未参加任何课程。" + +#: lms/templates/dashboard.html +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Explore courses" +msgstr "发现课程" + +#: lms/templates/dashboard.html +#: lms/templates/registration/account_activation_sidebar_notice.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Activate your account!" +msgstr "激活您的账号!" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Course-loading errors" +msgstr "课程加载错误" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Search Your Courses" +msgstr "查找课程" + +#: lms/templates/dashboard.html lms/templates/courseware/courseware.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Clear search" +msgstr "清空搜索结果" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Account Status Info" +msgstr "账号状态信息" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Order History" +msgstr "订单记录" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Email Settings for {course_number}" +msgstr "{course_number}的电子邮件设置" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Receive course emails" +msgstr "接收课程邮件" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Save Settings" +msgstr "保存设置" + +#: lms/templates/dashboard.html lms/templates/ccx/enrollment.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_entitlement_actions.html +#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: themes/elitemba-theme/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Unenroll" +msgstr "放弃选修" + +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "在 Studio 中查看单元" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +msgid "E-mail change failed" +msgstr "邮箱变更失败" + +#: lms/templates/email_change_failed.html +msgid "We were unable to send a confirmation email to {email}" +msgstr "我们无法向 {email}发送确认邮件" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +#: lms/templates/invalid_email_key.html +#: lms/templates/secondary_email_change_failed.html +msgid "Go back to the {link_start}home page{link_end}." +msgstr "返回{link_start}主页{link_end}" + +#: lms/templates/email_change_successful.html +msgid "E-mail change successful!" +msgstr "邮箱更改成功!" + +#: lms/templates/email_change_successful.html +msgid "You should see your new email in your {link_start}dashboard{link_end}." +msgstr "您可以在{link_start}课程面板{link_end}看到您的新邮箱地址" + +#: lms/templates/email_exists.html +msgid "An account with the new e-mail address already exists." +msgstr "该邮箱地址已被另一个账号使用。" + +#: lms/templates/enroll_staff.html +msgid "You should Register before trying to access the Unit" +msgstr "您在查看单元前应先注册。" + +#: lms/templates/enroll_staff.html lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "self" +msgid "Enroll" +msgstr "选修" + +#: lms/templates/enroll_staff.html +msgid "Don't enroll" +msgstr "不选修" + +#: lms/templates/enroll_students.html +msgid "Student Enrollment Form" +msgstr "学生选课表" + +#: lms/templates/enroll_students.html +msgid "Course: " +msgstr "课程:" + +#: lms/templates/enroll_students.html +msgid "Add new students" +msgstr "添加新学生" + +#: lms/templates/enroll_students.html +msgid "Existing students:" +msgstr "现有学生:" + +#: lms/templates/enroll_students.html +msgid "New students added: " +msgstr "新增学生:" + +#: lms/templates/enroll_students.html +msgid "Students rejected: " +msgstr "被拒绝的学生:" + +#: lms/templates/enroll_students.html +msgid "Debug: " +msgstr "排除错误" + +#: lms/templates/extauth_failure.html +msgid "External Authentication failed" +msgstr "外部认证失败" + +#: lms/templates/forgot_password_modal.html +msgid "" +"Please enter your e-mail address below, and we will e-mail instructions for " +"setting a new password." +msgstr "请在下面输入您的电子邮件地址。我们会通过邮件发送设置新密码的说明。" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Required Information" +msgstr "必填信息" + +#: lms/templates/forgot_password_modal.html +msgid "Your E-mail Address" +msgstr "您的邮件地址" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +msgid "This is the e-mail address you used to register with {platform}" +msgstr "这是您在{platform}注册时使用的e-mail地址。" + +#: lms/templates/forgot_password_modal.html +msgid "Reset My Password" +msgstr "重置我的密码" + +#: lms/templates/forgot_password_modal.html +msgid "Email is incorrect." +msgstr "邮箱不正确。" + +#: lms/templates/help_modal.html +msgid "Support" +msgstr "支持" + +#: lms/templates/help_modal.html +msgid "" +"For {strong_start}questions on course lectures, homework, tools, or " +"materials for this course{strong_end}, post in the {link_start}course " +"discussion forum{link_end}." +msgstr "" +"关于{strong_start}此课程的讲座、作业、工具或材料的问题{strong_end},请发布在{link_start}课程讨论论坛{link_end}中。" + +#: lms/templates/help_modal.html +msgid "" +"Have {strong_start}general questions about {platform_name}{strong_end}? You " +"can find lots of helpful information in the {platform_name} " +"{link_start}FAQ{link_end}." +msgstr "" +"{strong_start}对{platform_name}有常见问题{strong_end}?您可以在 {platform_name} " +"{link_start}FAQ{link_end} 中找到许多有用的信息。" + +#: lms/templates/help_modal.html +msgid "" +"Have a {strong_start}question about something specific{strong_end}? You can " +"contact the {platform_name} general support team directly:" +msgstr "{strong_start}对具体事物有疑问{strong_end}?您可以直接联系 {platform_name} 支持团队:" + +#: lms/templates/help_modal.html +msgid "Report a problem" +msgstr "报告问题" + +#: lms/templates/help_modal.html +msgid "Make a suggestion" +msgstr "提供建议" + +#: lms/templates/help_modal.html +msgid "Ask a question" +msgstr "提问" + +#: lms/templates/help_modal.html +msgid "" +"Please note: The {platform_name} support team is English speaking. While we " +"will do our best to address your inquiry in any language, our responses will" +" be in English." +msgstr "请注意{platform_name}平台的技术支持团队说的是英语。我们将尽可能处理来自任何语种的请求,但我们只用英语答复。" + +#: lms/templates/help_modal.html +msgid "Briefly describe your issue" +msgstr "简述您的问题" + +#: lms/templates/help_modal.html +msgid "Tell us the details" +msgstr "告诉我们细节" + +#: lms/templates/help_modal.html +msgid "" +"Describe what you were doing when you encountered the issue. Include any " +"details that will help us to troubleshoot, including error messages that you" +" saw." +msgstr "请尽可能详细地描述您遇到该问题时的情况,包括显示的错误提示,以便我们排除故障。" + +#: lms/templates/help_modal.html +msgid "Thank You!" +msgstr "谢谢!" + +#: lms/templates/help_modal.html +msgid "" +"Thank you for your inquiry or feedback. We typically respond to a request " +"within one business day, Monday to Friday. In the meantime, please review " +"our {link_start}detailed FAQs{link_end} where most questions have already " +"been answered." +msgstr "" +"感谢您的咨询及反馈。我们一般将在1个工作日内给您答复,我们的工作日为周一至周五。您也可以访问我们的常见问题解答页面{link_start}{link_end}以获得问题答案。" + +#: lms/templates/help_modal.html +msgid "- Select -" +msgstr "选择" + +#: lms/templates/help_modal.html +msgid "problem" +msgstr "问题" + +#: lms/templates/help_modal.html +msgid "Report a Problem" +msgstr "报告问题" + +#: lms/templates/help_modal.html +msgid "Brief description of the problem" +msgstr "简述此问题" + +#: lms/templates/help_modal.html +msgid "Details of the problem you are encountering{asterisk}" +msgstr "问题详情{asterisk}" + +#: lms/templates/help_modal.html +msgid "suggestion" +msgstr "建议" + +#: lms/templates/help_modal.html +msgid "Make a Suggestion" +msgstr "提供建议" + +#: lms/templates/help_modal.html +msgid "Brief description of your suggestion" +msgstr "简述您的建议" + +#: lms/templates/help_modal.html +msgid "question" +msgstr "问题" + +#: lms/templates/help_modal.html +msgid "Ask a Question" +msgstr "提问" + +#: lms/templates/help_modal.html +msgid "Brief summary of your question" +msgstr "简单概述您的问题" + +#: lms/templates/help_modal.html +msgid "An error has occurred." +msgstr "发生错误" + +#: lms/templates/help_modal.html +msgid "Please {link_start}send us e-mail{link_end}." +msgstr "请 {link_start}发送e-mail{link_end} 给我们。" + +#: lms/templates/help_modal.html +msgid "Please try again later." +msgstr "请稍后再试。" + +#: lms/templates/hidden_content.html +msgid "The course has ended." +msgstr "课程已经结束" + +#: lms/templates/hidden_content.html +msgid "The due date for this assignment has passed." +msgstr "本次作业已经过了截止日期。" + +#: lms/templates/hidden_content.html +msgid "" +"Because the course has ended, this assignment is no longer " +"available.{line_break}If you have completed this assignment, your grade is " +"available on the {link_start}progress page{link_end}." +msgstr "" +"由于课程已经结束,此作业不再可用。{line_break} 如果您已经完成此作业,您可以在 {link_start}进度页面{link_end} " +"上查询作业成绩。" + +#: lms/templates/hidden_content.html +msgid "" +"Because the due date has passed, this assignment is no longer " +"available.{line_break}If you have completed this assignment, your grade is " +"available on the {link_start}progress page{link_end}." +msgstr "" +"由于截止日期已过,此作业不再可用。{line_break} 如果您已经完成此作业,您可以在 {link_start}进度页面{link_end} " +"上查询作业成绩。" + +#: lms/templates/index.html lms/templates/courseware/courses.html +#: themes/elitemba-theme/lms/templates/index.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +#: themes/stanford-style/lms/templates/index.html +msgid "Search for a course" +msgstr "查找课程" + +#. Translators: 'Open edX' is a registered trademark, please keep this +#. untranslated. See http://open.edx.org for more information. +#: lms/templates/index_overlay.html +msgid "Welcome to the Open edX{registered_trademark} platform!" +msgstr "欢迎来到Open edX{registered_trademark}平台!" + +#. Translators: 'Open edX' is a registered trademark, please keep this +#. untranslated. See http://open.edx.org for more information. +#: lms/templates/index_overlay.html +msgid "It works! This is the default homepage for this Open edX instance." +msgstr "成功了!这是一个 Open edX 实例的默认主页。" + +#: lms/templates/invalid_email_key.html +msgid "Invalid email change key" +msgstr "无效的邮件变更码" + +#: lms/templates/invalid_email_key.html +msgid "This e-mail key is not valid. Please check:" +msgstr "邮件码无效。请检查:" + +#: lms/templates/invalid_email_key.html +msgid "" +"Was this key already used? Check whether the e-mail change has already " +"happened." +msgstr "如果该编码已被使用,请检查邮箱变更是否已成功。" + +#: lms/templates/invalid_email_key.html +msgid "Did your e-mail client break the URL into two lines?" +msgstr "您的邮箱客户端是否将URL分成两行?" + +#: lms/templates/invalid_email_key.html +msgid "The keys are valid for a limited amount of time. Has the key expired?" +msgstr "由于密钥的时效有限,请检查是否已过期。" + +#: lms/templates/library-block-author-preview-header.html +msgid "" +"Showing all matching content eligible to be added into {display_name}. Each " +"student will be assigned {max_count} component drawn randomly from this " +"list." +msgid_plural "" +"Showing all matching content eligible to be added into {display_name}. Each " +"student will be assigned {max_count} components drawn randomly from this " +"list." +msgstr[0] "显示可添加到 {display_name} 的全部匹配内容。每位学生都将从此列表随机分配到 {max_count} 个组件。" + +#: lms/templates/login-sidebar.html +msgid "Helpful Information" +msgstr "有用的信息" + +#: lms/templates/login-sidebar.html +msgid "Login via OpenID" +msgstr "通过OpenID登录" + +#: lms/templates/login-sidebar.html +msgid "" +"You can now start learning with {platform_name} by logging in with your OpenID account." +msgstr "" +"您现在可以登录您的 OpenID账号开始学习{platform_name}上的课程。" + +#: lms/templates/login-sidebar.html +msgid "Not Enrolled?" +msgstr "尚未选课?" + +#: lms/templates/login-sidebar.html +msgid "Sign up for {platform_name} today!" +msgstr "现在就注册加入{platform_name}!" + +#: lms/templates/login-sidebar.html lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Need Help?" +msgstr "需要帮助?" + +#: lms/templates/login-sidebar.html +msgid "Looking for help signing in or with your {platform_name} account?" +msgstr "寻找关于登录或者您的 {platform_name} 账号的帮助?" + +#: lms/templates/login-sidebar.html +msgid "View our help section for answers to commonly asked questions." +msgstr "查看帮助部分来获得常见问题的解答。" + +#: lms/templates/login.html +msgid "Log into your {platform_name} Account" +msgstr "登录进入您的{platform_name}账号" + +#: lms/templates/login.html +msgid "Log into My {platform_name} Account" +msgstr "登录我的{platform_name}账号" + +#: lms/templates/login.html +msgid "Access My Courses" +msgstr "进入我的课程" + +#: lms/templates/login.html lms/templates/register-shib.html +#: lms/templates/register.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Processing your account information" +msgstr "正在处理您的账号信息" + +#: lms/templates/login.html wiki/templates/wiki/accounts/login.html +msgid "Please log in" +msgstr "请登录" + +#: lms/templates/login.html +msgid "to access your account and courses" +msgstr "来访问您的账号和课程" + +#: lms/templates/login.html +msgid "We're Sorry, {platform_name} accounts are unavailable currently" +msgstr "我们很遗憾,{platform_name} 账号现在无法使用" + +#: lms/templates/login.html +msgid "We couldn't log you in." +msgstr "无法登录。" + +#: lms/templates/login.html +msgid "Your email or password is incorrect" +msgstr "您的邮箱或密码不正确" + +#: lms/templates/login.html +msgid "An error occurred when signing you in to {platform_name}." +msgstr "您注册 {platform_name} 时发生了一个错误。" + +#: lms/templates/login.html +msgid "" +"Please provide the following information to log into your {platform_name} " +"account. Required fields are noted by bold text " +"and an asterisk (*)." +msgstr "" +"请提供下面的信息以登录进入您的 {platform_name} 账号,必须填写的信息已经被 加粗和用 (*)标出。" + +#: lms/templates/login.html +msgid "Account Preferences" +msgstr "账号参数" + +#: lms/templates/login.html +msgid "Sign in with {provider_name}" +msgstr "以 {provider_name}登陆" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS +#: lms/templates/lti.html +msgid "External resource" +msgstr "外部资源" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "{points} / 共{total_points} 分" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "本题共有{total_points} 分" + +#: lms/templates/lti.html +msgid "View resource in a new window" +msgstr "在新窗口中查看资源" + +#: lms/templates/lti.html +msgid "" +"Please provide launch_url. Click \"Edit\", and fill in the required fields." +msgstr "请提供运行链接 launch_url,点击\"编辑\",并填写需要的项。" + +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "评分者给您的反馈:" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "点击来启动" + +#: lms/templates/manage_user_standing.html +msgid "Manage student accounts" +msgstr "管理学生账号" + +#: lms/templates/manage_user_standing.html +msgid "Username:" +msgstr "用户名:" + +#: lms/templates/manage_user_standing.html +msgid "Profile:" +msgstr "用户资料:" + +#: lms/templates/manage_user_standing.html +msgid "Image:" +msgstr "图像" + +#: lms/templates/manage_user_standing.html +msgid "Name:" +msgstr "名字" + +#: lms/templates/manage_user_standing.html +msgid "Choose an action:" +msgstr "选择一个行为:" + +#: lms/templates/manage_user_standing.html +msgid "View Profile" +msgstr "查看用户资料" + +#: lms/templates/manage_user_standing.html +msgid "Disable Account" +msgstr "停用账号" + +#: lms/templates/manage_user_standing.html +msgid "Reenable Account" +msgstr "重新启用账号" + +#: lms/templates/manage_user_standing.html +msgid "Remove Profile Image" +msgstr "删除用户资料照片" + +#: lms/templates/manage_user_standing.html +msgid "Students whose accounts have been disabled" +msgstr "学生账号已被停用" + +#: lms/templates/manage_user_standing.html +msgid "(reload your page to refresh)" +msgstr "(重新加载以刷新您的页面)" + +#: lms/templates/manage_user_standing.html +msgid "working" +msgstr "运行中" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" +msgstr "{platform_name} 平台的服务器发生了错误" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +#: lms/templates/courseware/error-message.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." +msgstr "" +"非常抱歉,该模块暂时无法使用,我们的教员正在努力尽修复问题。要报告您发现的任何问题或遇到网站非正常,请向{tech_support_email}发送邮件" + +#: lms/templates/module-error.html +msgid "Raw data:" +msgstr "原始数据:" + +#: lms/templates/notes.html +msgid "You do not have any notes." +msgstr "您没有任何笔记。" + +#: lms/templates/preview_menu.html +msgid "Course View" +msgstr "课程内容查看" + +#: lms/templates/preview_menu.html +msgid "View this course as:" +msgstr "查看课程的身份:" + +#: lms/templates/preview_menu.html +msgid "Learner" +msgstr "学生" + +#: lms/templates/preview_menu.html +msgid "Specific learner" +msgstr "指定学生" + +#: lms/templates/preview_menu.html +msgid "Learner in {content_group}" +msgstr "{content_group}的学生" + +#: lms/templates/preview_menu.html +msgid "Username or email:" +msgstr "用户名或电子邮件:" + +#: lms/templates/preview_menu.html +msgid "Set preview mode" +msgstr "设为预览模式" + +#: lms/templates/preview_menu.html +msgid "You are now viewing the course as {i_start}{user_name}{i_end}." +msgstr "您正在以 {i_start}{user_name}{i_end} 身份查看课程。" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "You have used {num_used} of {num_total} attempt" +msgid_plural "You have used {num_used} of {num_total} attempts" +msgstr[0] "您已经尝试了{num_used}次(总共可以尝试{num_total}次)" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "" +"Some problems have options such as save, reset, hints, or show answer. These" +" options follow the Submit button." +msgstr "一些题目设有保存、重置、提示、显示答案等选项,点击提交后即会出现。" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "Hint" +msgstr "提示" + +#: lms/templates/problem.html lms/templates/word_cloud.html +#: themes/elitemba-theme/lms/templates/problem.html +msgid "Save" +msgstr "保存" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "Save your answer" +msgstr "保存答案" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "Reset your answer" +msgstr "重置答案" + +#: lms/templates/problem_notifications.html +msgid "Next Hint" +msgstr "下个提示" + +#: lms/templates/problem_notifications.html +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "Review" +msgstr "检查" + +#: lms/templates/provider_login.html +msgid "Log In" +msgstr "登录" + +#: lms/templates/provider_login.html +msgid "" +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." +msgstr "您的用户名、邮箱地址及全名将发送到 {destination},收集和使用这些信息将遵循他们的服务和隐私保护条款。" + +#: lms/templates/provider_login.html +#, python-format +msgid "Return To %s" +msgstr "返回%s" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "" +"We're sorry, but this version of your browser is not supported. Try again " +"using a different browser or a newer version of your browser." +msgstr "很抱歉,我们不支持您的浏览器版本。请使用不同的浏览器或您的浏览器的较新版本重试。" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "The following errors occurred while processing your registration:" +msgstr "在处理您的注册信息时发生了下列错误:" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Sign up with {provider_name}" +msgstr "使用 {provider_name} 账号登录" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Create your own {platform_name} account below" +msgstr "在下面创建您的 {platform_name} 账号" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "" +"Required fields are noted by bold text and an " +"asterisk (*)." +msgstr "必需的字段已经被粗体和星号(*)所标记。" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "您已成功地以{selected_provider}账号登录。" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "" +"We just need a little more information before you start learning with " +"{platform_name}." +msgstr "您只需再多提供一点信息就可以开始在{platform_name}学习了。" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Please complete the following fields to register for an account. " +msgstr "请将以下字段补充完整以完成账号注册。" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Your legal name, used for any certificates you earn." +msgstr "将在您获得的所有证书上显示的法定姓名" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Will be shown in any discussions or forums you participate in" +msgstr "将会在您参加的任何讨论或论坛上显示" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "cannot be changed later" +msgstr "以后不能更改" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Welcome {username}" +msgstr "欢迎 {username}" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Enter a Public Display Name:" +msgstr "输入一个公开的显示名称:" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Public Display Name" +msgstr "公开显示名称" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Additional Personal Information" +msgstr "更多个人信息" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "example: New York" +msgstr "例:北京" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Please share with us your reasons for registering with {platform_name}" +msgstr "请告诉我们您注册 {platform_name}的原因" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Account Acknowledgements" +msgstr "账号致谢" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "I agree to the {link_start}Terms of Service{link_end}" +msgstr "我同意{link_start}服务条款{link_end}" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "I agree to the {link_start}Honor Code{link_end}" +msgstr "我同意{link_start}诚信准则{link_end}" + +#: lms/templates/register-form.html lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Create My Account" +msgstr "创建我的账号" + +#: lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Preferences for {platform_name}" +msgstr "{platform_name}偏好设置" + +#: lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Update my {platform_name} Account" +msgstr "更新我的{platform_name}账号" + +#: lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Welcome {username}! Please set your preferences below" +msgstr "欢迎 {username}! 接下来请进行您的偏好设置" + +#: lms/templates/register-shib.html lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Enter a public username:" +msgstr "输入用户昵称" + +#: lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Update My Account" +msgstr "更新我的账号" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Registration Help" +msgstr "注册帮助" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Already registered?" +msgstr "已经注册过了?" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +#: wiki/templates/wiki/base.html wiki/templates/wiki/accounts/login.html +#: wiki/templates/wiki/accounts/signup.html +msgid "Log in" +msgstr "登录" + +#: lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "欢迎来到{platform_name}" + +#: lms/templates/register-sidebar.html +msgid "" +"Registering with {platform_name} gives you access to all of our current and " +"future free courses. Not ready to take a course just yet? Registering puts " +"you on our mailing list - we will update you as courses are added." +msgstr "" +"在 {platform_name} 注册之后, " +"您可以访问我们现有和将来所有的免费课程。现在还不想加入课程?注册后您将加入我们的收件人列表,您将通过邮件收到新课程的通知。" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Next Steps" +msgstr "下面的步骤" + +#: lms/templates/register-sidebar.html +msgid "" +"As part of joining {platform_name}, you will receive an email message with " +"instructions for activating your account. Don't see the email? Check your " +"spam folder and mark {platform_name} emails as 'not spam'. At " +"{platform_name}, we communicate mostly through email." +msgstr "" +"加入 {platform_name} 过程中,您将收到一封说明账号激活方法的电子邮件。如未收到邮件,请检查您的垃圾邮件文件夹并将 " +"{platform_name} 邮件标记为“非垃圾邮件”。在 {platform_name},电子邮件为主要沟通方式。" + +#: lms/templates/register-sidebar.html +msgid "Need help registering with {platform_name}?" +msgstr "注册{platform_name}账号遇到问题?" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "View our FAQs for answers to commonly asked questions." +msgstr "查看我们的FAQ来获得常见问题的解答。" + +#: lms/templates/register-sidebar.html +msgid "" +"You can find the answers to most of your questions in our list of FAQs. " +"After you enroll in a course, you can also find answers in the course " +"discussions." +msgstr "在我们的常见问题解答列表中,您可以找到大多数问题的答案。加入课程后,您也可以在课程讨论中找到问题答案。" + +#: lms/templates/register.html +msgid "Register for {platform_name}" +msgstr "{platform_name} 注册" + +#: lms/templates/register.html +msgid "Create My {platform_name} Account" +msgstr "创建我的 {platform_name} 账号" + +#: lms/templates/register.html +msgid "Welcome!" +msgstr "欢迎!" + +#: lms/templates/register.html +msgid "Register below to create your {platform_name} account" +msgstr "在下面注册来创建您在 {platform_name}的账号" + +#: lms/templates/resubscribe.html +msgid "Re-subscribe Successful!" +msgstr "重新订阅成功!" + +#: lms/templates/resubscribe.html +msgid "" +"You have re-enabled forum notification emails from {platform_name}. You may " +"{dashboard_link_start}return to your dashboard{link_end}." +msgstr "" +"您已重新启用{platform_name}的论坛邮件提醒。您可以{dashboard_link_start}返回您的课程面板{link_end}。" + +#: lms/templates/secondary_email_change_failed.html +msgid "Secondary e-mail change failed" +msgstr "辅助邮箱变更失败" + +#: lms/templates/secondary_email_change_failed.html +msgid "We were unable to activate your secondary email {secondary_email}" +msgstr "我们无法激活您的辅助邮箱{secondary_email}" + +#: lms/templates/secondary_email_change_successful.html +msgid "Secondary e-mail change successful!" +msgstr "辅助邮箱变更成功!" + +#: lms/templates/secondary_email_change_successful.html +msgid "" +"Your secondary email has been activated. Please visit " +"{link_start}dashboard{link_end} for courses." +msgstr "您的辅助电子邮件已激活。请访问{link_start}面板{link_end}查看课程。" + +#: lms/templates/seq_module.html +msgid "Important!" +msgstr "重要事项!" + +#: lms/templates/seq_module.html +msgid "Previous" +msgstr "上一个" + +#: lms/templates/seq_module.html +msgid "Next" +msgstr "下一个" + +#: lms/templates/seq_module.html +msgid "Sequence" +msgstr "序列" + +#: lms/templates/signup_modal.html +msgid "Sign Up for {platform_name}" +msgstr "注册为{platform_name}平台的会员" + +#: lms/templates/signup_modal.html +msgid "e.g. yourname@domain.com" +msgstr "例如 yourname@domain.com" + +#: lms/templates/signup_modal.html +msgid "e.g. yourname (shown on forums)" +msgstr "例如:昵称(在论坛上显示的名称)" + +#: lms/templates/signup_modal.html +msgid "e.g. Your Name (for certificates)" +msgstr "例如:姓名(用于证书)" + +#: lms/templates/signup_modal.html +msgid "Welcome {name}" +msgstr "欢迎 {name}" + +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "全名 *" + +#: lms/templates/signup_modal.html +msgid "Ed. Completed" +msgstr "已完成" + +#: lms/templates/signup_modal.html +msgid "Year of birth" +msgstr "出生年份" + +#: lms/templates/signup_modal.html +msgid "Goals in signing up for {platform_name}" +msgstr "注册加入{platform_name}的目标" + +#: lms/templates/signup_modal.html +msgid "Already have an account?" +msgstr "已有账号?" + +#: lms/templates/signup_modal.html +msgid "Login." +msgstr "登录" + +#: lms/templates/split_test_author_view.html +msgid "" +"This content experiment uses group configuration " +"'{group_configuration_name}'." +msgstr "此内容实验使用了组配置“{group_configuration_name}”。" + +#: lms/templates/split_test_author_view.html +msgid "Active Groups" +msgstr "活跃小组" + +#: lms/templates/split_test_author_view.html +msgid "Inactive Groups" +msgstr "不活跃小组" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug Info" +msgstr "工作人员调试信息" + +#: lms/templates/staff_problem_info.html +msgid "Submission history" +msgstr "提交历史" + +#: lms/templates/staff_problem_info.html +msgid "{platform_name} Content Quality Assessment" +msgstr "{platform_name} 内容质量评估" + +#: lms/templates/staff_problem_info.html +msgid "Comment" +msgstr "注释" + +#: lms/templates/staff_problem_info.html +msgid "comment" +msgstr "注释" + +#: lms/templates/staff_problem_info.html +msgid "Tag" +msgstr "标签" + +#: lms/templates/staff_problem_info.html +msgid "Optional tag (eg \"done\" or \"broken\"):" +msgstr "可选标签(如:“done” 或 “broken”)" + +#: lms/templates/staff_problem_info.html +msgid "tag" +msgstr "标签" + +#: lms/templates/staff_problem_info.html +msgid "Add comment" +msgstr "添加评论" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug:" +msgstr "工作人员调试:" + +#: lms/templates/staff_problem_info.html +msgid "Score (for override only)" +msgstr "成绩(仅用于覆盖原来的成绩设置)" + +#: lms/templates/staff_problem_info.html +msgid "Reset Learner's Attempts to Zero" +msgstr "将学员的尝试次数置为0" + +#: lms/templates/staff_problem_info.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Delete Learner's State" +msgstr "删除学生状态" + +#: lms/templates/staff_problem_info.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Learner's Submission" +msgstr "对学生的提交记录重新评分" + +#: lms/templates/staff_problem_info.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Only If Score Improves" +msgstr "如果评分提高, 重新打分" + +#: lms/templates/staff_problem_info.html +msgid "Override Score" +msgstr "覆盖成绩" + +#: lms/templates/staff_problem_info.html +msgid "Module Fields" +msgstr "模块域" + +#: lms/templates/staff_problem_info.html +msgid "XML attributes" +msgstr "XML 属性" + +#: lms/templates/staff_problem_info.html +msgid "Submission History Viewer" +msgstr "提交历史查看器" + +#: lms/templates/staff_problem_info.html +msgid "User:" +msgstr "用户:" + +#: lms/templates/staff_problem_info.html +msgid "View History" +msgstr "查看历史记录" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "{course_number} Textbook" +msgstr "{course_number} 教材" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "Textbook Navigation" +msgstr "课本导航" + +#: lms/templates/staticbook.html lms/templates/courseware/gradebook.html +msgid "Page" +msgstr "页面" + +#: lms/templates/staticbook.html +msgid "Previous page" +msgstr "上一页" + +#: lms/templates/staticbook.html +msgid "Next page" +msgstr "下一页" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Sysadmin Dashboard" +msgstr "系统管理员面板" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Users" +msgstr "用户" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Staffing and Enrollment" +msgstr "教员配备及学生选课" + +#. Translators: refers to http://git-scm.com/docs/git-log +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Logs" +msgstr "Git日志" + +#: lms/templates/sysadmin_dashboard.html +msgid "User Management" +msgstr "用户管理" + +#: lms/templates/sysadmin_dashboard.html +msgid "Email or username" +msgstr "电子邮件或名字" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete user" +msgstr "删除用户" + +#: lms/templates/sysadmin_dashboard.html +msgid "Create user" +msgstr "创建用户" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download list of all users (csv file)" +msgstr "下载所有用户列表 (csv 文件)" + +#: lms/templates/sysadmin_dashboard.html +msgid "Check and repair external authentication map" +msgstr "检查修复外部认证映射" + +#: lms/templates/sysadmin_dashboard.html +msgid "" +"Go to each individual course's Instructor dashboard to manage course " +"enrollment." +msgstr "进入每个课程的教师控制面板来管理课程选修信息。" + +#: lms/templates/sysadmin_dashboard.html +msgid "Manage course staff and instructors" +msgstr "管理课程工作人员与教师" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download staff and instructor list (csv file)" +msgstr "下载教员与主讲教师列名单(csv 文件)" + +#: lms/templates/sysadmin_dashboard.html +msgid "Administer Courses" +msgstr "管理课程" + +#. Translators: Repo is short for git repository or source of +#. courseware; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Location" +msgstr "仓库位置" + +#. Translators: Repo is short for git repository (http://git-scm.com/about) or +#. source of +#. courseware and branch is a specific version within that repository +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Branch (optional)" +msgstr "仓库分支(可选)" + +#. Translators: GitHub is a popular website for hosting code +#: lms/templates/sysadmin_dashboard.html +msgid "Load new course from GitHub" +msgstr "从github载入新的课程" + +#. Translators: 'dir' is short for 'directory' +#: lms/templates/sysadmin_dashboard.html +msgid "Course ID or dir" +msgstr "课程编号或目录" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete course from site" +msgstr "从网站中删除课程" + +#. Translators: A version number appears after this string +#: lms/templates/sysadmin_dashboard.html +msgid "Platform Version" +msgstr "平台版本" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "上一项" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "第 {current_page} 页/ 共{total_pages}页" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "下一个" + +#. Translators: Git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Recent git load activity for {course_id}" +msgstr "近期 {course_id}的git加载活动" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/ccx/schedule.html +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Date" +msgstr "日期" + +#. Translators: Git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Action" +msgstr "Git动作" + +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "无记载git导入日志。" + +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded for this course." +msgstr "此课程无记载git导入日志。" + +#: lms/templates/text-me-the-app.html +msgid "Text Me The App" +msgstr "把App信息发送给我" + +#: lms/templates/tracking_log.html +msgid "Tracking Log" +msgstr "追踪记录" + +#: lms/templates/tracking_log.html +msgid "datetime" +msgstr "日期时间" + +#: lms/templates/tracking_log.html +msgid "ipaddr" +msgstr "IP地址" + +#: lms/templates/tracking_log.html +msgid "source" +msgstr "源" + +#: lms/templates/tracking_log.html +msgid "type" +msgstr "类型" + +#: lms/templates/unsubscribe.html +msgid "Unsubscribe Successful!" +msgstr "取消订阅成功!" + +#: lms/templates/unsubscribe.html +msgid "" +"You will no longer receive forum notification emails from {platform_name}. " +"You may {dashboard_link_start}return to your dashboard{link_end}. If you did" +" not mean to do this, {undo_link_start}you can re-subscribe{link_end}." +msgstr "" +"您不将再接收到{platform_name}论坛邮件提醒,请单击{dashboard_link_start}此处{link_end}返回您的课程面板。如果您不是有意取消,请单击{undo_link_start}此处{link_end}重新订阅消息。" + +#: lms/templates/user_dropdown.html lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Dashboard for:" +msgstr "课程面板:" + +#: lms/templates/user_dropdown.html +msgid "More options" +msgstr "更多选项" + +#: lms/templates/user_dropdown.html lms/templates/header/header.html +#: lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "More Options" +msgstr "更多选项" + +#: lms/templates/using.html +msgid "Using the system" +msgstr "使用系统" + +#: lms/templates/using.html +msgid "" +"During video playback, use the subtitles and the scroll bar to navigate. " +"Clicking the subtitles is a fast way to skip forwards and backwards by small" +" amounts." +msgstr "在视频回放期间,您可以使用字幕或者滚动条来操纵视频播放。点击字幕可以便捷地实现向前或向后跳跃一小段。" + +#: lms/templates/using.html +msgid "" +"If you are on a low-resolution display, the left navigation bar can be " +"hidden by clicking on the set of three left arrows next to it." +msgstr "如果您使用的是低分辨率的显示器,可以通过点击旁边的三个左箭头来隐藏左边的滚动条。" + +#: lms/templates/using.html +msgid "" +"If you need bigger or smaller fonts, use your browsers settings to scale " +"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" +" ctrl-minus at the same time." +msgstr "" +"如果您需要改变字体大小,请使用浏览器设置实现缩放。以Google " +"Chrome浏览器为例,可以通过按键“Ctrl”和“+”,“Ctrl”和“-”来使用放大和缩小功能。" + +#: lms/templates/video.html +msgid "Loading video player" +msgstr "正在加载视频播放器" + +#: lms/templates/video.html +msgid "Play video" +msgstr "播放视频" + +#: lms/templates/video.html +msgid "No playable video sources found." +msgstr "未找到可播放的视频源。" + +#: lms/templates/video.html +msgid "" +"Your browser does not support this video format. Try using a different " +"browser." +msgstr "您的浏览器不支持此视频格式,请更换浏览器再尝试。" + +#: lms/templates/video.html +msgid "Downloads and transcripts" +msgstr "下载的文件及字幕" + +#: lms/templates/video.html +msgid "Download video file" +msgstr "下载视频文件" + +#: lms/templates/video.html +msgid "Transcripts" +msgstr "字幕" + +#: lms/templates/video.html +msgid "Download {file}" +msgstr "下载 {file}" + +#: lms/templates/video.html +msgid "Download transcript" +msgstr "下载字幕" + +#: lms/templates/video.html +msgid "Handouts" +msgstr "讲义" + +#: lms/templates/video.html +msgid "Download Handout" +msgstr "下载讲义" + +#: lms/templates/word_cloud.html +msgid "{num} of {total}" +msgstr "{num} / {total}" + +#: lms/templates/word_cloud.html +msgid "Your words were:" +msgstr "您的话是:" + +#: lms/templates/account_recovery/password_create_confirm.html +msgid "Create Your {platform_name} Password" +msgstr "创建您的 {platform_name} 密码" + +#: lms/templates/account_recovery/password_create_confirm.html +msgid "Invalid Password Create Link" +msgstr "无效的密码设置链接" + +#: lms/templates/api_admin/api_access_request_form.html +msgid "API Access Request" +msgstr "API 访问请求" + +#: lms/templates/api_admin/api_access_request_form.html +#: lms/templates/api_admin/status.html +msgid "{platform_name} API Access Request" +msgstr "{platform_name} API 访问请求" + +#: lms/templates/api_admin/api_access_request_form.html +msgid "Request API Access" +msgstr "请求 API 访问" + +#: lms/templates/api_admin/status.html +msgid "API Access Request Status" +msgstr "API 访问请求状态" + +#. Translators: "platform_name" is the name of this Open edX installation. +#: lms/templates/api_admin/status.html +msgid "" +"Your request to access the {platform_name} Course Catalog API is being " +"processed. You will receive a message at the email address in your profile " +"when processing is complete. You can also return to this page to see the " +"status of your API access request." +msgstr "" +"正在处理您访问 {platform_name} 课程目录 API " +"的请求。处理完成后,您写在用户资料中的电子邮箱将收到一条信息。您也可以返回到此页面查看您的 API 访问申请的状态。" + +#. Translators: "platform_name" is the name of this Open edX installation. +#. "api_support_email_link" is HTML for a link to email the API support staff. +#: lms/templates/api_admin/status.html +msgid "" +"Your request to access the {platform_name} Course Catalog API has been " +"denied. If you think this is an error, or for other questions about using " +"this API, contact {api_support_email_link}." +msgstr "" +"您申请访问 {platform_name} 课程目录 API 的请求未通过。如果您认为这是一个错误或有关于使用此 API 的其他问题,请联系 " +"{api_support_email_link}。" + +#: lms/templates/api_admin/status.html +msgid "" +"Your request to access the {platform_name} Course Catalog API has been " +"approved." +msgstr "您申请访问 {platform_name} 课程目录 API 的请求已通过。" + +#: lms/templates/api_admin/status.html +msgid "Application Name" +msgstr "应用名称" + +#: lms/templates/api_admin/status.html +msgid "API Client ID" +msgstr "API 客户端 ID" + +#: lms/templates/api_admin/status.html +msgid "API Client Secret" +msgstr "API 客户端密码" + +#: lms/templates/api_admin/status.html +msgid "Redirect URLs" +msgstr "重新定向 URL" + +#: lms/templates/api_admin/status.html +msgid "" +"If you would like to regenerate your API client information, please use the " +"form below." +msgstr "如果您想要重新生成您的 API 客户端信息,请使用以下表格。" + +#: lms/templates/api_admin/status.html +msgid "Generate API client credentials" +msgstr "生成 API 客户端凭证" + +#. Translators: "platform_name" is the name of this Open edX installation. +#. "link_start" and "link_end" are the HTML for a link to the API +#. documentation. "api_support_email_link" is HTML for a link to email the API +#. support staff. +#: lms/templates/api_admin/status.html +msgid "" +"To learn more about the {platform_name} Course Catalog API, visit " +"{link_start}our API documentation page{link_end}. For questions about using " +"this API, contact {api_support_email_link}." +msgstr "" +"要了解更多关于 {platform_name} 课程目录 API 的信息,请访问{link_start}我们的 API " +"文档页面{link_end}。关于使用此 API 的问题,请联系 {api_support_email_link}。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "API Terms of Service" +msgstr "API 服务条款" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Terms of Service for {platform_name} APIs" +msgstr "{platform_name} API 的服务条款" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Effective Date: May 24th, 2018" +msgstr "生效日期:2018年5月24日" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"Welcome to {platform_name}. Thank you for using {platform_name}'s Course " +"Discovery API, Enterprise API and/or any additional APIs that we may offer " +"from time to time (collectively, the \"APIs\"). Please read these Terms of " +"Service prior to accessing or using the APIs. These Terms of Service, any " +"additional terms within accompanying API documentation, and any applicable " +"policies and guidelines that {platform_name} makes available and/or updates " +"from time to time are agreements (collectively, the \"Terms\") between you " +"and {platform_name}. These Terms are issued under the enterprise product " +"agreement, member participation agreement, or other direct agreement " +"governing the purchase of {platform_name} products, if any (the " +"\"Agreement\"), executed by you or the party on whose behalf you are " +"accessing or using the APIs and {platform_name}. In the event that you have" +" such an Agreement that applies to your use of the APIs, the Agreement will " +"control in the event of any conflict between it and these Terms. By " +"accessing or using the APIs, you accept and agree to be legally bound by the" +" Terms, whether or not you are a registered user. If you are accessing or " +"using the APIs on behalf of a company, organization or other legal entity, " +"you are agreeing to these Terms for that entity and representing and " +"warranting to {platform_name} that you have full authority to accept and " +"agree to these Terms for such entity, in which case the terms \"you,\" " +"\"your\" or related terms herein shall refer to such entity on whose behalf " +"you are accessing or using the APIs. If you do not have such authority or if" +" you do not understand or do not wish to be bound by the Terms, you should " +"not use the APIs." +msgstr "" +"欢迎来到{platform_name}。感谢您使用{platform_name}的课程Discovery " +"API、企业API和/或任何我们不时可能会提供的其他API(统称为“API”)。请在访问或使用API前阅读这些服务条款。由{platform_name}不时公开且/或更新的这些服务条款、在随附的API文档中的任何其他条款、和任何适用政策和准则都是您与{platform_name}之间所签订的协议(统称为“条款”)。这些条款根据企业产品协议、成员参与协议、或其他调控由您所进行的、或由您访问或使用API和{platform_name}而代表的主体所进行的{platform_name}产品购买行为的直接协议(如有,则称为“协议”)进行颁发。如果您有适用您对API使用的此类协议,则该协议将控制其与这些条件之间的任何冲突。访问或使用API则表示您接受并同意受此些条款的法律约束,不管您是否为注册用户。如果您是代表一家公司、组织、或其他法人实体访问或使用API,那么您即代表该法人实体同意这些条款,并向{platform_name}代表且担保您全权代表该法人实体接受并同意此些条款,其中此处的“您”、“您的”、或相关术语指的是您访问或使用API所代表的法人实体。如果您不具有代表权,或如果您不理解此些条款,或您不希望接受此些条款的约束,则建议您勿使用API。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "API Access" +msgstr "API 访问" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"To access the APIs, you will need to create an {platform_name} user account " +"for your application (not for personal use). This account will provide you " +"with access to our API request page at {request_url}. On that page, you must" +" complete the API request form including a description of your proposed uses" +" for the APIs. Any account and registration information that you provide to " +"{platform_name} must be accurate and up to date, and you agree to inform us " +"promptly of any changes. {platform_name_capitalized} will review your API " +"request form and, upon approval in {platform_name}'s sole discretion, will " +"provide you with instructions for obtaining your API shared secret and " +"client ID." +msgstr "" +"要访问API,您需要创建一个 {platform_name} " +"应用程序的用户账号(非个人使用)。您将通过这个账号获得访问我们的API请求页面{request_url}的权限。在该页上,您必须完成API请求表单,其中包括对API的计划用途的描述。您提供给{platform_name}的任何账号和注册信息必须准确及保证时效,并且您同意在做任何更改时及时通知我们。{platform_name_capitalized}将审查您的API请求表单,并在得到{platform_name}的全权批准后,为您提供获取API共享秘密和客户ID的说明。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Permissible Use" +msgstr "允许的用途" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You agree to use the APIs solely for the purpose of delivering content that " +"is accessed through the APIs (the \"API Content\") to your own website, " +"mobile site, app, blog, email distribution list, or social media property " +"(\"Your Application\") or for another commercial use that you described in " +"your request for access and that {platform_name} has approved on a case-by-" +"case basis. {platform_name_capitalized} may monitor your use of the APIs for" +" compliance with the Terms and may deny your access or shut down your " +"integration if you attempt to go around or exceed the requirements and " +"limitations set by {platform_name}. Your Application or other approved use " +"of the API or the API Content must not prompt your end users to provide " +"their {platform_name} username, password or other {platform_name} user " +"credentials anywhere other than on the {platform_name} website at " +"{platform_url}." +msgstr "" +"您同意使用API只交付内容的目的是通过API访问(“API内容”)到您自己的网站,移动站点、应用,博客、电子邮件分发列表,或社交媒体属性(“您的应用程序”)或另一个商业用途,您描述的访问请求,{platform_name}在个案基础上批准。{platform_name_capitalized}可能会监视您对api的使用,以遵守条款,如果您试图绕过或超过{platform_name}设置的要求和限制,则可能会拒绝您的访问或关闭您的集成。除了在{platform_name}网站{platform_url}上,您的应用程序或其他已批准使用的API或API内容不得提示您的最终用户提供其{platform_name}用户名、密码或其他{platform_name}用户凭证。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Prohibited Uses and Activities" +msgstr "禁止的用途与活动" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} shall have the sole right to determine whether " +"or not any given use of the APIs is acceptable, and {platform_name} reserves" +" the right to revoke API access for any use that {platform_name} determines " +"at any time, in its sole discretion, does not benefit or serve the best " +"interests of {platform_name}, its users and its partners." +msgstr "" +"{platform_name_capitalized}唯一有权决定是否任何API的使用都是可以被接受的,和{platform_name}有权决定撤销在{platform_name}上任何时间的API访问使用,全权决定,{platform_name}上没有益处或拥有最佳利益的服务,用户和合作伙伴。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"The following activities are not acceptable when using the APIs (this is not" +" an exhaustive list):" +msgstr "不接受以下使用 API 时的行为(这并非详尽无遗的清单):" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"collecting or storing the names, passwords, or other credentials of " +"{platform_name} users;" +msgstr "收集或储存 {platform_name} 用户的姓名、密码或其他凭证;" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"scraping or similar techniques to aggregate or otherwise create permanent " +"copies of API Content;" +msgstr "搜集或以类似技术聚集或另外创建 API Content 的永久副本;" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"violating, misappropriating or infringing any copyright, trademark rights, " +"rights of privacy or publicity, confidential information or any other right " +"of any third party;" +msgstr "侵犯、滥用或侵害任何版权、商标权利、隐私权或宣传材料、机密信息或其他第三方的任何权利;" + +#: lms/templates/api_admin/terms_of_service.html +msgid "altering or editing any content or graphics in the API Content;" +msgstr "更改或编辑 API Content 中的任何内容或图表;" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"altering or removing any trademark, copyright or other proprietary or legal " +"notices contained in, or appearing on, the APIs or any API Content;" +msgstr "变更或去除包含在或出现在 API 或任何 API Content 中的任何商标、版权或其他所有权或法律声明;" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"sublicensing, re-distributing, renting, selling or leasing access to the " +"APIs or your client secret to any third party;" +msgstr "对 API 访问权限或您的客户密码进行许可转让、再分发、出租、销售或租赁给任何第三方;" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"distributing any virus, Trojan horse, spyware, adware, malware, bot, time " +"bomb, worm, or other harmful or malicious component; or" +msgstr "发布任何病毒、特洛伊木马、间谍软件、广告软件、恶意软件、bot 病毒、定时炸弹、蠕虫或其他有害或恶意组件;或" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"using the APIs for any purpose which or might overburden, impair or disrupt " +"the {platform_name} platform, servers or networks." +msgstr "将 API 用于某种可能超负荷、危害或破坏 {platform_name} 平台、服务器或网络的用途。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Usage and Quotas" +msgstr "使用和限制" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} reserves the right, in its discretion, to impose" +" reasonable restrictions and limitations on the number and frequency of " +"calls made by you or Your Application to the APIs. You must not attempt to " +"circumvent any restrictions or limitations imposed by {platform_name}." +msgstr "" +"基于其自行之考虑,{platform_name_capitalized}保留合理限制和管束由您或您的应用向API所发出呼叫数量和频率的权利。请勿试图避开{platform_name}的限制或管束。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Compliance" +msgstr "合规性" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You agree to comply with all applicable laws, regulations, and third party " +"rights (including without limitation laws regarding the import or export of " +"data or software, privacy, copyright, and local laws). You will not use the " +"APIs to encourage or promote illegal activity or violation of third party " +"rights. You will not violate any other terms of service with " +"{platform_name}. You will only access (or attempt to access) an API by the " +"means described in the documentation of that API. You will not misrepresent " +"or mask either your identity or Your Application's identity when using the " +"APIs." +msgstr "" +"您同意遵守所有适用法律、法规、和第三方权利(包括但不限于数据的导出与导入法律、或软件法律、隐私法律、版权法律、或当地法律)。您不得使用API来鼓励或促进非法行为或侵犯第三方权利的行为。您不得侵犯{platform_name}的任何其他服务条款。您仅可以通过API文档中所说明的方式进行访问(或试图访问)该API。您不得在使用API时误传或隐瞒您的身份或您应用程序的身份。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Ownership" +msgstr "管理员权限" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You acknowledge and agree that the APIs and all API Content contain valuable" +" intellectual property of {platform_name} and its partners. The APIs and all" +" API Content are protected by United States and foreign copyright, " +"trademark, and other laws. All rights in the APIs and the API Content, if " +"not expressly granted, are reserved. By using the APIs or any API Content, " +"you do not acquire ownership of any rights in the APIs or API Content. You " +"must not claim or attempt to claim ownership in the APIs or any API Content " +"or misrepresent yourself or your company or your Application as being the " +"source of any API Content. You may not modify, create derivative works of, " +"or attempt to use, license, or in any way exploit any API Content in whole " +"or in part on your own behalf or on behalf of any third party. You may not " +"distribute or modify the APIs or any API Content (including adaptation, " +"editing, excerpting, or creating derivative works)." +msgstr "" +"您确认并同意 API 和所有 API Content 都包含 {platform_name} 及其合作伙伴的有价值的知识产权。API 和所有 API " +"Content 均受美国和外国的版权、商标及其他法律的保护。如果未明确授权,则保留对 API 和 API Content 的所有权利。使用 API " +"或任何 API Content 并不意味着您拥有 API 或 API Content 的任何权利的所有权。您不得声称或试图声称您拥有 API 或任何 " +"API Content 的所有权,或误传您个人、您的公司或您的应用程序是来源于任何 API Content。您不得以您个人名义或以任何第三方的名义,对 " +"API Content 进行整体或部分修改、创作派生作品或尝试使用、注册或以任何方式利用。您不得分发或修改 API 或任何 API " +"Content(包括改编、编辑、引用或创作派生作品)。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"All names, logos and seals (\"Trademarks\") that appear in the APIs, API " +"Content, or on or through the services made available on or through the " +"APIs, if any, are the property of their respective owners. You may not " +"remove, alter, or obscure any copyright, Trademark, or other proprietary " +"rights notices incorporated in or accompanying the API Content. If any " +"{platform_name} Participant (as hereinafter defined) or other third party " +"revokes access to API Content owned or controlled by that {platform_name} " +"Participant or third party, including without limitation any Trademarks, you" +" must ensure that all API Content pertaining to that {platform_name} " +"Participant or third party is deleted from Your Application and your " +"networks, systems and servers as soon as reasonably possible. " +"\"{platform_name_capitalized} Participants\" means MIT, Harvard, and the " +"other entities providing information, API Content or services for the APIs, " +"the course instructors and their staffs." +msgstr "" +"所有出现在API、API内容或通过API提供的服务上的名称、标识和印章(“商标”)均为其各自所有者的财产。您不得删除、更改或模糊包含或伴随API内容的任何版权、商标或其他专有权利通知。如果任何{platform_name}参与者(如以下定义)或其他第三方撤销访问拥有者的API内容或控制{platform_name}参与者或第三方,包括但不限于任何商标,您必须确保从您的应用程序和您的网络、系统和服务器被删除的所有API内容属于{platform_name}参与者或第三方是合理可行的。“{platform_name_capitalized}参与者”是指麻省理工学院、哈佛大学以及其他为API、课程讲师及其工作人员提供信息、API内容或服务的实体。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"To the extent that you submit any content to {platform_name} in connection " +"with your use of the APIs or any API Content, you hereby grant to " +"{platform_name} a worldwide, non-exclusive, transferable, assignable, sub " +"licensable, fully paid-up, royalty-free, perpetual, irrevocable right and " +"license to host, transfer, display, perform, reproduce, modify, distribute, " +"re-distribute, relicense and otherwise use, make available and exploit such " +"content, in whole or in part, in any form and in any media formats and " +"through any media channels (now known or hereafter developed)." +msgstr "" +"针对您提交给 {platform_name} 的与您使用 API 或任何 API Content 有关的任何内容而言,可据此认为您授予 " +"{platform_name} " +"一个世界范围的、非独有、可转让、可分配、可转发许可、全部付讫、免版税、无期限、不可撤销的权力,并许可持有、转让、展示、执行、复制、修改、分配、再分配、再许可,以及以任何形式和用任何媒体格式并通过任何媒体渠道(现在已知的或今后开发的)使用、提供和利用此内容的部分或全部。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Privacy" +msgstr "隐私" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You agree to comply with all applicable privacy laws and regulations and to " +"be transparent with respect to any collection and use of end user data. You " +"will provide and adhere to a privacy policy for Your Application that " +"clearly and accurately describes to your end users what user information you" +" collect and how you may use and share such information (including for " +"advertising) with {platform_name} and other third parties." +msgstr "" +"您同意遵守所有适用的隐私法律和法规,并在收集和使用最终用户数据方面保持透明。您将为您的应用程序提供并遵守一个隐私策略,该策略清楚而准确地向您的最终用户描述您收集了哪些用户信息,以及您如何与{platform_name}和其他第三方使用和共享这些信息(包括用于广告)。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Right to Charge" +msgstr "收费权" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"Certain access to the APIs may be provided free of charge, but " +"{platform_name} reserves the right to charge fees for future use or access " +"to the APIs." +msgstr "可以免费提供对api的某些访问,但是{platform_name}保留对将来使用或访问api收取费用的权利。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} reserves the right to modify the Terms at any " +"time without advance notice. Any changes to the Terms will be effective " +"immediately upon posting on this page, with an updated effective date. By " +"accessing or using the APIs after any changes have been made, you signify " +"your agreement on a prospective basis to the modified Terms and all of the " +"changes. Be sure to return to this page periodically to ensure familiarity " +"with the most current version of the Terms." +msgstr "" +"{platform_name_capitalized}保留在不提前通知的情况下随时修改条款的权利。任何条款的变更将在本页面发布后立即生效,并更新生效日期。通过访问或使用在进行一些更改之后的api,您在预期的基础上表示您同意修改的条款和所有更改。请务必定期返回本页,以确保熟悉最新版本的术语。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} may also update or modify the APIs from time to " +"time without advance notice. These changes may affect your use of the APIs " +"or the way your integration interacts with the API. If we make a change " +"that is unacceptable to you, you should stop using the APIs. Continued use " +"of the APIs means you accept the change." +msgstr "" +"{platform_name_capitalized}也可以随时更新或修改api,无需事先通知。这些更改可能会影响您对API的使用或您的集成与API交互的方式。如果我们做出了您无法接受的更改,您应该停止使用api。继续使用api意味着您接受更改。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Confidentiality" +msgstr "机密性" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"Your credentials (such as client secret and IDs) are intended to be used " +"solely by you. You will keep your credentials confidential and prevent and " +"discourage others from using your credentials. Your credentials may not be " +"embedded in open source projects." +msgstr "您的凭证(如客户机密和IDs)仅供您使用。您将保持您的证书保密,并防止和劝阻他人使用您的证书。您的凭证可能不会嵌入到开源项目中。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"In the event that {platform_name} provides you with access to information " +"specific to {platform_name} and/or the APIs that is either marked as " +"\"Confidential\" or which a reasonable person would assume to be " +"confidential or proprietary given the terms of its disclosure " +"(\"Confidential Information\"), you agree to use this information only to " +"use and build with the APIs. You may not disclose the Confidential " +"Information to anyone without {platform_name}'s prior written consent, and " +"you agree to protect the Confidential Information from unauthorized use and " +"disclosure in the same way that you would protect your own confidential " +"information. Confidential Information does not include information that you " +"independently developed, that was rightfully given to you by a third party " +"without any confidentiality obligation, or that becomes public through no " +"fault of your own. You may disclose Confidential Information when compelled " +"to do so by law if you provide {platform_name} with reasonable prior notice," +" unless a court orders that {platform_name} not receive notice." +msgstr "" +"如果{platform_name}为您提供信息获取特定于{platform_name}和/或api,标记为“机密”或一个会认为是机密或专有的条款披露(“机密信息”)合理的人,您同意使用这个信息仅仅使用和构建api。未经{platform_name}事先书面同意,您不得向任何人披露机密信息,并且您同意以与您保护自己的机密信息相同的方式保护机密信息不被未经授权的使用和披露。保密信息不包括您自行开发的、未经任何保密义务而由第三方合法提供给您的、或因您自身的过错而公开的信息。除非法院命令{platform_name}不接收通知,否则如果您向{platform_name}提供合理的事先通知,您可以依法强制披露机密信息。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Disclaimer of Warranty / Limitation of Liabilities" +msgstr "担保免责声明 / 责任限制" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"THE APIS AND ANY INFORMATION, API CONTENT OR SERVICES MADE AVAILABLE ON OR " +"THROUGH THE APIS ARE PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT " +"WARRANTY OF ANY KIND (EXPRESS, IMPLIED OR OTHERWISE), INCLUDING, WITHOUT " +"LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A " +"PARTICULAR PURPOSE AND NON-INFRINGEMENT, EXCEPT INSOFAR AS ANY SUCH IMPLIED " +"WARRANTIES MAY NOT BE DISCLAIMED UNDER APPLICABLE LAW." +msgstr "" +"在(或通过) API 提供的 API 及任何信息、API Content " +"或服务以\"现状\"和\"可用状态\"提供,无任何形式(明示、暗示或其他形式)的担保,包括但不限于所有适销性默示担保、特定用途适用性及非侵权性,除非根据适用法律规定不得拒绝承认任何此类默示担保。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name} AND THE {platform_name} PARTICIPANTS DO NOT WARRANT THAT THE" +" APIS WILL OPERATE IN AN UNINTERRUPTED OR ERROR-FREE MANNER, THAT THE APIS " +"ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS, OR THAT THE APIS OR API " +"CONTENT PROVIDED WILL MEET YOUR NEEDS OR EXPECTATIONS. {platform_name} AND " +"THE {platform_name} PARTICIPANTS ALSO MAKE NO WARRANTY ABOUT THE ACCURACY, " +"COMPLETENESS, TIMELINESS, OR QUALITY OF THE APIS OR ANY API CONTENT, OR THAT" +" ANY PARTICULAR API CONTENT WILL CONTINUE TO BE MADE AVAILABLE." +msgstr "" +"{platform_name}和{platform_name}参与者不保证API将以不间断或无错误的方式运行,API没有病毒或其他有害组件,或者提供的API或API内容将满足您的需求或期望。{platform_name}和{platform_name}参与者也不保证API或任何API内容的准确性、完整性、及时性或质量,或任何特定API内容将继续提供。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"USE OF THE APIS, AND THE API CONTENT AND ANY SERVICES OBTAINED FROM OR " +"THROUGH THE APIS, IS AT YOUR OWN RISK. YOUR ACCESS TO OR DOWNLOAD OF " +"INFORMATION, MATERIALS OR DATA THROUGH THE APIS IS AT YOUR OWN DISCRETION " +"AND RISK, AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY" +" (INCLUDING YOUR COMPUTER SYSTEM) OR LOSS OF DATA THAT RESULTS FROM THE " +"DOWNLOAD OR USE OF SUCH INFORMATION, MATERIALS OR DATA, UNLESS OTHERWISE " +"EXPRESSLY PROVIDED FOR IN THE {platform_name} PRIVACY POLICY." +msgstr "" +"使用API、API内容和从API获得或通过API获得的任何服务都由您自己承担风险。访问或下载信息、材料或数据通过api在自己的判断力和风险,并且您将单独负责任何损害您的财数据产(包括您的电脑系统)或损失的数据结果下载或使用这些信息,资料或数据,除非另有明确规定{platform_name}隐私政策。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, YOU AGREE THAT NEITHER " +"{platform_name} NOR ANY OF THE {platform_name} PARTICIPANTS WILL BE LIABLE " +"TO YOU FOR ANY LOSS OR DAMAGES, EITHER ACTUAL OR CONSEQUENTIAL, ARISING OUT " +"OF OR RELATING TO THE TERMS, OR YOUR (OR ANY THIRD PARTY'S) USE OF OR " +"INABILITY TO USE THE APIS OR ANY API CONTENT, OR YOUR RELIANCE UPON " +"INFORMATION OBTAINED FROM OR THROUGH THE APIS, WHETHER YOUR CLAIM IS BASED " +"IN CONTRACT, TORT, STATUTORY OR OTHER LAW." +msgstr "" +"适用法律允许的最大程度,您同意{platform_name}和{platform_name}的参与者将会承担您的任何损失或损害赔偿,实际或间接引起的或有关条款,或您(或任何第三方的)使用或无法使用API或任何API的内容,或者您的依赖来自或通过API的信息,您的要求是否在合同,侵权,法定或其他法律。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"IN PARTICULAR, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, NEITHER " +"{platform_name} NOR ANY OF THE {platform_name} PARTICIPANTS WILL HAVE ANY " +"LIABILITY FOR ANY CONSEQUENTIAL, INDIRECT, PUNITIVE, SPECIAL, EXEMPLARY OR " +"INCIDENTAL DAMAGES, WHETHER FORESEEABLE OR UNFORESEEABLE AND WHETHER OR NOT " +"{platform_name} OR ANY OF THE {platform_name} PARTICIPANTS HAS BEEN " +"NEGLIGENT OR OTHERWISE AT FAULT (INCLUDING, BUT NOT LIMITED TO, CLAIMS FOR " +"DEFAMATION, ERRORS, LOSS OF PROFITS, LOSS OF DATA OR INTERRUPTION IN " +"AVAILABILITY OF DATA)." +msgstr "" +"特别地,在适用法律允许的最大范围内,无论是 {platform_name} 或任何 {platform_name} " +"参与者均不对任何继起的、间接的、惩罚性的、专门的、代表性的或附带的损害赔偿承担责任,无论这些损害是可预见或不可预见的,也无论 " +"{platform_name} 或任何 {platform_name} " +"参与者是否有过失或其他形式的过错(包括但不限于就诽谤、错误、利润损失、数据丢失或数据可用性中断提出索赔)。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"CERTAIN STATE LAWS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE " +"EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME" +" OR ALL OF THE ABOVE DISCLAIMERS, EXCLUSIONS, OR LIMITATIONS MAY NOT APPLY " +"TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS." +msgstr "" +"某些州级法律不允许限制默示担保或不允许排除或限制某些损害赔偿。如果这些法律对您适用,部分或全部上诉免责声明、除外条款或限制可能对您不适用,因此您可能拥有额外权利。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"The APIs and API Content may include hyperlinks to sites maintained or " +"controlled by others and not affiliated with or under the control of " +"{platform_name}. {platform_name_capitalized} and the {platform_name} " +"Participants are not responsible for and do not routinely screen, approve, " +"review or endorse the contents of or use of any of the products or services " +"that may be offered at these third-party sites. If you decide to access " +"linked third-party websites, you do so at your own risk." +msgstr "" +"API和API内容可能包括到其他站点的超链接,这些站点由其他站点维护或控制,不隶属于{platform_name}或受其控制。{platform_name_capitalized}和{platform_name}参与者不负责,也不例行审查、批准、审查或批准在这些第三方网站上可能提供的任何产品或服务的内容或使用。如果您决定访问链接的第三方网站,您将承担风险。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"To the maximum extent permitted by applicable law, you agree to defend, hold" +" harmless and indemnify {platform_name} and the {platform_name} " +"Participants, and their respective subsidiaries, affiliates, officers, " +"faculty, students, fellows, governing board members, agents and employees " +"from and against any third-party claims, actions or demands arising out of, " +"resulting from or in any way related to your use of the APIs and any API " +"Content, including any liability or expense arising from any and all claims," +" losses, damages (actual and consequential), suits, judgments, litigation " +"costs and attorneys' fees, of every kind and nature. In such a case, " +"{platform_name} or one of the {platform_name} Participants will provide you " +"with written notice of such claim, action or demand." +msgstr "" +"在适用法律所允许的最大程度上,您同意保护,免责和赔偿{platform_name}和{platform_name}参与者,和各自的子公司,子公司、官员、教师、学生、同伴、董事会成员、代理和员工从和反对任何第三方索赔、行动或要求引起的,产生的或以任何方式与您使用API和任何API的内容,包括任何类型和性质的任何和所有索赔、损失、损害赔偿(实际的和相应的)、诉讼、判决、诉讼费用和律师费所产生的任何责任或费用。在这种情况下,{platform_name}或{platform_name}参与者之一将向您提供此类索赔、行动或要求的书面通知。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "General Legal Terms" +msgstr "一般性法律条款" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"The Terms constitute the entire agreement between you and {platform_name} " +"with respect to your use of the APIs and API Content, superseding any prior " +"agreements between you and {platform_name} regarding your use of the APIs " +"and API Content. The failure of {platform_name} to exercise or enforce any " +"right or provision of the Terms shall not constitute a waiver of such right " +"or provision. If any provision of the Terms is found by a court of competent" +" jurisdiction to be invalid, the parties nevertheless agree that the court " +"should endeavor to give effect to the parties' intentions as reflected in " +"the provision and the other provisions of the Terms shall remain in full " +"force and effect. The Terms do not create any third party beneficiary rights" +" or any agency, partnership, or joint venture. For any notice provided to " +"you by {platform_name} under these Terms, {platform_name} may notify you via" +" the email address associated with your {platform_name} account." +msgstr "" +"此条款构成您和 {platform_name} 之间与您使用 API 和 API Content 有关的完整协议,取代您和 " +"{platform_name} 之间与您使用 API 和 API Content 有关的所有事先协议。{platform_name} " +"未能行使或执行此条款的任何权利或规定并不得构成对此类权利或规定的弃权。如果具有合法管辖权的法院发现此条款的任何规定无效,但是各方一致同意法院应按照该条规定尽量让相关方的意愿生效,且此条款的其他规定仍然全面有效和生效。此条款不影响任何第三方受益权或任何代理、合作伙伴或合资企业。根据这些条款由" +" {platform_name} 为您提供的任何通知,{platform_name} 均可通过与您的 {platform_name} " +"账号关联的电子邮箱地址通知您。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You agree that the Terms, the APIs, and any claim or dispute arising out of " +"or relating to the Terms or the APIs will be governed by the laws of the " +"Commonwealth of Massachusetts, excluding its conflicts of law provisions. " +"You agree that all such claims and disputes will be heard and resolved " +"exclusively in the federal or state courts located in and serving Cambridge," +" Massachusetts, U.S.A. You consent to the personal jurisdiction of those " +"courts over you for this purpose, and you waive and agree not to assert any " +"objection to such proceedings in those courts (including any defense or " +"objection of lack of proper jurisdiction or venue or inconvenience of " +"forum). Notwithstanding the foregoing, you agree that {platform_name} shall " +"still be allowed to apply for injunctive remedies (or an equivalent type of " +"urgent legal relief) in any jurisdiction." +msgstr "" +"您同意,条款、api以及因条款或api而产生的或与之相关的任何索赔或争议将受马萨诸塞州法律管辖,不包括其法律条款冲突。您同意所有此类索赔和纠纷将会听到和解决只在联邦和州法院位于剑桥,马萨诸塞州,美国。为此目的,您同意上述法院对您的个人管辖权,并且您放弃并同意不对这些法院的此类诉讼提出任何异议(包括对缺乏适当管辖权、地点或论坛不便的任何辩护或异议)。尽管有上述规定,您同意{platform_name}仍可在任何司法管辖区申请禁令救济(或同等类型的紧急法律救济)。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Termination" +msgstr "终止" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You may stop using the APIs at any time. You agree that {platform_name}, in " +"its sole discretion and at any time, may terminate your use of the APIs or " +"any API Content for any reason or no reason, without prior notice or " +"liability." +msgstr "" +"您可以在任何时候停止使用api。您同意{platform_name}在其全权酌情决定并在任何时候,可以终止您对API或任何API内容的使用,而无需事先通知或承担任何责任。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} and the {platform_name} Participants reserve the" +" right at any time in their sole discretion to cancel, delay, reschedule or " +"alter the format of any API or API Content offered through {platform_name}, " +"or to cease providing any part or all of the APIs or API Content or related " +"services, and you agree that neither {platform_name} nor any of the " +"{platform_name} Participants will have any liability to you for such an " +"action." +msgstr "" +"{platform_name_capitalized}和{platform_name}参与者保留权利在任何时候决定取消,延迟,重新安排或通过{platform_name}改变任何API或API的格式内容提供,或停止提供API或API的任何部分或全部内容或相关服务,您同意{platform_name}和{platform_name}的参与者将有责任对您采取这样的行动。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"Upon any termination of the Terms or discontinuation of your access to an " +"API for any reason, your right to use any API and API Content will " +"immediately cease. You will immediately stop using the APIs and delete any " +"cached or stored API Content from Your Application and your networks, " +"systems and servers as soon as reasonably possible. All provisions of the " +"Terms that by their nature should survive termination shall survive " +"termination, including, without limitation, ownership provisions, warranty " +"disclaimers, and limitations of liability. Termination of your access to and" +" use of the APIs and API Content shall not relieve you of any obligations " +"arising or accruing prior to such termination or limit any liability that " +"you otherwise may have to {platform_name}, including without limitation any " +"indemnification obligations contained herein." +msgstr "" +"在任何条款终止或以任何理由停止访问API时,您使用任何API和API内容的权利将立即终止。您将立即停止使用API,并尽快从您的应用程序和您的网络、系统和服务器中删除任何缓存或存储的API内容。条款的所有条款在终止后仍然有效,包括但不限于所有权条款、保证免责条款和责任限制。您对API和API内容的访问和使用的终止不应免除您在终止之前产生或产生的任何义务,也不应限制您对{platform_name}可能承担的任何责任,包括但不限于本协议中包含的任何赔偿义务。" + +#: lms/templates/api_admin/catalogs/edit.html +msgid "Edit {catalog_name}" +msgstr "编辑 {catalog_name}" + +#: lms/templates/api_admin/catalogs/edit.html +#: lms/templates/api_admin/catalogs/list.html +msgid "Download CSV" +msgstr "下载CSV文档" + +#: lms/templates/api_admin/catalogs/edit.html +msgid "Delete this catalog" +msgstr "删除此列表。" + +#: lms/templates/api_admin/catalogs/edit.html +msgid "Update Catalog" +msgstr "更新列表。" + +#: lms/templates/api_admin/catalogs/list.html +msgid "Catalogs for {username}" +msgstr "{username}的列表" + +#: lms/templates/api_admin/catalogs/list.html +msgid "Create new catalog:" +msgstr "创建新的劣币哦啊:" + +#: lms/templates/api_admin/catalogs/list.html +msgid "Create Catalog" +msgstr "创建列表" + +#: lms/templates/api_admin/catalogs/search.html +msgid "Catalog search" +msgstr "列表搜索" + +#: lms/templates/api_admin/catalogs/search.html +msgid "Catalog Search" +msgstr "列表搜索" + +#: lms/templates/api_admin/catalogs/search.html +msgid "Enter a username to view catalogs belonging to that user." +msgstr "输入用户名查看该用户的列表。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Open Calculator" +msgstr "开启计算器" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Enter equation" +msgstr "输入等式" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Calculator Input Field" +msgstr "计算器输入项" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Hints" +msgstr "提示" + +#: lms/templates/calculator/toggle_calculator.html +msgid "" +"Use the arrow keys to navigate the tips or use the tab key to return to the " +"calculator" +msgstr "使用方向键在提示中导航或者使用tab键返回到计算器" + +#: lms/templates/calculator/toggle_calculator.html +msgid "" +"For detailed information, see {math_link_start}Entering Mathematical and " +"Scientific Expressions{math_link_end} in the {guide_link_start}edX Guide for" +" Students{guide_link_end}." +msgstr "" +"更多详细信息, 请访问{guide_link_start}学生使用指南{guide_link_end} " +"里的{math_link_start}输入数学和科学表达式{math_link_end} 。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Tips" +msgstr "提示" + +#: lms/templates/calculator/toggle_calculator.html +msgid "" +"Use parentheses () to make expressions clear. You can use parentheses inside" +" other parentheses." +msgstr "使用括号()来明确表达式。您可以在括号内使用括号。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Do not use spaces in expressions." +msgstr "不要在表达式中使用空格。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "For constants, indicate multiplication explicitly (example: 5*c)." +msgstr "对于常数,表明乘法明确(例如:5*c)。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "For affixes, type the number and affix without a space (example: 5c)." +msgstr "对于词缀,输入数字和词组,不带空格(例:5c)。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "" +"For functions, type the name of the function, then the expression in " +"parentheses." +msgstr "对于函数,输入函数的名字,然后在括号中输入表达式。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "To Use" +msgstr "来使用" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Type" +msgstr "类型" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Examples" +msgstr "例子" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Numbers" +msgstr "数字" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Integers" +msgstr "整数" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Fractions" +msgstr "分数" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Decimals" +msgstr "小数" + +#. Translators: This refers to mathematical operators such as `plus`, `minus`, +#. `division` and others. +#: lms/templates/calculator/toggle_calculator.html +msgid "Operators" +msgstr "操作" + +#: lms/templates/calculator/toggle_calculator.html +msgid "+ - * / (add, subtract, multiply, divide)" +msgstr "+ - * / (加,减,乘,除)" + +#. Translators: Please do not translate mathematical symbols. +#: lms/templates/calculator/toggle_calculator.html +msgid "^ (raise to a power)" +msgstr "^ (自乘)" + +#. Translators: Please do not translate mathematical symbols. +#: lms/templates/calculator/toggle_calculator.html +msgid "|| (parallel resistors)" +msgstr "|| (或运算)" + +#. Translators: This refers to symbols that are mathematical constants, such +#. as +#. "i" (square root of -1) +#: lms/templates/calculator/toggle_calculator.html +msgid "Constants" +msgstr "常量" + +#. Translators: This refers to symbols that appear at the end of a number, +#. such +#. as the percent sign (%) and metric affixes +#: lms/templates/calculator/toggle_calculator.html +msgid "Affixes" +msgstr "词缀" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Percent sign (%) and metric affixes (d, c, m, u, n, p, k, M, G, T)" +msgstr "百分比符号(%)和公制词缀(d,c,m,u,n,p,k,M,G,T)" + +#. Translators: This refers to basic mathematical functions such as "square +#. root" +#: lms/templates/calculator/toggle_calculator.html +msgid "Basic functions" +msgstr "基本功能" + +#. Translators: This refers to mathematical Sine, Cosine and Tan +#: lms/templates/calculator/toggle_calculator.html +msgid "Trigonometric functions" +msgstr "三角函数" + +#. Translators: Please see http://en.wikipedia.org/wiki/Scientific_notation +#: lms/templates/calculator/toggle_calculator.html +msgid "Scientific notation" +msgstr "科学记数法" + +#. Translators: 10^ is a mathematical symbol. Please do not translate. +#: lms/templates/calculator/toggle_calculator.html +msgid "10^ and the exponent" +msgstr "10^和指数" + +#. Translators: this is part of scientific notation. Please see +#. http://en.wikipedia.org/wiki/Scientific_notation#E_notation +#: lms/templates/calculator/toggle_calculator.html +msgid "e notation" +msgstr "e符号" + +#. Translators: 1e is a mathematical symbol. Please do not translate. +#: lms/templates/calculator/toggle_calculator.html +msgid "1e and the exponent" +msgstr "1e和指数" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Calculate" +msgstr "计算" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Result" +msgstr "结果" + +#: lms/templates/ccx/coach_dashboard.html +msgid "CCX Coach Dashboard" +msgstr "CCX指导仪表盘" + +#: lms/templates/ccx/coach_dashboard.html +msgid "Name your CCX" +msgstr "为您的CCX命名" + +#: lms/templates/ccx/coach_dashboard.html +msgid "Create a new Custom Course for edX" +msgstr "创建一个新的 edX 自定义课程" + +#: lms/templates/ccx/coach_dashboard.html +#: lms/templates/ccx/grading_policy.html +msgid "Grading Policy" +msgstr "评分标准" + +#: lms/templates/ccx/coach_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Enrollment" +msgstr "批量选课" + +#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/student_admin.html +msgid "Student Grades" +msgstr "学生评分" + +#: lms/templates/ccx/coach_dashboard.html +msgid "Please enter a valid CCX name." +msgstr "请输入一个有效的 CCX 名称。" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Email Addresses/Usernames" +msgstr "电子邮箱地址/用户名" + +#: lms/templates/ccx/enrollment.html +msgid "" +"Enter one or more email addresses or usernames separated by new lines or " +"commas." +msgstr "请输入一个或多个邮箱地址或用户名,用逗号隔开或新起一行。" + +#: lms/templates/ccx/enrollment.html +msgid "" +"Make sure you enter the information carefully. You will not receive " +"notification for invalid usernames or email addresses." +msgstr "请仔细输入您的信息,如果用户名或邮箱地址无效,那么您无法收到通知。" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Auto Enroll" +msgstr "自动选修" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is {em_start}checked{em_end}, users who have not yet " +"registered for {platform_name} will be automatically enrolled." +msgstr "如果此选项{em_start}已选{em_end},尚未注册 {platform_name} 的用户将自动入选此课。" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is left {em_start}unchecked{em_end}, users who have not yet " +"registered for {platform_name} will not be enrolled, but will be allowed to " +"enroll once they make an account." +msgstr "" +"如果此选项{em_start}未选{em_end},尚未注册 {platform_name} 的用户将不能入选,但只要他们注册了账号即可入选。" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "如果选择了'放弃选修',本项选择将不会生效。" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Notify users by email" +msgstr "通过邮件通知用户" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is {em_start}checked{em_end}, users will receive an email " +"notification." +msgstr "如果此选项{em_start}已选{em_end},用户将收到一封电子邮件通知。" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgctxt "someone" +msgid "Enroll" +msgstr "选修" + +#: lms/templates/ccx/enrollment.html +msgid "Student List Management" +msgstr "学生列表管理" + +#: lms/templates/ccx/enrollment.html +msgid "CCX student list management response message" +msgstr "CCX学生列表管理响应消息" + +#: lms/templates/ccx/enrollment.html +msgid "Revoke access" +msgstr "取消授权" + +#: lms/templates/ccx/grading_policy.html +msgid "WARNING" +msgstr "警告" + +#: lms/templates/ccx/grading_policy.html +msgid "" +"For advanced users only. Errors in the grading policy can lead to the course" +" failing to display. This form does not check the validity of the policy " +"before saving." +msgstr "仅供高级用户。分级政策中的错误会导致未能显示。这种形式不储蓄之前检查政策的有效性。" + +#: lms/templates/ccx/grading_policy.html +msgid "Most coaches should not need to make changes to the grading policy." +msgstr "大多数教师不应该更改评分标准。" + +#: lms/templates/ccx/grading_policy.html +msgid "Save Grading Policy" +msgstr "保存评分标准" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of YYYY-MM-DD +#: lms/templates/ccx/schedule.html +msgid "Date format four digit year dash two digit month dash two digit day" +msgstr "日期格式为四位年数两位月数和两位日数" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of HH:MM +#: lms/templates/ccx/schedule.html +msgid "Time format two digit hours colon two digit minutes" +msgstr "时间格式是两位时数和两位分钟数" + +#: lms/templates/ccx/schedule.html +msgid "Time" +msgstr "时间" + +#: lms/templates/ccx/schedule.html +msgid "Set date" +msgstr "设置日期" + +#: lms/templates/ccx/schedule.html +msgid "You have unsaved changes." +msgstr "您还有未保存的更改。" + +#: lms/templates/ccx/schedule.html +msgid "There was an error saving changes." +msgstr "保存更改时发生了错误。" + +#: lms/templates/ccx/schedule.html +msgid "Schedule a Unit" +msgstr "排定一个单元" + +#: lms/templates/ccx/schedule.html +msgid "Start Date" +msgstr "开始日期" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of YYYY-MM-DD +#: lms/templates/ccx/schedule.html +msgid "format four digit year dash two digit month dash two digit day" +msgstr "格式为四位年数两位月数和两位日数" + +#: lms/templates/ccx/schedule.html +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of HH:MM +#: lms/templates/ccx/schedule.html +msgid "Start time format two digit hours colon two digit minutes" +msgstr "开始时间的格式是两位时数和两位分钟数" + +#: lms/templates/ccx/schedule.html +msgid "time" +msgstr "时间" + +#: lms/templates/ccx/schedule.html +msgid "(Optional)" +msgstr "(可选的)" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of HH:MM +#: lms/templates/ccx/schedule.html +msgid "Due Time format two digit hours colon two digit minutes" +msgstr "截止时间格式是两位时数和两位分钟数" + +#: lms/templates/ccx/schedule.html +msgid "Add Unit" +msgstr "添加单元" + +#: lms/templates/ccx/schedule.html +msgid "Add All Units" +msgstr "添加所有单元" + +#: lms/templates/ccx/schedule.html +msgid "All units have been added." +msgstr "所有单元已经添加。" + +#: lms/templates/ccx/student_admin.html +msgid "View gradebook" +msgstr "查看记分册" + +#: lms/templates/ccx/student_admin.html +msgid "Download student grades" +msgstr "下载学生评分" + +#: lms/templates/certificates/_accomplishment-banner.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Print or share your certificate:" +msgstr "打印或分享您的证书:" + +#: lms/templates/certificates/_accomplishment-banner.html +msgid "Click the link to see my certificate." +msgstr "点击链接查看我的证书。" + +#: lms/templates/certificates/_accomplishment-banner.html +msgid "Post on Facebook" +msgstr "发布到Facebook" + +#: lms/templates/certificates/_accomplishment-banner.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Share on Twitter" +msgstr "分享到Twitter" + +#: lms/templates/certificates/_accomplishment-banner.html +msgid "Tweet this Accomplishment. Pop up window." +msgstr "推特该项成就。弹出窗口。" + +#: lms/templates/certificates/_accomplishment-banner.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Add to LinkedIn Profile" +msgstr "添加到LinkedIn的个人资料" + +#: lms/templates/certificates/_accomplishment-banner.html +msgid "Add to Mozilla Backpack" +msgstr "添加到Mozilla Backpack" + +#: lms/templates/certificates/_accomplishment-banner.html +#: themes/elitemba-theme/lms/templates/certificates/_accomplishment-banner.html +msgid "Print Certificate" +msgstr "打印证书" + +#: lms/templates/certificates/_accomplishment-header.html +msgid "{platform_name} Home" +msgstr "{platform_name} 主页" + +#: lms/templates/certificates/_accomplishment-rendering.html +msgid "Noted by" +msgstr "被标记" + +#: lms/templates/certificates/_accomplishment-rendering.html +msgid "Supported by the following organizations" +msgstr "被以下的组织支持" + +#: lms/templates/certificates/_accomplishment-rendering.html +msgid "Awarded to:" +msgstr "授予:" + +#: lms/templates/certificates/_edx-accomplishment-print-help.html +msgid "" +"For tips and tricks on printing your certificate, view the {link_start}Web " +"Certificates help documentation{link_end}." +msgstr "想要打印证书的建议技巧的话, 查看 {link_start} 网络证书帮助文档 {link_end}." + +#: lms/templates/certificates/invalid.html +msgid "Cannot Find Certificate" +msgstr "不能找到证书" + +#: lms/templates/certificates/invalid.html +msgid "" +"We cannot find a certificate with this URL or ID number. If you are trying " +"to validate a certificate, make sure that the URL or ID number is correct. " +"If you are sure that the URL or ID number is correct, contact support." +msgstr "" +"我们无法找到此 URL 或 ID 号码的证书。如果您尝试验证证书,请确认 URL 或 ID 号码是否正确。如果您确认 URL 或 ID " +"号码正确,请联系支持部门。" + +#: lms/templates/certificates/server-error.html +msgid "Invalid Certificate Configuration." +msgstr "无效证书配置。" + +#: lms/templates/certificates/server-error.html +msgid "There is a problem with this certificate." +msgstr "这个证书存在问题。" + +#: lms/templates/certificates/server-error.html +msgid "" +"To resolve the problem, your partner manager should verify that the " +"following information is correct." +msgstr "要解决此问题,您的合作伙伴经理应核实以下信息是否正确。" + +#: lms/templates/certificates/server-error.html +msgid "The institution's logo." +msgstr "机构LOGO。" + +#: lms/templates/certificates/server-error.html +msgid "The institution that is linked to the course." +msgstr "与课程相关联的机构。" + +#: lms/templates/certificates/server-error.html +msgid "The course information in the Course Administration tool." +msgstr "课程管理工具中的课程信息。" + +#: lms/templates/certificates/server-error.html +msgid "" +"If all of the information is correct and the problem persists, contact " +"technical support." +msgstr "如果所有信息正确但问题仍然存在,请联系技术支持团队。" + +#: lms/templates/certificates/valid.html +msgid "About edX Certificates" +msgstr "关于edX认证证书" + +#: lms/templates/commerce/checkout_cancel.html +msgid "Checkout Cancelled" +msgstr "付款已取消" + +#: lms/templates/commerce/checkout_cancel.html +msgid "" +"Your transaction has been cancelled. If you feel an error has occurred, " +"contact {email}." +msgstr "您的交易已被取消。如果您觉得发生了错误,请联系 {email} 。" + +#: lms/templates/commerce/checkout_error.html +msgid "Checkout Error" +msgstr "付款出错" + +#: lms/templates/commerce/checkout_error.html +msgid "" +"An error has occurred with your payment. You have not been charged. " +"Please try to submit your payment again. If this problem persists, contact " +"{email}." +msgstr "您的付款出现一个错误。您尚未付款。请重试再次付款。如果此问题仍然存在,请联系 {email}。" + +#: lms/templates/commerce/checkout_receipt.html +msgid "Loading Order Data..." +msgstr "加载订单信息..." + +#: lms/templates/commerce/checkout_receipt.html +msgid "Please wait while we retrieve your order details." +msgstr "请稍候,我们正在获取您的订单详情。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Enroll In {course_name} | Choose Your Track" +msgstr "选择 {course_name} | 选择您的方向" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Sorry, there was an error when trying to enroll you" +msgstr "抱歉,在录取您时发生了错误" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Pursue Academic Credit with the Verified Track" +msgstr "在已经过身份认证的的轨道上追求学术学分" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Pursue Academic Credit with a Verified Certificate" +msgstr "选择认证证书并获取专业学分。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Become eligible for academic credit and highlight your new skills and " +"knowledge with a verified certificate. Use this valuable credential to " +"qualify for academic credit, advance your career, or strengthen your school " +"applications." +msgstr "使用验证证书,让您有资格获得学分并突显您的新技能和新知识。使用这件有价值的凭证,帮助您获得学分、促进您的职业发展或增强您的学校申请竞争力。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Benefits of the Verified Track" +msgstr "已经过身份认证的轨道的好处" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Eligible for credit:{b_end} Receive academic credit after " +"successfully completing the course" +msgstr "{b_start}获取学分资格:{b_end} 成功完成课程后获取学分" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Unlimited Course Access: {b_end}Learn at your own pace, and access " +"materials anytime to brush up on what you've learned." +msgstr "{b_start}无限制的课程访问:{b_end}按照您自己的进度学习,并随时访问材料,以复习您所学到的内容。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Graded Assignments: {b_end}Build your skills through graded " +"assignments and projects." +msgstr "{b_start}分级作业:{b_end}通过分级作业和项目建立您的技能。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Easily Sharable: {b_end}Add the certificate to your CV or resume, " +"or post it directly on LinkedIn." +msgstr "{b_start}轻松分享:{b_end} 在您的简历中添加这份证书,或者直接将它传至领英Linkedln。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Benefits of a Verified Certificate" +msgstr "认证证书的优势" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Official:{b_end} Receive an instructor-signed certificate with the " +"institution's logo" +msgstr "{b_start}官方:{b_end} 获取带有机构徽章和导师签名的证书" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Easily shareable:{b_end} Add the certificate to your CV or resume, " +"or post it directly on LinkedIn" +msgstr "{b_start}轻松分享:{b_end} 在您的简历中加入这份证书,或者直接将它传至领英Linkedln" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "选择认证证书" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "跟踪已经过身份认证的的轨迹" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Highlight your new knowledge and skills with a verified certificate. Use " +"this valuable credential to improve your job prospects and advance your " +"career, or highlight your certificate in school applications." +msgstr "用您的认证证书突出您的新知识和技能。使用这件有价值的凭证来改善您的就业前景,推进您的职业发展,或者在申请学校时突出您的证书。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Official: {b_end}Receive an instructor-signed certificate with the " +"institution's logo" +msgstr "{b_start}官方:{b_end} 获取带有机构徽章和导师签名的证书" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Easily shareable: {b_end}Add the certificate to your CV or resume, " +"or post it directly on LinkedIn" +msgstr "{b_start}轻松分享:{b_end} 在您的简历中加入这份证书,或者直接将它传至领英Linkedln" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Motivating: {b_end}Give yourself an additional incentive to " +"complete the course" +msgstr "{b_start}激励: {b_end}给自己额外的动力去完成课程" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Audit This Course" +msgstr "旁听这门课程" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have complete access to all the course " +"material, activities, tests, and forums." +msgstr "免费旁听此课程并获得访问所有课程资料、活动、测试及论坛的所有权限。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Audit This Course (No Certificate)" +msgstr "旁听此课程(无证书)" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have access to course materials and " +"discussions forums. {b_start}This track does not include graded assignments," +" or unlimited course access.{b_end}" +msgstr "免费旁听本课程,并可访问课程资料和讨论论坛。{b_start}此轨道不包括分级作业或无限制的课程访问.{b_end}。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have complete access to all the course " +"material, activities, tests, and forums. {b_start}Please note that this " +"track does not offer a certificate for learners who earn a passing " +"grade.{b_end}" +msgstr "" +"免费旁听此课程并获得访问所有课程资料、活动、测试及论坛的所有权限。{b_start}请注意,此方向不为通过课程的学生颁发证书。{b_end}" + +#: lms/templates/courseware/accordion.html +msgid "{chapter} current chapter" +msgstr "{chapter} 当前章节" + +#: lms/templates/courseware/accordion.html +msgid "{span_start}current section{span_end}" +msgstr "{span_start}当前部分{span_end}" + +#: lms/templates/courseware/accordion.html +#: lms/templates/courseware/progress.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "due {date}" +msgstr "截止日期{date}" + +#: lms/templates/courseware/accordion.html +msgid "{section_format} due {{date}}" +msgstr "{section_format} 截止{{date}} " + +#: lms/templates/courseware/accordion.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "This content is graded" +msgstr "该内容计入总分。" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "An error occurred. Please try again later." +msgstr "出现错误,请稍后再试。" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "" +"The currently logged-in user account does not have permission to enroll in " +"this course. You may need to {start_logout_tag}log out{end_tag} then try the" +" enroll button again. Please visit the {start_help_tag}help page{end_tag} " +"for a possible solution." +msgstr "" +"当前登录用户账号无权限入选此课程。您可能需要在{start_logout_tag}退出登录{end_tag}后重试选课按钮。请访问{start_help_tag}帮助页面{end_tag}了解可能的解决方案。" + +#: lms/templates/courseware/course_about.html +msgid "You are enrolled in this course" +msgstr "您选修了本课程" + +#: lms/templates/courseware/course_about.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/shoppingcart/registration_code_receipt.html +#: openedx/features/journals/templates/journals/bundle_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Course" +msgstr "查看课程" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "This course is in your cart." +msgstr "这个课程已经进入您的 购物车。" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Course is full" +msgstr "该课程已满" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Enrollment in this course is by invitation only" +msgstr "该课程只能通过邀请选修" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Enrollment is Closed" +msgstr "选课已关闭" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Add {course_name} to Cart ({price} USD)" +msgstr "添加{course_name}到购物({price} USD)" + +#: lms/templates/courseware/course_about.html +msgid "Enroll in {course_name}" +msgstr "选修{course_name}" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "在职员界面查看课程简介页面" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Classes Start" +msgstr "课程开始" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Classes End" +msgstr "课程结束" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Estimated Effort" +msgstr "预计课时" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Prerequisites" +msgstr "预备知识" + +#: lms/templates/courseware/course_about.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You must successfully complete {link_start}{prc_display}{link_end} before " +"you begin this course." +msgstr "您必须先完成{link_start}{prc_display}{link_end}才能开始此课程。" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Additional Resources" +msgstr "额外资源" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "self" +msgid "enroll" +msgstr "选课" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html +msgid "Share with friends and family!" +msgstr "与亲朋好友分享!" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "I just enrolled in {number} {title} through {account}: {url}" +msgstr "我刚通过 {account}:{url} 选修了 {number} {title}" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "Take a course with {platform} online" +msgstr "在 {platform} 上在线学习课程" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "I just enrolled in {number} {title} through {platform} {url}" +msgstr "我刚通过 {platform} {url} 选修了 {number} {title}" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html +msgid "Tweet that you've enrolled in this course" +msgstr "在 Tweet 发布您已登记此课程的消息" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "Post a Facebook message to say you've enrolled in this course" +msgstr "在 Facebook 发布您已选修此课程的消息" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html +msgid "Email someone to say you've enrolled in this course" +msgstr "通过邮件告诉其他人您已选修此课程" + +#: lms/templates/courseware/course_navigation.html +msgid "current location" +msgstr "当前位置" + +#. Translators: 'needs attention' is an alternative string for the +#. notification image that indicates the tab "needs attention". +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/tabs.html +msgid "needs attention" +msgstr "需要注意" + +#: lms/templates/courseware/course_navigation.html +msgid "Course Material" +msgstr "课程资料" + +#: lms/templates/courseware/course_updates.html +msgid "Hide" +msgstr "隐藏" + +#: lms/templates/courseware/course_updates.html +msgid "Show" +msgstr "显示" + +#: lms/templates/courseware/course_updates.html +msgid "Show Earlier Course Updates" +msgstr "显示更早的课程更新" + +#: lms/templates/courseware/courses.html +#: themes/elitemba-theme/lms/templates/index.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +msgid "List of Courses" +msgstr "课程列表" + +#: lms/templates/courseware/courses.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +msgid "Refine Your Search" +msgstr "使您的搜索更精确" + +#: lms/templates/courseware/courseware-chromeless.html +#: lms/templates/courseware/courseware.html +#: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html +#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html +msgid "{course_number} Courseware" +msgstr "{course_number} 课程页面" + +#: lms/templates/courseware/courseware-chromeless.html +#: lms/templates/courseware/courseware.html +msgid "Course Utilities" +msgstr "课程工具" + +#: lms/templates/courseware/courseware-error.html +msgid "Courseware" +msgstr "课程页面" + +#: lms/templates/courseware/courseware.html +msgid "Course Search" +msgstr "搜索课程" + +#: lms/templates/courseware/courseware.html +msgid "No content has been added to this course" +msgstr "本课程未添加新内容" + +#: lms/templates/courseware/courseware.html +#, python-format +msgid "" +"To access course materials, you must score {required_score}% or higher on " +"this exam. Your current score is {current_score}%." +msgstr "如需访问课程材料,您此门考试的分数必须为{required_score}%或以上。您当前分数为{current_score}%。" + +#: lms/templates/courseware/courseware.html +msgid "Your score is {current_score}%. You have passed the entrance exam." +msgstr "您的分数为 {current_score}%,通过了入门测试" + +#: lms/templates/courseware/gradebook.html +msgid "Gradebook" +msgstr "成绩簿" + +#: lms/templates/courseware/gradebook.html +msgid "Search students" +msgstr "搜索学生" + +#: lms/templates/courseware/gradebook.html +msgid "previous page" +msgstr "上一页" + +#: lms/templates/courseware/gradebook.html +msgid "of" +msgstr "的" + +#: lms/templates/courseware/gradebook.html +msgid "next page" +msgstr "下一页" + +#: lms/templates/courseware/info.html +msgid "{course_number} Course Info" +msgstr "{course_number} 课程信息" + +#: lms/templates/courseware/info.html +msgid "You are not enrolled yet" +msgstr "您尚未选修" + +#: lms/templates/courseware/info.html +msgid "" +"You are not currently enrolled in this course. {link_start}Enroll " +"now!{link_end}" +msgstr "您现在未选这门课程。 {link_start}立刻选课!{link_end}" + +#: lms/templates/courseware/info.html +msgid "Welcome to {org}'s {course_title}!" +msgstr "欢迎来到{org}的{course_title}!" + +#: lms/templates/courseware/info.html +msgid "Welcome to {course_title}!" +msgstr "欢迎来到{course_title}!" + +#: lms/templates/courseware/info.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Resume Course" +msgstr "继续课程" + +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "在Studio中查看更新" + +#: lms/templates/courseware/info.html +msgid "Course Updates and News" +msgstr "课程更新与新消息" + +#: lms/templates/courseware/info.html +msgid "Handout Navigation" +msgstr "讲义导航" + +#: lms/templates/courseware/info.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Course Tools" +msgstr "课程工具" + +#: lms/templates/courseware/news.html +msgid "News - MITx 6.002x" +msgstr "新闻 - MITx 6.002x" + +#: lms/templates/courseware/news.html +msgid "Updates to Discussion Posts You Follow" +msgstr "您关注的讨论帖的更新情况" + +#: lms/templates/courseware/program_marketing.html +msgid "Purchase the Program (" +msgstr "购买系列 (" + +#: lms/templates/courseware/program_marketing.html +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Original Price" +msgstr "原价" + +#: lms/templates/courseware/program_marketing.html +msgid "{currency}{oldPrice}" +msgstr "{currency}{oldPrice}" + +#: lms/templates/courseware/program_marketing.html +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Discounted Price" +msgstr "折扣价" + +#: lms/templates/courseware/program_marketing.html +msgid "{currency}{newPrice})" +msgstr "{currency}{newPrice})" + +#: lms/templates/courseware/program_marketing.html +msgid "Start Learning" +msgstr "开始学习" + +#: lms/templates/courseware/program_marketing.html +msgid "Play" +msgstr "播放" + +#: lms/templates/courseware/program_marketing.html +msgid "YouTube Video" +msgstr "YouTube 视频" + +#: lms/templates/courseware/program_marketing.html +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "View Courses" +msgstr "查看课程" + +#: lms/templates/courseware/program_marketing.html +msgid "Meet the Instructors" +msgstr "会面导师" + +#: lms/templates/courseware/program_marketing.html +msgid "Frequently Asked Questions" +msgstr "常见问题" + +#: lms/templates/courseware/program_marketing.html +msgid "Job Outlook" +msgstr "工作展望" + +#: lms/templates/courseware/program_marketing.html +msgid "Real Career Impact" +msgstr "职场冲击" + +#: lms/templates/courseware/program_marketing.html +msgid "What You'll Learn" +msgstr "您将学到" + +#: lms/templates/courseware/program_marketing.html +msgctxt "Program" +msgid "Length" +msgstr "预计周数" + +#: lms/templates/courseware/program_marketing.html +msgid "{weeks_to_complete} weeks per course" +msgstr "{weeks_to_complete} 周/课" + +#: lms/templates/courseware/program_marketing.html +msgctxt "Program" +msgid "Effort" +msgstr "课时" + +#: lms/templates/courseware/program_marketing.html +msgid "" +"{min_hours_effort_per_week}-{max_hours_effort_per_week} hours per week, per " +"course" +msgstr "{min_hours_effort_per_week}-{max_hours_effort_per_week} 小时 / 周 / 课" + +#: lms/templates/courseware/program_marketing.html +msgctxt "Program" +msgid "Courses" +msgstr "课程" + +#: lms/templates/courseware/program_marketing.html +msgid "{number_of_courses} courses in program" +msgstr "{number_of_courses} 专项课" + +#: lms/templates/courseware/program_marketing.html +msgctxt "Program" +msgid "Price" +msgstr "价格" + +#: lms/templates/courseware/program_marketing.html +msgid "Price ({currencyCode})" +msgstr "价格 ({currencyCode})" + +#: lms/templates/courseware/program_marketing.html +msgid "{currency}{newPrice}{htmlEnd} for entire program" +msgstr "整个系列 {currency}{newPrice}{htmlEnd} " + +#: lms/templates/courseware/program_marketing.html +msgid "You save " +msgstr "您已省下" + +#: lms/templates/courseware/program_marketing.html +msgid "{discount_value}" +msgstr "{discount_value}" + +#: lms/templates/courseware/program_marketing.html +msgid "{currency}{full_program_price} for entire program" +msgstr "整个系列{currency}{full_program_price}" + +#: lms/templates/courseware/program_marketing.html +msgid "Courses in the {}" +msgstr "{} 的课程" + +#: lms/templates/courseware/program_marketing.html +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Starts on {}" +msgstr "开始 {}" + +#: lms/templates/courseware/program_marketing.html +msgid "Enroll Now" +msgstr "现在加入" + +#: lms/templates/courseware/program_marketing.html +msgid "Not Currently Available" +msgstr "当前不可用" + +#: lms/templates/courseware/progress.html +msgid "{course_number} Progress" +msgstr "{course_number}课程进展" + +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "在Studio中查看评分情况" + +#: lms/templates/courseware/progress.html +msgid "Course Progress for Student '{username}' ({email})" +msgstr "学生'{username}' ({email})的学习进度" + +#: lms/templates/courseware/progress.html +msgid "View Certificate" +msgstr "查看证书" + +#: lms/templates/courseware/progress.html +msgid "Opens in a new browser window" +msgstr "打开一个新的浏览器窗口" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "下载您的证书" + +#: lms/templates/courseware/progress.html +msgid "Request Certificate" +msgstr "申请证书" + +#: lms/templates/courseware/progress.html +msgid "Requirements for Course Credit" +msgstr "课程学分要求" + +#: lms/templates/courseware/progress.html +msgid "{student_name}, you are no longer eligible for credit in this course." +msgstr "{student_name},您已失去获得该课程学分的资格。" + +#: lms/templates/courseware/progress.html +msgid "" +"{student_name}, you have met the requirements for credit in this course. " +"{a_start}Go to your dashboard{a_end} to purchase course credit." +msgstr "{student_name},您已达到本课程的学分要求。{a_start}前往课程面板{a_end} 支付这门课程的学分费用。" + +#: lms/templates/courseware/progress.html +msgid "{student_name}, you have not yet met the requirements for credit." +msgstr "{student_name},您还未达到学分要求。" + +#: lms/templates/courseware/progress.html +msgid "Information about course credit requirements" +msgstr "课程的学分要求信息" + +#: lms/templates/courseware/progress.html +msgid "display_name" +msgstr "显示的名称" + +#: lms/templates/courseware/progress.html +msgid "Verification Submitted" +msgstr "验证已提交" + +#: lms/templates/courseware/progress.html +msgid "Verification Failed" +msgstr "认证失败" + +#: lms/templates/courseware/progress.html +msgid "Verification Declined" +msgstr "未通过验证" + +#: lms/templates/courseware/progress.html +msgid "Completed by {date}" +msgstr "在{date}之前完成" + +#: lms/templates/courseware/progress.html +msgid "Upcoming" +msgstr "即将到来" + +#: lms/templates/courseware/progress.html +msgid "Less" +msgstr "收起" + +#: lms/templates/courseware/progress.html +msgid "Details for each chapter" +msgstr "每章的详细信息" + +#: lms/templates/courseware/progress.html +msgid "{earned} of {total} possible points" +msgstr "从可能的总分{total} 中获得{earned} " + +#: lms/templates/courseware/progress.html +msgid "" +"Suspicious activity detected during proctored exam review. Exam score 0." +msgstr "监测到监考模式考试中可疑作弊行为,考试分数为0。" + +#: lms/templates/courseware/progress.html +msgid "Section grade has been overridden." +msgstr "章成绩已被覆盖。" + +#: lms/templates/courseware/progress.html +msgid "Problem Scores: " +msgstr "问题得分:" + +#: lms/templates/courseware/progress.html +msgid "Practice Scores: " +msgstr "练习得分:" + +#: lms/templates/courseware/progress.html +msgid "Problem scores are hidden until the due date." +msgstr "截止日期前不显示题目分数。" + +#: lms/templates/courseware/progress.html +msgid "Practice scores are hidden until the due date." +msgstr "在截止日期前不显示模拟考成绩。" + +#: lms/templates/courseware/progress.html +msgid "Problem scores are hidden." +msgstr "不显示题目分数。" + +#: lms/templates/courseware/progress.html +msgid "Practice scores are hidden." +msgstr "不显示联系成绩。" + +#: lms/templates/courseware/progress.html +msgid "No problem scores in this section" +msgstr "这部分中没有问题得分" + +#: lms/templates/courseware/syllabus.html +msgid "{course.display_number_with_default} Course Info" +msgstr "{course.display_number_with_default}课程信息" + +#: lms/templates/courseware/welcome-back.html +msgid "" +"You were most recently in {section_link}. If you're done with that, choose " +"another section on the left." +msgstr "您最近在{section_link}。如果您已经完成此章节,请选择左侧的另一个章节。" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "Hi {name}," +msgstr "{name} 您好," + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "Hi," +msgstr "您好," + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"Congratulations! You are now eligible to receive course credit from " +"{providers} for successfully completing your {platform_name} course! " +"{link_start}Purchase credit now.{link_end}" +msgstr "" +"恭喜!您已完成{platform_name}课程,已获得从{providers}获取课程学分的资格!{link_start}马上购买学分{link_end}" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"Congratulations! You are now eligible to receive course credit for " +"successfully completing your {platform_name} course! {link_start}Purchase " +"credit now.{link_end}" +msgstr "恭喜您!您已完成 {platform_name} 课程,已获得资格获得课程学分!{link_start}马上购买学分{link_end}" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"Course credit can help you get a jump start on your university degree, " +"finish a degree already started, or fulfill requirements at a different " +"academic institution." +msgstr "课程学分可以极大地帮助您申请大学,完成您的大学学位,或者满足另外一个学术机构的要求。" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "There are 2 steps to getting course credit." +msgstr "2步获取学分。" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"Purchase credit by going to your {link_start}{platform_name} " +"dashboard{link_end} and clicking the {bold_start}Get Credit{bold_end} button" +" below the course title." +msgstr "" +"前往 " +"{link_start}{platform_name}面板{link_end}并点击课程标题下方的{bold_start}获取学分{bold_end}按钮以购买学分。" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"When your payment is complete, return to the dashboard and click the " +"{bold_start}Request Credit{bold_end} button under the course title to " +"request an official academic transcript at the institution that granted the " +"credit." +msgstr "" +"当完成支付后,返回面板并点击课程标题下方的{bold_start}请求学分{bold_end}按钮来请求一份官方学术成绩单,由赋予学分的机构发放。" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"We hope you enjoyed the course, and we hope to see you in future " +"{platform_name} courses!" +msgstr "我们希望您享受这门课程,我们希望在{platform_name}的新课程中见到您。" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "The {platform_name} Team" +msgstr "{platform_name} 团队" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"{link_start}Click here for more information on credit at " +"{platform_name}{link_end}." +msgstr "{link_start}点击这里了解更多 {platform_name}平台上的学分信息{link_end}." + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your certificate will be available on or before {date}" +msgstr "您可申请证书的日期为或早于{date}" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your final grade:" +msgstr "您的最终成绩:" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required for a {cert_name_short}:" +msgstr "评定{cert_name_short}所需要的成绩:" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required to pass this course:" +msgstr "通过这门课程的成绩:" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your verified {cert_name_long} is being held pending confirmation that the " +"issuance of your {cert_name_short} is in compliance with strict U.S. " +"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " +"mistakenly identified you as being connected with one of those countries, " +"please let us know by contacting {email}. If you would like a refund on your" +" {cert_name_long}, please contact our billing address {billing_email}" +msgstr "" +"由于向您颁发{cert_name_short}需要遵从美国对伊朗、古巴、叙利亚和苏丹的官方禁令政策,您的已认证的{cert_name_long}正处在等待确认状态。如果您认为我们的系统错误地将您与上述国家相关联,请通过{email}联系我们。如果您希望为{cert_name_long}获取退款,请通过{billing_email}联系我们。" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your {cert_name_long} is being held pending confirmation that the issuance " +"of your {cert_name_short} is in compliance with strict U.S. embargoes on " +"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " +"identified you as being connected with one of those countries, please let us" +" know by contacting {email}." +msgstr "" +"由于向您颁发您的{cert_name_short}需要遵从美国对伊朗、古巴、叙利亚和苏丹的严格禁运政策,您的已认证的{cert_name_long}正处在等待确认状态。如果您认为我们的系统错误地将您与上述国家相关联,请联系{email}让我们了解相关情况。" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your certificate was not issued because you do not have a current verified " +"identity with {platform_name}. " +msgstr "我们未向您颁发证书,是因为您未在当前的{platform_name}平台上验证您的身份。" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Verify your identity now." +msgstr "立刻验证您的身份。" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your {cert_name_short} is Generating" +msgstr "您的{cert_name_short}生成中" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open the certificate web view" +msgstr "该链接将打开证书的网络版式视图" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "View {cert_name_short}" +msgstr "查看{cert_name_short}" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open/download a PDF document" +msgstr "点击此链接打开或下载PDF文件" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download {cert_name_short} (PDF)" +msgstr "下载 {cert_name_short} (PDF)" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your {cert_name_short} (PDF)" +msgstr "下载认证{cert_name_short}(PDF)" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"This link will open/download a PDF document of your verified " +"{cert_name_long}." +msgstr "此链接会以PDF格式打开或下载您验证过的{cert_name_long}证书。" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your ID Verified {cert_name_short} (PDF)" +msgstr "下载您的已认证的 {cert_name_short} (PDF)" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Complete our course feedback survey" +msgstr "填写课程反馈问卷" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "将证书添加到LinkedIn的个人资料" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "分享到领英" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" +"由于在生成您的{cert_name_long}时我们没有一套您的有效的身份认证照片,因此无法授予您认证的{cert_name_short};我们已授予您标有诚信准则的{cert_name_short}" +" 。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course details" +msgstr "课程详细信息" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Home Page" +msgstr "{course_number} {course_name} 主页" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Cover Image" +msgstr "{course_number} {course_name} 封面图片" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Enrolled as: " +msgstr "选修为:" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/static_templates/help.html +msgid "Coming Soon" +msgstr "即将上线" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Ended - {date}" +msgstr "已经结课 - {date}" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Started - {date}" +msgstr "已经开课 - {date}" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Starts - {date}" +msgstr "开课日期 - {date}" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "for {course_display_name}" +msgstr "为了{course_display_name}" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You must select a session by {expiration_date} to access the course." +msgstr "您必须在{expiration_date}前选择会话来访问课程。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You must select a session to access the course." +msgstr "必须选择一个学期才能访问课程。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Change or Leave Session" +msgstr "更改或离开会话" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You can no longer change sessions." +msgstr "您已无法更改会话。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You can change sessions until {entitlement_expiration_date}." +msgstr "您可在{entitlement_expiration_date}前更改会话。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Archived Course" +msgstr "查看存档的课程" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "I'm taking {course_name} online with {facebook_brand}. Check it out!" +msgstr "我正在{facebook_brand}学习网络课程{course_name},了解一下!" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Share {course_name} on Facebook" +msgstr "分享{course_name}至Facebook" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Share on Facebook" +msgstr "分享到Facebook" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "I'm taking {course_name} online with {twitter_brand}. Check it out!" +msgstr "我正在{twitter_brand}学习网络课程{course_name},了解一下!" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Share {course_name} on Twitter" +msgstr "分享{course_name}至Twitter" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course options for" +msgstr "课程选项,关于" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_entitlement_actions.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Available Actions" +msgstr "可用的操作" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_entitlement_actions.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Email Settings" +msgstr "电子邮件设置" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Related Programs" +msgstr "相关课程" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can no longer access this course because payment has not yet been " +"received. You can contact the account holder to request payment, or you can " +"unenroll from this course" +msgstr "由于未收到支付款,您无法访问此课程。您可以联系账号持有者来请求支付,或退出此门课程。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can no longer access this course because payment has not yet been " +"received. You can {contact_link_start}contact the account " +"holder{contact_link_end} to request payment, or you can " +"{unenroll_link_start}unenroll{unenroll_link_end} from this course" +msgstr "" +"由于尚未收到您的付款,您将无法访问该课程。您可以{contact_link_start}联系账号持有人{contact_link_end}请求付款,也可以{unenroll_link_start}放弃选修{unenroll_link_end}该课程" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Verification not yet complete." +msgstr "认证尚不完整" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You only have {days} day left to verify for this course." +msgid_plural "You only have {days} days left to verify for this course." +msgstr[0] "您还有 {days} 天时间认证此课程。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Almost there!" +msgstr "马上就好了!" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You still need to verify for this course." +msgstr "您仍需为此课程进行认证" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Verify Now" +msgstr "认证" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You have submitted your verification information." +msgstr "您已提交认证信息。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You will see a message on your dashboard when the verification process is " +"complete (usually within 1-2 days)." +msgstr "当认证过程结束后,您会在您的课程面板中看到一条消息(通常在1-2天内)。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Your current verification will expire soon!" +msgstr "您的现时验证将马上过期!" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You have submitted your reverification information. You will see a message " +"on your dashboard when the verification process is complete (usually within " +"1-2 days)." +msgstr "您已提交重新认证信息,认证完成后将会在您面板中显示一条消息(一般1-2天内完成)。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "You have successfully verified your ID with edX" +msgstr "您已经成功向edX验证了您的身份!" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Your current verification is effective until {date}." +msgstr "在{date}之前您的验证状态都有效" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Your current verification will expire soon." +msgstr "您的现时验证将马上过期" + +#. Translators: start_link and end_link will be replaced with HTML tags; +#. please do not translate these. +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Your current verification will expire in {days} days. {start_link}Re-verify " +"your identity now{end_link} using a webcam and a government-issued photo ID." +msgstr "您当前认证会在{days}天后过期,立即使用网络摄像头和政府发行的图片ID来{start_link}重新认证身份{end_link}。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Pursue a {cert_name_long} to highlight the knowledge and skills you gain in " +"this course." +msgstr "获取一个{cert_name_long}来突显您在此课程中获得的知识和技能。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"It's official. It's easily shareable. It's a proven motivator to complete " +"the course. {line_break}{link_start}Learn more about the verified " +"{cert_name_long}{link_end}." +msgstr "" +"证书由官方正式颁发,易于分享,已证明能激励学生完成课程。{line_break}{link_start}了解更多关于认证{cert_name_long}的信息{link_end}。" + +#. Translators: provider_name is the name of a credit provider or university +#. (e.g. State University) +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"You have completed this course and are eligible to purchase course credit. " +"Select Get Credit to get started." +msgstr "您已完成此课程并有资格购买课程学分。选择获得学分开始。" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "You are now eligible for credit from {provider}. Congratulations!" +msgstr "现在,您有资格从 {provider} 获得学分。恭喜您!" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "Get Credit" +msgstr "获得学分" + +#. Translators: link_to_provider_site is a link to an external webpage. The +#. text of the link will be the name of a credit provider, such as 'State +#. University' or 'Happy Fun Company'. +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"Thank you for your payment. To receive course credit, you must now request " +"credit at the {link_to_provider_site} website. Select Request Credit " +"to get started." +msgstr "感谢您的付款。要获得课程学分,您现在必须在 {link_to_provider_site} 网站申请学分。选择申请学分开始。" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "Request Credit" +msgstr "申请学分" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"{provider_name} has received your course credit request. We will update you " +"when credit processing is complete." +msgstr "{provider_name} 已收到您的课程学分申请。完成学分处理后我们将通知您。" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "View Details" +msgstr "查看详情" + +#. Translators: link_to_provider_site is a link to an external webpage. The +#. text of the link will be the name of a credit provider, such as 'State +#. University' or 'Happy Fun Company'. provider_name is the name of credit +#. provider. +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"Congratulations! {provider_name} has approved your request for course" +" credit. To see your course credit, visit the {link_to_provider_site} " +"website." +msgstr "" +"恭喜您! {provider_name} 已批准您的课程学分申请。要查看您的课程学分,请访问 " +"{link_to_provider_site} 网站。" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "View Credit" +msgstr "查看认证" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"{provider_name} did not approve your request for course credit. For more " +"information, contact {link_to_provider_site} directly." +msgstr "{provider_name} 未批准您的课程学分申请。欲了解更多信息,请直接联系 {link_to_provider_site}。" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"An error occurred with this transaction. For help, contact {support_email}." +msgstr "本次交易出错了。联系{support_email}寻求帮助。" + +#: lms/templates/dashboard/_dashboard_entitlement_actions.html +msgid "Course options for {courseName}" +msgstr "{courseName}的课程选项" + +#: lms/templates/dashboard/_dashboard_show_consent.html +msgid "Consent to share your data" +msgstr "批准分享您的数据" + +#: lms/templates/dashboard/_dashboard_show_consent.html +msgid "" +"To access this course, you must first consent to share your learning " +"achievements with {enterprise_customer_name}." +msgstr "您必须允许与{enterprise_customer_name}分享您的学习成就,才能访问此课程" + +#: lms/templates/dashboard/_dashboard_show_consent.html +msgid "View Consent" +msgstr "查看批准" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Current Verification Status: Approved" +msgstr "当前认证状态:已批准" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your edX verification has been approved. Your verification is effective for " +"one year after submission." +msgstr "您的edX认证已通过,提交后一年内有效。" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Current Verification Status: Pending" +msgstr "当前认证状态:待处理" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your edX ID verification is pending. Your verification information has been " +"submitted and will be reviewed shortly." +msgstr "您的身份认证正在进行中,您的认证信息已提交,我们会尽快审查您的认证。" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Current Verification Status: Denied" +msgstr "当前认证状态:未通过" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification submission was not accepted. To receive a verified " +"certificate, you must submit a new photo of yourself and your government-" +"issued photo ID before the verification deadline for your course." +msgstr "您的认证提交未被接受。您必须在您课程认证的截止日期前提交一张新照片和政府签发的身份证件,才可以收到认证证书。" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Your verification was denied for the following reasons:" +msgstr "您认证未通过的理由如下:" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Resubmit Verification" +msgstr "重新提交认证" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Current Verification Status: Expired" +msgstr "当前认证状态:已过期" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification has expired. To receive a verified certificate, you must " +"submit a new photo of yourself and your government-issued photo ID before " +"the verification deadline for your course." +msgstr "您的认证已过期,您必须在您课程的认证截止日期前提交新照片和政府发行的身份证明,才可以获取认证证书。" + +#: lms/templates/dashboard/_dashboard_third_party_error.html +msgid "Could Not Link Accounts" +msgstr "无法关联账号" + +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard/_dashboard_third_party_error.html +msgid "" +"The {provider_name} account you selected is already linked to another " +"{platform_name} account." +msgstr "您选择的{provider_name}账号已经和{platform_name}账号相关联。" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "" +"We're sorry to see you go! Please share your main reason for unenrolling." +msgstr "很遗憾您要退选课程!希望您可以告诉我们退选课程的主要原因。" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I just wanted to browse the material" +msgstr "我只想浏览材料" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "This won't help me reach my goals" +msgstr "此门课程无法帮助我达到学习目标" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I don't have the time" +msgstr "没时间" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I don't have the academic or language prerequisites" +msgstr "我不具备学术或语言先修条件" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I don't have enough support" +msgstr "我不具备足够的支持条件" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I am not happy with the quality of the content" +msgstr "我对内容质量不满意" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "The course material was too hard" +msgstr "课程材料太难" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "The course material was too easy" +msgstr "课程材料太简单" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Something was broken" +msgstr "出错了" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Other" +msgstr "其他" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Thank you for sharing your reasons for unenrolling." +msgstr "感谢您告知我们原因。" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "You are unenrolled from" +msgstr "您已退选" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Return To Dashboard" +msgstr "返回面板" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Browse Courses" +msgstr "浏览课程" + +#: lms/templates/debug/run_python_form.html +msgid "Results:" +msgstr "结果:" + +#: lms/templates/discussion/_discussion_inline.html +msgid "Topic:" +msgstr "主题:" + +#: lms/templates/discussion/_discussion_inline.html +msgid "Show Discussion" +msgstr "显示讨论" + +#: lms/templates/discussion/_discussion_inline_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "要查看现场讨论,请在单元设置中点击“预览”或“现场查看”" + +#: lms/templates/discussion/_discussion_inline_studio.html +msgid "Discussion ID: {discussion_id}" +msgstr "讨论区用户名:{discussion_id}" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "Discussion topics list" +msgstr "讨论主题列表" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "Filter Topics" +msgstr "过滤主题" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "filter topics" +msgstr "过滤主题" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "All Discussions" +msgstr "所有讨论" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "Posts I'm Following" +msgstr "我关注的讨论帖" + +#. Translators: This labels a filter menu in forum navigation +#: lms/templates/discussion/_thread_list_template.html +msgid "Filter:" +msgstr "过滤器:" + +#. Translators: This is a menu option for showing all forum threads unfiltered +#: lms/templates/discussion/_thread_list_template.html +msgid "Show all posts" +msgstr "显示所有帖子" + +#. Translators: This is a menu option for showing only unread forum threads +#: lms/templates/discussion/_thread_list_template.html +msgid "Unread posts" +msgstr "未读讨论帖" + +#. Translators: This is a menu option for showing only unanswered forum +#. question threads +#: lms/templates/discussion/_thread_list_template.html +msgid "Unanswered posts" +msgstr "未答复的讨论帖" + +#. Translators: This is a menu option for showing only forum threads flagged +#. for abuse +#: lms/templates/discussion/_thread_list_template.html +msgid "Flagged" +msgstr "已标记" + +#. Translators: This labels a group menu in forum navigation +#: lms/templates/discussion/_thread_list_template.html +msgid "Group:" +msgstr "分组:" + +#: lms/templates/discussion/_thread_list_template.html +msgid "in all groups" +msgstr "在所有分组中" + +#. Translators: This labels a sort menu in forum navigation +#: lms/templates/discussion/_thread_list_template.html +msgid "Sort:" +msgstr "排序:" + +#. Translators: This is a menu option for sorting forum threads +#: lms/templates/discussion/_thread_list_template.html +msgid "by recent activity" +msgstr "近期活动" + +#. Translators: This is a menu option for sorting forum threads +#: lms/templates/discussion/_thread_list_template.html +msgid "by most activity" +msgstr "活跃度" + +#. Translators: This is a menu option for sorting forum threads +#: lms/templates/discussion/_thread_list_template.html +msgid "by most votes" +msgstr "最多票数" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Student Notes" +msgstr "学生笔记" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Highlights and notes you've made in course content" +msgstr "您在课程内容里高亮和笔记的内容" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Search notes for:" +msgstr "搜索笔记:" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Search notes for..." +msgstr "搜索笔记..." + +#: lms/templates/edxnotes/edxnotes.html +msgid "View notes by:" +msgstr "浏览笔记:" + +#: lms/templates/edxnotes/edxnotes.html +msgid "" +"You have not made any notes in this course yet. Other students in this " +"course are using notes to:" +msgstr "您在本课中尚未做任何笔记。其他学生在本课程中使用笔记:" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Mark a passage or concept so that it's easy to find later." +msgstr "标记一段文章或一个概念,以便日后查找。" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Record thoughts about a specific passage or concept." +msgstr "记录有关具体文章或概念的想法。" + +#: lms/templates/edxnotes/edxnotes.html +msgid "" +"Highlight important information to review later in the course or in future " +"courses." +msgstr "在此课或者未来的课程中突出重要信息以便日后回顾。" + +#: lms/templates/edxnotes/edxnotes.html +msgid "" +"Get started by making a note in something you just read, like " +"{section_link}." +msgstr "开始,在您刚读的东西,如{section_link}。" + +#: lms/templates/edxnotes/toggle_notes.html +msgid "Hide notes" +msgstr "隐藏注释" + +#: lms/templates/edxnotes/toggle_notes.html +msgid "Show notes" +msgstr "显示注释" + +#: lms/templates/emails/activation_email.txt +msgid "" +"You're almost there! Use the link to activate your account to access " +"engaging, high-quality {platform_name} courses. Note that you will not be " +"able to log back into your account until you have activated it." +msgstr "注册差不多完成啦!点击链接激活您的账号,体验{platform_name}的精品课程。注意,您必须激活账号才可以登录。" + +#: lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "Enjoy learning with {platform_name}." +msgstr "享受您在{platform_name}上的学习之旅。" + +#: lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "" +"If you need help, please use our web form at {support_url} or email " +"{support_email}." +msgstr "如需帮助,请访问我们的网站{support_url} 或发邮件至{support_email} 。" + +#: lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "" +"This email message was automatically sent by {lms_url} because someone " +"attempted to create an account on {platform_name} using this email address." +msgstr "这是一封由{lms_url} 自动发送的邮件,通知您有人使用此邮箱地址注册{platform_name}账号。" + +#: lms/templates/emails/activation_email_subject.txt +msgid "Action Required: Activate your {platform_name} account" +msgstr "您必须激活您的{platform_name}账号" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Thank you for your purchase of " +msgstr "谢谢您购买" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Your payment was successful." +msgstr "您已成功付款。" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "" +"If you have billing questions, please read the FAQ ({faq_url}) or contact " +"{billing_email}." +msgstr "如果您对账单有疑问,请阅读FAQ({faq_url} )或给{billing_email} 发邮件。" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "If you have billing questions, please contact {billing_email}." +msgstr "如果您对账单有疑问,请给{billing_email}发邮件。" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"{order_placed_by} placed an order and mentioned your name as the " +"Organization contact." +msgstr "{order_placed_by}下了一个订单并将您添加为机构联系人。" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"{order_placed_by} placed an order and mentioned your name as the additional " +"receipt recipient." +msgstr "{order_placed_by}下了一个订单,并将您添加为额外的收据收件人 " + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "The items in your order are:" +msgstr "您的订单细目为:" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "Quantity - Description - Price" +msgstr "数量 - 描述 - 价格" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" +msgstr "信用卡/借记卡总支付额为: {currency_symbol}{total_cost}" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Company Name:" +msgstr "公司名称:" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Purchase Order Number:" +msgstr "订单号" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Company Contact Name:" +msgstr "公司联系人姓名" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Company Contact Email:" +msgstr "公司联系邮箱" + +#. Translators: this will be the name of a person receiving an email +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Recipient Name:" +msgstr "收件人姓名" + +#. Translators: this will be the email address of a person receiving an email +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Recipient Email:" +msgstr "收件人邮箱" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "#:" +msgstr "#:" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Order Number: {order_number}" +msgstr "订单号: {order_number}" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"A CSV file of your registration URLs is attached. Please distribute " +"registration URLs to each student planning to enroll using the email " +"template below." +msgstr "包含您注册URL的CSV文件已附上。请使用以下邮件模板将注册URL分发给每个计划招收的学生。" + +#. Translators: This is followed by the instructor or course team name (so +#. could be singular or plural) +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Warm regards," +msgstr "诚挚的问候," + +#. Translators: The
    is a line break (empty line), please keep this html +#. in +#. the string after the sign off. +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Warm regards,
    The {platform_name} Team" +msgstr "诚挚的问候,
    {platform_name} 团队" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Dear [[Name]]" +msgstr "亲爱的[[名字]]" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"To enroll in {course_names} we have provided a registration URL for you. " +"Please follow the instructions below to claim your access." +msgstr "我们为您提供了一个注册URL来选修{course_names}。请按照以下说明来获得您的权限。" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Your redeem url is: [[Enter Redeem URL here from the attached CSV]]" +msgstr "您的兑换URL是:[[在此输入从附件CSV中找到的兑换链接]]" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "(1) Register for an account at {site_name}" +msgstr "(1) 在 {site_name}注册一个账号" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"(2) Once registered, copy the redeem URL and paste it in your web browser." +msgstr "(2)注册完成后,复制兑换URL地址并且粘帖到您的web浏览器地址栏" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"(3) On the enrollment confirmation page, Click the 'Activate Enrollment " +"Code' button. This will show the enrollment confirmation." +msgstr "(3) 在选课确认页面,点击“激活选课码”按钮,您将看到选课确认信息。" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"(4) You should be able to click on 'view course' button or see your course " +"on your student dashboard at {url}" +msgstr "(4)您可以点击“查看课程”按钮或者通过{url} 处的学生课程面板查看您的课程。" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"(5) Course materials will not be available until the course start date." +msgstr "(5) 课程开始后课程资料才可用。" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. Please also keep the

    and

    HTML +#. tags in place. +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "

    Sincerely,

    [[Your Signature]]

    " +msgstr "

    诚挚的,

    [[您的签名]]

    " + +#: lms/templates/emails/confirm_email_change.txt +#: themes/elitemba-theme/lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us immediately. Contact information is listed at:" +msgstr "" +"这封邮件是为了确认您和 {platform_name} 之间的电子邮件关联由 {old_email} 变更为 " +"{new_email}。如果您并没有发出该请求,请立即联系我们。联系信息已在以下页面中列出:" + +#: lms/templates/emails/confirm_email_change.txt +#: themes/elitemba-theme/lms/templates/emails/confirm_email_change.txt +#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "我们保存着旧电子邮件信息的日志,所以如果该请求并非是您有意发出的,我们可以对此进行调查。" + +#: lms/templates/emails/email_change_subject.txt +msgid "Request to change {platform_name} account e-mail" +msgstr "变更 {platform_name} 账号电子邮件的请求" + +#: lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +msgid "" +"Sorry! The photos you submitted for ID verification were not accepted, for " +"the following reason(s):" +msgstr "对不起!您为ID验证提供的照片没有通过,原因(或多个)如下:" + +#: lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +msgid "The photo(s) of you:" +msgstr "您的照片(多张):" + +#: lms/templates/emails/failed_verification_email.txt +msgid "The photo of you:" +msgstr "您的照片:" + +#: lms/templates/emails/failed_verification_email.txt +msgid "The photo of your ID:" +msgstr "拍摄一张您身份证件的照片" + +#: lms/templates/emails/failed_verification_email.txt +msgid "Other Reasons:" +msgstr "其他原因:" + +#: lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +msgid "Resubmit Verification: {reverify_url}" +msgstr "重新认证: {reverify_url}" + +#: lms/templates/emails/failed_verification_email.txt +msgid "ID Verification FAQ: {faq_url}" +msgstr "身份验证 FAQ:{faq_url}" + +#: lms/templates/emails/failed_verification_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/emails/passed_verification_email.txt +#: lms/templates/emails/photo_submission_confirmation.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/photo_submission_review.txt +msgid "Thank you," +msgstr "谢谢," + +#: lms/templates/emails/failed_verification_email.txt +#: lms/templates/emails/passed_verification_email.txt +#: lms/templates/emails/photo_submission_confirmation.txt +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/photo_submission_review.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "The {platform_name} team" +msgstr "{platform_name}团队" + +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "" +"Your payment was successful. You will see the charge below on your next " +"credit or debit card statement under the company name {merchant_name}." +msgstr "您已付款成功。您最近一期的信用卡或储蓄卡结单将会包括来自公司名{merchant_name}的扣款。" + +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "Your order number is: {order_number}" +msgstr "您的订单号为:{order_number}" + +#: lms/templates/emails/passed_verification_email.txt +msgid "Hi {full_name}" +msgstr " {full_name} 您好" + +#: lms/templates/emails/passed_verification_email.txt +msgid "Congratulations! Your ID verification process was successful." +msgstr "恭喜您的身份ID认证成功。" + +#: lms/templates/emails/passed_verification_email.txt +msgid "" +"Your verification is effective for one year. It will expire on {expiry_date}" +msgstr "您的验证有效期为一年。它将在{expiry_date}过期" + +#: lms/templates/emails/photo_submission_confirmation.txt +msgid "Hi {full_name}," +msgstr "{full_name}您好," + +#: lms/templates/emails/photo_submission_confirmation.txt +msgid "Thanks for submitting your photos!" +msgstr "谢谢您的照片提交!" + +#: lms/templates/emails/photo_submission_confirmation.txt +msgid "" +"We've received your information and the ID verification process has " +"begun.Check for an email from us in the next few days to confirm whether " +"your verification was successful.You can also check the status of the " +"verification process on your dashboard." +msgstr "" +"我们已收到您的信息,并且身份认证流程已开始。请在接下来几天内查看我们给您发的一封邮件,以确认您认证是否成功。您也可以在面板中查看您的认证状态。" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "Thank you for purchasing enrollments in {course_name}." +msgstr "感谢您购买{course_name}。" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"An invoice for {currency_symbol}{total_price} is attached. Payment is due " +"upon receipt. You can find information about payment methods on the invoice." +msgstr "{currency_symbol}{total_price}的发票已附上。您在收到发票后需立即付款。您可以在发票里找到付款方式。" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"A .csv file that lists your enrollment codes is attached. You can use the " +"email template below to distribute enrollment codes to your students. Each " +"student must use a separate enrollment code." +msgstr "附件中是带有您的选课码的.csv文件。您可以使用下面的邮件模板将选课码分发给您的学生。每个学生必须使用一个单独的选课码。" + +#. Translators: This is the signature of an email. "\n" is a newline +#. character +#. and should be placed between the closing word and the signature. +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"Thanks,\n" +"The {platform_name} Team" +msgstr "" +"谢谢,\n" +"{platform_name}团队" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "Dear [[Name]]:" +msgstr "亲爱的 [[Name]]:" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"We have provided a course enrollment code for you in {course_name}. To " +"enroll in the course, click the following link:" +msgstr "我们为您提供了一个{course_name}选课码。参加该课程,请点击以下链接:" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "HTML link from the attached CSV file" +msgstr "附件CSV文件中的html链接" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"After you enroll, you can see the course on your student dashboard. You can " +"see course materials after the course start date." +msgstr "在您选课之后,您可以在您的学生课程面板中看到该课程。在课程开始后,您就可以看到课程的相关资料。" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#. This is the signature of an email. "\n" is a newline character +#. and should be placed between the closing word and the signature. +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"Sincerely,\n" +"[[Your Signature]]" +msgstr "" +"诚挚的,\n" +"[[您的签名]]" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "INVOICE" +msgstr "发票" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Invoice No: {invoice_number}" +msgstr "发票号码: {invoice_number}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Terms: Due Upon Receipt" +msgstr "条款:收到付款" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Due Date: {date}" +msgstr "截止日期: {date}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Bill to:" +msgstr "付款给:" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Customer Reference Number: {reference_number}" +msgstr "客户参考编码: {reference_number}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Balance Due: {currency_symbol}{sale_price}" +msgstr "应付金额: {currency_symbol}{sale_price}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Course: {course_name}" +msgstr "课程名称: {course_name}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "" +"Price: {currency_symbol}{course_price} Quantity: {quantity} " +"Sub-Total: {currency_symbol}{sub_total} Discount: " +"{currency_symbol}{discount}" +msgstr "" +"价格: {currency_symbol}{course_price} 数量: {quantity} 小计: " +"{currency_symbol}{sub_total} 折扣: {currency_symbol}{discount}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Total: {currency_symbol}{sale_price}" +msgstr "总计: {currency_symbol}{sale_price}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Payment Instructions" +msgstr "支付说明" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "" +"If we do not receive payment, the learner enrollments that use these codes " +"will be canceled and learners will not be able to access course materials. " +"All purchases are final. For more information, see the {site_name} " +"cancellation policy." +msgstr "" +"如果我们没有收到付款,使用这些选课码的学生将被取消上课资格并无法访问课程资料。所有付款都无法退换。欲了解更多信息,请参见{site_name}取消政策。" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "For payment questions, contact {contact_email}" +msgstr "支付问题请联系{contact_email}" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the course staff at {email}." +msgstr "" +"我们很抱歉。我们的课程工作人员没有批准您的名字请求改变:从{old_name} " +"改变至{new_name}。如果您需要进一步的帮助,请给课程工作人员发邮件:{email}。" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"We have successfully verified your identity for the {assessment} assessment " +"in the {course_name} course." +msgstr "我们已经为您在课程{course_name}中的{assessment} 评估成功地验证了您的身份。" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"We could not verify your identity for the {assessment} assessment in the " +"{course_name} course. You have used {used_attempts} out of " +"{allowed_attempts} attempts to verify your identity." +msgstr "" +"我们无法为您在课程 " +"{course_name}中的评估{assessment}验证身份。您已经使用了{allowed_attempts}次允许的中的{used_attempts}" +" 试图验证您的身份。" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"You must verify your identity before the assessment closes on {due_date}." +msgstr "您必须核实您的身份在评估关闭{due_date}。" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "To try to verify your identity again, select the following link:" +msgstr "尝试再次核实您的身份,选择下面的链接:" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"We could not verify your identity for the {assessment} assessment in the " +"{course_name} course. You have used {used_attempts} out of " +"{allowed_attempts} attempts to verify your identity, and verification is no " +"longer possible." +msgstr "" +"我们无法验证为您在课程{course_name}中的评估{assessment}验证身份。您已尝试了{used_attempts} " +"次,验证身份尝试次数最多为{allowed_attempts}次。" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "To go to the courseware, select the following link:" +msgstr "去看课件,选择以下链接:" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"If you have any questions, you can contact student support at " +"{support_link}." +msgstr "如果您有任何问题,您可以联系学生支持团队{support_link}。" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "Thanks," +msgstr "谢谢," + +#: lms/templates/embargo/default_courseware.html +#: lms/templates/embargo/default_enrollment.html +#: lms/templates/static_templates/embargo.html +#: themes/stanford-style/lms/templates/embargo/default_courseware.html +#: themes/stanford-style/lms/templates/embargo/default_enrollment.html +#: themes/stanford-style/lms/templates/static_templates/embargo.html +msgid "This Course Unavailable In Your Country" +msgstr "这门课程未在您的国家开设" + +#: lms/templates/embargo/default_courseware.html +msgid "" +"Our system indicates that you are trying to access this {platform_name} " +"course from a country or region in which it is not currently available." +msgstr "我们的系统显示您想选修的{platform_name}课程在您所在的国家或地区没有开设。" + +#: lms/templates/embargo/default_enrollment.html +msgid "" +"Our system indicates that you are trying to enroll in this {platform_name} " +"course from a country or region in which it is not currently available." +msgstr "我们的系统检测到您尝试注册{platform_name}的课程,它目前在您所在的国家或地区没有开设。" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "Enrollment Successful" +msgstr "选课成功" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "" +"Thank you for enrolling in {course_names}. We hope you enjoy the course." +msgstr "感谢您报名{course_names},希望您学习旅途愉快。" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "Thank you for enrolling in:" +msgstr "感谢您报名:" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "We hope you enjoy the course." +msgstr "祝您学习愉快。" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "" +"{platform_name} is a nonprofit bringing high-quality education to everyone, " +"everywhere. Your help allows us to continuously improve the learning " +"experience for millions and make a better future one learner at a time." +msgstr "" +"{platform_name}是一个非营利性组织,给任何地方的任何人带来高质量的教育。您的帮助使我们能够一步一个脚印、不断地为成千上万的学习者改善学习体验,创造美好的未来。" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "Donation Actions" +msgstr "捐赠行为" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Financial Assistance Application" +msgstr "经济援助申请" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "A Note to Learners" +msgstr "学员须知" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "Dear edX Learner," +msgstr "亲爱的 edX 学员:" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "" +"EdX Financial Assistance is a program we created to give learners in all " +"financial circumstances a chance to earn a Verified Certificate upon " +"successful completion of an edX course." +msgstr "edX 经济援助项目旨在让各种经济状况的学员都有一个在成功完成 edX 课程后获得验证证书的机会。" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"If you are interested in working toward a Verified Certificate, but cannot " +"afford to pay the fee, please apply now. Please note that financial " +"assistance is limited and may not be awarded to all eligible candidates." +msgstr "如果您对获得验证证书感兴趣但无法承担费用,请现在就来提出申请。请注意,经济援助是有限的且可能无法授予所有符合条件的申请者。" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "" +"In order to be eligible for edX Financial Assistance, you must demonstrate " +"that paying the Verified Certificate fee would cause you economic hardship. " +"To apply, you will be asked to answer a few questions about why you are " +"applying and how the Verified Certificate will benefit you." +msgstr "" +"要符合 edX " +"经济援助的资格条件,您必须证明支付验证证书费用会导致您经济困难。为了进行申请,您可能会被要求回答一些关于您为何申请验证证书以及验证证书会给您带来哪些好处的问题。" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "" +"If your application is approved, we'll give you instructions for verifying " +"your identity on edx.org so you can start working toward completing your edX" +" course." +msgstr "如果您的申请被批准,我们将为您提供在 edx.org 上验证您的身份的相关说明,以便您可以开始着手完成您的 edX 课程。" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "" +"EdX is committed to making it possible for you to take high quality courses " +"from leading institutions regardless of your financial situation, earn a " +"Verified Certificate, and share your success with others." +msgstr "无论您的经济状况如何,EdX 都致力于让您从各领先机构获得高质量的课程,让您获得验证证书并与他人分享您的成功。" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Sincerely, Anant" +msgstr "Anant 谨上" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Back to Student FAQs" +msgstr "返回至学生常见问题解答" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Apply for Financial Assistance" +msgstr "申请经济资助" + +#: lms/templates/header/brand.html +#: lms/templates/header/navbar-logo-header.html +#: lms/templates/navigation/navbar-logo-header.html +#: lms/templates/navigation/bootstrap/navbar-logo-header.html +#: themes/elitemba-theme/lms/templates/header/navbar-logo-header.html +msgid "{platform_name} Home Page" +msgstr "{platform_name} 主页" + +#: lms/templates/header/header.html lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Options Menu" +msgstr "选项栏" + +#: lms/templates/header/header.html lms/templates/navigation/navigation.html +msgid "" +"{begin_strong}Warning:{end_strong} Your browser is not fully supported. We " +"strongly recommend using {chrome_link} or {ff_link}." +msgstr "" +"{begin_strong}警告:{end_strong}并不完全支持您的浏览器。我们强烈推荐使用 {chrome_link} 或 {ff_link}。" + +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/learner_dashboard/programs.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Programs" +msgstr "系列" + +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Journals" +msgstr "文章" + +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/header/user_dropdown.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Profile" +msgstr "用户资料" + +#: lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Discover New" +msgstr "发现课程" + +#. Translators: This is short for "System administration". +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Sysadmin" +msgstr "系统管理员" + +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: lms/templates/shoppingcart/shopping_cart.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Shopping Cart" +msgstr "购物车" + +#: lms/templates/header/navbar-not-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Supplemental Links" +msgstr "补充内容链接" + +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "How it Works" +msgstr "运行机制" + +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Schools" +msgstr "学校" + +#: lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Resume your last course" +msgstr "继续上门课程学习" + +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Add Coupon Code" +msgstr "添加优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +msgid "Enter information about the coupon code below." +msgstr "在下面输入优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +msgid "Discount Percentage" +msgstr "折扣率" + +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +msgid "Add expiration date" +msgstr "添加过期时间" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Example Certificates" +msgstr "示例证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Generate example certificates for the course." +msgstr "为课程生成示例证书。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Generate Example Certificates" +msgstr "生成示例证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Status:" +msgstr "状态:" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Generating example {name} certificate" +msgstr "生成示例 {name} 证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Error generating example {name} certificate: {error}" +msgstr "生成证书{name}示例出错了:{error}" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "View {name} certificate" +msgstr "查看{name}证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Refresh Status" +msgstr "刷新状态" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Student-Generated Certificates" +msgstr "学生生成证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Disable Student-Generated Certificates" +msgstr "禁止学生生成证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Enable Student-Generated Certificates" +msgstr "允许学生发行的证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"You must successfully generate example certificates before you enable " +"student-generated certificates." +msgstr "前您必须成功地生成示例证书使学生证书。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Generate Certificates" +msgstr "生成证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"Course certificate generation requires an activated web certificate " +"configuration." +msgstr "课程证书生成操作要求有一个已激活的网络证书配置。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"When you are ready to generate certificates for your course, click Generate " +"Certificates. You do not need to do this if you have set the certificate " +"mode to on-demand generation." +msgstr "当您准备好为您的课程生成证书时,请单击“生成证书”。如果您已将证书模式设置为按需生成,则无需进行此操作。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Pending Tasks" +msgstr "待处理的任务" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "The status for any active tasks appears in a table below." +msgstr "下表显示所有活动任务的状态。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate Certificates" +msgstr "重新生成证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"To regenerate certificates for your course, choose the learners who will " +"receive regenerated certificates and click Regenerate Certificates." +msgstr "要重新生成您的课程证书,请选择将要接收重新生成证书的学员并单击“重新生成证书”。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Choose learner types for regeneration" +msgstr "选择要学习者类型以进行重新生成" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"Regenerate for learners who have already received certificates. ({count})" +msgstr "为已获得证书的学员重新生成。({count})" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate for learners who have not received certificates. ({count})" +msgstr "为未获得证书的学员重新生成。({count})" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate for learners with audit passing state. ({count})" +msgstr "给课程旁听及格的学员重新生成证书。({count})" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate for learners with audit not passing state. ({count})" +msgstr "给课程旁听不及格的学员重新生成证书。({count})" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate for learners in an error state. ({count})" +msgstr "为错误状态的学员重新生成。({count})" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Certificate Generation History" +msgstr "证书生成历史" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Task name" +msgstr "任务名称" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "SET CERTIFICATE EXCEPTIONS" +msgstr "设置证书特殊处理" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"Set exceptions to generate certificates for learners who did not qualify for" +" a certificate but have been given an exception by the course team. After " +"you add learners to the exception list, click Generate Exception " +"Certificates below." +msgstr "为无资格获得证书但获得课程组例外批准的学员设置生成证书的特殊处理。在您将学员添加至特殊处理列表后,请单击以下“生成特例证书”。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Invalidate Certificates" +msgstr "无效证书" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Enrollment Information" +msgstr "选课信息" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Number of enrollees (admins, staff, and students) by track" +msgstr "总参与人数(包括管理员、员工和学生)" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Basic Course Information" +msgstr "基本课程信息" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Name:" +msgstr "课程名称:" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Start Date:" +msgstr "课程开始日期:" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course End Date:" +msgstr "课程结束日期:" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No end date set" +msgstr "未设置结束日期" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course started?" +msgstr "课程开始了吗?" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Yes" +msgstr "是的" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No" +msgstr "尚未" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course ended?" +msgstr "课程结束了吗?" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Number of sections:" +msgstr "章节数量:" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Grade Cutoffs:" +msgstr "分数线:" + +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "" +"View detailed Git import logs for this course {link_start}by clicking " +"here{link_end}." +msgstr "查看本课程的详细Git导入日志,请点击{link_start}这里{link_end}。" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Warnings" +msgstr "课程警告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." +msgstr "" +"点击显示该课程的评分配置。所谓评分配置是指对课程评分子项的分解(可以分解为考试和回答问题两类),评分配置可以在职员界面的‘设置’项下个‘评分’进行调整。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Grading Configuration" +msgstr "评分标准设置" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Click to download a CSV of anonymized student IDs:" +msgstr "点击下载匿名学生的CSV(逗号分隔值的文本)编号清单:" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Get Student Anonymized IDs CSV" +msgstr "获取学生匿名ID CSV文件" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Reports" +msgstr "报告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"For large courses, generating some reports can take several hours. When " +"report generation is complete, a link that includes the date and time of " +"generation appears in the table below. These reports are generated in the " +"background, meaning it is OK to navigate away from this page while your " +"report is generating." +msgstr "" +"对于大型课程,生成报告可能需要几个小时。当报告生成完成后,在下面的表格里会出现一个包含生成日期和时间的链接。这些报告会在后台生成,也就是说在生成报告的时候您可以离开当前页面。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Please be patient and do not click these buttons multiple times. Clicking " +"these buttons multiple times will significantly slow the generation process." +msgstr "请耐心等待,不要多次单击这些按钮。多次点击这些按钮将大大减缓生成过程。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" +msgstr "点击来生成一个CSV文件,里面包含所有选此课的学生的用户信息,比如电子邮件及用户名:" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Download profile information as a CSV" +msgstr "以CSV格式下载用户资料" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to generate a CSV file that lists learners who can enroll in the " +"course but have not yet done so." +msgstr "点击生成一个CSV文件,列出有资格选修此课但还未选修的学生。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Download a CSV of learners who can enroll" +msgstr "下载一个列出有资格选修的学生名单的CSV文件" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to generate a CSV file of all proctored exam results in this course." +msgstr "点击导出包含这门课程所有考试结果的CSV格式的文件" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Proctored Exam Results Report" +msgstr "生成监考考试成绩报告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Click to generate a CSV file of survey results for this course." +msgstr "点击导出包含这门课程所有调查结果的 CSV 文件" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Survey Results Report" +msgstr "生成调查结果报告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Select a problem to generate a CSV file that lists all student answers to " +"the problem. You also select a section or chapter to include results of all " +"problems in that section or chapter." +msgstr "生成列有所有学员对某个题目的作答的CSV文件,您也可以选择章节以将所有题目作答结果包含在文件内。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "NOTE" +msgstr "注意" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The generated report is limited to {max_entries} responses. If you expect " +"more than {max_entries} responses, try generating the report on a chapter-" +"by-chapter, or problem-by-problem basis, or contact your site administrator " +"to increase the limit." +msgstr "" +"生成的报告包含不得超过{max_entries}个回答。如果您希望包含超过{max_entries}个回答,请以章或问题为单位来生成报告,或者联系您的网站管理员来修改限制数量。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Download a CSV of problem responses" +msgstr "下载包含问题答案的CSV文件" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Click to list certificates that are issued for this course:" +msgstr "单击列出为此课程颁发的证书:" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "View Certificates Issued" +msgstr "查看已颁发证书" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Download CSV of Certificates Issued" +msgstr "下载已颁发证书的 CSV" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"For smaller courses, click to list profile information for enrolled students" +" directly on this page:" +msgstr "对于学员规模较小的课程,可以直接在此页面点击查看选课学生的用户资料信息:" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "List enrolled students' profile information" +msgstr "列出选课学生个人资料信息" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to generate a CSV grade report for all currently enrolled students." +msgstr "点击导出包含当前所有选修学生的成绩报告的CSV文件。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Grade Report" +msgstr "生成成绩报告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Problem Grade Report" +msgstr "生成问题得分报告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate ORA Data Report" +msgstr "生成 ORA 数据报告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports Available for Download" +msgstr "报告已可供下载" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The reports listed below are available for download. A link to every report " +"remains available on this page, identified by the UTC date and time of " +"generation. Reports are not deleted, so you will always be able to access " +"previously generated reports from this page." +msgstr "" +"您可以下载以下列出的报告。每一份报告由生成的UTC日期和时间来标识,它们的链接将保留在本页面。报告不会被删除,所以您总是可以从本页访问以前生成的报告。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." +msgstr "下面所列的作答分布报告由后台程序定期自动生成。报告是累计式的,后台处理程序启动后提交的作答将在后续的报告中体现。报告每天生成多次。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" +" or email these links for direct access. Copies of links expire within 5 " +"minutes." +msgstr "" +"{strong_start}注{strong_end}:为了确保学生数据的安全性,您无法保存或者用邮件发送这些有直接访问权的链接。复制的链接将在5分钟后失效。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enrollment Codes" +msgstr "选课码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Create one or more pre-paid course enrollment codes. Students can use these " +"codes to enroll in the course." +msgstr "创建一个或者多个课程的预付费选课码。学生可以使用这些选课码选修该课程。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "生成选课码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Cancel, restore, or mark an enrollment code as unused." +msgstr "取消、恢复或将一个选课码标记为未使用。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Change Enrollment Code Status" +msgstr "改变选课码状态" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download a .csv file of all enrollment codes for this course." +msgstr "下载一个包含本课所有选课码的.csv文件" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download All Enrollment Codes" +msgstr "下载所有选课码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download a .csv file of all unused enrollment codes for this course." +msgstr "下载一个包含本课中所有未使用选课码的.csv文件。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download Unused Enrollment Codes" +msgstr "下载未使用的选课码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download a .csv file of all used enrollment codes for this course." +msgstr "下载一个包含本课中所有使用过的选课码的.csv文件。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download Used Enrollment Codes" +msgstr "下载使用过的选课码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "课程价格" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Course price per seat: " +msgstr "每位学生需付的课程价格:" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Edit Price" +msgstr "编辑价格" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Course Seat Purchases" +msgstr "购买课程" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Total Credit Card Purchases: " +msgstr "所有的信用卡订单:" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Download a .csv file for all credit card purchases or for all invoices, " +"regardless of status." +msgstr "下载一个包含所有信用卡消费记录或所有收据的.csv文件。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download All Invoices" +msgstr "下载所有收据" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download All Credit Card Purchases" +msgstr "下载所有信用卡消费记录" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "To cancel or resubmit an invoice, enter the invoice number below." +msgstr "要取消或者重新提交一张收据,请在下面输入收据号码。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Invoice Number" +msgstr "收据单号" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Cancel Invoice" +msgstr "取消收据" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Resubmit Invoice" +msgstr "重新提交收据" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Create a .csv file that contains enrollment information for your course." +msgstr "创建一个包含您的课程的选修信息的.csv文件" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Create Enrollment Report" +msgstr "生成选课报告" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Create an HTML file that contains an executive summary for this course." +msgstr "创建一个包含这门课程执行摘要的HTML文件" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Create Executive Summary" +msgstr "创建执行摘要" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Available Reports" +msgstr "可用报告" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"The following reports are available for download. Reports are not deleted. A" +" link to every report remains available on this page, identified by the date" +" and time (in UTC) that the report was generated." +msgstr "您可以下载以下列出的报告。每一份报告由生成的日期和时间(UTC)来标识,它们的链接将保留在本页面。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"{strong_start}Note{strong_end}: To help protect learner data, links to these" +" reports that you save outside of this page or that you send or receive in " +"email expire after five minutes." +msgstr "" +"{strong_start}注{strong_end}:为了确保学生数据的安全性,您在本页外保存的报告链接或者您通过电子邮件发送或收到的报告链接将在5分钟后失效。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Coupon Code List" +msgstr "优惠券代码列表" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download a .csv file of all coupon codes for this course." +msgstr "下载一个包含所有这门课的优惠券代码的.csv文件。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download Coupon Codes" +msgstr "下载优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Coupon Codes" +msgstr "优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Coupon (%)" +msgstr "优惠券(%)" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Number Redeemed" +msgstr "兑换数量" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "{code}" +msgstr "{code}" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "{description}" +msgstr "{description}" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "{discount}" +msgstr "{discount}" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The Invoice Number field cannot be empty." +msgstr "发票号码字段不能为空。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "No Expiration Date" +msgstr "无截止日期" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the company name." +msgstr "输入公司名字" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The company name cannot be a number." +msgstr "公司名不能为数字" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the company contact name." +msgstr "输入公司联系人名字" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The company contact name cannot be a number." +msgstr "公司联系人名字不能为数字" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the email address for the company contact." +msgstr "输入公司联系人的电子邮件地址。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter a valid email address." +msgstr "输入一个有效的电子邮件地址" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the recipient name." +msgstr "输入收件人名字" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The recipient name cannot be a number." +msgstr "收件人名字不能为数字" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the recipient email address." +msgstr "输入收件人电子邮件地址" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the billing address." +msgstr "输入账单地址" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the price per course seat." +msgstr "输入每个学位的价格" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Enter a numeric value for the price per course seat. Do not include currency" +" symbols." +msgstr "为每一个课程座席价格输入一个数值。请不要输入货币符号。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the number of enrollment codes." +msgstr "输入选课码的数量" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter a numeric value for the number of enrollment codes." +msgstr "输入选课码的数量值。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Select a currency." +msgstr "选择一种货币。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter a coupon code." +msgstr "输入一个优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The discount percentage must be less than or equal to 100." +msgstr "折扣百分比必须小于或等于100。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Enter a numeric value for the discount amount. Do not include the percent " +"sign." +msgstr "输入一个折扣的数量值。请不要输入百分符号。" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Edit Coupon Code" +msgstr "编辑优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Edit Coupon Code Information" +msgstr "编辑优惠券代码信息" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Code" +msgstr "代码" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "example: A123DS" +msgstr "例如: A123DS" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Percentage Discount" +msgstr "折扣率" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Update Coupon Code" +msgstr "更新优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Executive Summary for {display_name}" +msgstr " {display_name} 执行摘要" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Report Creation Date" +msgstr "报告创建日期" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of Seats" +msgstr "座席数量" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of Enrollments" +msgstr "选课人数" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Gross Revenue Collected" +msgstr "进账总收入" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Gross Revenue Pending" +msgstr "待处理总收入" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of Enrollment Refunds" +msgstr "课程退款数" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Amount Refunded" +msgstr "退还金额" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Average Price per Seat" +msgstr "每个座席的平均价格" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Frequently Used Coupon Codes" +msgstr "经常使用的优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of seats purchased using coupon codes" +msgstr "使用优惠券代码购买的座席数" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Rank" +msgstr "排名" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Percent Discount" +msgstr "折扣率" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Times Used" +msgstr "已用时间" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Bulk and Single Seat Purchases" +msgstr "大批和单座采购" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of seats purchased individually" +msgstr "单独购买的座位数" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of seats purchased in bulk" +msgstr "批量购买的座位数" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of seats purchased with invoices" +msgstr "带发票的购买座位数" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Unused bulk purchase seats (revenue at risk)" +msgstr "未使用批量购买席位(收入有风险)" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Percentage of seats purchased individually" +msgstr "单座购买数量所占比例" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Percentage of seats purchased in bulk" +msgstr "批量购买座位数目所占比例" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Percentage of seats purchased with invoices" +msgstr "带发票购买座位数目所占比例" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Individual due date extensions" +msgstr "延长个别截止日期" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"In this section, you have the ability to grant extensions on specific units " +"to individual students. Please note that the latest date is always taken; " +"you cannot use this tool to make an assignment due earlier for a particular " +"student." +msgstr "在这个部分,您可以在特定单元里给特定的学生延长截止日期。请注意,您不能选择最近的一日;您不能使用这个工具让某个学生的作业截止日期提早。" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the {platform_name} email address or username of a student here:" +msgstr "在这可以查看{platform_name}的邮件地址以及学生的用户名:" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Student Email or Username" +msgstr "学生e-mail或者用户名" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Choose the graded unit:" +msgstr "请选择评分单元" + +#. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the +#. format the system requires. +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the extension due date and time (in UTC; please specify " +"{format_string})." +msgstr "请输入新的截止日期和时间(UTC 时间,请以 {format_string} 格式输入)。" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Change due date for student" +msgstr "修改学生的截止日期" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Viewing granted extensions" +msgstr "查看已授权的宽限期" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Here you can see what extensions have been granted on particular units or " +"for a particular student." +msgstr "这里您可以查看已经授权给特别学生或者特殊单元的宽限期" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Choose a graded unit and click the button to obtain a list of all students " +"who have extensions for the given unit." +msgstr "请选择一个评分单元,单击获得当前单元中获得宽限期的学生列表" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List all students with due date extensions" +msgstr "列出所有获得宽限期的学生" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Specify a student to see all of that student's extensions." +msgstr "指定一个学生来查看该学生获得的所有宽限期。" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List date extensions for student" +msgstr "为学生列出宽限期" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Resetting extensions" +msgstr "重设宽限期" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Resetting a problem's due date rescinds a due date extension for a student " +"on a particular unit. This will revert the due date for the student back to " +"the problem's original due date." +msgstr "重设一个问题的截止日期,将取消学生在指定单元上的宽限期,使学生的截止日期还原为问题的原始截止日期。" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reset due date for student" +msgstr "重置学生的截止日期" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Generate Registration Code Modal" +msgstr "生成形态上的注册码" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "* Required Information" +msgstr "* 必填信息" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The organization that purchased enrollments in the course" +msgstr "购买了本课程的机构" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/shoppingcart/billing_details.html +msgid "Organization Contact" +msgstr "机构联系人" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Organization Contact Name" +msgstr "机构联系人姓名" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The primary contact at the organization" +msgstr "机构中的主要联系人" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Invoice Recipient" +msgstr "收据接受者" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The contact who should receive the invoice" +msgstr "接收收据的联系人信息" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Organization Billing Address" +msgstr "机构账单地址" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Address Line 1" +msgstr "地址行1" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Address Line 2" +msgstr "地址行2" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Address Line 3" +msgstr "地址行3" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "State/Province" +msgstr "州/省" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Zip" +msgstr "邮编" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Unit Price" +msgstr "单价" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The price per enrollment purchased" +msgstr "单人选课价格" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Number of Enrollment Codes" +msgstr "选课码数量" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The total number of enrollment codes to create" +msgstr "待创建的选课码总数" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Course Team Internal Reference" +msgstr "课程团队内部参考" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Internal reference information for the sale" +msgstr "内部销售参考信息" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Customer Reference" +msgstr "客户参考" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Customer's purchase order or other reference information" +msgstr "客户的订单或其他参考信息" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Send me a copy of the invoice" +msgstr "请给我一张收据复印件" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html +msgid "" +"For analytics about your course, go to " +"{link_start}{analytics_dashboard_name}{link_end}." +msgstr "关于您的课程的分析数据,请进入 {link_start}{analytics_dashboard_name}{link_end}。" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Instructor Dashboard" +msgstr "教师面板" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" +msgstr "在Studio中查看课程" + +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +msgid "Enrollment Code Status" +msgstr "选课码状态" + +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +msgid "Change the status of an enrollment code." +msgstr "改变选课码的状态" + +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +#: lms/templates/shoppingcart/receipt.html +msgid "Enrollment Code" +msgstr "选课码" + +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +msgid "Find Enrollment Code" +msgstr "搜索选课码" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." +msgstr "输入电子邮箱地址与/或 用户名,以逗号分割或重启一行。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"You will not get notification for emails that bounce, so please double-check" +" spelling." +msgstr "对该类问题您不会受到提示邮件,因此请仔细检查,确保拼写无误。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Role of the users being enrolled." +msgstr "用户报名的角色。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter the reason why the students are to be manually enrolled or unenrolled." +msgstr "输入学生需被手动加入选课或手动取消选课的原因。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"This cannot be left blank and will be recorded and presented in Enrollment " +"Reports." +msgstr "此处不能为空,将被记录并呈现在选课报告中。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Therefore, please give enough detail to account for this action." +msgstr "因此,请提供足够的信息来解释这个操作。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/support/feature_based_enrollments.html +msgid "Reason" +msgstr "原因" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Register/Enroll Students" +msgstr "注册/录取学生" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"To register and enroll a list of users in this course, choose a CSV file " +"that contains the following columns in this exact order: email, username, " +"name, and country. Please include one student per row and do not include any" +" headers, footers, or blank lines." +msgstr "" +"如果想在这门课程中批量注册并录取学生,请选择一个CSV文件,包含E-" +"mail、用户名、姓名和国家(严格按照此顺序)。每行包含一个学生,请不要添加任何页眉、页脚以及空行。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Upload a CSV for bulk enrollment" +msgstr "为批量注册上传一个CSV文件" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Upload CSV" +msgstr "上传CSV" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Beta Tester Addition" +msgstr "批量添加Beta测试员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Note: Users must have an activated {platform_name} account before they can " +"be enrolled as beta testers." +msgstr "注:用户必须首先拥有已激活的{platform_name}账号方可成为Beta测试员。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is {em_start}checked{em_end}, users who have not enrolled in " +"your course will be automatically enrolled." +msgstr "如果{em_start}勾选{em_end}此项,那么已报名您课程的用户将会自动报名。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "如果“删除Beta测试员”被选中,勾选本项并无效果。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add beta testers" +msgstr "添加beta测试人员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Remove beta testers" +msgstr "删除beta测试人员" + +#. Translators: an "Administration List" is a list, such as Course Staff, that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Course Team Management" +msgstr "课程团队管理" + +#. Translators: an "Administrator Group" is a group, such as Course Staff, +#. that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Select a course team role:" +msgstr "选择一个课程团队角色:" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Getting available lists..." +msgstr "正在获取可用列表……" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Staff cannot modify these lists. To manage course team membership, a course " +"Admin must give you the Admin role to add Staff or Beta Testers, or the " +"Discussion Admin role to add discussion moderators and TAs." +msgstr "" +"工作人员无法修改这些列表。若想管理课程团队成员,课程管理员必须授予您管理员角色来添加工作人员和Beta测试员,或者给予您论坛管理员角色来添加讨论区版主和助教。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course team members with the Staff role help you manage your course. Staff " +"can enroll and unenroll learners, as well as modify their grades and access " +"all course data. Staff also have access to your course in Studio and " +"Insights. You can only give course team roles to enrolled users." +msgstr "" +"拥有工作人员权限的课程团队成员帮助您管理您的课程。工作人员可以帮您录取或移除学生,修改成绩和访问所有课程数据。工作人员也可以在Studio和Insights中访问您的课程。您只能授予已选课的用户课程团队成员职责。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Staff" +msgstr "添加工作人员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Admin" +msgstr "管理员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course team members with the Admin role help you manage your course. They " +"can do all of the tasks that Staff can do, and can also add and remove the " +"Staff and Admin roles, discussion moderation roles, and the beta tester role" +" to manage course team membership. You can only give course team roles to " +"enrolled users." +msgstr "" +"拥有管理员权限的课程团队成员帮助您管理您的课程。他们能做所有工作人员可以做的任务,并且添加和移除工作人员、管理员和论坛版主。您只能将课程团队成员职责授予已选课的用户。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Admin" +msgstr "添加管理员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Beta Testers" +msgstr "Beta测试者" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Beta Testers can see course content before other learners. They can make " +"sure that the content works, but have no additional privileges. You can only" +" give course team roles to enrolled users." +msgstr "Beta测试者可以比其他学生先看到课程内容。他们可以确保内容正常运行,但没有额外特权。您只能将课程团队角色授予已选课的用户。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Beta Tester" +msgstr "添加beta测试人员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Admins" +msgstr "论坛管理员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion Admins can edit or delete any post, clear misuse flags, close and" +" re-open threads, endorse responses, and see posts from all groups. Their " +"posts are marked as 'staff'. They can also add and remove the discussion " +"moderation roles to manage course team membership. Only enrolled users can " +"be added as Discussion Admins." +msgstr "" +"讨论区管理员可编辑或删除任何帖子、清除误用标记、关闭并重开帖子、赞同回复、并查看所有分组的帖子。他们的帖子带有“员工”标记,他们也可以添加并移除讨论区版主角色,以此管理课程团队的成员。仅已报名用户可被设置为讨论区管理员。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Discussion Admin" +msgstr "添加论坛管理员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Moderators" +msgstr "版主" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion Moderators can edit or delete any post, clear misuse flags, close" +" and re-open threads, endorse responses, and see posts from all groups. " +"Their posts are marked as 'staff'. They cannot manage course team membership" +" by adding or removing discussion moderation roles. Only enrolled users can " +"be added as Discussion Moderators." +msgstr "" +"讨论区版主可编辑或删除任何帖子、清除误用标记、关闭并重开帖子、赞同回复、并查看所有分组的帖子,他们的帖子都被标记为“工作人员”。他们不能够通过添加或删除讨论区版主角色来管理课程团队成员。仅已报名学员可被设置为讨论区版主。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Moderator" +msgstr "添加版主" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Group Community TA" +msgstr "分组社区助教" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Group Community TAs are members of the community who help course teams " +"moderate discussions. Group Community TAs see only posts by learners in " +"their assigned group. They can edit or delete posts, clear flags, close and " +"re-open threads, and endorse responses, but only for posts by learners in " +"their group. Their posts are marked as 'Community TA'. Only enrolled " +"learners can be added as Group Community TAs." +msgstr "" +"分组社区助教帮助社区中课程团队维护讨论。分组社区助教只能查看他们所分配组的学员的帖子。他们可对自己分组中学员所发的帖子,进行编辑或删除帖子、清除标记、关闭并重新打开主题、批准回复。他们的帖子被标记为“社区助教”,仅已报名学员可被设为分组社区助教。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Group Community TA" +msgstr "添加分组社区助教" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Community TAs are members of the community who help course teams moderate " +"discussions. They can see posts by learners in their assigned cohort or " +"enrollment track, and can edit or delete posts, clear flags, close or re-" +"open threads, and endorse responses. Their posts are marked as 'Community " +"TA'. Only enrolled learners can be added as Community TAs." +msgstr "" +"分组社区助教帮助社区中课程团队管理讨论。分组社区助教只能查看他们所分配组的学员的帖子。他们可对自己分组中学员所发的帖子,进行编辑或删除帖子、清除标记、关闭并重新打开主题、批准回复。他们的帖子被标记为“社区助教”,仅已报名学员可被设为分组社区助教。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Community TA" +msgstr "添加社区助教" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "CCX Coaches" +msgstr "CCX指导" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"CCX Coaches are able to create their own Custom Courses based on this " +"course, which they can use to provide personalized instruction to their own " +"students based in this course material." +msgstr "CCX指导可以根据本课程创建自己的定制课程,利用本课程的资料给自己的学生提供个性化指导。 " + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add CCX Coach" +msgstr "增加CCX指导" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There is no data available to display at this time." +msgstr "目前没有可用的数据" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Use Reload Graphs to refresh the graphs." +msgstr "使用重新加载图片来刷新" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Reload Graphs" +msgstr "重新载入图片" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Subsection Data" +msgstr "小节数据" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Each bar shows the number of students that opened the subsection." +msgstr "每个条形图显示了打开小节的学生数量" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"You can click on any of the bars to list the students that opened the " +"subsection." +msgstr "您可以点击任一栏目去查看打开小节的学生名单" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "You can also download this data as a CSV file." +msgstr "您也可以以CSV文件下载这些数据" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Subsection Data for all Subsections as a CSV" +msgstr "所有的小节数据以CSV文件下载" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution Data" +msgstr "成绩分布数据" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Each bar shows the grade distribution for that problem." +msgstr "每个条形图显示该问题的成绩分布区间" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"You can click on any of the bars to list the students that attempted the " +"problem, along with the grades they received." +msgstr "您可以点击任一每个条形图去查看所有尝试回答问题的学生名单以及他们获得的成绩" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Problem Data for all Problems as a CSV" +msgstr "以CSV文件下载所有问题数据" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution per Problem" +msgstr "每个问题的成绩分布" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "以CSV格式下载学生开放数据" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "以CSV格式下载被评分的学生信息" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "这是一个部分列表,查看所有以CSV格式下载的学生信息" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There are no problems in this section." +msgstr "本章没有问题" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send to:" +msgstr "发至:" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Myself" +msgstr "我自己" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Staff and Administrators" +msgstr "工作人员和管理员" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "All Learners" +msgstr "所有学习者" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Cohort: " +msgstr "群组:" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Learners not explicitly assigned to a cohort)" +msgstr "(没有被分到特定群组的学生)" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Learners in the {track_name} Track" +msgstr "在{track_name}里的学员跟踪" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Subject: " +msgstr "主题:" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Maximum 128 characters)" +msgstr "(最多128个字符)" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Message:" +msgstr "消息:" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"We recommend sending learners no more than one email message per week. " +"Before you send your email, review the text carefully and send it to " +"yourself first, so that you can preview the formatting and make sure " +"embedded images and links work correctly." +msgstr "我们建议您给学生发送邮件不多于一周一封。在您发送之前,仔细地检查文本,并先发送给自己,预览邮件格式,确保嵌入的图片和链接显示或运行正常。" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "CAUTION!" +msgstr "注意!" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"When you select Send Email, your email message is added to the queue for " +"sending, and cannot be cancelled." +msgstr "当您选择“发送邮件”,您的邮件将被加入发送队列,任务无法被取消。" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send Email" +msgstr "发送邮件" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Email actions run in the background. The status for any active tasks - " +"including email tasks - appears in a table below." +msgstr "电子邮件操作在后台执行。任何当前正在执行的任务状态 - 包括电子邮件任务 - 都在下表中列出。" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Email Task History" +msgstr "邮件任务历史" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "To see the content of previously sent emails, click this button:" +msgstr "查看之前发送的邮件内容,点击这个按钮:" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Sent Email History" +msgstr "显示已发送邮件历史" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "To read a sent email message, click its subject." +msgstr "阅读已发送的邮件,点击它的主题。" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"To see the status for all email tasks submitted for this course, click this " +"button:" +msgstr "查看这个课程中所有提交的邮件任务,点击这个按钮:" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Email Task History" +msgstr "显示邮件任务历史" + +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Set Course Mode Price" +msgstr "设置课程模式价格" + +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Please enter Course Mode detail below" +msgstr "请在下面输入课程模式详情" + +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Set Price" +msgstr "设置价格" + +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Allowance Section" +msgstr "默认章节" + +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Student Special Exam Attempts" +msgstr "学生特殊考试尝试" + +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Review Dashboard" +msgstr "查看面板" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View gradebook for enrolled learners" +msgstr "查看注册学员成绩单" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Note: This feature is available only to courses with a small number of " +"enrolled learners." +msgstr "注意:此功能仅在少学员报名的课程中可用。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View Gradebook" +msgstr "查看成绩单" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View a specific learner's enrollment status" +msgstr "查看特定员的选课状态" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Learner's {platform_name} email address or username *" +msgstr "学员的{platform_name}邮箱地址或用户名*" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Learner email address or username" +msgstr "学员邮箱地址或用户名" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View Enrollment Status" +msgstr "查课选课状态" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View a specific learner's grades and progress" +msgstr "阅览个别学生的评分和进度" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Learner's {platform_name} email address or username" +msgstr "学员的{platform_name}邮箱地址或用户名" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View Progress Page" +msgstr "阅览学生进度页面" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Adjust a learner's grade for a specific problem" +msgstr "调整学员在特定题目的得分" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Location of problem in course" +msgstr "题目在课程中的位置" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Example" +msgstr "例子" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem location" +msgstr "问题所在位置" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Attempts" +msgstr "尝试次数" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Allow a learner who has used up all attempts to work on the problem again." +msgstr "允许使用完所有尝试次数的学员继续完成此题目。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset Attempts to Zero" +msgstr "重置学生的尝试次数为零" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore" +msgstr "重新评分" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"For the specified problem, rescore the learner's responses. The 'Rescore " +"Only If Score Improves' option updates the learner's score only if it " +"improves in the learner's favor." +msgstr "调整学员在特定题目的得分,“以高分为准”选项只会在学员得分提高时更改成最高的得分。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Score Override" +msgstr "覆盖分数" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "For the specified problem, override the learner's score." +msgstr "重新评分学员在某个题目的分数。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"New score for problem, out of the total points available for the problem" +msgstr "题目的新分数,不可超过总分。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Override Learner's Score" +msgstr "覆盖学员分数" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem History" +msgstr "问题记录" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"For the specified problem, permanently and completely delete the learner's " +"answers and scores from the database." +msgstr "将学员某一问题的答案和得分从数据库中永久且完全地删除。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Task Status" +msgstr "任务状态" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Show the status for the rescoring tasks that you submitted for this learner " +"and problem." +msgstr "显示您提交的此学员和题目的调整分数任务状态。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Task Status" +msgstr "显示任务状态" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Adjust a learner's entrance exam results" +msgstr "调整一位学员入学考试结果" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Allow the learner to take the exam again." +msgstr "允许学员重考。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Allow Skip" +msgstr "允许跳过" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Waive the requirement for the learner to take the exam." +msgstr "移除学员考试的要求。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Let Learner Skip Entrance Exam" +msgstr "允许学员跳过入学考试" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescore any responses that have been submitted. The 'Rescore All Problems " +"Only If Score Improves' option updates the learner's scores only if it " +"improves in the learner's favor." +msgstr "调整所有已提交的回答。“调整至更高分”选项只会在学员得分提高时更改显示分数。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore All Problems" +msgstr "为所有问题重新打分" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore All Problems Only If Score Improves" +msgstr "如果评分提高, 重新打分所有问题" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Entrance Exam History" +msgstr "入学考试历史记录" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"For the entire entrance exam, permanently and completely delete the " +"learner's answers and scores from the database." +msgstr "将学员整个入学考试从数据库中永久且完全地删除。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Show the status for the rescoring tasks that you submitted for this learner " +"and entrance exam." +msgstr "显示您提交的此学员和入学考试的调整分数任务状态。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Adjust all enrolled learners' grades for a specific problem" +msgstr "调整所有已报名学员在特定题目的得分" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Allows all learners to work on the problem again." +msgstr "允许所有学生再次回答问题" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescore submitted responses. The 'Rescore Only If Scores Improve' option " +"updates a learner's score only if it improves in the learner's favor." +msgstr "调整已提交的题目回答得分,“调整至更高分”选项只会在学员得分提高时更改成最高的得分。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore All Learners' Submissions" +msgstr "对所有学生的提交记录重新评分" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Only If Scores Improve" +msgstr "仅提高分数时重新评分" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show the status for the tasks that you submitted for this problem." +msgstr "显示此题目您已提交的任务状态。" + +#: lms/templates/learner_dashboard/_dashboard_navigation_courses.html +#: themes/edx.org/lms/templates/dashboard.html +msgid "My Courses" +msgstr "我的课程" + +#: lms/templates/learner_dashboard/_dashboard_navigation_journals.html +msgid "My Journals" +msgstr "我的文章" + +#: lms/templates/learner_dashboard/program_details.html +msgid "Program Details" +msgstr "系列详情" + +#: lms/templates/learner_dashboard/text-me-fragment.html +msgid "Get the {platform_name} Mobile App!" +msgstr "下载{platform_name}移动App! " + +#: lms/templates/learner_dashboard/text-me-fragment.html +msgid "We'll send you a one time SMS with a link to download the app." +msgstr "我们会给您发送短信,请点击短信中链接下载App。" + +#: lms/templates/learner_dashboard/text-me-fragment.html +msgid "Mobile phone number" +msgstr "电话号码" + +#: lms/templates/learner_dashboard/text-me-fragment.html +msgid "Send me a text with the link" +msgstr "发送带链接的短信给我" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Change Preferred Language" +msgstr "更改常用语言" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Please choose your preferred language" +msgstr "请选择您偏好的语言" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Save Language Settings" +msgstr "保存语言设置" + +#: lms/templates/modal/_modal-settings-language.html +msgid "" +"Don't see your preferred language? {link_start}Volunteer to become a " +"translator!{link_end}" +msgstr "没找到您的常用语言?{link_start}欢迎成为一个翻译志愿者!{link_end}" + +#: lms/templates/navigation/navbar-not-authenticated.html +#: membership/templates/membership/index.html +msgid "Explore Courses" +msgstr "发现课程" + +#: lms/templates/navigation/navigation.html +msgid "Global" +msgstr "全球" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"\n" +"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" +"{ul_tag}\n" +"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" +"{li_tag}The course team needs to score the essays that are used to help you better understand the grading\n" +"criteria.{end_li_tag}\n" +"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" +msgstr "" +"\n" +"{p_tag}您目前没有同伴互评要做。若要参与互评:\n" +"{ul_tag}\n" +"{li_tag}您需要回复一个同伴互评问题。{end_li_tag}\n" +"{li_tag}课程团队需要提供一些打分样本以帮助您更好的理解评分标准。{end_li_tag}\n" +"{li_tag}必须存在带评分的作业。{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "同伴互评" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"Here is a list of problems that need to be peer graded for this course." +msgstr "这是本课程中需要同伴互评的问题列表" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Problem Name" +msgstr "问题名称" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Due date" +msgstr "截止日期" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Graded" +msgstr "已评分" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/shoppingcart/receipt.html +msgid "Available" +msgstr "可评价" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Required" +msgstr "必要的" + +#: lms/templates/peer_grading/peer_grading.html +msgid "No due date" +msgstr "没有截止日期" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "" +"The due date has passed, and peer grading for this problem is closed at this" +" time." +msgstr "截止日期已过,这个问题的同伴互评现已关闭。" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "The due date has passed, and peer grading is closed at this time." +msgstr "截止日期已过,同伴互评现已关闭。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to Grade" +msgstr "学习如何评分" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Hide Question" +msgstr "隐藏问题" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Student Response" +msgstr "学生回复" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Written Feedback" +msgstr "书面反馈意见" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Please include some written feedback as well." +msgstr "请也给出一些书面反馈。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"This submission has explicit, offensive, or (I suspect) plagiarized content." +" " +msgstr "这个答复中包含淫秽的、有攻击性的或者(我猜测)抄袭的内容。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "How did I do?" +msgstr "我应该怎么做?" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Ready to grade!" +msgstr "已经准备好进行评分!" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You have finished learning to grade, which means that you are now ready to " +"start grading." +msgstr "您已完成了评分学习,这意味着现在您可以开始评分了。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start Grading!" +msgstr "开始评分!" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to grade" +msgstr "学习如何进行评分" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "You have not yet finished learning to grade this problem." +msgstr "您尚未完成学习如何对此问题进行评分。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You will now be shown a series of instructor-scored essays, and will be " +"asked to score them yourself." +msgstr "一系列由导师打分的文章将展示给您,您将被要求自行给它们打分。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"Once you can score the essays similarly to an instructor, you will be ready " +"to grade your peers." +msgstr "一旦您对这些文章的判分尺度接近主讲教师的水准,您就可以给同学评分了。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start learning to grade" +msgstr "开始学习如何进行评分" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Are you sure that you want to flag this submission?" +msgstr "您确定要标记这部分提交的内容吗?" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You are about to flag a submission. You should only flag a submission that " +"contains explicit, offensive, or (suspected) plagiarized content. If the " +"submission is not addressed to the question or is incorrect, you should give" +" it a score of zero and accompanying feedback instead of flagging it." +msgstr "" +"您即将标记一个意见。只有您发现内容中包括了淫秽的、有攻击性的或者(您猜测)抄袭的内容才标记一个意见。如果答案与问题不合或者不正确,您应该判为零分并给出反馈意见,而不是标记它。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Remove Flag" +msgstr "取消举报" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Keep Flag" +msgstr "维持举报" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Go Back" +msgstr "返回" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "" +"{start_strong}{application_name}{end_strong} would like to access your data " +"with the following permissions:" +msgstr "{start_strong}{application_name}{end_strong} 想要凭借以下权限访问您的数据:" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read your user ID" +msgstr "查看您的用户ID" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read your user profile" +msgstr "查看您的用户资料" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read your email address" +msgstr "查看您的邮箱地址" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read the list of courses in which you are a staff member." +msgstr "查看您是工作人员的课程列表" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read the list of courses in which you are an instructor." +msgstr "查看您是教师的课程列表" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "To see if you are a global staff user" +msgstr "查看您是否是全球工作人员" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Manage your data: {permission}" +msgstr "管理您的数据:{permission}" + +#: lms/templates/registration/account_activation_sidebar_notice.html +msgid "Account Activation Info" +msgstr "账号激活信息" + +#: lms/templates/registration/password_reset_complete.html +msgid "Your Password Reset is Complete" +msgstr "您的密码重置已完成" + +#: lms/templates/registration/password_reset_complete.html +msgid "Password Reset Complete" +msgstr "密码重置已完成" + +#: lms/templates/registration/password_reset_complete.html +msgid "" +"Your password has been reset. {start_link}Sign-in to your account.{end_link}" +msgstr "您的密码已重置。{start_link}登录您的账号{end_link}。" + +#: lms/templates/registration/password_reset_confirm.html +#: themes/elitemba-theme/lms/templates/registration/password_reset_confirm.html +msgid "Reset Your {platform_name} Password" +msgstr "重置您的 {platform_name} 密码" + +#: lms/templates/registration/password_reset_confirm.html +#: themes/elitemba-theme/lms/templates/registration/password_reset_confirm.html +msgid "Invalid Password Reset Link" +msgstr "无效的密码重置链接" + +#: lms/templates/registration/password_reset_done.html +msgid "Password reset successful" +msgstr "密码重设成功" + +#: lms/templates/registration/password_reset_done.html +msgid "" +"We've e-mailed you instructions for setting your password to the e-mail " +"address you submitted. You should be receiving it shortly." +msgstr "我们已经给您的邮箱发送邮件,您应该能够很快收到,请按照邮件里的指示设置密码。" + +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Billing Details" +msgstr "账单详情" + +#: lms/templates/shoppingcart/billing_details.html +msgid "" +"You can proceed to payment at any point in time. Any additional information " +"you provide will be included in your receipt." +msgstr "您可以在任何时间前往支付页面。您提供的任何额外信息将收录在您的收据里。" + +#: lms/templates/shoppingcart/billing_details.html +msgid "Purchasing Organizational Details" +msgstr "采购机构的详细信息" + +#: lms/templates/shoppingcart/billing_details.html +msgid "Purchasing organization" +msgstr "采购机构" + +#: lms/templates/shoppingcart/billing_details.html +msgid "Purchase order number (if any)" +msgstr "订单号(如果存在)" + +#: lms/templates/shoppingcart/billing_details.html +msgid "email@example.com" +msgstr "email@example.com" + +#: lms/templates/shoppingcart/billing_details.html +msgid "Additional Receipt Recipient" +msgstr "额外收据收件人" + +#: lms/templates/shoppingcart/billing_details.html +msgid "" +"If no additional billing details are populated the payment confirmation will" +" be sent to the user making the purchase." +msgstr "如果没有额外的账单信息,支付确认信息将发送给下订单的用户。 " + +#: lms/templates/shoppingcart/billing_details.html +msgid "Payment processing occurs on a separate secure site." +msgstr "支付过程在另一个安全的网站上完成。" + +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Your Shopping cart is currently empty." +msgstr "您的购物车目前是空的。" + +#: lms/templates/shoppingcart/cybersource_form.html +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "Payment" +msgstr "付款" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Reports" +msgstr "下载CSV报告" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Data" +msgstr "下载CSV数据" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"There was an error in your date input. It should be formatted as YYYY-MM-DD" +msgstr "您输入的日期有误。其格式应为YYYY-MM-DD" + +#: lms/templates/shoppingcart/download_report.html +msgid "These reports are delimited by start and end dates." +msgstr "这些报告按开始和结束日期分隔。" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Date: " +msgstr "开始日期:" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Date: " +msgstr "结束日期:" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"These reports are delimited alphabetically by university name. i.e., " +"generating a report with 'Start Letter' A and 'End Letter' C will generate " +"reports for all universities starting with A, B, and C." +msgstr "" +"这些报告是根据大学名字的字母划分的。例如,要生成一份“开始字母”为 A、“结束字母”为 C 的报告,就会生成包括所有名字以 A、B、C " +"开头的大学的报告。" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Letter: " +msgstr "开始字母:" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Letter: " +msgstr "结束字母:" + +#: lms/templates/shoppingcart/error.html +msgid "Payment Error" +msgstr "支付错误" + +#: lms/templates/shoppingcart/error.html +msgid "There was an error processing your order!" +msgstr "处理您的订单时出现了一个错误!" + +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your purchase!" +msgstr "感谢惠顾!" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "View Dashboard" +msgstr "查看课程面板" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"You have successfully been enrolled for {course_names}. The following " +"receipt has been emailed to {receipient_emails}" +msgstr "您已经成功注册了{course_names}。以下发票已电邮给{receipient_emails}" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"You have successfully purchased {number} course registration code for" +" {course_names}." +msgid_plural "" +"You have successfully purchased {number} course registration codes " +"for {course_names}." +msgstr[0] "您已成功购买了 {course_names} 的 {number} 个选课码。" + +#: lms/templates/shoppingcart/receipt.html +msgid "The following receipt has been emailed to {receipient_emails}" +msgstr "以下收据已通过电子邮件发送至{receipient_emails}。" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please send each professional one of these unique registration codes to " +"enroll into the course. The confirmation/receipt email you will receive has " +"an example email template with directions for the individuals enrolling." +msgstr "请将每个专业的其中一个独特的注册码注册到课程。确认/收据邮件您会收到一个电子邮件模板示例说明个人报名。" + +#: lms/templates/shoppingcart/receipt.html +msgid "Enrollment Link" +msgstr "选课链接" + +#: lms/templates/shoppingcart/receipt.html +msgid "Used" +msgstr "已使用" + +#: lms/templates/shoppingcart/receipt.html +msgid "Invalid" +msgstr "无效的" + +#: lms/templates/shoppingcart/receipt.html +msgid "Date of purchase" +msgstr "购买日期" + +#: lms/templates/shoppingcart/receipt.html +msgid "Print Receipt" +msgstr "打印单据" + +#: lms/templates/shoppingcart/receipt.html +msgid "Billed To Details" +msgstr "账单详情" + +#: lms/templates/shoppingcart/receipt.html +msgid "N/A" +msgstr "不适用" + +#: lms/templates/shoppingcart/receipt.html +msgid "Purchase Order Number" +msgstr "订单号" + +#: lms/templates/shoppingcart/receipt.html +msgid "Company Contact Name" +msgstr "公司联系人姓名" + +#: lms/templates/shoppingcart/receipt.html +msgid "Company Contact Email" +msgstr "公司联系邮箱" + +#: lms/templates/shoppingcart/receipt.html +msgid "Recipient Name" +msgstr "收件人姓名" + +#: lms/templates/shoppingcart/receipt.html +msgid "Recipient Email" +msgstr "收件人邮箱" + +#: lms/templates/shoppingcart/receipt.html +msgid "Card Type" +msgstr "卡类型" + +#: lms/templates/shoppingcart/receipt.html +msgid "Credit Card Number" +msgstr "信用卡号" + +#: lms/templates/shoppingcart/receipt.html +msgid "Address 1" +msgstr "地址1" + +#: lms/templates/shoppingcart/receipt.html +msgid "Address 2" +msgstr "地址2" + +#: lms/templates/shoppingcart/receipt.html +msgid "State" +msgstr "状态" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Registration for:" +msgstr "注册:" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Price per student:" +msgstr "每位学生的费用:" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Discount Applied:" +msgstr "已使用的折扣:" + +#: lms/templates/shoppingcart/receipt.html +msgid "Students" +msgstr "学生" + +#. Translators: Please keep the "" and "" tags around your +#. translation of the word "this" in your translation. +#: lms/templates/shoppingcart/receipt.html +msgid "Note: items with strikethough like this have been refunded." +msgstr "提示:带删除线的项目如this 已经退款" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "Confirm Enrollment" +msgstr "确认选课" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "{site_name} - Confirm Enrollment" +msgstr "{site_name}—确认选课" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "{course_number} {course_title} Cover Image" +msgstr "{course_number} {course_title}封面图片" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "Confirm your enrollment for: {span_start}course dates{span_end}" +msgstr "确认您的选课:{span_start}课程日期{span_end}" + +#: lms/templates/shoppingcart/registration_code_receipt.html +msgid "{course_name}" +msgstr "{course_name}" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "" +"You've clicked a link for an enrollment code that has already been used. " +"Check your {link_start}course dashboard{link_end} to see if you're enrolled " +"in the course, or contact your company's administrator." +msgstr "" +"您点击的这个选课码的链接已经使用过了。检查您的{link_start}课程面板{link_end}查看您是否已经注册了这们课程,或者联系您公司的管理员。" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "" +"You have successfully enrolled in {course_name}. This course has now been " +"added to your dashboard." +msgstr "您已经成功的选修了 {course_name},这门课程现已添加到您的课程面板中。" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "" +"You're already enrolled for this course. Visit your " +"{link_start}dashboard{link_end} to see the course." +msgstr "您已经选修了这门课程,请前往您的{link_start}课程面板{link_end}查看该课程。" + +#: lms/templates/shoppingcart/registration_code_receipt.html +msgid "The course you are enrolling for is full." +msgstr "您登记的课程人数已满" + +#: lms/templates/shoppingcart/registration_code_receipt.html +msgid "The course you are enrolling for is closed." +msgstr "您登记的课程已关闭" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "There was an error processing your redeem code." +msgstr "处理您的兑换码时出现了一个错误。" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "" +"You're about to activate an enrollment code for {course_name} by " +"{site_name}. This code can only be used one time, so you should only " +"activate this code if you're its intended recipient." +msgstr "您要激活一个 {site_name}上的{course_name}的选课码。这个选课码只能使用一次,所以只有当您是它的既定接收人才激活它。" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "Activate Course Enrollment" +msgstr "激活选课" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "" +"{course_names} has been removed because the enrollment period has closed." +msgid_plural "" +"{course_names} have been removed because the enrollment period has closed." +msgstr[0] "因选课时限已关闭,{course_names} 已被移除。" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Cover Image" +msgstr "封面图片" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Students:" +msgstr "学生:" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Input quantity and press enter." +msgstr "输入数量然后按回车" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Increase" +msgstr "增加" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Decrease" +msgstr "减少" + +#: lms/templates/shoppingcart/shopping_cart.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "Remove" +msgstr "删除" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Discount or activation code" +msgstr "折扣或激活码" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "discount or activation code" +msgstr "折扣或激活码" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Apply" +msgstr "应用" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "code has been applied" +msgstr "代码已被应用" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "TOTAL:" +msgstr "总价:" + +#. Translators: currency_symbol is a symbol indicating type of currency, ex +#. "$". currency_abbr is +#. an abbreviation for the currency, ex "USD". This string would look like +#. this +#. when all variables are in: +#. "$500.00 USD" +#: lms/templates/shoppingcart/shopping_cart.html +msgid "{currency_symbol}{price} {currency_abbr}" +msgstr "{currency_symbol}{price} {currency_abbr}" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "" +"After this purchase is complete, a receipt is generated with relative " +"billing details and registration codes for students." +msgstr "付款完成后,我们会为学生们生成一张包含费用明细和注册码的收据。" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "" +"After this purchase is complete, {username} will be enrolled in this course." +msgstr "付款完成后,{username}的选课将会生效。" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Empty Cart" +msgstr "清空购物车" + +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "Shopping cart" +msgstr "购物车" + +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "{platform_name} - Shopping Cart" +msgstr "{platform_name} - 购物车" + +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "Confirmation" +msgstr "确认" + +#: lms/templates/static_templates/404.html +#: themes/elitemba-theme/lms/templates/static_templates/404.html +msgid "" +"The page that you were looking for was not found. Go back to the " +"{link_start}homepage{link_end} or let us know about any pages that may have " +"been moved at {email}." +msgstr "未能找到您查找的页面。返回到{link_start}主页{link_end}或发电子邮件至{email}告诉我们可能被移除的页面。" + +#: lms/templates/static_templates/about.html +#: lms/templates/static_templates/blog.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/donate.html +#: lms/templates/static_templates/faq.html +#: lms/templates/static_templates/help.html +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/news.html +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/tos.html +#: themes/elitemba-theme/lms/templates/static_templates/privacy_policy.html +msgid "This page left intentionally blank. Feel free to add your own content." +msgstr "这个页面是有意留空的。欢迎您添加自己的评论。" + +#: lms/templates/static_templates/embargo.html +msgid "" +"Our system indicates that you are trying to access this {platform_name} " +"course from a country or region currently subject to U.S. economic and trade" +" sanctions.Unfortunately, because {platform_name} is required to comply with" +" export controls,we cannot allow you to access this course at this time." +msgstr "" +"我们的系统表明您所在的国家或地区正在受到美国经济贸易制裁,非常抱歉,{platform_name}必须接受出口管制,所以我们暂时无法允许您访问此{platform_name}课程。" + +#: lms/templates/static_templates/faq.html +msgid "FAQ" +msgstr "常见问题" + +#: lms/templates/static_templates/jobs.html +msgid "Jobs" +msgstr "招才纳贤" + +#: lms/templates/static_templates/news.html +#: lms/templates/static_templates/press.html +msgid "In the Press" +msgstr "新闻" + +#: lms/templates/static_templates/server-down.html +msgid "Currently the {platform_name} servers are down" +msgstr "目前{platform_name} 平台的服务器非正常运行" + +#: lms/templates/static_templates/server-down.html +#: lms/templates/static_templates/server-overloaded.html +msgid "" +"Our staff is currently working to get the site back up as soon as possible. " +"Please email us at {tech_support_email} to report any problems or downtime." +msgstr "" +"我们的工作人员正在努力尽快恢复网站的正常运行。要报告您发现的任何问题或遇到网站非正常运行,请发送邮件至{tech_support_email}。" + +#: lms/templates/static_templates/server-error.html +#: themes/elitemba-theme/lms/templates/static_templates/server-error.html +msgid "There has been a 500 error on the {platform_name} servers" +msgstr "{platform_name} 平台的服务器发生代码为500的错误" + +#: lms/templates/static_templates/server-error.html +#: themes/elitemba-theme/lms/templates/static_templates/server-error.html +msgid "" +"Please wait a few seconds and then reload the page. If the problem persists," +" please email us at {email}." +msgstr "请等待几秒钟后再刷新该页面。如果问题照旧,请向{email}发邮件。" + +#: lms/templates/static_templates/server-overloaded.html +msgid "Currently the {platform_name} servers are overloaded" +msgstr " 目前{platform_name}平台的服务器已经超负荷" + +#: lms/templates/student_account/account_settings.html +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Account Settings" +msgstr "账号设置" + +#: lms/templates/student_account/finish_auth.html +#: themes/elitemba-theme/lms/templates/student_account/finish_auth.html +msgid "Please Wait" +msgstr "请稍候" + +#: lms/templates/student_account/login_and_register.html +msgid "Sign in or Register" +msgstr "登录或注册" + +#: lms/templates/support/certificates.html lms/templates/support/index.html +msgid "Student Support" +msgstr "学生支持" + +#: lms/templates/support/certificates.html +msgid "Student Support: Certificates" +msgstr "学生支持:证书" + +#: lms/templates/support/contact_us.html +msgid "Contact {platform_name} Support" +msgstr "联系{platform_name}支持" + +#: lms/templates/support/enrollment.html +msgid "Student Support: Enrollment" +msgstr "学生支持:选课" + +#: lms/templates/support/feature_based_enrollments.html +msgid "Student Support: Feature Based Enrollments" +msgstr "学生支持:基于功能的注册" + +#: lms/templates/support/feature_based_enrollments.html +msgid "Is Enabled" +msgstr "已启用" + +#: lms/templates/support/feature_based_enrollments.html +msgid "No results found" +msgstr "未找到结果" + +#: lms/templates/support/manage_user.html +msgid "Student Support: Manage User" +msgstr "学生支持:管理用户" + +#: lms/templates/support/refund.html +msgid "About to refund this order:" +msgstr "准备就该订单退费" + +#: lms/templates/support/refund.html +msgid "Order Id:" +msgstr "订单标识:" + +#: lms/templates/support/refund.html +msgid "Enrollment:" +msgstr "选课:" + +#: lms/templates/support/refund.html +msgid "enrolled" +msgstr "已选修" + +#: lms/templates/support/refund.html +msgid "unenrolled" +msgstr "已弃选" + +#: lms/templates/support/refund.html +msgid "Cost:" +msgstr "费用:" + +#: lms/templates/support/refund.html +msgid "CertificateItem Status:" +msgstr "证书状态:" + +#: lms/templates/support/refund.html +msgid "Order Status:" +msgstr "订单状态:" + +#: lms/templates/support/refund.html +msgid "Fulfilled Time:" +msgstr "完成时间:" + +#: lms/templates/support/refund.html +msgid "Refund Request Time:" +msgstr "退费申请时间:" + +#: lms/templates/survey/survey.html +msgid "User Survey" +msgstr "用户调查" + +#: lms/templates/survey/survey.html +msgid "Pre-Course Survey" +msgstr "课前调查" + +#: lms/templates/survey/survey.html +msgid "" +"You can begin your course as soon as you complete the following form. " +"Required fields are marked with an asterisk (*). This information is for the" +" use of {platform_name} only. It will not be linked to your public profile " +"in any way." +msgstr "" +"您完成下表后可立刻开始您的课程。必填的字段标有星号(*)。此信息仅用于{platform_name}的使用。它将不以任何形式与您的公开用户资料相关联。" + +#: lms/templates/survey/survey.html +msgid "You are missing the following required fields:" +msgstr "您遗漏了以下必填字段:" + +#: lms/templates/survey/survey.html +msgid "Cancel and Return to Dashboard" +msgstr "取消并返回到课程面板" + +#: lms/templates/survey/survey.html +msgid "Why do I need to complete this information?" +msgstr "我为什么要完成填写这些信息?" + +#: lms/templates/survey/survey.html +msgid "" +"We use the information you provide to improve our course for both current " +"and future students. The more we know about your specific needs, the better " +"we can make your course experience." +msgstr "我们使用您提供的信息来改善当前和未来的学生的课程学习体验。我们越了解您的具体需求,我们可以为您提供更好的课程体验。" + +#: lms/templates/survey/survey.html +msgid "Who can I contact if I have questions?" +msgstr "如果我碰到问题可以联系谁?" + +#: lms/templates/survey/survey.html +msgid "" +"If you have any questions about this course or this form, you can contact " +"{link_start}{mail_to_link}{link_end}." +msgstr "如果您对此门课程或此表格有任何问题,请联系{link_start}{mail_to_link}{link_end}。" + +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Skeleton Page" +msgstr "框架页面" + +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +#: openedx/features/course_search/templates/course_search/course-search-fragment.html +msgid "Search the course" +msgstr "搜索课程" + +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Start Course" +msgstr "开始学习课程" + +#: lms/templates/verify_student/_verification_help.html +msgid "Have questions?" +msgstr "有疑问?" + +#: lms/templates/verify_student/_verification_help.html +msgid "" +"Please read {a_start}our FAQs to view common questions about our " +"certificates{a_end}." +msgstr "请阅读{a_start}我们的 FAQ 中关于证书的常见问题{a_end}。" + +#: lms/templates/verify_student/incourse_reverify.html +msgid "Re-Verify for {course_name}" +msgstr "请重新验证{course_name}" + +#: lms/templates/verify_student/missed_deadline.html +msgid "Verification Deadline Has Passed" +msgstr "认证期限已过" + +#: lms/templates/verify_student/missed_deadline.html +msgid "Upgrade Deadline Has Passed" +msgstr "升级截止日期已过" + +#: lms/templates/verify_student/missed_deadline.html +msgid "" +"The verification deadline for {course_name} was {{date}}. Verification is no" +" longer available." +msgstr "已超过{course_name}的认证截止日期 {{date}}。" + +#: lms/templates/verify_student/missed_deadline.html +msgid "" +"The deadline to upgrade to a verified certificate for this course has " +"passed." +msgstr "这门课程申请认证证书的截止日期已经过了。" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Upgrade Your Enrollment For {course_name}." +msgstr "为{course_name}更新您的选课信息。" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Receipt For {course_name}" +msgstr "{course_name}的收据" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Verify For {course_name}" +msgstr "为{course_name}认证" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Enroll In {course_name}" +msgstr "选修{course_name}" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Technical Requirements" +msgstr "技术要求" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "" +"Please make sure your browser is updated to the {strong_start}{a_start}most " +"recent version possible{a_end}{strong_end}. Also, please make sure your " +"{strong_start}webcam is plugged in, turned on, and allowed to function in " +"your web browser (commonly adjustable in your browser settings).{strong_end}" +msgstr "" +"请确认您的浏览器已更新至{strong_start}{a_start}最新的可用版本{a_end}{strong_end}。同时,请确保您的{strong_start}网络摄像头已插好、已开启且在您的网络浏览器(通常可在您的浏览器设置中进行调节)中可正常使用。{strong_end}" + +#: lms/templates/verify_student/reverify.html +msgid "Re-Verification" +msgstr "重新认证" + +#: lms/templates/verify_student/reverify_not_allowed.html +msgid "Identity Verification" +msgstr "身份验证" + +#: lms/templates/verify_student/reverify_not_allowed.html +msgid "" +"You have already submitted your verification information. You will see a " +"message on your dashboard when the verification process is complete (usually" +" within 1-2 days)." +msgstr "您已提交了认证信息。当认证过程结束后,您会在您的课程面板中看到一条消息(通常在1-2天内)。" + +#: lms/templates/verify_student/reverify_not_allowed.html +msgid "You cannot verify your identity at this time." +msgstr "您不能在此时验证您的身份。" + +#: lms/templates/verify_student/reverify_not_allowed.html +msgid "Return to Your Dashboard" +msgstr "返回您的课程面板" + +#: lms/templates/widgets/cookie-consent.html +msgid "" +"This website uses cookies to ensure you get the best experience on our " +"website. If you continue browsing this site, we understand that you accept " +"the use of cookies." +msgstr "本站使用cookie给您提供最佳体验,如果您继续浏览本站,那么我们将认为您同意使用cookie。" + +#: lms/templates/widgets/cookie-consent.html +msgid "Got it!" +msgstr "成功了!" + +#: lms/templates/widgets/cookie-consent.html +msgid "Learn more" +msgstr "了解更多" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}(active){span_end}" +msgstr "{span_start}(激活){span_end}" + +#: lms/templates/wiki/includes/article_menu.html +#: wiki/templates/wiki/includes/article_menu.html +msgid "Changes" +msgstr "变更" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}active{span_end}" +msgstr "{span_start}激活{span_end}" + +#: lms/templates/wiki/includes/breadcrumbs.html +msgid "Course Wiki" +msgstr "课程百科" + +#: lms/templates/wiki/includes/breadcrumbs.html wiki/templates/wiki/dir.html +msgid "Add article" +msgstr "添加文章" + +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +msgid "Preview Language Setting" +msgstr "预览语言设置" + +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +msgid "Language Code" +msgstr "语言代码" + +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +msgid "e.g. en for English" +msgstr "例如:en即英语" + +#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html +msgid "Preview Theme" +msgstr "预览主题" + +#: openedx/core/lib/license/templates/license.html +msgid "All Rights Reserved" +msgstr "保留所有权利" + +#: openedx/core/lib/license/templates/license.html +msgid "Attribution" +msgstr "署名" + +#: openedx/core/lib/license/templates/license.html +msgid "Noncommercial" +msgstr "非商业的" + +#: openedx/core/lib/license/templates/license.html +msgid "No Derivatives" +msgstr "无相关派生" + +#: openedx/core/lib/license/templates/license.html +msgid "Share Alike" +msgstr "相同方式共享" + +#: openedx/core/lib/license/templates/license.html +msgid "Creative Commons licensed content, with terms as follow:" +msgstr "知识共享许可内容,条款如下:" + +#: openedx/core/lib/license/templates/license.html +msgid "Some Rights Reserved" +msgstr "保留部分权利" + +#: openedx/features/course_experience/templates/course_experience/course-dates-fragment.html +msgid "Important Course Dates" +msgstr "重要课程日期" + +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Goal: " +msgstr "学习目标:" + +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Edit your course goal:" +msgstr "编辑您的课程目标:" + +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Pursue a verified certificate" +msgstr "考取认证证书" + +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Upgrade ({price})" +msgstr "升级({price})" + +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "Expand All" +msgstr "展开全部" + +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "Prerequisite: " +msgstr "先修条件:" + +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "{subsection_format} due {{date}}" +msgstr "{subsection_format} 截止{{date}}" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Learn About Verified Certificates" +msgstr "认证证书是什么?" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "{platform_name} Verified Certificate" +msgstr "{platform_name}认证证书" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Why upgrade?" +msgstr "为什么要升级?" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Official proof of completion" +msgstr "已完成的官方证明" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Easily shareable certificate" +msgstr "易于分享的证书" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Proven motivator to complete the course" +msgstr "完成课程的有效激励因素" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "" +"Certificate purchases help {platform_name} continue to offer free courses" +msgstr "您对证书的购买,是{platform_name}持续推出免费课程的动力" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "How it works" +msgstr "具体流程" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Pay the Verified Certificate upgrade fee" +msgstr "支付认证证书升级奋勇" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Verify your identity with a webcam and government-issued ID" +msgstr "使用网络摄像头和政府签发的身份证来认证您的身份" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Study hard and pass the course" +msgstr "努力学习课程不挂科" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Share your certificate with friends, employers, and others" +msgstr "分享您的证书给朋友、同事、所有人" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "edX Learner Stories" +msgstr "edX学员故事" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "" +"My certificate has helped me showcase my knowledge on my" +" resume - I feel like this certificate could " +"really help me land my dream job!" +msgstr "证书在我的简历上添了一笔 - 努力的收获让我离梦想的事业更近一部!" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "{learner_name}, EliteMBA Learner" +msgstr "{learner_name},EliteMBA学员" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "" +"I wanted to include a verified certificate on my resume and my profile to" +" illustrate that I am working towards this goal " +"I have and that I have achieved something while " +"I was unemployed." +msgstr "我想要在简历和资料上添上一份认证证书,表明我有学习目标,并且不在职期间也收益颇丰。" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Upgrade ({course_price})" +msgstr "升级({course_price})" + +#: openedx/features/course_experience/templates/course_experience/course-updates-fragment.html +msgid "This course does not have any updates." +msgstr "此门课程没有任何更新。" + +#: openedx/features/course_experience/templates/course_experience/dates-summary.html +msgid "Today is {date}" +msgstr "今天是 {date}" + +#: openedx/features/course_experience/templates/course_experience/latest-update-fragment.html +msgid "Latest Update" +msgstr "最近更新" + +#: openedx/features/course_search/templates/course_search/course-search-fragment.html +msgid "Search Results" +msgstr "搜索结果" + +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Purchase the Bundle (" +msgstr "购买套餐(" + +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Courses included" +msgstr "所包含课程" + +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Journals included" +msgstr "所包含文章" + +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "{access_length} Day Access" +msgstr "访问{access_length}天" + +#: openedx/features/journals/templates/journals/bundle_about.html +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "View Journal" +msgstr "查看文章" + +#: openedx/features/journals/templates/journals/bundle_card.html +msgid "Bundle" +msgstr "套餐" + +#: openedx/features/journals/templates/journals/journal_card.html +msgid "Journal" +msgstr "文章" + +#: openedx/features/journals/templates/journals/journal_card.html +msgid "{num_months} month" +msgid_plural "{num_months} months" +msgstr[0] "{num_months}个月" + +#: openedx/features/journals/templates/journals/journal_card.html +msgid "unlimited" +msgstr "无限" + +#: openedx/features/journals/templates/journals/journal_card.html +msgid "Access Length" +msgstr "访问时长" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Journal Dashboard" +msgstr "文章面板" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "{journal_title} Cover Image" +msgstr "{journal_title}封面图片" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Access Expired: {date}" +msgstr "访问于{date}已过期" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Access Expires: {date}" +msgstr "访问将于{date}过期" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Renew Access" +msgstr "续访" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "You have not purchased access to any journals yet." +msgstr "您尚未购买此文章的访问权。" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Explore journals and courses" +msgstr "探索文章和课程" + +#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html +msgid "My Stats (Beta)" +msgstr "我的统计数据(Beta)" + +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Connected Accounts" +msgstr "已关联的账号" + +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Linked" +msgstr "已关联" + +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Not Linked" +msgstr "未关联" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Unlink" +msgstr "取消关联" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Link" +msgstr "关联" + +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +msgid "Completed {completion_date_html}" +msgstr "已完成{completion_date_html}" + +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +msgid "{course_mode} certificate" +msgstr "{course_mode}证书" + +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +msgid "You haven't earned any certificates yet." +msgstr "您尚未获得证书。" + +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +#: themes/edx.org/lms/templates/dashboard.html +msgid "Explore New Courses" +msgstr "探索新课程" + +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "View My Records" +msgstr "查看我的记录" + +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "My Profile" +msgstr "我的用户资料" + +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "" +"Build out your profile to personalize your identity on {platform_name}." +msgstr "自定义您的{platform_name}身份。" + +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "An error occurred. Try loading the page again." +msgstr "出现一个错误。尝试重试加载页面。" + +#: cms/templates/404.html +msgid "The page that you were looking for was not found." +msgstr "您查找的页面无法找到。" + +#: cms/templates/404.html +msgid "" +"Go back to the {homepage} or let us know about any pages that may have been " +"moved at {email}." +msgstr "返回到{homepage}或发电子邮件至{email}告诉我们被移动的页面。" + +#: cms/templates/500.html +msgid "{studio_name} Server Error" +msgstr "{studio_name}服务器错误" + +#: cms/templates/500.html +msgid "The {em_start}{studio_name}{em_end} servers encountered an error" +msgstr "{em_start}{studio_name}{em_end} 服务器出现一个错误" + +#: cms/templates/500.html +msgid "" +"An error occurred in {studio_name} and the page could not be loaded. Please " +"try again in a few moments." +msgstr "{studio_name}出现错误,页面无法加载,请稍后再试。" + +#: cms/templates/500.html +msgid "" +"We've logged the error and our staff is currently working to resolve this " +"error as soon as possible." +msgstr "我们已经记录下这个错误,我们的员工正在试图尽快解决这个问题。" + +#: cms/templates/500.html +msgid "If the problem persists, please email us at {email_link}." +msgstr "如果问题仍然存在,请发送电子邮件至{email_link}。" + +#: cms/templates/accessibility.html +msgid "Studio Accessibility Policy" +msgstr "Studio开放政策" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +#: cms/templates/activation_invalid.html +msgid "{studio_name} Account Activation" +msgstr "{studio_name}账号激活" + +#: cms/templates/activation_active.html +msgid "Your account is already active" +msgstr "您的账号已经激活" + +#: cms/templates/activation_active.html +msgid "" +"This account, set up using {email}, has already been activated. Please sign " +"in to start working within {studio_name}." +msgstr "通过{email}注册的这个账号已被激活,请登录以开始在{studio_name}中工作。" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +msgid "Sign into {studio_name}" +msgstr "登录{studio_name}" + +#: cms/templates/activation_complete.html +msgid "Your account activation is complete!" +msgstr "您的账号激活已经完成!" + +#: cms/templates/activation_complete.html +msgid "" +"Thank you for activating your account. You may now sign in and start using " +"{studio_name} to author courses." +msgstr "谢谢您激活了您的账号,您现在可以登录 {studio_name}并开始创建课程了。" + +#: cms/templates/activation_invalid.html +msgid "Your account activation is invalid" +msgstr "您的账号激活是无效的" + +#: cms/templates/activation_invalid.html +msgid "" +"We're sorry. Something went wrong with your activation. Check to make sure " +"the URL you went to was correct, as e-mail programs will sometimes split it " +"into two lines." +msgstr "很抱歉,您的激活中出现了一些错误。请核对以确保您进入了正确的 URL,因为某些时候电子邮件程序会将其分割成两行。" + +#: cms/templates/activation_invalid.html +msgid "" +"If you still have issues, contact {platform_name} Support. In the meantime, " +"you can also return to {link_start}the {studio_name} homepage.{link_end}" +msgstr "" +"如果您仍然有问题,请联系{platform_name}支持。同时,您也可以返回到{link_start}{studio_name}主页{link_end}。" + +#: cms/templates/asset_index.html cms/templates/widgets/header.html +msgid "Files & Uploads" +msgstr "文件&上传" + +#: cms/templates/certificates.html +msgid "This module is not enabled." +msgstr "此模块不可用。" + +#: cms/templates/certificates.html +msgid "This course does not use a mode that offers certificates." +msgstr "本课程不提供证书。" + +#: cms/templates/certificates.html +msgid "Working with Certificates" +msgstr "使用证书" + +#: cms/templates/certificates.html +msgid "" +"Specify a course title to use on the certificate if the course's official " +"title is too long to be displayed well." +msgstr "当因课程正式名称过长而不易展示在证书上时,可使用特定的缩写。" + +#: cms/templates/certificates.html +msgid "" +"For verified certificates, specify between one and four signatories and " +"upload the associated images." +msgstr "对于验证的证书,指定1到4个簽署国,并上传了相关图片。" + +#: cms/templates/certificates.html +msgid "" +"To edit or delete a certificate before it is activated, hover over the top " +"right corner of the form and select {em_start}Edit{em_end} or the delete " +"icon." +msgstr "编辑或删除证书之前,它被激活,将鼠标悬停在表的右上角,然后选择{em_start}修改{em_end}或删除图标。" + +#: cms/templates/certificates.html +msgid "" +"To view a sample certificate, choose a course mode and select " +"{em_start}Preview Certificate{em_end}." +msgstr "要查看样品证书,选择课程模式,并选择{em_start}预览证书{em_end}。" + +#: cms/templates/certificates.html +msgid "Issuing Certificates to Learners" +msgstr "为课程学习者提供证书" + +#: cms/templates/certificates.html +msgid "" +"To begin issuing course certificates, a course team member with either the " +"Staff or Admin role selects {em_start}Activate{em_end}. Only course team " +"members with these roles can edit or delete an activated certificate." +msgstr "" +"员工或管理员身份的课程团队成员选择{em_start}激活{em_end},可以开始颁发课程证书。只有此两种身份的课程团队成员才能编辑或删除已激活的证书。" + +#: cms/templates/certificates.html +msgid "" +"{em_start}Do not{em_end} delete certificates after a course has started; " +"learners who have already earned certificates will no longer be able to " +"access them." +msgstr "{em_start}不要{em_end}删除证书后,课程开始;谁已经获得了证书,学生将不再能够访问它们。" + +#: cms/templates/certificates.html +msgid "Learn more about certificates" +msgstr "了解更多关于证书的信息" + +#: cms/templates/certificates.html cms/templates/settings_graders.html +msgid "Details & Schedule" +msgstr "细节&日程" + +#: cms/templates/checklists.html cms/templates/widgets/header.html +msgid "Checklists" +msgstr "核对表" + +#: cms/templates/checklists.html cms/templates/export.html +#: cms/templates/export_git.html cms/templates/import.html +#: cms/templates/widgets/header.html +msgid "Tools" +msgstr "工具" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +msgid "Duplicate" +msgstr "复制" + +#: cms/templates/component.html +msgid "Duplicate this component" +msgstr "复制该组件" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +msgid "Move" +msgstr "移动" + +#: cms/templates/component.html +msgid "Delete this component" +msgstr "删除此组件" + +#: cms/templates/component.html cms/templates/edit-tabs.html +#: cms/templates/studio_xblock_wrapper.html +msgid "Drag to reorder" +msgstr "拖动以重排序" + +#: cms/templates/container.html cms/templates/course-create-rerun.html +#: cms/templates/course_info.html cms/templates/course_outline.html +#: cms/templates/edit-tabs.html cms/templates/index.html +#: cms/templates/library.html cms/templates/manage_users.html +#: cms/templates/manage_users_lib.html cms/templates/textbooks.html +#: cms/templates/videos_index.html +msgid "Page Actions" +msgstr "页面操作" + +#: cms/templates/container.html +msgid "Open the courseware in the LMS" +msgstr "在LMS中打开课件" + +#: cms/templates/container.html +msgid "View Live Version" +msgstr "观看在线版本" + +#: cms/templates/container.html +msgid "Preview the courseware in the LMS" +msgstr "在LMS中预览课件" + +#: cms/templates/container.html +msgid "Adding components" +msgstr "添加组件" + +#: cms/templates/container.html +msgid "" +"Select a component type under {strong_start}Add New Component{strong_end}. " +"Then select a template." +msgstr "选择一个组件类型在{strong_start}之下,并新增新的组件{strong_end}。然后选择一个範本。" + +#: cms/templates/container.html +msgid "" +"The new component is added at the bottom of the page or group. You can then " +"edit and move the component." +msgstr "新建的组件会添加到页面或组的底部,然后您可以编辑或移动该组件。" + +#: cms/templates/container.html +msgid "Editing components" +msgstr "编辑组件" + +#: cms/templates/container.html +msgid "" +"Click the {strong_start}Edit{strong_end} icon in a component to edit its " +"content." +msgstr "从组件中,点击{strong_start}编辑{strong_end}图示,编辑内容。" + +#: cms/templates/container.html +msgid "Reorganizing components" +msgstr "重新组织组件" + +#: cms/templates/container.html +msgid "Drag components to new locations within this component." +msgstr "在该组件中将组件拖动到新位置。" + +#: cms/templates/container.html +msgid "For content experiments, you can drag components to other groups." +msgstr "对于内容实验,您可以拖拽组件到其他组里。" + +#: cms/templates/container.html +msgid "Working with content experiments" +msgstr "使用内容实验" + +#: cms/templates/container.html +msgid "" +"Confirm that you have properly configured content in each of your experiment" +" groups." +msgstr "确认您的每个实验组中都有正确配置的内容。" + +#: cms/templates/container.html +msgid "Learn more about component containers" +msgstr "了解更多关于组件容器的信息" + +#: cms/templates/container.html +msgid "Unit Location" +msgstr "单元位置" + +#: cms/templates/container.html +msgid "Location ID" +msgstr "位置 ID" + +#: cms/templates/container.html +msgid "" +"To create a link to this unit from an HTML component in this course, enter " +"\"/jump_to_id/\" as the URL value." +msgstr "如需创建此课程HTML组件与单元的链接,请输入“/jump_to_id/”作为URL值。" + +#: cms/templates/container.html +msgid "Location in Course Outline" +msgstr "在课程大纲中的位置" + +#: cms/templates/course-create-rerun.html +msgid "Create a Course Rerun of:" +msgstr "创建课程重启:" + +#: cms/templates/course-create-rerun.html +msgid "Create a re-run of a course" +msgstr "创建一次课程重启" + +#: cms/templates/course-create-rerun.html +msgid "You are creating a re-run from:" +msgstr "您正在为以下课程创建一次重启:" + +#: cms/templates/course-create-rerun.html +msgid "" +"Provide identifying information for this re-run of the course. The original " +"course is not affected in any way by a re-run." +msgstr "请为该重启的课程提供识别信息,原来的课程不会受重启的影响。" + +#: cms/templates/course-create-rerun.html +msgid "" +"Note: Together, the organization, course number, and course run must " +"uniquely identify this new course instance." +msgstr "注意:机构名称、课程编号以及开课时间三者合在一起必须能够唯一标识此新建的课程实例。" + +#: cms/templates/course-create-rerun.html +msgid "Required Information to Create a re-run of a course" +msgstr "创建一次课程重启所必需的信息" + +#. Translators: This is an example name for a new course, seen when +#. filling out the form to create a new course. +#: cms/templates/course-create-rerun.html cms/templates/index.html +msgid "e.g. Introduction to Computer Science" +msgstr "例如,计算机科学导论" + +#: cms/templates/course-create-rerun.html +msgid "" +"The public display name for the new course. (This name is often the same as " +"the original course name.)" +msgstr "新课程的公开显示名称。(该名字通常与原始的课程名称相同。)" + +#. Translators: This is an example for the name of the organization sponsoring +#. a course, seen when filling out the form to create a new course. The +#. organization name cannot contain spaces. +#. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed +#. when user put no data into this field. +#: cms/templates/course-create-rerun.html cms/templates/index.html +msgid "e.g. UniversityX or OrganizationX" +msgstr "例如:UniversityX 或 OrganizationX" + +#: cms/templates/course-create-rerun.html +msgid "" +"The name of the organization sponsoring the new course. (This name is often " +"the same as the original organization name.)" +msgstr "资助该新课程的机构的名称。(该名字通常与原始的机构名称相同。)" + +#: cms/templates/course-create-rerun.html +msgid "Note: No spaces or special characters are allowed." +msgstr "注意:不允许有空格或特殊字符。" + +#. Translators: This is an example for the number used to identify a course, +#. seen when filling out the form to create a new course. The number here is +#. short for "Computer Science 101". It can contain letters but cannot contain +#. spaces. +#: cms/templates/course-create-rerun.html cms/templates/index.html +msgid "e.g. CS101" +msgstr "例如: CS101" + +#: cms/templates/course-create-rerun.html +msgid "" +"The unique number that identifies the new course within the organization. " +"(This number will be the same as the original course number and cannot be " +"changed.)" +msgstr "用于识别组织内新课程的唯一编号。(此编号与原来的课程编号一致,无法更改)" + +#. Translators: This is an example for the "run" used to identify different +#. instances of a course, seen when filling out the form to create a new +#. course. +#: cms/templates/course-create-rerun.html cms/templates/index.html +msgid "e.g. 2014_T1" +msgstr "例如:2014_T1" + +#: cms/templates/course-create-rerun.html +msgid "" +"The term in which the new course will run. (This value is often different " +"than the original course run value.)" +msgstr "将开设该新课程的学期。(该值通常与原始开课时间的值不同。)" + +#: cms/templates/course-create-rerun.html +msgid "Create Re-run" +msgstr "创建重启" + +#: cms/templates/course-create-rerun.html +msgid "When will my course re-run start?" +msgstr "我的课程何时可以重启?" + +#: cms/templates/course-create-rerun.html +msgid "The new course is set to start on January 1, 2030 at midnight (UTC)." +msgstr "新课程设置为将于2030年1月1日午夜开始(UTC)。" + +#: cms/templates/course-create-rerun.html +msgid "What transfers from the original course?" +msgstr "原始课程中的哪些内容会复制过来?" + +#: cms/templates/course-create-rerun.html +msgid "" +"The new course has the same course outline and content as the original " +"course. All problems, videos, announcements, and other files are duplicated " +"to the new course." +msgstr "新课程与原始课程具有相同的课程大纲,所有的问题、视频、通知以及其他文件都复制到了新课程中。" + +#: cms/templates/course-create-rerun.html +msgid "What does not transfer from the original course?" +msgstr "原始课程中的哪些内容不会复制过来?" + +#: cms/templates/course-create-rerun.html +msgid "" +"You are the only member of the new course's staff. No students are enrolled " +"in the course, and there is no student data. There is no content in the " +"discussion topics or wiki." +msgstr "您是新课程的唯一课程员工。没有学生选修该课程,没有学生数据,论坛或Wiki里也没有内容。" + +#: cms/templates/course-create-rerun.html +msgid "Learn more about Course Re-runs" +msgstr "了解更多关于课程重启的信息" + +#: cms/templates/course_info.html +msgid "Course Updates" +msgstr "课程更新" + +#: cms/templates/course_info.html +msgid "New Update" +msgstr "新的更新" + +#: cms/templates/course_info.html +msgid "" +"Use course updates to notify students of important dates or exams, highlight" +" particular discussions in the forums, announce schedule changes, and " +"respond to student questions. You add or edit updates in HTML." +msgstr "使用课程更新来通知学生重要的日期或者考试,高亮显示论坛中的特别讨论,发布进度变更,以及回复学生问题。您可以用HTML来编辑更新。" + +#: cms/templates/course_outline.html +msgid "" +"This course was created as a re-run. Some manual configuration is needed." +msgstr "本课程已作为重启创建,需要进行一些必要的手动配置。" + +#: cms/templates/course_outline.html +msgid "" +"No course content is currently visible, and no learners are enrolled. Be " +"sure to review and reset all dates, including the Course Start Date; set up " +"the course team; review course updates and other assets for dated material; " +"and seed the discussions and wiki." +msgstr "" +"当前没有可见的课程内容,也没有学生选修。请确保已检查和重置包括课程开始日期在内的所有的日期,设置好课程团队,检查课程更新和其他资料中的过期内容,并设置好论坛和Wiki。" + +#: cms/templates/course_outline.html +msgid "Warning" +msgstr "警告" + +#: cms/templates/course_outline.html +msgid "This course uses features that are no longer supported." +msgstr "该课程使用了不再支持的特性。" + +#: cms/templates/course_outline.html +msgid "You must delete or replace the following components." +msgstr "您必须删除或替换下面这些组件。" + +#: cms/templates/course_outline.html +msgid "Unsupported Components" +msgstr "不支持的组件" + +#: cms/templates/course_outline.html +msgid "Deprecated Component" +msgstr "被弃用的组件" + +#: cms/templates/course_outline.html +msgid "" +"To avoid errors, {platform_name} strongly recommends that you remove " +"unsupported features from the course advanced settings. To do this, go to " +"the {link_start}Advanced Settings page{link_end}, locate the \"Advanced " +"Module List\" setting, and then delete the following modules from the list." +msgstr "" +"为了避免出现错误,{platform_name}强烈建议您从课程的高级设置中移除不支持的特性。为此,您可以去往{link_start}高级设置网页{link_end},找到“高级模块列表”设置,然后从列表中删除下面的模块。" + +#: cms/templates/course_outline.html +msgid "Unsupported Advance Modules" +msgstr "不支持的高级模块" + +#: cms/templates/course_outline.html +msgid "Click to add a new section" +msgstr "点击添加新的一章" + +#: cms/templates/course_outline.html +msgid "New Section" +msgstr "添加新章节" + +#: cms/templates/course_outline.html +msgid "Reindex current course" +msgstr "重新索引当前课程" + +#: cms/templates/course_outline.html +msgid "Reindex" +msgstr "重新索引" + +#: cms/templates/course_outline.html +msgid "Collapse All Sections" +msgstr "折叠所有章节" + +#: cms/templates/course_outline.html +msgid "Expand All Sections" +msgstr "展开所有章" + +#: cms/templates/course_outline.html +msgid "Click to open the courseware in the LMS in a new tab" +msgstr "点击以在新的标签页中使用LMS打开课件" + +#: cms/templates/course_outline.html cms/templates/edit-tabs.html +msgid "View Live" +msgstr "在线查看" + +#: cms/templates/course_outline.html +msgid "Creating your course organization" +msgstr "创建您的课程组织" + +#: cms/templates/course_outline.html +msgid "You add sections, subsections, and units directly in the outline." +msgstr "您可以直接在大纲中添加章、节和单元。" + +#: cms/templates/course_outline.html +msgid "" +"Create a section, then add subsections and units. Open a unit to add course " +"components." +msgstr "创建一个章,然后添加节和单元;打开一个单元以添加课程组件。" + +#: cms/templates/course_outline.html +msgid "Reorganizing your course" +msgstr "重新组织您的课程" + +#: cms/templates/course_outline.html +msgid "Drag sections, subsections, and units to new locations in the outline." +msgstr "在大纲中拖动章、节和单元到新的位置。" + +#: cms/templates/course_outline.html +msgid "Learn more about the course outline" +msgstr "了解更多关于课程大纲的信息" + +#: cms/templates/course_outline.html +msgid "Setting release dates and grading policies" +msgstr "设置课程公开日期和评分策略" + +#: cms/templates/course_outline.html +msgid "" +"Select the Configure icon for a section or subsection to set its release " +"date. When you configure a subsection, you can also set the grading policy " +"and due date." +msgstr "选择配置图标来为章、节设置公开日期。在对节进行配置时,您还可以设置评分策略及截止日期。" + +#: cms/templates/course_outline.html +msgid "Learn more about grading policy settings" +msgstr "了解更多关于评分标准的事" + +#: cms/templates/course_outline.html +msgid "Changing the content learners see" +msgstr "正在更改学员可见的内容" + +#: cms/templates/course_outline.html +msgid "" +"To publish draft content, select the Publish icon for a section, subsection," +" or unit." +msgstr "请选择章、节或单元中的发布图标以发布草稿内容。" + +#: cms/templates/course_outline.html +msgid "" +"To make a section, subsection, or unit unavailable to learners, select the " +"Configure icon for that level, then select the appropriate " +"{em_start}Hide{em_end} option. Grades for hidden sections, subsections, and " +"units are not included in grade calculations." +msgstr "" +"可以点击“设置 > {em_start}隐藏{em_end}”按钮对该层级的章、节、单元进行对学员隐藏。隐藏的章、节、单元的分数不计入总分。" + +#: cms/templates/course_outline.html +msgid "" +"To hide the content of a subsection from learners after the subsection due " +"date has passed, select the Configure icon for a subsection, then select " +"{em_start}Hide content after due date{em_end}. Grades for the subsection " +"remain included in grade calculations." +msgstr "" +"如需在截止日期过后对学员隐藏节的内容,可以点击该节的“设置 > {em_start}隐藏已过期内容到期日{em_end}”按钮,该节分数仍计入总分。" + +#: cms/templates/course_outline.html +msgid "Learn more about content visibility settings" +msgstr "了解更多关于内容可见性设置的信息" + +#. Translators: Pages refer to the tabs that appear in the top navigation of +#. each course. +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html +msgid "Pages" +msgstr "页面" + +#: cms/templates/edit-tabs.html +msgid "New Page" +msgstr "新的页面" + +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "注意:页面是公开可见的,知道该页面链接的用户可以直接查看,即使他们尚未注册或者登录到您的课程。" + +#: cms/templates/edit-tabs.html +msgid "Show this page" +msgstr "显示该页面" + +#: cms/templates/edit-tabs.html +msgid "Show/hide page" +msgstr "显示/隐藏页面" + +#: cms/templates/edit-tabs.html +msgid "This page cannot be reordered" +msgstr "该页面无法重新排序" + +#: cms/templates/edit-tabs.html +msgid "You can add additional custom pages to your course." +msgstr "您可以在课程中添加额外的自定义页面" + +#: cms/templates/edit-tabs.html +msgid "Add a New Page" +msgstr "添加新的页面" + +#: cms/templates/edit-tabs.html +msgid "What are pages?" +msgstr "什么是页面?" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages are listed horizontally at the top of your course. Default pages " +"(Home, Course, Discussion, Wiki, and Progress) are followed by textbooks and" +" custom pages that you create." +msgstr "课程页面顶部水平列有默认页面 (课件,课程信息,讨论,维基和进度),之后是教材和自定义页面。" + +#: cms/templates/edit-tabs.html +msgid "Custom pages" +msgstr "自定义页面" + +#: cms/templates/edit-tabs.html +msgid "" +"You can create and edit custom pages to provide students with additional " +"course content. For example, you can create pages for the grading policy, " +"course slides, and a course calendar. " +msgstr "您可以通过创建个性化页面来为学生提供额外的课程内容。例如,您可以为评分策略、课程幻灯片、课程日历等创建自定义页面。" + +#: cms/templates/edit-tabs.html +msgid "How do pages look to students in my course?" +msgstr "学生看到的课程页面会是什么样子?" + +#: cms/templates/edit-tabs.html +msgid "" +"Students see the default and custom pages at the top of your course and use " +"these links to navigate." +msgstr "学生将会看到水平列于您课程主页上方的缺省页面及自定义页面的链接,并通过这些链接来漫游整个课程。" + +#: cms/templates/edit-tabs.html +msgid "See an example" +msgstr "查看例子" + +#: cms/templates/edit-tabs.html +msgid "Pages in Your Course" +msgstr "课程中的页面" + +#: cms/templates/edit-tabs.html +msgid "Preview of Pages in your course" +msgstr "课程页面预览" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages appear in your course's top navigation bar. The default pages (Home, " +"Course, Discussion, Wiki, and Progress) are followed by textbooks and custom" +" pages." +msgstr "您课程页面顶部导航栏,默认标签页为(主页、课程、讨论、Wiki、进度),之后是教材和自定义标签页。" + +#: cms/templates/edit-tabs.html cms/templates/howitworks.html +msgid "close modal" +msgstr "关闭模式对话框" + +#: cms/templates/error.html +msgid "Internal Server Error" +msgstr "内部服务器错误" + +#: cms/templates/error.html +msgid "The Page You Requested Page Cannot be Found" +msgstr "您请求的页面无法找到" + +#: cms/templates/error.html +msgid "" +"We're sorry. We couldn't find the {studio_name} page you're looking for. You" +" may want to return to the {studio_name} Dashboard and try again. If you are" +" still having problems accessing things, please feel free to " +"{link_start}contact {studio_name} support{link_end} for further help." +msgstr "" +"很抱歉,我们无法找到您请求的{studio_name}页面。您可能希望返回至{studio_name}课程面板后重新尝试。如果您仍遇到问题,请随时{link_start}联系{studio_name}支持{link_end}以获取更多帮助。" + +#: cms/templates/error.html +msgid "The Server Encountered an Error" +msgstr "服务器发生错误" + +#: cms/templates/error.html +msgid "" +"We're sorry. There was a problem with the server while trying to process " +"your last request. You may want to return to the {studio_name} Dashboard or " +"try this request again. If you are still having problems accessing things, " +"please feel free to {link_start}contact {studio_name} support{link_end} for " +"further help." +msgstr "" +"很抱歉,服务器在处理您的上一个请求时遇到问题。您可能希望返回至{studio_name}课程面板或重新提交请求。如果您仍遇到问题,请随时{link_start}联系{studio_name}支持{link_end}以寻求帮助。" + +#: cms/templates/error.html +msgid "Back to dashboard" +msgstr "回到课程面板" + +#: cms/templates/export.html +msgid "Library Export" +msgstr "知识库导出" + +#: cms/templates/export.html +msgid "Course Export" +msgstr "导出课程" + +#: cms/templates/export.html +msgid "About Exporting Libraries" +msgstr "关于导出知识库" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export libraries and edit them outside of {studio_name}. The " +"exported file is a .tar.gz file (that is, a .tar file compressed with GNU " +"Zip) that contains the library structure and content. You can also re-import" +" libraries that you've exported." +msgstr "" +"您可以导出知识库并在{studio_name}之外编辑它们。导出的文件是一个包含知识库结构和内容的 .tar.gz 文件(即,使用GNU Zip压缩的 " +".tar 文件)。您也可以再次导入这些已经导出的知识库。" + +#: cms/templates/export.html +msgid "About Exporting Courses" +msgstr "关于导出课程" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export courses and edit them outside of {studio_name}. The exported " +"file is a .tar.gz file (that is, a .tar file compressed with GNU Zip) that " +"contains the course structure and content. You can also re-import courses " +"that you've exported." +msgstr "" +"您可以导出课程并在{studio_name}之外编辑它们。导出的文件是一个包含课程结构和内容的 .tar.gz 文件(即,使用GNU Zip压缩的 " +".tar 文件)。您也可以再次导入这些已经导出的课程。" + +#: cms/templates/export.html +msgid "" +"{em_start}Caution:{em_end} When you export a course, information such as " +"MATLAB API keys, LTI passports, annotation secret token strings, and " +"annotation storage URLs are included in the exported data. If you share your" +" exported files, you may also be sharing sensitive or license-specific " +"information." +msgstr "" +"{em_start}注意{em_end}:当您导出一门课程时,像MATLAB API密钥、LTI通行证、批注秘密令牌以及批注存储 URL " +"等信息都包含在导出的数据中。如果您分享了导出的文件,就等于您同时也分享了敏感的或者与许可证相关的信息。" + +#: cms/templates/export.html +msgid "Export My Library Content" +msgstr "导出我的知识库内容" + +#: cms/templates/export.html +msgid "Export My Course Content" +msgstr "导出我的课程内容" + +#: cms/templates/export.html +msgid "Export Library Content" +msgstr "导出知识库内容" + +#: cms/templates/export.html +msgid "Export Course Content" +msgstr "导出课程内容" + +#: cms/templates/export.html +msgid "Library Export Status" +msgstr "知识库导出状态" + +#: cms/templates/export.html +msgid "Course Export Status" +msgstr "课程导出状态" + +#: cms/templates/export.html +msgid "Preparing" +msgstr "正在准备" + +#: cms/templates/export.html +msgid "Preparing to start the export" +msgstr "正在准备导出" + +#: cms/templates/export.html +msgid "Exporting" +msgstr "正在导出" + +#: cms/templates/export.html +msgid "" +"Creating the export data files (You can now leave this page safely, but " +"avoid making drastic changes to content until this export is complete)" +msgstr "正在创建导出数据文件(您现在可以安全离开此页面,但请在导出结束前不要对内容进行重大更改)" + +#: cms/templates/export.html +msgid "Compressing" +msgstr "正在压缩" + +#: cms/templates/export.html +msgid "Compressing the exported data and preparing it for download" +msgstr "正在压缩已导出数据并正在准备下载" + +#: cms/templates/export.html +msgid "Your exported library can now be downloaded" +msgstr "您现在可以下载已导出的知识库" + +#: cms/templates/export.html +msgid "Your exported course can now be downloaded" +msgstr "您现在可以下载已导出的课程" + +#: cms/templates/export.html +msgid "Download Exported Library" +msgstr "下载已导出的知识库" + +#: cms/templates/export.html +msgid "Download Exported Course" +msgstr "下载已导出课程" + +#: cms/templates/export.html +msgid "Data {em_start}exported with{em_end} your course:" +msgstr "随课程{em_start} 导出 {em_end} 数据:" + +#: cms/templates/export.html +msgid "" +"Values from Advanced Settings, including MATLAB API keys and LTI passports" +msgstr "来自高级设置中的值,包括 MATLAB API 密钥和 LTI 通行证" + +#: cms/templates/export.html +msgid "Course Content (all Sections, Sub-sections, and Units)" +msgstr "课程内容 (所有章节,小节和单元)" + +#: cms/templates/export.html +msgid "Course Structure" +msgstr "课程结构" + +#: cms/templates/export.html +msgid "Individual Problems" +msgstr "个别问题" + +#: cms/templates/export.html +msgid "Course Assets" +msgstr "课程资源" + +#: cms/templates/export.html +msgid "Course Settings" +msgstr "课程设置" + +#: cms/templates/export.html +msgid "Data {em_start}not exported{em_end} with your course:" +msgstr "不随课程{em_start} 导出 {em_end} 的数据:" + +#: cms/templates/export.html +msgid "User Data" +msgstr "用户数据" + +#: cms/templates/export.html +msgid "Course Team Data" +msgstr "课程团队数据" + +#: cms/templates/export.html +msgid "Forum/discussion Data" +msgstr "论坛/讨论数据" + +#: cms/templates/export.html +msgid "Why export a library?" +msgstr "为何要导出知识库?" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your library directly, outside of " +"{studio_name}. You may want to create a backup copy of your library. Or, you" +" may want to create a copy of your library that you can later import into " +"another library instance and customize." +msgstr "" +"您可能想在{studio_name}之外直接编辑知识库的XML,或为您的知识库建立备份,或者您是想创建一份知识库的副本以便日后导入进另一个知识库实例并进行自定义。" + +#: cms/templates/export.html +msgid "Opening the downloaded file" +msgstr "打开下载的文件" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the library.xml file, as well as subfolders that contain " +"library content." +msgstr "使用归档程序从该 .tar.gz 中文件解压数据,解压后的数据包含了一个 library.xml 文件,以及一些存放了知识库内容的子目录。" + +#: cms/templates/export.html +msgid "Learn more about exporting a library" +msgstr "了解更多关于知识库导出的信息" + +#: cms/templates/export.html +msgid "Why export a course?" +msgstr "为什么导出课程?" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your course directly, outside of " +"{studio_name}. You may want to create a backup copy of your course. Or, you " +"may want to create a copy of your course that you can later import into " +"another course instance and customize." +msgstr "" +"您可能想在{studio_name}之外直接编辑课程的XML,或为您的课程建立备份,或者您是想创建一份课程的副本以便日后导入进另一个课程实例并进行自定义。" + +#: cms/templates/export.html +msgid "What content is exported?" +msgstr "哪些内容被导出了?" + +#: cms/templates/export.html +msgid "The following content is exported." +msgstr "以下内容已导出。" + +#: cms/templates/export.html cms/templates/import.html +msgid "Course content and structure" +msgstr "课程内容和结构" + +#: cms/templates/export.html cms/templates/import.html +msgid "Course dates" +msgstr "课程日期" + +#: cms/templates/export.html cms/templates/import.html +msgid "Grading policy" +msgstr "评分政策" + +#: cms/templates/export.html cms/templates/import.html +msgid "Any group configurations" +msgstr "任何小组配置项" + +#: cms/templates/export.html cms/templates/import.html +msgid "" +"Settings on the Advanced Settings page, including MATLAB API keys and LTI " +"passports" +msgstr "高级设置页面的设置项,包括MATLAB API keys和LTI通行证" + +#: cms/templates/export.html +msgid "The following content is not exported." +msgstr "以下内容未导出。" + +#: cms/templates/export.html cms/templates/import.html +msgid "" +"Learner-specific content, such as learner grades and discussion forum data" +msgstr "关于学员的信息,比如学员的成绩和论坛数据" + +#: cms/templates/export.html cms/templates/import.html +msgid "The course team" +msgstr "课程团队" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the course.xml file, as well as subfolders that contain course" +" content." +msgstr "使用档案工具解压.tar.gz中的文件。解压后的数据包含coursex.xml,还有一些子目录,存放了课程内容。" + +#: cms/templates/export.html +msgid "Learn more about exporting a course" +msgstr "了解更多关于课程导出的信息" + +#: cms/templates/export_git.html +msgid "Export Course to Git" +msgstr "导出课程到Git" + +#: cms/templates/export_git.html cms/templates/widgets/header.html +msgid "Export to Git" +msgstr "导出到Git" + +#: cms/templates/export_git.html +msgid "About Export to Git" +msgstr "关于导出课程到Git" + +#: cms/templates/export_git.html +msgid "Use this to export your course to its git repository." +msgstr "使用这个来导出您的课程到Git源。" + +#: cms/templates/export_git.html +msgid "" +"This will then trigger an automatic update of the main LMS site and update " +"the contents of your course visible there to students if automatic git " +"imports are configured." +msgstr "这将触发主LMS站点的自动更新,若自动Git导入已配置好,学生可见的课程内容也会被自动更新。" + +#: cms/templates/export_git.html +msgid "Export Course to Git:" +msgstr "导出课程到Git:" + +#: cms/templates/export_git.html +msgid "" +"giturl must be defined in your course settings before you can export to git." +msgstr "在您导出到Git之前必须在课程设置里定义Git地址。" + +#: cms/templates/export_git.html +msgid "Export Failed" +msgstr "导出失败" + +#: cms/templates/export_git.html +msgid "Export Succeeded" +msgstr "导出成功" + +#: cms/templates/export_git.html +msgid "Your course:" +msgstr "您的课程:" + +#: cms/templates/export_git.html +msgid "Course git url:" +msgstr "课程Git地址:" + +#: cms/templates/group_configurations.html +msgid "Experiment Group Configurations" +msgstr "实验组配置" + +#: cms/templates/group_configurations.html +msgid "This module is disabled at the moment." +msgstr "这个模块目前被禁用。" + +#: cms/templates/group_configurations.html +msgid "" +"Enrollment track groups allow you to offer different course content to " +"learners in each enrollment track. Learners enrolled in each enrollment " +"track in your course are automatically included in the corresponding " +"enrollment track group." +msgstr "注册跟踪组允许您在每个注册跟踪中为学习者提供不同的课程内容。在您课程的每个注册轨道上注册的学员将自动加入相应的注册轨道组。" + +#: cms/templates/group_configurations.html +msgid "" +"On unit pages in the course outline, you can restrict access to components " +"to learners based on their enrollment track." +msgstr "在课程概述的单元页面上,您可以根据学习者的注册轨迹限制对组件的访问。" + +#: cms/templates/group_configurations.html +msgid "" +"You cannot edit enrollment track groups, but you can expand each group to " +"view details of the course content that is designated for learners in the " +"group." +msgstr "您不能编辑注册跟踪组,但是您可以扩展每个组去查看组中学习者指定的课程内容的详细信息。" + +#: cms/templates/group_configurations.html +msgid "" +"If you have cohorts enabled in your course, you can use content groups to " +"create cohort-specific courseware. In other words, you can customize the " +"content that particular cohorts see in your course." +msgstr "如果您在您的课程中启用了群组,您可以使用内容组来创建群组特定的课件。换句话说,您可以在您课程中的自定义内容使得特定的群组才能看到这些内容。" + +#: cms/templates/group_configurations.html +msgid "" +"Each content group that you create can be associated with one or more " +"cohorts. In addition to making course content available to all learners, you" +" can restrict access to some content to learners in specific content groups." +" Only learners in the cohorts that are associated with the specified content" +" groups see the additional content." +msgstr "" +"您创建的每个内容组都可以与一个或多个群组相关联。可以将课程内容对所有学员开放,您还可以设置某些内容为仅某内容组的学员可见。只有在与某个内容组相关联的群组内的学员可查看额外内容。" + +#: cms/templates/group_configurations.html +msgid "" +"Click {em_start}New content group{em_end} to add a new content group. To " +"edit the name of a content group, hover over its box and click " +"{em_start}Edit{em_end}. You can delete a content group only if it is not in " +"use by a unit. To delete a content group, hover over its box and click the " +"delete icon." +msgstr "" +"点击{em_start}新建内容组{em_end}来添加一个新的内容组;如果要编辑某个内容组的名称,请点击该内容组的{em_start}编辑{em_end}按钮;一个内容组只有在未被任何一个单元使用的情况下可以被删除,请点击某个内容组的删除图标以删除该内容组。" + +#: cms/templates/group_configurations.html +msgid "" +"Use experiment group configurations if you are conducting content " +"experiments, also known as A/B testing, in your course. Experiment group " +"configurations define how many groups of learners are in a content " +"experiment. When you create a content experiment for a course, you select " +"the group configuration to use." +msgstr "" +"如果您正在您的课程中开展群组实验,也称A/B测试,您可以使用实验组配置。实验组配置决定在一个内容实验中有多少组学生。在您创建一个课程内容实验的时候,您可以选择要使用的组配置。" + +#: cms/templates/group_configurations.html +msgid "" +"Click {em_start}New Group Configuration{em_end} to add a new configuration. " +"To edit a configuration, hover over its box and click " +"{em_start}Edit{em_end}. You can delete a group configuration only if it is " +"not in use in an experiment. To delete a configuration, hover over its box " +"and click the delete icon." +msgstr "" +"点击{em_start}新建组配置{em_end}来添加一个新的配置;如果要编辑某个配置,请点击该配置的{em_start}编辑{em_end}按钮;一个组配置只有在未被任何一个实验使用的情况下可以被删除,请点击某个组配置的删除图标以删除该组配置。" + +#: cms/templates/group_configurations.html +#: cms/templates/settings_advanced.html +msgid "Details & Schedule" +msgstr "细节与日程" + +#: cms/templates/howitworks.html +msgid "Welcome" +msgstr "欢迎" + +#: cms/templates/howitworks.html +msgid "Welcome to {studio_name}" +msgstr "欢迎来到{studio_name}" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} helps manage your online courses, so you can focus on teaching" +" them" +msgstr "{studio_name}帮助您管理您的线上课程,这样您就可以专注于教学" + +#: cms/templates/howitworks.html +msgid "{studio_name}'s Many Features" +msgstr "{studio_name}的许多特性" + +#: cms/templates/howitworks.html +msgid "{studio_name} Helps You Keep Your Courses Organized" +msgstr "{studio_name}帮助您保持课程有序组织" + +#: cms/templates/howitworks.html +msgid "Enlarge image" +msgstr "放大图片" + +#: cms/templates/howitworks.html +msgid "Keeping Your Course Organized" +msgstr "保持您的课程有序组织" + +#: cms/templates/howitworks.html +msgid "" +"The backbone of your course is how it is organized. {studio_name} offers an " +"{strong_start}Outline{strong_end} editor, providing a simple hierarchy and " +"easy drag and drop to help you and your students stay organized." +msgstr "" +"课程的关键在于如何组织其结构。在{studio_name}您可以编辑{strong_start}“教学大纲”{strong_end},为您提供简单易用的层级结构来确保课程组织有序。" + +#: cms/templates/howitworks.html +msgid "Simple Organization For Content" +msgstr "简单地组织内容" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} uses a simple hierarchy of {strong_start}sections{strong_end} " +"and {strong_start}subsections{strong_end} to organize your content." +msgstr "" +"{studio_name}使用简单层级结构管理内容:{strong_start}章{strong_end}和{strong_start}节{strong_end}。" + +#: cms/templates/howitworks.html +msgid "Change Your Mind Anytime" +msgstr "随时改变您的思路" + +#: cms/templates/howitworks.html +msgid "" +"Draft your outline and build content anywhere. Simple drag and drop tools " +"let you reorganize quickly." +msgstr "您可以在任意位置起草大纲并创建内容。简单的拖放工具使您可以快速地重新组织课程内容。" + +#: cms/templates/howitworks.html +msgid "Go A Week Or A Semester At A Time" +msgstr "按星期或学期发布内容" + +#: cms/templates/howitworks.html +msgid "" +"Build and release {strong_start}sections{strong_end} to your students " +"incrementally. You don't have to have it all done at once." +msgstr "逐渐创建并发布{strong_start}章{strong_end}。您不必一次完成所有事情。" + +#: cms/templates/howitworks.html +msgid "Learning is More than Just Lectures" +msgstr "学习不仅仅是听课" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} lets you weave your content together in a way that reinforces " +"learning. Insert videos, discussions, and a wide variety of exercises with " +"just a few clicks." +msgstr "" +"{studio_name}使您可以将您的课程内容以有助于巩固学习效果的形式组织在一起。您只需通过几次点击就可以插入视频、讨论区以及各种各样的练习题。" + +#: cms/templates/howitworks.html +msgid "Create Learning Pathways" +msgstr "创建学习路径" + +#: cms/templates/howitworks.html +msgid "" +"Help your students understand one concept at a time with multimedia, HTML, " +"and exercises." +msgstr "通过多媒体、HTML和练习帮助您的学生每次理解一个概念。" + +#: cms/templates/howitworks.html +msgid "Work Visually, Organize Quickly" +msgstr "可视化地工作,快速地组织" + +#: cms/templates/howitworks.html +msgid "" +"Work visually and see exactly what your students will see. Reorganize all " +"your content with drag and drop." +msgstr "可视化地工作并且随时预览您的学生将要看的内容。通过拖放操作重新组织您的课程内容。" + +#: cms/templates/howitworks.html +msgid "A Broad Library of Problem Types" +msgstr "丰富的平台库可以支持各种问题类型" + +#: cms/templates/howitworks.html +msgid "" +"It's more than just multiple choice. {studio_name} supports more than a " +"dozen types of problems to challenge your learners." +msgstr "不只是选择题,{studio_name}支持各种各样的题型来挑战您的学生们。" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " +"Friends." +msgstr "{studio_name}给您和您的朋友提供简单、快速、增量式的发布体验。" + +#: cms/templates/howitworks.html +msgid "Simple, Fast, and Incremental Publishing. With Friends." +msgstr "与其他人一起合作,体验简单、快速、增量式的内容发布过程" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} works like web applications you already know, yet understands " +"how you build curriculum. Instant publishing to the web when you want it, " +"incremental release when it makes sense. And with co-authors, you can have a" +" whole team building a course, together." +msgstr "" +"{studio_name}的工作方式与您熟知的网页应用类似,只是您还需要了解一下如何创建课程。您可以根据需要在网页上一次性地发布信息,或者采用增量式的发布形式。如果您有合作者,您们还可以作为一个团队来共同创建课程。" + +#: cms/templates/howitworks.html +msgid "Instant Changes" +msgstr "即时修改" + +#: cms/templates/howitworks.html +msgid "" +"Caught a bug? No problem. When you want, your changes go live when you click" +" Save." +msgstr "发现了一个错误?没有问题。只要您需要,点击保存按钮就可以将您的更改上线。" + +#: cms/templates/howitworks.html +msgid "Release-On Date Publishing" +msgstr "定期发布课程" + +#: cms/templates/howitworks.html +msgid "" +"When you've finished a {strong_start}section{strong_end}, pick when you want" +" it to go live and {studio_name} takes care of the rest. Build your course " +"incrementally." +msgstr "" +"当您完成了一个{strong_start}章{strong_end},指定上线时间,{studio_name}届时会自行发布。逐步创建您的课程。" + +#: cms/templates/howitworks.html +msgid "Work in Teams" +msgstr "参与团队协作" + +#: cms/templates/howitworks.html +msgid "" +"Co-authors have full access to all the same authoring tools. Make your " +"course better through a team effort." +msgstr "合作者有权访问相同的创作工具。团队协作将提高您的课程质量。" + +#: cms/templates/howitworks.html +msgid "Sign Up for {studio_name} Today!" +msgstr "立即在{studio_name}注册!" + +#: cms/templates/howitworks.html +msgid "Sign Up & Start Making Your {platform_name} Course" +msgstr "注册并开始打造您自己的{platform_name}课程" + +#: cms/templates/howitworks.html +msgid "Already have a {studio_name} Account? Sign In" +msgstr "已经有一个{studio_name}账号?请登录" + +#: cms/templates/howitworks.html +msgid "Outlining Your Course" +msgstr "列出您的课程大纲" + +#: cms/templates/howitworks.html +msgid "" +"Simple two-level outline to organize your course. Drag and drop, and see " +"your course at a glance." +msgstr "简洁的两级教学大纲、简单的拖放工具、清晰了然的课程显示。" + +#: cms/templates/howitworks.html +msgid "More than Just Lectures" +msgstr "不仅仅是课程讲座" + +#: cms/templates/howitworks.html +msgid "" +"Quickly create videos, text snippets, inline discussions, and a variety of " +"problem types." +msgstr "快速创建视频、文本片段、内部讨论和各种问题类型。" + +#: cms/templates/howitworks.html +msgid "Publishing on Date" +msgstr "发布时间" + +#: cms/templates/howitworks.html +msgid "" +"Simply set the date of a section or subsection, and {studio_name} will " +"publish it to your students for you." +msgstr "只需简单地设置章节的发布时间,{studio_name}会按照设定的时间为您发布这些内容给学生。" + +#: cms/templates/html_error.html +msgid "We're having trouble rendering your component" +msgstr "渲染组件时遇到问题" + +#: cms/templates/html_error.html +msgid "" +"Students will not be able to access this component. Re-edit your component " +"to fix the error." +msgstr "学生无法访问这个组件。请重新编辑您的组件以修复错误。" + +#: cms/templates/import.html +msgid "Library Import" +msgstr "知识库导入" + +#: cms/templates/import.html +msgid "Course Import" +msgstr "课程导入" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a library before continuing. The contents of the " +"imported library will replace the contents of the existing library. " +"{em_start}You cannot undo a library import{em_end}. Before you proceed, we " +"recommend that you export the current library, so that you have a backup " +"copy of it." +msgstr "" +"在继续之前,请确认您想要导入一个知识库。当前知识库的所有内容会被导入的内容所取代,{em_start}您无法撤销该导入操作 " +"{em_end}。我们建议您在继续操作之前先将当前知识库导出,以便有个备份。" + +#: cms/templates/import.html +msgid "" +"The library that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a library.xml file." +" It may also contain other files." +msgstr "" +"您导入的知识库必须是一个 .tar.gz 格式的文件(即,使用 GNU Zip 压缩的 .tar 文件)。该文件中必须包含一个 library.xml " +"文件,同时也可以包含其他文件。" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your library until the import operation has completed." +msgstr "" +"导入过程有五个步骤。在前两个步骤进行时,请勿离开本页面;在“解压”步骤完成之后,您可以离开本页面。但是我们建议,在导入操作完成之前请不要对您的知识库做出重要改动。" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a course before continuing. The contents of the " +"imported course will replace the contents of the existing course. " +"{em_start}You cannot undo a course import{em_end}. Before you proceed, we " +"recommend that you export the current course, so that you have a backup copy" +" of it." +msgstr "" +"在继续之前,请确认您想要导入一门课程。当前课程的所有内容会被导入的内容所取代,{em_start}您无法撤销该导入操作 " +"{em_end}。我们建议您在继续操作之前先将当前课程导出,以便有个备份。" + +#: cms/templates/import.html +msgid "" +"The course that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " +"It may also contain other files." +msgstr "" +"您导入的课程必须是一个 .tar.gz 格式的文件(即,使用 GNU Zip 压缩的 .tar 文件)。该文件中必须包含一个 library.xml " +"文件,同时也可以包含其他文件。" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your course until the import operation has completed." +msgstr "" +"导入过程有五步。在前两步中,您必须停留在当前页面。而在解压步骤结束后您可以离开当前页面。不过,我们建议在导入操作结束前您都不要对课程做任何更改调整。" + +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Library Content" +msgstr "请选择一个用于替换您的知识库内容的 .tar.gz 文件" + +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Course Content" +msgstr "选择一个.tar.gz 文件以覆盖当前课程内容" + +#: cms/templates/import.html +msgid "Choose a File to Import" +msgstr "选择要导入的文件" + +#: cms/templates/import.html +msgid "File Chosen:" +msgstr "选中的文件:" + +#: cms/templates/import.html +msgid "Replace my library with the selected file" +msgstr "用所选的文件替换我的知识库" + +#: cms/templates/import.html +msgid "Replace my course with the selected file" +msgstr "用所选的文件替换我的课程" + +#: cms/templates/import.html +msgid "Library Import Status" +msgstr "知识库导入状态" + +#: cms/templates/import.html +msgid "Course Import Status" +msgstr "课程导入状态" + +#: cms/templates/import.html +msgid "Transferring your file to our servers" +msgstr "正在传输您的文件至服务器" + +#: cms/templates/import.html +msgid "Unpacking" +msgstr "正在解压" + +#: cms/templates/import.html +msgid "" +"Expanding and preparing folder/file structure (You can now leave this page " +"safely, but avoid making drastic changes to content until this import is " +"complete)" +msgstr "展开预定义的目录/文件结构(您现在可以安全地离开这个页面了,但在内容导入完成之前请尽量避免不必要的修改)" + +#: cms/templates/import.html +msgid "Verifying" +msgstr "正在校验" + +#: cms/templates/import.html +msgid "Reviewing semantics, syntax, and required data" +msgstr "正在复查语义、语法和必要数据" + +#: cms/templates/import.html +msgid "Updating Library" +msgstr "正在更新知识库" + +#: cms/templates/import.html +msgid "Updating Course" +msgstr "正在更新课程" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this library. This process might take" +" longer with larger libraries." +msgstr "正在整合您导入的内容到该知识库。如果知识库较大,这一过程可能花费较多时间。" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this course. This process might take " +"longer with larger courses." +msgstr "正在整合您导入的内容到该课程。如果课程较大,这一过程可能花费较多时间。" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this library" +msgstr "您导入的内容已经被整合进该知识库" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this course" +msgstr "您导入的内容已经被整合进课程" + +#: cms/templates/import.html +msgid "View Updated Library" +msgstr "查看更新后的知识库" + +#: cms/templates/import.html +msgid "View Updated Outline" +msgstr "查看更新后的课程大纲" + +#: cms/templates/import.html +msgid "Why import a library?" +msgstr "为什么要导入知识库?" + +#: cms/templates/import.html +msgid "" +"You might want to update an existing library to a new version, or replace an" +" existing library entirely. You might also have developed a library outside " +"of {studio_name}." +msgstr "您可能想为现有的知识库创建新版本,或者完全替换现有的知识库。您也可能已在{studio_name}之外创建了一个知识库。" + +#: cms/templates/import.html +msgid "Note: Library content is not automatically updated in courses" +msgstr "请注意:知识库的内容并不会在课程中自动更新" + +#: cms/templates/import.html +msgid "" +"If you change and import a library that is referenced by randomized content " +"blocks in one or more courses, those courses do not automatically use the " +"updated content. You must manually refresh the randomized content blocks to " +"bring them up to date with the latest library content." +msgstr "" +"如果您更新或导入一个知识库,并且该知识库由一门或多门课程中的随机内容块所引用,则这些课程将不会自动使用知识库中已更新的内容。相反,您必须手动刷新这些随机内容块以使其与最新的知识库内容相一致。" + +#: cms/templates/import.html +msgid "Learn more about importing a library" +msgstr "了解更多关于导入知识库的信息" + +#: cms/templates/import.html +msgid "Why import a course?" +msgstr "为什么导入课程?" + +#: cms/templates/import.html +msgid "" +"You may want to run a new version of an existing course, or replace an " +"existing course altogether. Or, you may have developed a course outside " +"{studio_name}." +msgstr "您可能想为现有的课程创建新版本,或者完全替换现有的课程。您也可能已在{studio_name}之外创建了一个课程。" + +#: cms/templates/import.html +msgid "What content is imported?" +msgstr "哪些内容被导入了?" + +#: cms/templates/import.html +msgid "The following content is imported." +msgstr "以下内容已导入。" + +#: cms/templates/import.html +msgid "The following content is not imported." +msgstr "以下内容未导入。" + +#: cms/templates/import.html +msgid "Warning: Importing while a course is running" +msgstr "注意:导入发生于课程进行中" + +#: cms/templates/import.html +msgid "" +"If you perform an import while your course is running, and you change the " +"URL names (or url_name nodes) of any Problem components, the student data " +"associated with those Problem components may be lost. This data includes " +"students' problem scores." +msgstr "" +"如果您在课程进行中执行了导入,并更改了任意问题组件的URL名字(或url名字节点) ,与此问题组件相关的学生数据将可能丢失。这些数据包括学生问题得分。" + +#: cms/templates/import.html +msgid "Learn more about importing a course" +msgstr "了解更多关于导入课程的信息" + +#: cms/templates/index.html cms/templates/widgets/user_dropdown.html +msgid "{studio_name} Home" +msgstr "{studio_name}主页" + +#: cms/templates/index.html +msgid "New Course" +msgstr "新建课程" + +#: cms/templates/index.html +msgid "Email staff to create course" +msgstr "发邮件给教员来创建课程" + +#: cms/templates/index.html +msgid "New Library" +msgstr "新建知识库" + +#: cms/templates/index.html +msgid "Please correct the highlighted fields below." +msgstr "请改正下面高亮的字段。" + +#: cms/templates/index.html +msgid "Create a New Course" +msgstr "创建一个新课程" + +#: cms/templates/index.html +msgid "Required Information to Create a New Course" +msgstr "创建一个新课程的必要信息" + +#: cms/templates/index.html +msgid "" +"The public display name for your course. This cannot be changed, but you can" +" set a different display name in Advanced Settings later." +msgstr "课程的公开显示名称,无法修改。但您可以稍后在高级设置中设置一个不同的显示名称。" + +#: cms/templates/index.html +msgid "" +"The name of the organization sponsoring the course. {strong_start}Note: The " +"organization name is part of the course URL.{strong_end} This cannot be " +"changed, but you can set a different display name in Advanced Settings " +"later." +msgstr "" +"开设这门课程的组织的名称。{strong_start}注意:课程URL包含该组织名称。{strong_end}无法更改此名称,但过后可以在高级设置中设另外一个显示名称。" + +#: cms/templates/index.html +msgid "" +"The unique number that identifies your course within your organization. " +"{strong_start}Note: This is part of your course URL, so no spaces or special" +" characters are allowed and it cannot be changed.{strong_end}" +msgstr "" +"在您组织内课程的唯一编号,{strong_start}注意:这是您课程URL的一部分,无法更改并且请勿使用空格或特殊字符。{strong_end}" + +#: cms/templates/index.html +msgid "" +"The term in which your course will run. {strong_start}Note: This is part of " +"your course URL, so no spaces or special characters are allowed and it " +"cannot be changed.{strong_end}" +msgstr "" +"关于您课程开课的学期,{strong_start}注意:这是您课程URL的一部分,无法更改并且请勿使用空格或特殊字符。{strong_end}" + +#: cms/templates/index.html +msgid "Create" +msgstr "创建" + +#: cms/templates/index.html +msgid "Create a New Library" +msgstr "创建一个新的知识库" + +#: cms/templates/index.html +msgid "Required Information to Create a New Library" +msgstr "创建一个新知识库的必要信息" + +#: cms/templates/index.html +msgid "Library Name" +msgstr "知识库名称" + +#. Translators: This is an example name for a new content library, seen when +#. filling out the form to create a new library. +#. (A library is a collection of content or problems.) +#: cms/templates/index.html +msgid "e.g. Computer Science Problems" +msgstr "例如,计算机科学问题" + +#: cms/templates/index.html +msgid "The public display name for your library." +msgstr "知识库的公开显示名称。" + +#: cms/templates/index.html +msgid "The public organization name for your library." +msgstr "知识库的公开机构名称。" + +#: cms/templates/index.html +msgid "This cannot be changed." +msgstr "在确定后无法更改。" + +#: cms/templates/index.html +msgid "Library Code" +msgstr "知识库代码" + +#. Translators: This is an example for the "code" used to identify a library, +#. seen when filling out the form to create a new library. This example is +#. short +#. for "Computer Science Problems". The example number may contain letters +#. but must not contain spaces. +#: cms/templates/index.html +msgid "e.g. CSPROB" +msgstr "例如,CSPROB" + +#: cms/templates/index.html +msgid "" +"The unique code that identifies this library. {strong_start}Note: This is " +"part of your library URL, so no spaces or special characters are " +"allowed.{strong_end} This cannot be changed." +msgstr "" +"此知识库的唯一标识码。{strong_start}注意:知识库URL包含此标识码,请勿输入空格或特殊字符。{strong_end}并且无法更改。" + +#: cms/templates/index.html +msgid "Organization and Library Settings" +msgstr "组织和知识库设置" + +#: cms/templates/index.html +msgid "Show all courses in organization:" +msgstr "显示组织内所有课程:" + +#: cms/templates/index.html +msgid "For example, MITx" +msgstr "例如,MITx" + +#: cms/templates/index.html +msgid "Courses Being Processed" +msgstr "正在处理的课程" + +#: cms/templates/index.html +msgid "This course run is currently being created." +msgstr "正在创建该课程的本次运行。" + +#. Translators: This is a status message, used to inform the user of +#. what the system is doing. This status means that the user has +#. requested to re-run an existing course, and the system is currently +#. in the process of duplicating and configuring the existing course +#. so that it can be re-run. +#: cms/templates/index.html +msgid "Configuring as re-run" +msgstr "配置为重启" + +#: cms/templates/index.html +msgid "" +"The new course will be added to your course list in 5-10 minutes. Return to " +"this page or {link_start}refresh it{link_end} to update the course list. The" +" new course will need some manual configuration." +msgstr "" +"新的课程将在5-10分钟内添加到您的课程列表里中。返回到该页或者{link_start}刷新该页{link_end}以更新课程列表。新的课程将需要一些手动配置。" + +#. Translators: This is a status message for the course re-runs feature. +#. When a course admin indicates that a course should be re-run, the system +#. needs to process the request and prepare the new course. The status of +#. the process will follow this text. +#: cms/templates/index.html +msgid "This re-run processing status:" +msgstr "这重新运行处理状态:" + +#: cms/templates/index.html +msgid "Configuration Error" +msgstr "配置错误" + +#: cms/templates/index.html +msgid "" +"A system error occurred while your course was being processed. Please go to " +"the original course to try the re-run again, or contact your PM for " +"assistance." +msgstr "在处理您的课程过程中发生了系统错误。请回到原始课程里尝试再次重启,或向您的 PM 求助。" + +#: cms/templates/index.html +msgid "Archived Courses" +msgstr "存档课程" + +#: cms/templates/index.html +msgid "Libraries" +msgstr "知识库" + +#: cms/templates/index.html +msgid "Are you staff on an existing {studio_name} course?" +msgstr "您是否是一个{studio_name}现有课程的工作人员?" + +#: cms/templates/index.html +msgid "" +"The course creator must give you access to the course. Contact the course " +"creator or administrator for the course you are helping to author." +msgstr "课程的创建者必须授予您该课程的访问权限。如果您想帮助编写该课程,请联系课程的创建者或者管理员。" + +#: cms/templates/index.html +msgid "Create Your First Course" +msgstr "创建您的第一个课程" + +#: cms/templates/index.html +msgid "Your new course is just a click away!" +msgstr "您的新课程只需点击即可!" + +#: cms/templates/index.html +msgid "Becoming a Course Creator in {studio_name}" +msgstr "成为{studio_name}中的课程创建者" + +#: cms/templates/index.html +msgid "" +"{studio_name} is a hosted solution for our xConsortium partners and selected" +" guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by {platform_name}. Our " +"team will evaluate your request and provide you feedback within 24 hours " +"during the work week." +msgstr "" +"{studio_name}是一个为我们X-" +"联盟的合作者以及特定顾客提供的托管解决方案。您作为团队成员的课程已在上面列出供您编辑,而创建新课程的权限则需要由{platform_name}授予。我们的团队会评估您的请求,并会在工作日的24小时之内给予您反馈。" + +#: cms/templates/index.html +msgid "Your Course Creator Request Status:" +msgstr "您的课程创建者资格请求状态:" + +#: cms/templates/index.html +msgid "Request the Ability to Create Courses" +msgstr "请求创建课程的权限" + +#: cms/templates/index.html +msgid "Your Course Creator Request Status" +msgstr "您的课程创建者资格请求状态" + +#: cms/templates/index.html +msgid "" +"{studio_name} is a hosted solution for our xConsortium partners and selected" +" guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by {platform_name}. Our " +"team is has completed evaluating your request." +msgstr "" +"{studio_name}是一个为我们X-" +"联盟的合作者以及特定顾客提供的托管解决方案。您作为团队成员的课程已在上面列出供您编辑,而创建新课程的权限则需要由{platform_name}授予。我们的团队已经完成了对您的请求的评估。" + +#: cms/templates/index.html +msgid "Your Course Creator request is:" +msgstr "您的课程创建者资格的请求是:" + +#: cms/templates/index.html +msgid "" +"Your request did not meet the criteria/guidelines specified by " +"{platform_name} Staff." +msgstr "您的请求不符合由{platform_name}员工指定的准则/方针。" + +#: cms/templates/index.html +msgid "" +"{studio_name} is a hosted solution for our xConsortium partners and selected" +" guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by {platform_name}. Our " +"team is currently evaluating your request." +msgstr "" +"{studio_name}是一个为我们X-" +"联盟的合作者以及特定顾客提供的托管解决方案。您作为团队成员的课程已在上面列出供您编辑,而创建新课程的权限则需要由{platform_name}授予。我们的团队目前正在评估您的请求。" + +#: cms/templates/index.html +msgid "" +"Your request is currently being reviewed by {platform_name} staff and should" +" be updated shortly." +msgstr "您的请求正在由{platform_name}员工评审,应该很快会有更新。" + +#: cms/templates/index.html +msgid "Were you expecting to see a particular library here?" +msgstr "您是否曾期待在这里看到一个特定的知识库?" + +#: cms/templates/index.html +msgid "" +"The library creator must give you access to the library. Contact the library" +" creator or administrator for the library you are helping to author." +msgstr "知识库的创建者必须授予您该知识库的访问权限。如果您想帮助编写该知识库,请联系知识库的创建者或者管理员。" + +#: cms/templates/index.html +msgid "Create Your First Library" +msgstr "创建您的第一个知识库" + +#: cms/templates/index.html +msgid "" +"Libraries hold a pool of components that can be re-used across multiple " +"courses. Create your first library with the click of a button!" +msgstr "知识库容纳了一组可以在多个课程中重复利用的组件。点击按钮以创建您的第一个知识库!" + +#: cms/templates/index.html +msgid "New to {studio_name}?" +msgstr "刚刚接触{studio_name}?" + +#: cms/templates/index.html +msgid "" +"Click Help in the upper-right corner to get more information about the " +"{studio_name} page you are viewing. You can also use the links at the bottom" +" of the page to access our continually updated documentation and other " +"{studio_name} resources." +msgstr "" +"点击右上角的的帮助按钮以获得更多关于{studio_name}当前页面的信息。您也可以使用页面底部的帮助链接访问我们持续更新的文档以及其他{studio_name}资源。" + +#: cms/templates/index.html +msgid "Getting Started with {studio_name}" +msgstr "{studio_name}入门" + +#: cms/templates/index.html +msgid "Can I create courses in {studio_name}?" +msgstr "我能在{studio_name}中创建课程吗?" + +#: cms/templates/index.html +msgid "" +"In order to create courses in {studio_name}, you must {link_start}contact " +"{platform_name} staff to help you create a course{link_end}." +msgstr "" +"您必须{link_start}联系{platform_name}工作人员{link_end}以帮助您在{studio_name}创建中课程。" + +#: cms/templates/index.html +msgid "" +"In order to create courses in {studio_name}, you must have course creator " +"privileges to create your own course." +msgstr "您必须获得课程创建者资格才能在{studio_name}中创建课程。" + +#: cms/templates/index.html +msgid "" +"Your request to author courses in {studio_name} has been denied. Please " +"{link_start}contact {platform_name} Staff with further questions{link_end}." +msgstr "" +"您在{studio_name}上申请成为课程创建者的请求已被拒绝,请{link_start}联系{platform_name}工作人员进一步了解问题{link_end}。" + +#: cms/templates/index.html +msgid "Thanks for signing up, {name}!" +msgstr "感谢注册,{name}!" + +#: cms/templates/index.html +msgid "We need to verify your email address" +msgstr "我们需要验证您的电子邮箱地址" + +#: cms/templates/index.html +msgid "" +"Almost there! In order to complete your sign up we need you to verify your " +"email address ({email}). An activation message and next steps should be " +"waiting for you there." +msgstr "注册快完成啦!您现在需要验证您的邮箱地址({email}),已发送激活邮件至此邮箱,请按照步骤完成注册。" + +#: cms/templates/index.html +msgid "Need help?" +msgstr "需要帮助?" + +#: cms/templates/index.html +msgid "" +"Please check your Junk or Spam folders in case our email isn't in your " +"INBOX. Still can't find the verification email? Request help via the link " +"below." +msgstr "请检查您的垃圾邮件,以防我们的邮件不在您的收件箱中。仍然不能找到确认邮件?通过下面的链接获得帮助。" + +#: cms/templates/library.html +msgid "Content Library" +msgstr "内容知识库" + +#: cms/templates/library.html +msgid "Add Component" +msgstr "添加组件" + +#: cms/templates/library.html +msgid "Adding content to your library" +msgstr "向您的知识库中添加内容" + +#: cms/templates/library.html +msgid "" +"Add components to your library for use in courses, using Add New Component " +"at the bottom of this page." +msgstr "请使用本页面底部的添加新组件按钮为您的知识库添加可在课程中使用的组件" + +#: cms/templates/library.html +msgid "" +"Components are listed in the order in which they are added, with the most " +"recently added at the bottom. Use the pagination arrows to navigate from " +"page to page if you have more than one page of components in your library." +msgstr "组件会按照添加的顺序升序排列(最近添加的在最底部)。当知识库中的组件超过一页时,请使用分页箭头来切换不同页面。" + +#: cms/templates/library.html +msgid "Using library content in courses" +msgstr "在课程中使用知识库内容" + +#: cms/templates/library.html +msgid "" +"Use library content in courses by adding the " +"{em_start}library_content{em_end} policy key to the Advanced Module List in " +"the course's Advanced Settings, then adding a Randomized Content Block to " +"your courseware. In the settings for each Randomized Content Block, select " +"this library as the source library, and specify the number of problems to be" +" randomly selected and displayed to each student." +msgstr "" +"要使用知识库,首先向课程高级设置页面中的“高级模块列表”项中添加{em_start}library_content{em_end}策略键,然后在课件中加入一个或多个“随机内容块”组件。在每个“随机内容块”组件的设置中,选择一个知识库作为源库,并指定要被随机选择并呈现给每个学生的问题的数量。" + +#: cms/templates/library.html +msgid "Learn more about content libraries" +msgstr "了解更多关于内容知识库的信息" + +#: cms/templates/login.html +msgid "Sign In to {studio_name}" +msgstr "登录{studio_name}" + +#: cms/templates/login.html +msgid "Don't have a {studio_name} Account? Sign up!" +msgstr "还没有{studio_name}账号?现在就注册!" + +#: cms/templates/login.html +msgid "Required Information to Sign In to {studio_name}" +msgstr "登录{studio_name}所必须的信息" + +#: cms/templates/manage_users.html +msgid "Course Team Settings" +msgstr "课程团队设置" + +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +msgid "New Team Member" +msgstr "新的团队成员" + +#: cms/templates/manage_users.html +msgid "Add a User to Your Course's Team" +msgstr "向您的课程团队中添加一个用户" + +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +msgid "New Team Member Information" +msgstr "新团队成员信息" + +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +msgid "User's Email Address" +msgstr "用户邮箱地址" + +#: cms/templates/manage_users.html +msgid "Provide the email address of the user you want to add as Staff" +msgstr "请提供您想要添加成为员工的用户的电子邮件地址" + +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +msgid "Add User" +msgstr "添加用户" + +#: cms/templates/manage_users.html +msgid "Add Team Members to This Course" +msgstr "向该课程添加团队成员" + +#: cms/templates/manage_users.html +msgid "" +"Adding team members makes course authoring collaborative. Users must be " +"signed up for {studio_name} and have an active account." +msgstr "添加团队成员使得课程编写可以协作完成,用户必须已经注册了{studio_name}并拥有一个已激活的账号。" + +#: cms/templates/manage_users.html +msgid "Add a New Team Member" +msgstr "添加一个团队成员" + +#: cms/templates/manage_users.html +msgid "Course Team Roles" +msgstr "课程团队角色" + +#: cms/templates/manage_users.html +msgid "" +"Course team members with the Staff role are course co-authors. They have " +"full writing and editing privileges on all course content." +msgstr "课程团队成员中员工角色是课程的共同作者。他们对课程内容具有完全的写作和编辑权限。" + +#: cms/templates/manage_users.html +msgid "" +"Admins are course team members who can add and remove other course team " +"members." +msgstr "管理员是课程团队成员中可以添加和移除其他课程团队成员的用户。" + +#: cms/templates/manage_users.html +msgid "" +"All course team members can access content in Studio, the LMS, and Insights," +" but are not automatically enrolled in the course." +msgstr "" +"All course team members can access content in Studio, the LMS, and Insights," +" but are not automatically enrolled in the course." + +#: cms/templates/manage_users.html +msgid "Transferring Ownership" +msgstr "移交所有权" + +#: cms/templates/manage_users.html +msgid "" +"Every course must have an Admin. If you are the Admin and you want to " +"transfer ownership of the course, click Add admin access to" +" make another user the Admin, then ask that user to remove you from the " +"Course Team list." +msgstr "" +"每门课程必须有一名管理员。如过您当前是管理员,且希望转让管理员身份,点击添加管理权限来赋予其他管理员权限,并请求他们将您从课程团队列表中删除。" + +#: cms/templates/manage_users_lib.html +msgid "Library User Access" +msgstr "知识库用户访问权限" + +#: cms/templates/manage_users_lib.html cms/templates/widgets/header.html +msgid "User Access" +msgstr "用户访问权限" + +#: cms/templates/manage_users_lib.html +msgid "Grant Access to This Library" +msgstr "授予对该知识库的访问权限" + +#: cms/templates/manage_users_lib.html +msgid "Provide the email address of the user you want to add" +msgstr "请提供您想添加的用户的邮件地址" + +#: cms/templates/manage_users_lib.html +msgid "Add More Users to This Library" +msgstr "添加更多用户到该知识库中" + +#: cms/templates/manage_users_lib.html +msgid "" +"Grant other members of your course team access to this library. New library " +"users must have an active {studio_name} account." +msgstr "向您课程团队的其他成员授予该知识库的访问权限。新的知识库用户必须有一个已激活的{studio_name}账号。" + +#: cms/templates/manage_users_lib.html +msgid "Add a New User" +msgstr "添加一个新用户" + +#: cms/templates/manage_users_lib.html +msgid "Library Access Roles" +msgstr "知识库访问角色" + +#: cms/templates/manage_users_lib.html +msgid "There are three access roles for libraries: User, Staff, and Admin." +msgstr "有三种知识库用户访问角色:用户、教员和管理员。" + +#: cms/templates/manage_users_lib.html +msgid "" +"Library Users can view library content and can reference or use library " +"components in their courses, but they cannot edit the contents of a library." +msgstr "知识库用户可以查看知识库内容,可以在他们的课程中参考或使用知识库组件,但不能够编辑知识库的内容。" + +#: cms/templates/manage_users_lib.html +msgid "" +"Library Staff are content co-authors. They have full editing privileges on " +"the contents of a library." +msgstr "知识库员工是内容的共同作者,他们对知识库的内容具有完全的编辑权限。" + +#: cms/templates/manage_users_lib.html +msgid "" +"Library Admins have full editing privileges and can also add and remove " +"other team members. There must be at least one user with the Admin role in a" +" library." +msgstr "知识库管理员具有完全的编辑权限,也可以添加和修改其他团队成员。一个知识库至少有一个用户担任管理员角色。" + +#: cms/templates/settings.html +msgid "Contact your edX partner manager to update these settings." +msgstr "联系您的edX合作伙伴以更新这些设置项。" + +#: cms/templates/settings_advanced.html +msgid "Your policy changes have been saved." +msgstr "您的策略调整已保存。" + +#: cms/templates/settings_advanced.html +msgid "There was an error saving your information. Please see below." +msgstr "保存您的信息时出现错误,详情见下。" + +#: cms/templates/settings_advanced.html +msgid "Manual Policy Definition" +msgstr "手工策略定义" + +#: cms/templates/settings_advanced.html +msgid "" +"{strong_start}Warning{strong_end}: Do not modify these policies unless you " +"are familiar with their purpose." +msgstr "{strong_start}警告{strong_end}:除非您熟悉这些政策的目的,否则请勿修改。" + +#: cms/templates/settings_advanced.html +msgid "Show Deprecated Settings" +msgstr "显示已过时的设置" + +#: cms/templates/settings_advanced.html +msgid "What do advanced settings do?" +msgstr "高级设置有何作用?" + +#: cms/templates/settings_advanced.html +msgid "" +"Advanced settings control specific course functionality. On this page, you " +"can edit manual policies, which are JSON-based key and value pairs that " +"control specific course settings." +msgstr "高级设置控制特定的课程功能。在本页面,您可以手工编辑基于JSON键值对的策略,控制特定的课程设置。" + +#: cms/templates/settings_advanced.html +msgid "" +"Any policies you modify here override all other information you've defined " +"elsewhere in {studio_name}. Do not edit policies unless you are familiar " +"with both their purpose and syntax." +msgstr "您在这里所做的任何更改都会覆盖您在{studio_name}其他地方定义的信息。请只在您已经熟悉某个策略的目的和语法之后再修改它。" + +#: cms/templates/settings_advanced.html +msgid "" +"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" +" you use double quotation marks (\") around the string. Do not use single " +"quotation marks (')." +msgstr "{em_start}注意:{em_end}当您输入政策值的字符串时,请在字符串两端使用双引号(\"),请勿使用单引号(')。" + +#: cms/templates/settings_graders.html +msgid "Grading Settings" +msgstr "评分设置" + +#: cms/templates/settings_graders.html +msgid "Overall Grade Range" +msgstr "整体评分范围" + +#: cms/templates/settings_graders.html +msgid "Your overall grading scale for student final grades" +msgstr "您对学生最终得分的整体评分范围" + +#: cms/templates/settings_graders.html +msgid "Add grade" +msgstr "添加成绩" + +#: cms/templates/settings_graders.html +msgid "Credit Eligibility" +msgstr "学分合格" + +#: cms/templates/settings_graders.html +msgid "Settings for course credit eligibility" +msgstr "为课程学分合格设置" + +#: cms/templates/settings_graders.html +msgid "Minimum Credit-Eligible Grade:" +msgstr "最小合格学分成绩" + +#: cms/templates/settings_graders.html +msgid "Must be greater than or equal to the course passing grade" +msgstr "必须大于或等于课程及格分数" + +#: cms/templates/settings_graders.html +msgid "Grading Rules & Policies" +msgstr "评分规则&策略" + +#: cms/templates/settings_graders.html +msgid "Deadlines, requirements, and logistics around grading student work" +msgstr "对学生作业进行评分的截止日期,要求和流程" + +#: cms/templates/settings_graders.html +msgid "Grace Period on Deadline:" +msgstr "截止日期的宽限期:" + +#: cms/templates/settings_graders.html +msgid "Leeway on due dates" +msgstr "截止日期余量" + +#: cms/templates/settings_graders.html +msgid "Assignment Types" +msgstr "作业类型" + +#: cms/templates/settings_graders.html +msgid "Categories and labels for any exercises that are gradable" +msgstr "所有可打分的练习的种类和标签" + +#: cms/templates/settings_graders.html +msgid "New Assignment Type" +msgstr "添加新的作业类型" + +#: cms/templates/settings_graders.html +msgid "What can I do on this page?" +msgstr "我在这个页面能做什么?" + +#: cms/templates/settings_graders.html +msgid "" +"You can use the slider under Overall Grade Range to specify whether your " +"course is pass/fail or graded by letter, and to establish the thresholds for" +" each grade." +msgstr "您可以使用全局评价范围下面的滑动条来指定您的课程评分是合格/不合格或者字母评价等级,并且建立每个评价等级的阈值。" + +#: cms/templates/settings_graders.html +msgid "" +"You can specify whether your course offers students a grace period for late " +"assignments." +msgstr "您可以指定您的课程是否给学生提供迟交作业的宽限期。" + +#: cms/templates/settings_graders.html +msgid "" +"You can also create assignment types, such as homework, labs, quizzes, and " +"exams, and specify how much of a student's grade each assignment type is " +"worth." +msgstr "您也可以创建作业类型,比如家庭作业、实验、测验、以及考试,并且指定每个作业是否计入最终的成绩及其评价分值。" + +#: cms/templates/studio_xblock_wrapper.html +msgid "Expand or Collapse" +msgstr "展开或折叠" + +#: cms/templates/studio_xblock_wrapper.html +msgid "Access Settings" +msgstr "访问设置" + +#: cms/templates/studio_xblock_wrapper.html +msgid "Set Access" +msgstr "设置访问限制" + +#: cms/templates/studio_xblock_wrapper.html +msgid "This block contains multiple components." +msgstr "本块包含多个组件。" + +#: cms/templates/textbooks.html +msgid "New Textbook" +msgstr "新教材" + +#: cms/templates/textbooks.html +msgid "Why should I break my textbook into chapters?" +msgstr "我什么我应该将教材拆分为章节?" + +#: cms/templates/textbooks.html +msgid "" +"Breaking your textbook into multiple chapters reduces loading times for " +"students, especially those with slow Internet connections. Breaking up " +"textbooks into chapters can also help students more easily find topic-based " +"information." +msgstr "将您的教材拆分为多个章节将有助于学生降低内容加载时间,特别是对于网速较慢的学生很有帮助。同时有助于学生按主题找到他们所需的信息。" + +#: cms/templates/textbooks.html +msgid "What if my book isn't divided into chapters?" +msgstr "如果我的教材没有拆分成章节会怎么样?" + +#: cms/templates/textbooks.html +msgid "" +"If your textbook doesn't have individual chapters, you can upload the entire" +" text as a single chapter and enter a name of your choice in the Chapter " +"Name field." +msgstr "如果您的教材没有独立的章节,您可以上传整个文本作为一个章节,并在章节名称字段中输入您所选择的名称。" + +#: cms/templates/textbooks.html +msgid "Learn more about textbooks" +msgstr "了解更多关于教材的信息" + +#: cms/templates/videos_index.html cms/templates/widgets/header.html +msgid "Video Uploads" +msgstr "视频上传" + +#: cms/templates/videos_index.html +msgid "Course Video Settings" +msgstr "课程视频设置" + +#: cms/templates/videos_index_pagination.html +msgid "Changing.." +msgstr "修改中..." + +#: cms/templates/videos_index_pagination.html +msgid "Videos per page:" +msgstr "每页视频:" + +#: cms/templates/visibility_editor.html +msgid "Access is not restricted" +msgstr "没有访问限制" + +#: cms/templates/visibility_editor.html +msgid "" +"Access to this unit is not restricted, but visibility might be affected by " +"inherited settings." +msgstr "此单元的访问不设有限制,但可视性可能会被所沿用的设置所影响。" + +#: cms/templates/visibility_editor.html +msgid "" +"Access to this component is not restricted, but visibility might be affected" +" by inherited settings." +msgstr "不禁止访问此组件,但可视性可能会被所沿用的设置影响。" + +#: cms/templates/visibility_editor.html +msgid "" +"You can restrict access to this unit to learners in specific enrollment " +"tracks or content groups." +msgstr "您可以限制访问本单元的学习者在特定的注册轨道或内容组。" + +#: cms/templates/visibility_editor.html +msgid "" +"You can restrict access to this component to learners in specific enrollment" +" tracks or content groups." +msgstr "您可以将此组件的访问限制在特定的注册跟踪或内容组中。" + +#: cms/templates/visibility_editor.html +msgid "" +"You can restrict access to this unit to learners in specific content groups." +msgstr "您可设置此单元仅供某内容组学员可访问。" + +#: cms/templates/visibility_editor.html +msgid "" +"You can restrict access to this component to learners in specific content " +"groups." +msgstr "您可限制特定内容组的学员对此组件的访问。" + +#: cms/templates/visibility_editor.html +msgid "Manage content groups" +msgstr "管理内容组" + +#. Translators: Any text between {screen_reader_start} and {screen_reader_end} +#. is only read by screen readers and never shown in the browser. +#: cms/templates/visibility_editor.html +msgid "" +"{screen_reader_start}Warning:{screen_reader_end} The unit that contains this" +" component is hidden from learners. The unit setting overrides the component" +" access settings defined here." +msgstr "" +"{screen_reader_start}警告:{screen_reader_end}包含此组件的单元对学员隐藏,单元设置覆盖此处所设置的组件访问设置。" + +#: cms/templates/visibility_editor.html +msgid "Access is restricted to:" +msgstr "访问开放人群:" + +#: cms/templates/visibility_editor.html +msgid "Restrict access to:" +msgstr "可访问人群;" + +#: cms/templates/visibility_editor.html +msgid "Select a group type" +msgstr "选择分组类型" + +#: cms/templates/visibility_editor.html +msgid "All Learners and Staff" +msgstr "所有学生与教员" + +#: cms/templates/visibility_editor.html +msgid "Select one or more groups:" +msgstr "选择一或者多个群组" + +#: cms/templates/visibility_editor.html +msgid "" +"This group no longer exists. Choose another group or remove the access " +"restriction." +msgstr "此组已不存在,请选择其他分组并撤销访问限制。" + +#: cms/templates/emails/activation_email_subject.txt +msgid "Your account for {studio_name}" +msgstr "您的{studio_name}账号" + +#: cms/templates/emails/course_creator_admin_subject.txt +msgid "{email} has requested {studio_name} course creator privileges on edge" +msgstr "{email} 已在边缘站点上发出要求获得{studio_name}上课程创建者权限的请求" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "" +"User '{user}' with e-mail {email} has requested {studio_name} course creator" +" privileges on edge." +msgstr "用户“{user}”(电子邮件地址:{email})已在边缘站点上发出要求获得{studio_name}上课程创建者权限的请求。" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "To grant or deny this request, use the course creator admin table." +msgstr "要授予或拒绝这一请求,请使用课程创建者管理表。" + +#: cms/templates/emails/course_creator_denied.txt +msgid "" +"Your request for course creation rights to {studio_name} have been denied. " +"If you believe this was in error, please contact {email}" +msgstr "您在{studio_name}上请求的课程创建权限已被拒绝。如果您觉得有问题,请联系 {email}" + +#: cms/templates/emails/course_creator_granted.txt +msgid "" +"Your request for course creation rights to {studio_name} have been granted. To create your first course, visit\n" +"\n" +"{url}" +msgstr "" +"已授予您在{studio_name}上创建课程的权限。要创建您的第一门课程,请访问\n" +"\n" +"{url}" + +#: cms/templates/emails/course_creator_revoked.txt +msgid "" +"Your course creation rights to {studio_name} have been revoked. If you " +"believe this was in error, please contact {email}" +msgstr "您在{studio_name}上的课程创建权限已被撤销。如果您觉得有问题,请联系 {email}" + +#: cms/templates/emails/course_creator_subject.txt +msgid "Your course creator status for {studio_name}" +msgstr "您在{studio_name}上的课程创建者状态" + +#: cms/templates/emails/user_task_complete_email.txt +msgid "" +"Your {task_name} task has completed with the status '{task_status}'. Use " +"this URL to view task details or download any files created: {detail_url}" +msgstr "您的{task_name}任务状态是{task_status},请使用此URL查看任务详情或下载已创建的文件:{detail_url}" + +#: cms/templates/emails/user_task_complete_email.txt +msgid "" +"Your {task_name} task has completed with the status '{task_status}'. Sign in" +" to view the details of your task or download any files created." +msgstr "您的任务:{task_name}已超过“{task_status}”状态,请登录后查看任务详情或下载已创建文件。" + +#: cms/templates/emails/user_task_complete_email_subject.txt +msgid "{platform_name} {studio_name}: Task Status Update" +msgstr "{platform_name} {studio_name}:任务状态更新" + +#: cms/templates/maintenance/_force_publish_course.html +msgid "Required data to force publish course." +msgstr "强制发布课程所需的数据。" + +#: cms/templates/maintenance/_force_publish_course.html +msgid "course-v1:edX+DemoX+Demo_Course" +msgstr "course-v1:edX+DemoX+Demo_Course" + +#: cms/templates/maintenance/_force_publish_course.html +msgid "Reset values" +msgstr "重设值" + +#: cms/templates/maintenance/base.html cms/templates/maintenance/index.html +msgid "Maintenance Dashboard" +msgstr "维护面板" + +#: cms/templates/registration/activation_complete.html +msgid "Thanks for activating your account." +msgstr "谢谢您激活账号。" + +#: cms/templates/registration/activation_complete.html +msgid "This account has already been activated." +msgstr "本账号已经被激活" + +#: cms/templates/registration/activation_complete.html +msgid "Visit your {link_start}dashboard{link_end} to see your courses." +msgstr "访问您的{link_start}课程面板{link_end}来查看课程。" + +#: cms/templates/registration/activation_complete.html +msgid "You can now {link_start}sign in{link_end}." +msgstr "您现在可以{link_start}登录{link_end}。" + +#: cms/templates/registration/activation_invalid.html +msgid "Activation Invalid" +msgstr "激活无效" + +#: cms/templates/registration/activation_invalid.html +msgid "" +"Something went wrong. Email programs sometimes split URLs into two lines, so" +" make sure the URL you're using is formatted correctly. If you still have " +"issues, send us an email message at {email_start}{email}{email_end}." +msgstr "" +"发生了错误。电子邮件程序有时会将 URL 分成两行,因此请确保您使用的 URL 格式正确。如果您仍然有问题,请通过以下地址向我们发送电子邮件: " +"{email_start}{email}{email_end}。" + +#: cms/templates/registration/activation_invalid.html +msgid "Return to the {link_start}home page{link_end}." +msgstr "返回到{link_start}主页{link_end}。" + +#: cms/templates/registration/reg_complete.html +msgid "" +"We've sent an email message to {email} with instructions for activating your" +" account." +msgstr "我们已向您的邮箱{email}发送了一封邮件,其中包含有关激活账号的说明" + +#: cms/templates/widgets/footer.html +msgid "Policies" +msgstr "政策" + +#: cms/templates/widgets/footer.html +msgid "Accessibility Accommodation Request" +msgstr "可访问的住宿申请" + +#: cms/templates/widgets/footer.html +msgid "LMS" +msgstr "LMS" + +#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX +#. Inc.'. Please do not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +msgid "" +"EdX, Open edX, Studio, and the edX and Open edX logos are registered " +"trademarks or trademarks of {link_start}edX Inc.{link_end}" +msgstr "" +"“EdX”、“Open edX”、“Studio”和 edX、Open edX 图标是 {link_start}edX 公司{link_end} " +"的(注册)商标。" + +#: cms/templates/widgets/header.html +msgid "Current Course:" +msgstr "当前课程" + +#: cms/templates/widgets/header.html +msgid "Course Navigation" +msgstr "课程导航" + +#: cms/templates/widgets/header.html +msgid "Outline" +msgstr "大纲" + +#: cms/templates/widgets/header.html +msgid "Import" +msgstr "导入" + +#: cms/templates/widgets/header.html +msgid "Export" +msgstr "导出" + +#: cms/templates/widgets/header.html +msgid "Current Library:" +msgstr "当前知识库:" + +#: cms/templates/widgets/header.html +msgid "Language preference" +msgstr "语言首选项" + +#: cms/templates/widgets/header.html +msgid "Account Navigation" +msgstr "账号导航" + +#: cms/templates/widgets/header.html +msgid "Contextual Online Help" +msgstr "相关在线帮助" + +#: cms/templates/widgets/metadata-edit.html +msgid "Launch Latex Source Compiler" +msgstr "启动 Latex 源编译器" + +#: cms/templates/widgets/problem-edit.html +msgid "Heading" +msgstr "标题" + +#: cms/templates/widgets/problem-edit.html +msgid "Insert a heading" +msgstr "插入一个标题" + +#: cms/templates/widgets/problem-edit.html +msgid "Add a multiple choice question" +msgstr "新增一个单选的问题" + +#: cms/templates/widgets/problem-edit.html +msgid "Add a question with checkboxes" +msgstr "新增一个可复选的问题" + +#: cms/templates/widgets/problem-edit.html +msgid "Insert a text response" +msgstr "插入一个文字的回应" + +#: cms/templates/widgets/problem-edit.html +msgid "Insert a numerical response" +msgstr "插入一个数字的回应" + +#: cms/templates/widgets/problem-edit.html +msgid "Insert a dropdown response" +msgstr "插入一个下拉式的回应" + +#: cms/templates/widgets/problem-edit.html +msgid "Explanation" +msgstr "解析" + +#: cms/templates/widgets/problem-edit.html +msgid "Add an explanation for this question" +msgstr "新增此章节的说明" + +#: cms/templates/widgets/problem-edit.html +msgid "Advanced Editor" +msgstr "高级编辑器" + +#: cms/templates/widgets/problem-edit.html +msgid "Toggle Cheatsheet" +msgstr "切换速记" + +#: cms/templates/widgets/problem-edit.html +msgid "Label" +msgstr "标签" + +#: cms/templates/widgets/sock_links.html +msgid "Access the Open edX Portal" +msgstr "访问 Open edX Portal" + +#: cms/templates/widgets/sock_links.html +msgid "Open edX Portal" +msgstr "Open edX Portal" + +#: cms/templates/widgets/user_dropdown.html +msgid "Currently signed in as:" +msgstr "当前登录用户:" + +#: cms/templates/widgets/user_dropdown.html +msgid "Maintenance" +msgstr "维护" + +#: wiki/apps.py +msgid "Wiki notifications" +msgstr "Wiki通知" + +#: wiki/apps.py +msgid "Wiki images" +msgstr "Wiki图片" + +#: wiki/apps.py +msgid "Wiki attachments" +msgstr "Wiki附件" + +#: wiki/forms.py +msgid "Only localhost... muahahaha" +msgstr "只有localhost……哇哈哈哈" + +#: wiki/forms.py +msgid "Initial title of the article. May be overridden with revision titles." +msgstr "文章的原始标题,可能会被修正版本的标题所覆盖。" + +#: wiki/forms.py +msgid "Type in some contents" +msgstr "请键入一些内容" + +#: wiki/forms.py +msgid "" +"This is just the initial contents of your article. After creating it, you " +"can use more complex features like adding plugins, meta data, related " +"articles etc..." +msgstr "这只是您文章的初稿。在创建了文章以后,您可以使用更复杂的特性,比如增加插件、元数据、相关文章,等等……" + +#: wiki/forms.py +msgid "Contents" +msgstr "内容" + +#: wiki/forms.py +msgid "Summary" +msgstr "概要" + +#: wiki/forms.py +msgid "" +"Give a short reason for your edit, which will be stated in the revision log." +msgstr "给出您编辑本文章的简短说明,它将会被写入修订日志中。" + +#: wiki/forms.py +msgid "" +"While you were editing, someone else changed the revision. Your contents " +"have been automatically merged with the new contents. Please review the text" +" below." +msgstr "当您在编辑时,别人进行了修改,您的内容已自动与其合并,请检查以下的文字。" + +#: wiki/forms.py +msgid "No changes made. Nothing to save." +msgstr "没有变更,不需要保存。" + +#: wiki/forms.py wiki/templates/wiki/dir.html +msgid "Slug" +msgstr "固定链接地址" + +#: wiki/forms.py +msgid "" +"This will be the address where your article can be found. Use only " +"alphanumeric characters and - or _. Note that you cannot change the slug " +"after creating the article." +msgstr "" +"这个地址将用于定位您的文档。请使用由数字、字母、-(减号)、_(下划线)组成的字符串。注意:一旦文档创建完毕将不能再对此固定链接地址进行修改。" + +#: wiki/forms.py +msgid "Write a brief message for the article's history log." +msgstr "为文章的历史记录写一个简短的报告" + +#: wiki/forms.py +msgid "A slug may not begin with an underscore." +msgstr "不能使用下划线作为固定链接地址的起始字符。" + +#: wiki/forms.py +#, python-format +msgid "A deleted article with slug \"%s\" already exists." +msgstr "已经存在一个固定链接地址为“%s”的已删除文档。" + +#: wiki/forms.py +#, python-format +msgid "A slug named \"%s\" already exists." +msgstr "以“%s”命名的固定链接地址已经存在。" + +#: wiki/forms.py +msgid "Yes, I am sure" +msgstr "是的,我确定" + +#: wiki/forms.py wiki/templates/wiki/deleted.html +msgid "Purge" +msgstr "清除" + +#: wiki/forms.py +msgid "" +"Purge the article: Completely remove it (and all its contents) with no undo." +" Purging is a good idea if you want to free the slug such that users can " +"create new articles in its place." +msgstr "清除文档:完全删除它(以及其中的内容)且无法恢复。当您需要释放该固定链接地址以便可以创建一个新文档继承使用该固定链接地址时选择清除操作。" + +#: wiki/forms.py wiki/plugins/attachments/forms.py +#: wiki/plugins/images/forms.py +msgid "You are not sure enough!" +msgstr "您还不够确定!" + +#: wiki/forms.py +msgid "While you tried to delete this article, it was modified. TAKE CARE!" +msgstr "在您试图删除该文章期间,它已经被修改。请特别注意!" + +#: wiki/forms.py +msgid "Lock article" +msgstr "锁定文章" + +#: wiki/forms.py +msgid "Deny all users access to edit this article." +msgstr "不允许其他用户编辑该文章。" + +#: wiki/forms.py +msgid "Permissions" +msgstr "权限" + +#: wiki/forms.py +msgid "Owner" +msgstr "所有者" + +#: wiki/forms.py +msgid "Enter the username of the owner." +msgstr "请输入所有者用户名。" + +#: wiki/forms.py +msgid "(none)" +msgstr "(空)" + +#: wiki/forms.py +msgid "Inherit permissions" +msgstr "继承权限" + +#: wiki/forms.py +msgid "" +"Check here to apply the above permissions recursively to articles under this" +" one." +msgstr "选择此项将使上述权限对以下的文档递归生效。" + +#: wiki/forms.py +msgid "Permission settings for the article were updated." +msgstr "文档的权限设置已更新。" + +#: wiki/forms.py +msgid "Your permission settings were unchanged, so nothing saved." +msgstr "您的权限设置没有变更,不需要保存。" + +#: wiki/forms.py +msgid "No user with that username" +msgstr "找不到此用户名所对应的用户" + +#: wiki/forms.py +msgid "Article locked for editing" +msgstr "文章在编辑中,已被锁定" + +#: wiki/forms.py +msgid "Article unlocked for editing" +msgstr "文章已解锁,可以编辑" + +#: wiki/forms.py +msgid "Filter" +msgstr "过滤" + +#: wiki/core/plugins/base.py +msgid "Settings for plugin" +msgstr "插件设置" + +#: wiki/models/article.py wiki/models/pluginbase.py +#: wiki/plugins/attachments/models.py +msgid "current revision" +msgstr "当前版本" + +#: wiki/models/article.py +msgid "" +"The revision being displayed for this article. If you need to do a roll-" +"back, simply change the value of this field." +msgstr "显示该文档的对应版本。如果您需要回滚到历史版本,请修改空格里的值。" + +#: wiki/models/article.py +msgid "modified" +msgstr "已修改" + +#: wiki/models/article.py +msgid "Article properties last modified" +msgstr "最后修改的文章属性" + +#: wiki/models/article.py +msgid "owner" +msgstr "所有者" + +#: wiki/models/article.py +msgid "" +"The owner of the article, usually the creator. The owner always has both " +"read and write access." +msgstr "文章的所有者,通常是创建者。所有者总是拥有读写权限。" + +#: wiki/models/article.py +msgid "group" +msgstr "分组" + +#: wiki/models/article.py +msgid "" +"Like in a UNIX file system, permissions can be given to a user according to " +"group membership. Groups are handled through the Django auth system." +msgstr "类似UNIX文件系统,权限可以根据用户的用户组授予。用户组通过Django的认证系统管理。" + +#: wiki/models/article.py +msgid "group read access" +msgstr "用户组读访问权限" + +#: wiki/models/article.py +msgid "group write access" +msgstr "用户组写访问权限" + +#: wiki/models/article.py +msgid "others read access" +msgstr "其他用户读访问权限" + +#: wiki/models/article.py +msgid "others write access" +msgstr "其他用户写访问权限" + +#: wiki/models/article.py +#, python-format +msgid "Article without content (%(id)d)" +msgstr "文档中没有内容(%(id)d)" + +#: wiki/models/article.py +msgid "content type" +msgstr "内容类型" + +#: wiki/models/article.py +msgid "object ID" +msgstr "对象ID" + +#: wiki/models/article.py +msgid "Article for object" +msgstr "对象的文档" + +#: wiki/models/article.py +msgid "Articles for object" +msgstr "对象的文档" + +#: wiki/models/article.py +msgid "revision number" +msgstr "版本修订号" + +#: wiki/models/article.py +msgid "IP address" +msgstr "IP地址" + +#: wiki/models/article.py +msgid "user" +msgstr "用户" + +#: wiki/models/article.py wiki/templates/wiki/article.html +#: wiki/templates/wiki/includes/revision_info.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "locked" +msgstr "已锁定" + +#: wiki/models/article.py wiki/models/pluginbase.py +msgid "article" +msgstr "文档" + +#: wiki/models/article.py +msgid "article contents" +msgstr "文档内容" + +#: wiki/models/article.py +msgid "article title" +msgstr "文档标题" + +#: wiki/models/article.py +msgid "" +"Each revision contains a title field that must be filled out, even if the " +"title has not changed" +msgstr "每一次版本修订都必须包含有标题,即使标题本身并没有发生变化" + +#: wiki/models/pluginbase.py +msgid "original article" +msgstr "原始文档" + +#: wiki/models/pluginbase.py +msgid "Permissions are inherited from this article" +msgstr "从该文档继承的权限" + +#: wiki/models/pluginbase.py +msgid "A plugin was changed" +msgstr "一个插件被变更" + +#: wiki/models/pluginbase.py +msgid "" +"The revision being displayed for this plugin.If you need to do a roll-back, " +"simply change the value of this field." +msgstr "显示插件修订版本信息。如果您需要回滚到历史版本,请修改此处的值。" + +#: wiki/models/urlpath.py +msgid "Cache lookup value for articles" +msgstr "缓存文档的查找值" + +#: wiki/models/urlpath.py +msgid "slug" +msgstr "固定链接地址" + +#: wiki/models/urlpath.py +msgid "(root)" +msgstr "(root)" + +#: wiki/models/urlpath.py +msgid "URL path" +msgstr "URL路径" + +#: wiki/models/urlpath.py +msgid "URL paths" +msgstr "URL路径" + +#: wiki/models/urlpath.py +msgid "Sorry but you cannot have a root article with a slug." +msgstr "抱歉,您无法对根文档设置固定链接地址。" + +#: wiki/models/urlpath.py +msgid "A non-root note must always have a slug." +msgstr "非根节点必须有固定链接地址。" + +#: wiki/models/urlpath.py +#, python-format +msgid "There is already a root node on %s" +msgstr "在%s已经存在一个根节点" + +#: wiki/models/urlpath.py +msgid "" +"Articles who lost their parents\n" +"===============================\n" +"\n" +"The children of this article have had their parents deleted. You should probably find a new home for them." +msgstr "" +"丢失父链接的文档\n" +"===============================\n" +"\n" +"该子文档的父链接已经被删除。您可以可以重新为他们寻找一个新的链接点。" + +#: wiki/models/urlpath.py +msgid "Lost and found" +msgstr "失物招领" + +#: wiki/plugins/attachments/forms.py +msgid "A short summary of what the file contains" +msgstr "该文档包含内容的简要说明" + +#: wiki/plugins/attachments/forms.py +msgid "Yes I am sure..." +msgstr "是的我很确定…" + +#: wiki/plugins/attachments/markdown_extensions.py +msgid "Click to download file" +msgstr "点击以下载文件" + +#: wiki/plugins/attachments/models.py +msgid "" +"The revision of this attachment currently in use (on all articles using the " +"attachment)" +msgstr "该附件的修订版本正在使用中(适用于所有使用该附件的文档)" + +#: wiki/plugins/attachments/models.py +msgid "original filename" +msgstr "原始文件名" + +#: wiki/plugins/attachments/models.py +msgid "attachment" +msgstr "附件" + +#: wiki/plugins/attachments/models.py +msgid "attachments" +msgstr "附件" + +#: wiki/plugins/attachments/models.py +msgid "file" +msgstr "文件" + +#: wiki/plugins/attachments/models.py +msgid "attachment revision" +msgstr "附件修订版本" + +#: wiki/plugins/attachments/models.py +msgid "attachment revisions" +msgstr "附件修订版本" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "%s was successfully added." +msgstr "%s已经成功添加。" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "Your file could not be saved: %s" +msgstr "您的文件无法被保存:%s" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your file could not be saved, probably because of a permission error on the " +"web server." +msgstr "您的文件无法被保存,可能是由于或者Web服务器的权限异常。" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "%s uploaded and replaces old attachment." +msgstr "%s上传成功并覆盖原有附件。" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your new file will automatically be renamed to match the file already " +"present. Files with different extensions are not allowed." +msgstr "您的新文件将被自动重命名以匹配已经存在的文件。不允许使用不同的文件扩展名。" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "Current revision changed for %s." +msgstr "对%s当前修订版本的变更。" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." +msgstr "从“%(art)s”添加一个引用到“%(att)s”。" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "The file %s was deleted." +msgstr "文档%s被删除。" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "This article is no longer related to the file %s." +msgstr "该文档与文件%s不再关联。" + +#: wiki/plugins/attachments/wiki_plugin.py +#, python-format +msgid "A file was changed: %s" +msgstr "文件被修改:%s" + +#: wiki/plugins/attachments/wiki_plugin.py +#, python-format +msgid "A file was deleted: %s" +msgstr "文件被删除:%s" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "" +"The file may be referenced on other articles. Deleting it means that they " +"will loose their references to this file. The following articles reference " +"this file:" +msgstr "该文件也许在其他文字内被引用。删除他意味着在文章内将无法引用该文件。以下文章引用了该文件:" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "Delete it!" +msgstr "删除!" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "" +"You can remove a reference to a file, but it will retain its references on " +"other articles." +msgstr "您可移除一个文件的引用,但其他文章仍保留此引用。" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "Remove reference" +msgstr "移除引用" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +msgid "History of" +msgstr "历史" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +msgid "User" +msgstr "用户" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "File" +msgstr "文件" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Action" +msgstr "操作" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "No description" +msgstr "无描述" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Download" +msgstr "下载" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +msgid "Use this!" +msgstr "使用!" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#, python-format +msgid "" +"Replacing an attachment means adding a new file that will be used in its " +"place. All references to the file will be replaced by the one you upload and" +" the file will be downloaded as %(filename)s. Please note " +"that this attachment is in use on other articles, you may distort contents. " +"However, do not hestitate to take advantage of this and make replacements " +"for the listed articles where necessary. This way of working is more " +"efficient...." +msgstr "" +"替换附件意味着将在其位置添加一个新文件。所有对该文件的引用将被您上传的文件所取代,该文件将以%(filename)s的形式下载。请注意,此附件在其他文章中使用,您可能会对其内容造成影响。不过我们鼓励您在必要时替换所列的文件。这种工作方式更高效...." + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +msgid "Articles using" +msgstr "文章使用" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#, python-format +msgid "" +"Replacing an attachment means adding a new file that will be used in its " +"place. All references to the file will be replaced by the one you upload and" +" the file will be downloaded as %(filename)s." +msgstr "" +"替换附件意味着在其位置添加一个新文件。所有对该文件的引用将被您上传的文件所取代,该文件将以%(filename)s形式下载。" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html +msgid "Upload replacement" +msgstr "上传替换文件" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Add file to" +msgstr "添加文件至" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Add attachment from other article" +msgstr "添加来自其他文章的附件" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Main article" +msgstr "主文章" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Add to article" +msgstr "添加至文章" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Your search did not return any results" +msgstr "您的搜索没有结果" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "Adding new articles" +msgstr "正在添加新文章" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "An external link" +msgstr "一个外部链接" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "Headers" +msgstr "标题" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "" +"Use these codes for headers and to automatically generate Tables of " +"Contents." +msgstr "在表头中使用这些码,并且自动生成目录。" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "Typography" +msgstr "排版" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "Lists" +msgstr "列表" + +#: wiki/plugins/images/forms.py +#, python-format +msgid "" +"New image %s was successfully uploaded. You can use it by selecting it from " +"the list of available images." +msgstr "新图片%s已经成功上传,您可以从图片库中选择使用它。" + +#: wiki/plugins/images/forms.py +msgid "Are you sure?" +msgstr "您确定?" + +#: wiki/plugins/images/models.py +msgid "image" +msgstr "图片" + +#: wiki/plugins/images/models.py +msgid "images" +msgstr "图片" + +#: wiki/plugins/images/models.py +#, python-format +msgid "Image: %s" +msgstr "图片:%s" + +#: wiki/plugins/images/models.py +msgid "Current revision not set!!" +msgstr "尚未设置当前的修订版本!!" + +#: wiki/plugins/images/models.py +msgid "image revision" +msgstr "图片修订版本" + +#: wiki/plugins/images/models.py +msgid "image revisions" +msgstr "图片修订版本" + +#: wiki/plugins/images/models.py +#, python-format +msgid "Image Revsion: %d" +msgstr "图片修订版本:%d" + +#: wiki/plugins/images/views.py +#, python-format +msgid "%s has been restored" +msgstr "%s已经被恢复" + +#: wiki/plugins/images/views.py +#, python-format +msgid "%s has been marked as deleted" +msgstr "%s已经被标注为已删除" + +#: wiki/plugins/images/views.py +#, python-format +msgid "%(file)s has been changed to revision #%(revision)d" +msgstr "%(file)s已经被变更到修订版本#%(revision)d" + +#: wiki/plugins/images/views.py +#, python-format +msgid "%(file)s has been saved." +msgstr "%(file)s已经被保存。" + +#: wiki/plugins/images/wiki_plugin.py +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Images" +msgstr "图片" + +#: wiki/plugins/images/wiki_plugin.py +#, python-format +msgid "An image was added: %s" +msgstr "已经添加图片:%s" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "" +"The following images are available for this article. Copy the markdown tag " +"to directly refer to an image from the article text." +msgstr "此文章可使用以下图片,复制标签直接引用文章文字中的图片。" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Back to edit page" +msgstr "返回编辑页面" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "No file" +msgstr "没有文件" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Upload new image" +msgstr "上传新图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Restore image" +msgstr "恢复图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Remove image" +msgstr "移除图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Completely delete" +msgstr "彻底删除" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Revert to this version" +msgstr "恢复至此版本" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "There are no images for this article." +msgstr "此文章没有图片。" + +#: wiki/plugins/images/templates/wiki/plugins/images/purge.html +#: wiki/templates/wiki/deleted.html +msgid "Purge deletion" +msgstr "清除" + +#: wiki/plugins/images/templates/wiki/plugins/images/purge.html +msgid "Purge image: Completely remove image file and all revisions." +msgstr "清除:彻底移除图片文件。" + +#: wiki/plugins/images/templates/wiki/plugins/images/purge.html +msgid "Remove it completely!" +msgstr "完全移除" + +#: wiki/plugins/images/templates/wiki/plugins/images/render.html +msgid "Image not found" +msgstr "未发现图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html +msgid "Replace image" +msgstr "替换图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html +msgid "Choose an image file to replace current image." +msgstr "选择一张图片来替换当前图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Image id" +msgstr "图片编号" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "Insert" +msgstr "插入" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "No images found for this article" +msgstr "这篇文章中未找到图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Manage images" +msgstr "管理图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Add new image" +msgstr "添加新的图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Add image" +msgstr "添加图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "You do not have permissions to add images." +msgstr "您没有权限添加图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "How to use images" +msgstr "如何使用图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "" +"After uploading an image, it is attached to this particular artice and can " +"be used only here. Other users may replace the image, but older versions are" +" kept. You probably want to show the image with a nice caption. To achieve " +"this, press the Insert button and fill in the caption fields and possibly " +"choose to have you image floating right or left of the content. You can use " +"Markdown in the caption. The markdown code syntax for images looks like " +"this, possible values for align are left/center/right:" +msgstr "" +"上传一张图片后,图片会附属于此文章,并且仅供此文章使用。其他用户可替换此图片,但旧版本会保留。您可加字幕描述图片,步骤如下:点击嵌入按钮并输入字幕,然后可选择图片浮在内容的左方还是右方。您可在字幕中使用标签,图片的标签码语法像这样,对线可可以取值“left/center/right”。" + +#: wiki/plugins/links/wiki_plugin.py +msgid "Links" +msgstr "链接" + +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "Link to another wiki page" +msgstr "链接至另一个wiki页面" + +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "" +"Type in something from another wiki page's title and auto-complete will help" +" you create a tag for you wiki link. Tags for links look like this:" +msgstr "参考输入其他Wiki页面标题,自动完成功能会帮助您创建Wiki链接的标签。链接标签如下:" + +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "" +"You can link to another website simply by inserting an address example.com " +"or http://example.com or by using the markdown syntax:" +msgstr "插入example.com或http://example.com,或使用以下标记语法来轻松关联网站:" + +#: wiki/plugins/notifications/forms.py +msgid "Notifications" +msgstr "通知" + +#: wiki/plugins/notifications/forms.py +msgid "When this article is edited" +msgstr "当这篇文章被编辑" + +#: wiki/plugins/notifications/forms.py +msgid "Also receive emails about article edits" +msgstr "接收关于该文档编辑的电子邮件" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were updated." +msgstr "您的通知设置已经更新。" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were unchanged, so nothing saved." +msgstr "您的通知设置没有变更,因此无需保存。" + +#: wiki/plugins/notifications/models.py +#, python-format +msgid "%(user)s subscribing to %(article)s (%(type)s)" +msgstr "%(user)s订阅%(article)s(%(type)s)" + +#: wiki/plugins/notifications/models.py +#, python-format +msgid "Article deleted: %s" +msgstr "被删除的文档:%s" + +#: wiki/plugins/notifications/models.py +#, python-format +msgid "Article modified: %s" +msgstr "被修改文档:%s" + +#: wiki/plugins/notifications/models.py +#, python-format +msgid "New article created: %s" +msgstr "创建的新文档:%s" + +#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html +msgid "notifications" +msgstr "通知" + +#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html +msgid "No notifications" +msgstr "没有通知" + +#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html +msgid "Clear notifications list" +msgstr "清除通知列表" + +#: wiki/templates/wiki/base.html +msgid "Search..." +msgstr "搜索" + +#: wiki/templates/wiki/base.html wiki/templates/wiki/accounts/login.html +#: wiki/templates/wiki/accounts/signup.html +msgid "Sign up" +msgstr "注册" + +#: wiki/templates/wiki/deleted.html +msgid "Article deleted" +msgstr "文章已删除" + +#: wiki/templates/wiki/deleted.html +msgid "Article Deleted" +msgstr "文章已删除" + +#: wiki/templates/wiki/deleted.html +msgid "The article you were looking for has been deleted." +msgstr "您寻找的文章已被删除。" + +#: wiki/templates/wiki/deleted.html +msgid "You may restore this article and its children by clicking restore." +msgstr "您可点击恢复按钮来恢复此文章及其子项。" + +#: wiki/templates/wiki/deleted.html +msgid "" +"You may remove this article and any children permanently and free their " +"slugs by clicking the below button. This action cannot be undone." +msgstr "您可永久性移除此文章及其任何子项,并点击以下按钮来解绑其固定地址。操作无法撤销。" + +#: wiki/templates/wiki/dir.html +msgid "Listing articles in" +msgstr "文章清单" + +#: wiki/templates/wiki/dir.html +msgid "Up one level" +msgstr "返回上一级" + +#: wiki/templates/wiki/dir.html +msgid "clear" +msgstr "清除" + +#: wiki/templates/wiki/dir.html +msgid "article,articles" +msgstr "文章" + +#: wiki/templates/wiki/dir.html +msgid "matches,match" +msgstr "匹配,匹配" + +#: wiki/templates/wiki/dir.html +#, python-format +msgid "%(cnt)s %(articles_plur)s in this level %(match_plur)s your search." +msgstr "%(cnt)s%(articles_plur)s该等级中有%(match_plur)s符合您的搜索。" + +#: wiki/templates/wiki/dir.html +msgid "is,are" +msgstr "是,是" + +#: wiki/templates/wiki/dir.html +#, python-format +msgid "There %(articles_plur_verb)s %(cnt)s %(articles_plur)s in this level." +msgstr "此等级中共有%(articles_plur_verb)s%(cnt)s%(articles_plur)s篇文章" + +#: wiki/templates/wiki/dir.html +msgid "Last modified" +msgstr "上一次修改" + +#: wiki/templates/wiki/history.html +msgid "no log message" +msgstr "没有日志信息" + +#: wiki/templates/wiki/permission_denied.html +msgid "Sorry, you don't have permission to view this page." +msgstr "抱歉,您没有权限访问该页面" + +#: wiki/templates/wiki/preview_inline.html +msgid "Previewing revision" +msgstr "预览修改" + +#: wiki/templates/wiki/preview_inline.html +msgid "Previewing merge between" +msgstr "预览合并效果:" + +#: wiki/templates/wiki/preview_inline.html +msgid "and" +msgstr "和" + +#: wiki/templates/wiki/source.html +msgid "Source of" +msgstr "来源" + +#: wiki/templates/wiki/source.html +msgid "This article is currently locked for editing." +msgstr "此文章已锁定,暂时无法编辑。" + +#: wiki/templates/wiki/accounts/login.html +msgid "Log me in..." +msgstr "登录" + +#: wiki/templates/wiki/accounts/login.html +msgid "Don't have an account?" +msgstr "没有账号?" + +#: wiki/templates/wiki/accounts/signup.html +msgid "Sign me up..." +msgstr "注册" + +#: wiki/templates/wiki/article/create_root.html +msgid "Create root article" +msgstr "创建源文章" + +#: wiki/templates/wiki/article/create_root.html +msgid "Congratulations!" +msgstr "恭喜!" + +#: wiki/templates/wiki/article/create_root.html +msgid "" +"You have django-wiki installed... but there are no articles. So it's time to" +" create the first one, the root article. In the beginning, it will only be " +"editable by administrators, but you can define permissions after." +msgstr "您已安装django-wiki,但没有文章。建议您现在创建首篇源文章,刚开始仅管理员可编辑,但过后您也可以分配编辑权限给其他用户。" + +#: wiki/templates/wiki/article/create_root.html +msgid "Root article" +msgstr "源文章" + +#: wiki/templates/wiki/article/create_root.html +msgid "Create root" +msgstr "创建根目录" + +#: wiki/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in og sign up to use this function." +msgstr "如需使用此功能,请先登录或注册。" + +#: wiki/templates/wiki/includes/article_menu.html +msgid "View Source" +msgstr "查看文章源" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "Sub-articles for" +msgstr "子文章" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "No sub-articles" +msgstr "无子文章" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "...and more" +msgstr "...更多" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "Browse articles in this level" +msgstr "浏览此等级中的文章" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "New article next to" +msgstr "下一篇新的文章" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "New article below" +msgstr "下面的新文章" + +#: wiki/templates/wiki/includes/revision_info.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "by" +msgstr "由" + +#: wiki/templates/wiki/includes/revision_info.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "restored" +msgstr "恢复" + +#: wiki/templates/wiki/includes/revision_info.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "unlocked" +msgstr "解锁" + +#: wiki/views/accounts.py +msgid "You are now sign up... and now you can sign in!" +msgstr "您正在注册……现在您可以登录了!" + +#: wiki/views/accounts.py +msgid "You are no longer logged in. Bye bye!" +msgstr "您已经退出。再见!" + +#: wiki/views/accounts.py +msgid "You are now logged in! Have fun!" +msgstr "您已经登录!好好体验吧!" + +#: wiki/views/article.py +#, python-format +msgid "New article '%s' created." +msgstr "新文章“%s”已经创建。" + +#: wiki/views/article.py +#, python-format +msgid "There was an error creating this article: %s" +msgstr "该文档创建过程中出错:%s" + +#: wiki/views/article.py +msgid "There was an error creating this article." +msgstr "在文档创建过程中出错了。" + +#: wiki/views/article.py +msgid "" +"This article cannot be deleted because it has children or is a root article." +msgstr "这篇文章不能被删除,因为它有子类或是根文章。" + +#: wiki/views/article.py +msgid "" +"This article together with all its contents are now completely gone! Thanks!" +msgstr "文档及其所有内容已经删除!谢谢!" + +#: wiki/views/article.py +#, python-format +msgid "" +"The article \"%s\" is now marked as deleted! Thanks for keeping the site " +"free from unwanted material!" +msgstr "文档“%s”现在已被标记为删除了!感谢您为网站清除不必要的材料!" + +#: wiki/views/article.py +msgid "Your changes were saved." +msgstr "您的更改已被保存。" + +#: wiki/views/article.py +msgid "A new revision of the article was successfully added." +msgstr "成功添加了这篇文章的新的版本" + +#: wiki/views/article.py +msgid "Restoring article" +msgstr "恢复文档" + +#: wiki/views/article.py +#, python-format +msgid "The article \"%s\" and its children are now restored." +msgstr "文档“%s”及其子链接已经被恢复。" + +#: wiki/views/article.py +#, python-format +msgid "" +"The article %(title)s is now set to display revision #%(revision_number)d" +msgstr "文章“%(title)s”当前已设置为显示修订版本 #%(revision_number)d" + +#: wiki/views/article.py +msgid "New title" +msgstr "新标题" + +#: wiki/views/article.py +#, python-format +msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" +msgstr "合并修订版本#%(r1)d与#%(r2)d" + +#: wiki/views/article.py +#, python-format +msgid "" +"A new revision was created: Merge between Revision #%(r1)d and Revision " +"#%(r2)d" +msgstr "产生新的修订版本:合并修订版本#%(r1)d与#%(r2)d" + +#: membership/models.py +msgid "1 Month" +msgstr "一个月会员" + +#: membership/models.py +msgid "3 Months" +msgstr "三个月会员" + +#: membership/models.py +msgid "6 Months" +msgstr "半年会员" + +#: membership/models.py +msgid "12 Months" +msgstr "全年会员" + +#: membership/models.py +msgid "24 Months" +msgstr "二年会员" + +#: membership/models.py +msgid "Awaiting for payment" +msgstr "等待付款" + +#: membership/models.py +msgid "Paid" +msgstr "已付款" + +#: membership/models.py +msgid "Refunded" +msgstr "已退款" + +#: membership/models.py +msgid "Offline" +msgstr "线下" + +#: membership/models.py membership/templates/membership/card.html +#: membership/templates/membership/result.html +#: membership/templates/membership/wechat_paying.html +msgid "WeChat" +msgstr "微信" + +#: membership/models.py membership/templates/membership/card.html +msgid "Alipay" +msgstr "支付宝" + +#: membership/models.py +msgid "Union pay" +msgstr "银联" + +#: membership/models.py +msgid "Apple Pay" +msgstr "Apple Pay" + +#: membership/models.py +msgid "Apple Inpurasing" +msgstr "苹果内购" + +#: membership/models.py +msgid "WeChat App" +msgstr "微信APP" + +#: membership/models.py +msgid "WeChat H5" +msgstr "微信H5" + +#: membership/models.py +msgid "Alipay App" +msgstr "支付宝" + +#: membership/models.py +msgid "subscribe normal" +msgstr "常规订阅" + +#: membership/models.py +msgid "subscribe pay" +msgstr "收费订阅" + +#: membership/templates/membership/card.html +msgid "VIP membership" +msgstr "会员资格" + +#: membership/templates/membership/card.html +msgid "EliteMBA VIP Membership" +msgstr "英荔商学院VIP会员" + +#: membership/templates/membership/card.html +msgid "View Introduction" +msgstr "查看介绍" + +#: membership/templates/membership/card.html +msgid "Select a Course" +msgstr "加入课程" + +#: membership/templates/membership/card.html +msgid "Choose a payment method" +msgstr "选择支付方式" + +#: membership/templates/membership/card.html +msgid "Membership Valid in " +msgstr "会员有效期:" + +#: membership/templates/membership/card.html +msgid " days" +msgstr "天" + +#: membership/templates/membership/card.html +msgid "Tuition: " +msgstr "学费:" + +#: membership/templates/membership/card.html +msgid "Go to Payment" +msgstr "去支付" + +#: membership/templates/membership/card.html +msgid "Complete Payment in a New Page" +msgstr "请在新页面完成支付" + +#: membership/templates/membership/card.html +msgid "" +"{span_start}Please do not close the page.{span_end} Please click the button " +"below accordingly after completing the payment." +msgstr "{span_start}请不要关闭页面,{span_end}完成支付后请根据情况点击下面按钮。" + +#: membership/templates/membership/card.html +msgid "Choose Another Payment Method" +msgstr "重选支付方式" + +#: membership/templates/membership/card.html +msgid "Payment Completed" +msgstr "支付完成" + +#: membership/templates/membership/card.html +msgid "Encounter a problem?" +msgstr "遇到问题?" + +#: membership/templates/membership/card.html +msgid "Go to payment" +msgstr "去支付" + +#: membership/templates/membership/index.html +msgid "Membership of Prestige EMBA Courses in America" +msgstr "美国名校MBA精华课程会员资格" + +#: membership/templates/membership/index.html +msgid "Six Main Areas for Administration Learning" +msgstr "英荔商学院六大课程方向" + +#: membership/templates/membership/index.html +msgid "Activate your potential to become a versatile leader" +msgstr "激活全能商业基因,您就是一个团队" + +#: membership/templates/membership/index.html +msgid "Business Administration" +msgstr "商业管理" + +#: membership/templates/membership/index.html +msgid "Innovation and Entrepreneurship" +msgstr "创新创业" + +#: membership/templates/membership/index.html +msgid "Statistical Analysis" +msgstr "统计分析" + +#: membership/templates/membership/index.html +msgid "Information Technology" +msgstr "信息技术" + +#: membership/templates/membership/index.html +msgid "Sales and Marketing" +msgstr "市场销售" + +#: membership/templates/membership/index.html +msgid "Retail Management" +msgstr "零售管理" + +#: membership/templates/membership/index.html +msgid "More Excellent Courses Coming Soon" +msgstr "更多重磅课程即将上线" + +#: membership/templates/membership/index.html +msgid "International Business Law" +msgstr "国际商法" + +#: membership/templates/membership/index.html +msgid "Dr. Ling Zhu" +msgstr "朱灵 博士" + +#: membership/templates/membership/index.html +msgid "PhD in Management Information Systems, the University of Arizona, USA" +msgstr "美国亚利桑那大学管理信息系统博士" + +#: membership/templates/membership/index.html +msgid "J.D., Fordham University, USA" +msgstr "美国福特汉姆大学法律博士" + +#: membership/templates/membership/index.html +msgid "Marketing Management and Applications" +msgstr "营销管理与应用" + +#: membership/templates/membership/index.html +msgid "Dr. Tung-lung Steven Chang" +msgstr "张东隆 博士" + +#: membership/templates/membership/index.html +msgid "" +"PhD. in International Business/Marketing, the George Washington University, " +"USA" +msgstr "美国乔治·华盛顿大学国际商务/市场营销博士" + +#: membership/templates/membership/index.html +msgid "PhD. in Management, National Chengchi University, Taiwan" +msgstr "台湾政治大学管理学博士" + +#: membership/templates/membership/index.html +msgid "Macroeconomics" +msgstr "宏观经济学" + +#: membership/templates/membership/index.html +msgid "(Davidson College)" +msgstr "(美国戴维森学院)" + +#: membership/templates/membership/index.html +msgid "Dr. Clark Ross" +msgstr "克拉克·罗斯 博士" + +#: membership/templates/membership/index.html +msgid "PhD. in Economics, Boston College, USA" +msgstr "美国波士顿学院经济学博士" + +#: membership/templates/membership/index.html +msgid "" +"*EliteMBA reserves the right of final interpretation for all course updates." +msgstr "*英荔商学院保留所有课程更新的最终解释权。" + +#: membership/templates/membership/index.html +msgid "World-Class Faculty" +msgstr "超强师资 —— 精英式教学" + +#: membership/templates/membership/index.html +msgid "Professors from leading Business Schools in America" +msgstr "美国名校商学院教授" + +#: membership/templates/membership/index.html +msgid "" +"Learn systematically, create a full knowledge matrix of administration from " +"zero to one" +msgstr "构建全方位的商科知识矩阵,从0到1,系统学习" + +#: membership/templates/membership/index.html +msgid "Dr. Baichun Xiao" +msgstr "萧柏春 博士" + +#: membership/templates/membership/index.html +msgid "" +"Tenured Professor and Chairman of the Department of Management at LIU Post, " +"USA" +msgstr "美国长岛大学商学院管理系终身教授、系主任" + +#: membership/templates/membership/index.html +msgid "Lloyd Shefsky" +msgstr "谢洛德 博士" + +#: membership/templates/membership/index.html +msgid "" +"Former Clinical Professor of Family Enterprises at Kellogg School of " +"Management at NU, USA" +msgstr "原美国西北大学凯洛格商学院创业专业教授" + +#: membership/templates/membership/index.html +msgid "Tim Smithe" +msgstr "蒂姆·塞米特 教授" + +#: membership/templates/membership/index.html +msgid "" +"Vice President & CMO of International Finance Education Association (IFEA)" +msgstr "国际金融教育协会副会长及首席营销官" + +#: membership/templates/membership/index.html +msgid "Dr. Wei Yang" +msgstr "杨威 博士" + +#: membership/templates/membership/index.html +msgid "Tenured Professor of the School of Business at LIU Post, USA" +msgstr "美国长岛大学商学院终身教授" + +#: membership/templates/membership/index.html +msgid "Dr. Weichun Zhu" +msgstr "朱伟春 博士" + +#: membership/templates/membership/index.html +msgid "" +"Former Assistant Professor of School of Labor and Employment Relations at " +"Penn State, USA" +msgstr "美国长岛大学商学院终身教授" + +#: membership/templates/membership/index.html +msgid "Dr. Jiamin Wang" +msgstr "汪嘉旻 博士" + +#: membership/templates/membership/index.html +msgid "Dr. Tianning Li" +msgstr "李天宁 博士" + +#: membership/templates/membership/index.html +msgid "Associate Professor of Finance at Hood College, USA" +msgstr "原美国宾夕法尼亚州立大学劳动力研究与雇佣关系学院助理教授" + +#: membership/templates/membership/index.html +msgid "Dr. Jianjun Shi" +msgstr "施建军 博士" + +#: membership/templates/membership/index.html +msgid "Former President and Professor at UIBE" +msgstr "原对外经济贸易大学校长、教授" + +#: membership/templates/membership/index.html +msgid "" +"The Frontis W. Johnston Professor of Economics at Davidson College, USA" +msgstr "美国戴维森学院经济学教授" + +#: membership/templates/membership/index.html +msgid "Dr. Elia Kacapyr" +msgstr "伊利亚·卡克皮尔 博士" + +#: membership/templates/membership/index.html +msgid "Professor of Economics at Ithaca College, USA" +msgstr "美国伊萨卡学院经济学教授" + +#: membership/templates/membership/index.html +msgid "Dr. Robert Graham" +msgstr "罗伯特·格雷厄姆 博士" + +#: membership/templates/membership/index.html +msgid "Professor of Economics at Hanover College, USA" +msgstr "美国汉诺威学院经济学教授" + +#: membership/templates/membership/index.html +msgid "View More" +msgstr "查看更多" + +#: membership/templates/membership/index.html +msgid "Join EliteMBA Membership" +msgstr "成为英荔商学院会员" + +#: membership/templates/membership/index.html +msgid "Choose a membership plan that fits your needs" +msgstr "根据您的需求选择合适的学习时长 " + +#: membership/templates/membership/index.html +msgid "" +"Have unlimited access to all courses at EliteMBA during membership period, " +"including newly released courses" +msgstr "学习期内享有英荔商学院所有课程的学习权益,新课上线亦可马上加入学习" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "Full Year" +msgstr "一年" + +#: membership/templates/membership/index.html +msgid "average per month" +msgstr "月均" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "Professional" +msgstr "全栈职场修炼" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "Half-Year" +msgstr "半年" + +#: membership/templates/membership/index.html +msgid "Senior" +msgstr "能力高效提升" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "Three-Month" +msgstr "三个月" + +#: membership/templates/membership/index.html +msgid "Explorer" +msgstr "系列课程畅学" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "One-Month" +msgstr "一个月" + +#: membership/templates/membership/index.html +msgid "Beginner" +msgstr "多门课程体验" + +#: membership/templates/membership/index.html +msgid "" +"*Sign up NOW and get the most of your membership. More info on the payment " +"page." +msgstr "*现在报名可享以上优惠,具体详情请前往购买页。" + +#: membership/templates/membership/index.html +msgid "Learning Feature" +msgstr "学习特色" + +#: membership/templates/membership/index.html +msgid "Group Chat" +msgstr "群内互动" + +#: membership/templates/membership/index.html +msgid "Live Lecture" +msgstr "直播讲座" + +#: membership/templates/membership/index.html +msgid "Exam" +msgstr "习题测试" + +#: membership/templates/membership/index.html +msgid "Credential" +msgstr "结课证书" + +#: membership/templates/membership/index.html +msgid "Become a Member" +msgstr "加入会员" + +#: membership/templates/membership/index.html +msgid "" +"Self-disciplined learning off work decides how competitive you are. Let’s " +"discipline ourselves and gain advantage!" +msgstr "有一种差距,叫8小时以外的自律,和英荔一起出发,成为自律的全栈职场人!" + +#: membership/templates/membership/result.html +#: membership/templates/membership/wechat_paying.html +msgid "EliteMBA school cashier" +msgstr "英荔商学院收银台" + +#: membership/templates/membership/result.html +msgid "EliteMBA school cashier payment success" +msgstr "英荔商学院收银台支付成功" + +#: membership/templates/membership/result.html +#: membership/templates/membership/wechat_paying.html +msgid "Return to EliteMBA school in 3 seconds" +msgstr "3秒后返回英荔商学院" + +#: membership/templates/membership/result.html +#: membership/templates/membership/wechat_paying.html +msgid "Return Now" +msgstr "立即返回" + +#: membership/templates/membership/wechat_paying.html +msgid "Amount paid: " +msgstr "实付金额:" + +#: membership/templates/membership/wechat_paying.html +msgid "" +"Please complete the payment within 2 hours, otherwise the purchase may fail." +msgstr "请在2小时内完成支付,否则可能导致购买失败。" + +#: membership/templates/membership/wechat_paying.html +msgid "Please scan Wechat QR code" +msgstr "请使用微信扫描二维码" + +#: membership/templates/membership/wechat_paying.html +msgid "to complete payment" +msgstr "以完成支付" + +#: membership/templates/membership/wechat_paying.html +msgid "Payment Success" +msgstr "支付成功" + +msgid "email address" +msgstr "邮箱" + +msgid "English" +msgstr "英语" + +msgid "Chinese" +msgstr "中文" + +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/footer.html +msgid "" +"Guangdong Elite International Education & Technology Co., Ltd. All Rights" +" Reserved" +msgstr "广东英荔国际教育科技有限公司 版权所有" + +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/return_to_course_cta.html +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/confirm_email_change.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/photo_submission_review.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"(If the link is invalid, try to copy and paste it into the address bar of " +"your web browser, and press \"Enter\" to open the page.)" +msgstr "(如链接点击无效,请手动复制链接并粘贴到浏览器地址栏中,然后按“回车”打开页面即可)" + +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#, python-format +msgid "" +"You have been unenrolled from the course %(course_name)s by a member of the " +"course staff. Please ignore the invitation previously sent." +msgstr "您已被课程工作人员从 %(course_name)s课程移除。请忽略之前向您发出的所有请求。" + +#: themes/elitemba-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s, and other courses on " +"EliteMBA.cn? We do, and we’re glad to have you! Come see what everyone is " +"learning." +msgstr "" +"您还记得在EliteMBA.cn上报名了%(course_name)s和其他课程吗?很高兴您选择了我们的课程!赶紧来看看大家都在学习什么吧。" + +#: themes/elitemba-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s on EliteMBA.cn? We do, and " +"we’re glad to have you! Come see what everyone is learning." +msgstr "您还记得在EliteMBA.cn上报名了%(course_name)s课程吗?很高兴您选择了我们的课程!赶紧来看看大家都在学习什么吧。" + +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "anonymous (IP not logged)" +msgstr "匿名(IP未记录)" + +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "" +"Access Course Staff Support on the Partner Portal to submit or review " +"support tickets" +msgstr "在合作伙伴网站上访问“课程人员支持”来提交或查看支持工作单" + +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "edX Partner Portal" +msgstr "edX 合作伙伴网站" + +#: themes/edx.org/lms/templates/dashboard.html +msgid "" +"Browse recently launched courses and see what's new in your favorite " +"subjects." +msgstr "浏览最新开办的课程,看看您最喜欢的科目中有了什么新内容" + +#: themes/edx.org/lms/templates/footer.html +msgid "Page Footer" +msgstr "页脚" + +#: themes/edx.org/lms/templates/footer.html +msgid "edX Home Page" +msgstr "edX首页" + +#: themes/edx.org/lms/templates/footer.html +msgid "© 2012–{year} edX Inc. " +msgstr "© 2012–{year} edX股份有限公司 " + +#: themes/edx.org/lms/templates/footer.html +msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgstr "EdX、Open edX以及MicroMaster是edX股份有限公司的商标。" + +#: themes/edx.org/lms/templates/certificates/_about-accomplishments.html +msgid "About edX Verified Certificates" +msgstr "关于edX认证证书" + +#: themes/edx.org/lms/templates/certificates/_about-accomplishments.html +msgid "" +"An edX Verified Certificate signifies that the learner has agreed to abide " +"by the edX honor code and completed all of the required tasks of this course" +" under its guidelines, as well as having their photo ID checked to verify " +"their identity." +msgstr "edX认证证书可证明学员已同意遵守edX荣誉准则,并已按照准则完成所有所需任务、已通过提交身份证明至审查完成了认证身份。" + +#: themes/edx.org/lms/templates/certificates/_about-edx.html +msgid "About edX" +msgstr "关于 edX" + +#: themes/edx.org/lms/templates/certificates/_about-edx.html +msgid "" +"{link_start}edX{link_end} offers interactive online classes and MOOCs from " +"the world's best universities, including MIT, Harvard, Berkeley, University " +"of Texas, and many others. edX is a non-profit online initiative created by " +"founding partners Harvard and MIT." +msgstr "" +"{link_start}edX{link_end}提供互动式在线课堂和来自世界顶级大学的MOOC,包括麻省理工、哈佛大学、伯克利大学、 " +"德克萨斯大学等;edX是由创始合伙人哈佛大学和麻省理工创办的非营利性在线教育先驱。" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Congratulations, {user_name}!" +msgstr "恭喜,{user_name}!" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "" +"You worked hard to earn your certificate from " +"{accomplishment_copy_course_org} {dash} share it with colleagues, friends, " +"and family to get the word out about what you mastered in " +"{accomplishment_course_title}." +msgstr "" +"您刻苦学习考取了{accomplishment_copy_course_org}的证书 {dash} " +"与同事、朋友、家人分享吧,告诉大家您学习了{accomplishment_course_title}。" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Share this certificate on Facebook (opens a new tab/window)" +msgstr "分享此证书至Facebook(打开新标签页/窗口)" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Tweet this certificate (opens a new tab/window)" +msgstr "在Twitter上分享此证书(打开新标签页/窗口)" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Add this certificate to your LinkedIn profile (opens a new tab/window)" +msgstr "添加此证书至您的LinkedIn资料(打开新标签页/窗口)" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Print" +msgstr "打印" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Print this certificate" +msgstr "打印此证书" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +msgid "edX Inc." +msgstr "edX Inc." + +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +msgid "" +"All rights reserved except where noted. edX, Open edX and the edX and Open " +"edX logos are registered trademarks or trademarks of edX Inc." +msgstr "" +"© edX Inc. 保留所有权利(特别标注除外)。EdX、Open edX、edX 和 Open EdX 标识均为注册商标或 edX Inc. " +"的商标。" + +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Support our Mission: {b_end}EdX, a non-profit, relies on verified " +"certificates to help fund affordable education to everyone globally." +msgstr "{b_start}支持我们的使命:{b_end} EdX 是一个非营利组织,依靠已经过身份认证的证书来来资助人人可享的全球免费教育" + +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Support our Mission: {b_end} EdX, a non-profit, relies on verified " +"certificates to help fund free education for everyone globally" +msgstr "{b_start}支持我们的使命:{b_end} EdX 是一个非营利组织,依靠认证证书来来资助人人可享的全球免费教育" + +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have access to course materials and " +"discussions forums. {b_start}This track does not include graded " +"assignments.{b_end}" +msgstr "免费旁听该课程,并可访问课程材料和讨论论坛。 {b_start}此方法不包含评分作业。{b_end}" + +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have access to course materials and " +"discussions forums. {b_start}This track does not include unlimited course " +"access.{b_end}" +msgstr "免费旁听本课程,并可访问课程资料和讨论论坛。{b_start}此轨道不包括无限制的课程访问。{b_end}" + +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +msgid "Find Courses" +msgstr "查找课程" + +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +msgid "Schools & Partners" +msgstr "学校 & 伙伴" + +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Contact your EliteMBA partner manager to update these settings." +msgstr "联系您的EliteMBA合作经理以更新这些设置项。" + +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "VIP Expiry Date" +msgstr "会员有效期" + +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Subscription will soon be overdue. Please recharge in time." +msgstr "订阅期满,请及时充值" + +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "" +"Sorry, your EliteMBA VIP has expired. In order not to disrupt your learning " +"schedule, please recharge in time." +msgstr "您好,您购买的英荔商学院 VIP 会员已到期,为了不影响您的学习进度,请及时充值" + +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Renew VIP" +msgstr "会员续费" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Learn to Change · Change to Improve" +msgstr "学则变 · 变则进" + +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "About Us" +msgstr "关于我们" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Join Us" +msgstr "加入我们" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "About Platform" +msgstr "关于平台" + +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "Manual" +msgstr "使用手册" + +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/help.html +msgid "Help and Complaint" +msgstr "帮助与投诉" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Terms Description" +msgstr "条款说明" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Partners" +msgstr "合作伙伴" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "NetEase Study" +msgstr "网易云课堂" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Tencent Classroom" +msgstr "腾讯课堂" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "iQIYI Knowledge" +msgstr "爱奇艺知识" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Scan WeChat QR Code" +msgstr "微信扫一扫" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "to find out more" +msgstr "关注名师开课动态" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "" +"edX and Open edX are registered trademarks of edX Inc. All Rights Reserved." +msgstr "edX 和 Open edX 为 edX Inc. 的注册商标,版权所有。" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Bind Your Account to Your Mobile Number" +msgstr "绑定手机号" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Mobile number" +msgstr "手机号码" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Verify" +msgstr "获取验证码" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "incorrect cellphone number format" +msgstr "手机号码格式不正确" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Reminder" +msgstr "提示" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "" +"To meet the requirements of national policies and regulations of using a " +"real legal name, please bind your account to your cellphone number before " +"proceeding." +msgstr "应国家法规对于账号实名的要求,请您在进行下一步操作前,先完成手机绑定。" + +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Bind Mobile" +msgstr "绑定手机" + +#. Translators: 'Open edX' is a registered trademark, please keep this +#. untranslated. See http://open.edx.org for more information. +#: themes/elitemba-theme/lms/templates/index_overlay.html +msgid "Learn to Change · Change to Improve —— EliteMBA" +msgstr "学则变 · 变则进 —— 英荔商学院" + +#. Translators: 'Open edX' is a registered trademark, please keep this +#. untranslated. See http://open.edx.org for more information. +#: themes/elitemba-theme/lms/templates/index_overlay.html +msgid "Enjoy high-value MBA curriculum with ¥99.84 monthly payment!" +msgstr "月均99.84元,畅学高价值MBA课程!" + +#: themes/elitemba-theme/lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "答案已在问题中显示" + +#: themes/elitemba-theme/lms/templates/certificates/_accomplishment-banner.html +msgid "Download Certificate" +msgstr "下载证书" + +#: themes/elitemba-theme/lms/templates/certificates/_accomplishment-rendering.html +msgid ":" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/_accomplishment-rendering.html +msgid "Verification Address:" +msgstr "验证地址:" + +#: themes/elitemba-theme/lms/templates/certificates/valid.html +msgid "About EliteMBA Certificates" +msgstr "关于EliteMBA证书" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Trustworthy Certificate" +msgstr "该证书真实有效" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Certificated Learner" +msgstr "持证学员" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Certificate No." +msgstr "证书编号" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Affiliation" +msgstr "所属机构" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Learning Time" +msgstr "学习时间" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Learning Type" +msgstr "学习类型" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Certificate Issuing Date" +msgstr "发证时间" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Electronic Certificate" +msgstr "电子证书" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgctxt "Certificate" +msgid "View" +msgstr "点击查看" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Enroll {price}" +msgstr "选修此课程 {price}" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "Free Enroll Course" +msgid "Enroll" +msgstr "选修此课程" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Enrolled" +msgstr "已报名" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Free Enrollment for VIP" +msgstr "VIP会员免费选修此课程" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "CourseAbout" +msgid "Description" +msgstr "课程简介" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "CourseAbout" +msgid "Instructor" +msgstr "课程导师" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "CourseAbout" +msgid "Outline" +msgstr "课程大纲" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "" +"A wonderful course is rare to find and must be shared! I'm taking {title} on" +" EliteMBA. Check it out! {url}" +msgstr "难得的优质好课绝不能独享,我正在学习英荔商学院的{title},您也看看吧!{url}" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "weibo" +msgstr "微博" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "qq" +msgstr "QQ" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "weixin" +msgstr "微信" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "WeChat Scan Code" +msgstr "微信扫一扫" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "" +"Share your experience by clicking the button on the above right corner of " +"the screen" +msgstr "点击屏幕右上角分享按钮" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid ". " +msgstr "" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Subscription Due" +msgstr "订阅期满" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "EliteMBA has verified your identity!" +msgstr "英荔已经成功验证了您的身份!" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your EliteMBA verification has been approved. Your verification is effective" +" for one year after submission." +msgstr "您的EliteMBA认证已通过,提交后一年内有效。" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your EliteMBA ID verification is pending. Your verification information has " +"been submitted and will be reviewed shortly." +msgstr "您的身份认证正在进行中,您的认证信息已提交,我们会尽快审查您的认证。" + +#: themes/elitemba-theme/lms/templates/elitemba/hmm.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Harvard ManageMentor" +msgstr "哈佛管理导师" + +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "" +"You're almost there! Use the link to activate your account to access high-" +"quality {platform_name} courses. Note that you will not be able to log back " +"into your account until you have activated it." +msgstr "注册差不多完成啦!点击链接激活您的账号,体验{platform_name}的精品课程。注意,您必须激活账号才可以登录。" + +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "Initial password:{third_party_auth_pw}" +msgstr "初始密码:{third_party_auth_pw}" + +#: themes/elitemba-theme/lms/templates/emails/photo_submission_review.txt +msgid "Review ID Verification Photos" +msgstr "查看身份证件照片" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Dear EliteMBA Learner," +msgstr "亲爱的 EliteMBA 学员:" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"EliteMBA Financial Assistance is a program we created to give learners in " +"all financial circumstances a chance to earn a Verified Certificate upon " +"successful completion of an EliteMBA course." +msgstr "EliteMBA 经济援助项目旨在让各种经济状况的学员都有一个在成功完成 EliteMBA 课程后获得验证证书的机会。" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"In order to be eligible for EliteMBA Financial Assistance, you must " +"demonstrate that paying the Verified Certificate fee would cause you " +"economic hardship. To apply, you will be asked to answer a few questions " +"about why you are applying and how the Verified Certificate will benefit " +"you." +msgstr "" +"要符合 EliteMBA " +"经济援助的资格条件,您必须证明支付验证证书费用会导致您经济困难。为了进行申请,您可能会被要求回答一些关于您为何申请验证证书以及验证证书会给您带来哪些好处的问题。" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"If your application is approved, we'll give you instructions for verifying " +"your identity on EliteMBA.cn so you can start working toward completing your" +" EliteMBA course." +msgstr "" +"如果您的申请被批准,我们将为您提供在 EliteMBA.cn 上验证您的身份的相关说明,以便您可以开始着手完成您的 EliteMBA 课程。" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"EliteMBA is committed to making it possible for you to take high quality " +"courses from leading institutions regardless of your financial situation, " +"earn a Verified Certificate, and share your success with others." +msgstr "无论您的经济状况如何,EliteMBA 都致力于让您从各领先机构获得高质量的课程,让您获得验证证书并与他人分享您的成功。" + +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Professors" +msgstr "教授" + +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Expiry: " +msgstr "有效期至:" + +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "VIP Center" +msgstr "会员中心" + +#: themes/elitemba-theme/lms/templates/professors/detail.html +msgid "Professor details" +msgstr "教授详情" + +#: themes/elitemba-theme/lms/templates/professors/detail.html +msgctxt "Professor" +msgid "View Courses" +msgstr "讲授课程" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "Professors List" +msgstr "教授列表" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "Purpose of Education" +msgstr "教育的目的" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "" +"Education is much more than teaching and learning. It also involves " +"inspiring learners to dig deep into their potential. Not only do we present " +"practical knowledge of administration, we’re also dedicated to the " +"cultivation of wisdom -- the ability to apply knowledge in real life." +msgstr "教育不是生搬硬套的知识灌输,而是对学习者自由发展潜力的启发。 智慧是运用知识的能力。英荔教育不仅传播知识,更注重智慧的培养。" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "" +"We sincerely invite all remarkable professionals in business management to " +"join us in developing excellent courses, and educating more learners into " +"business professionals." +msgstr "我们诚挚地向所有深耕于商业管理学科的精英教授、学者和专家发出邀请,让我们共同将无形的智慧实化为可典藏的课程,以此培养更多杰出的商业人才。" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "More" +msgstr "详情" + +#: themes/elitemba-theme/lms/templates/registration/password_reset_confirm.html +msgid "" +"This password reset link is invalid. It may have been used already. To reset" +" your password, go to the {start_link}sign-in{end_link} page and select " +"{start_strong}Forgot password{end_strong}." +msgstr "" +"密码重置链接无效。此链接可能已被使用。如需重置您的密码,请进入{start_link}登录页面{end_link} " +"并点击{start_strong}忘记密码{end_strong}。" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"EliteMBA (www.EliteMBA.cn) is a sub-brand of Guangdong Elite International " +"Education & Technology Co., Ltd. focusing on the development of MBA online " +"classroom." +msgstr "英荔商学院(www.EliteMBA.cn)是广东英荔国际教育科技有限公司旗下的商业管理类互联网课堂。" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"EliteMBA teams up with senior professors and experts in business management " +"academics at home and abroad to design and produce high quality and " +"knowledgeable systematic online courses. At the same time, we select and " +"introduce high-quality foreign educational content to provide learners with " +"a localized learning experience created by EliteMBA." +msgstr "" +"英荔与国内外商业管理学术界资深的教授和专家联手,精心设计并制作高质量且极具知识价值的体系化在线课程。同时,筛选并引进国外优质教育内容,向学习者提供经英荔团队打造后的本土化版本。" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"It is the common pursuit of educators to transfer knowledge to more learners" +" as much as possible. EliteMBA expects to provide educators with more " +"effective means of transmission and increase the reach of knowledge. Here, " +"we would like to offer sincere invitations to experts and professors, and " +"look forward to creating and introducing more high-quality curriculum " +"resources, so that knowledge can generate more value in a diverse world. " +msgstr "" +"尽己所能地向更多学习者传递知识是教育者们的共同追求。英荔期望为教育者提供更有效的传递途径,增加知识的触及范围。在此,向各位专家、教授发出诚挚的开课邀请,期待创造、引入更多优质的课程资源,让知识在多元的世界产生更多元的价值。" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "For course cooperation, please contact: " +msgstr "课程合作请联系:" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "Education should guide and shape a society, not follow it" +msgstr "教育应指导社会,而不是追逐社会" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"Mr. Cai Yuanpei said that education should guide the society, rather than " +"follow it. Elite Education abandons the ideas of upholding the pursuit of " +"society, and advocates learners' self-achievement and their ambition in " +"leading the society. EliteMBA courses advocate, instead of the rote of " +"knowledge input, the motivation for pursuing wisdom and solving practical " +"problems." +msgstr "" +"教育家蔡元培先生说:“教育应指导社会,而不是追逐社会。”英荔摒弃追逐社会的模式,倡导学习者自我实现和引领社会的精神。英荔课堂没有生搬硬套的知识灌输,只有寻求智慧和解决实际问题的动力。" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "Our Mission" +msgstr "我们的使命" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"Providing individuals, organizations with the knowledge, technology and " +"platform for lifelong learning." +msgstr "为个人和组织提供终身学习的知识、技术与平台。" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "Our Vision" +msgstr "我们的愿景" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "To become a reputable brand of digital education in China." +msgstr "成为中国享有声誉的数字化教育品牌。" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Elite Education" +msgstr "英荔教育" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "" +"Address: Room 1005, CITIC Plaza, No. 233 Tianhe North Road, Tianhe District," +" Guangzhou, China" +msgstr "地址:广州市天河区天河北路233号中信广场写字楼1005室" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Telephone: 400-931-8118 (Monday to Friday at 9:00-18:00)" +msgstr "电话:400-931-8118(周一至周五9:00 - 18:00)" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Course Cooperation" +msgstr "课程合作" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Contact: Mr. Chen" +msgstr "联系人:陈先生" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Human Resources and Recruitment" +msgstr "人力资源及招聘" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Feedback and Technical Support" +msgstr "建议及技术支持" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Media Communication" +msgstr "媒体交流" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Business Cooperation" +msgstr "商务合作" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Enterprise Procurement" +msgstr "企业采购" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Contact: Ms. Liao" +msgstr "联系人:廖小姐" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "System Bugs" +msgstr "系统漏洞" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅰ. Terms of Service" +msgstr "一、服务条款" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The products and services of Elite Education (www.elitemba.cn) are provided" +" by Guangdong Elite International Education & Technology Co., Ltd " +"(hereinafter referred to as \"EliteMBA\" or \"we\"). This User Agreement " +"(hereinafter referred to as \"Agreement\") is applicable to EliteMBA " +"websites, EliteMBA applications and other related products and services on " +"computer/mobile phone/tablet or other devices. EliteMBA has the right to " +"modify the terms hereof at any time. Upon the occurrence of any modification" +" is applied, we would update the Agreement and modify effective date " +"accordingly and the old version of the Agreement will be invalid and the new" +" version will be in effect immediately upon its publishing on the page " +"herein. Users shall regularly review the terms of service and check for " +"upgrades. The action of continual usage of our services is an implied " +"agreement on any updated version of Agreement that is in effect. In " +"addition, when Users use other EliteMBA services (including but not limited " +"to periodical marketing services other than basic services provided the " +"website), the aforementioned user shall adhere to the guidelines and rules " +"published by EliteMBA related to those services. All of the aforementioned " +"guidelines and rules shall be considered as a part of this Agreement." +msgstr "" +"英荔商学院(www.EliteMBA.cn)的产品及服务由广东英荔国际教育科技有限公司(以下简称“英荔”或“我们”)提供。本使用协议(以下简称“使用协议”)适用于英荔的网站、在计算机/手机/平板电脑或其他设备上使用的英荔的应用程序和其他产品及服务。使用协议的内容可由英荔不定期修改、变更。一旦变动产生,我们将随即于使用协议上公布并更新生效日期。修改后的使用协议一旦公布即有效代替原来的使用协议。您应定期查看以了解更新后的服务条款,若您继续使用我们的服务即构成您对本服务条款及其任何更新版本的同意。此外,当英荔用户使用英荔特殊服务(包括但不限于除网站基本服务外的其他具时效性的市场活动服务)时,英荔用户应遵守英荔随时公布的与该服务相关的指引和规则。前述所有的指引和规则,均构成本使用协议的一部分。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"You should read this User Agreement carefully before using the services " +"provided by EliteMBA. If you do not agree to the User Agreement and/or " +"modify it at any time, please stop using all services provided by EliteMBA " +"immediately; once you use EliteMBA service, you are deemed to have " +"understood and fully agreed to the contents of this agreement, including any" +" changes made by EliteMBA to the User Agreement at any time, and become an " +"EliteMBA User (hereinafter referred to as \"User\")." +msgstr "" +"您在使用英荔提供的各项服务之前,应仔细阅读本使用协议。如您不同意本使用协议及/或随时对其的修改,请立即停止使用英荔所提供的全部服务;您一旦使用英荔服务,即视为已了解并完全同意本使用协议各项内容,包括英荔对使用协议随时所做的任何修改,并成为英荔用户(以下简称“用户”)。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅱ. Service Description" +msgstr "二、服务说明" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA currently offers users a range of course services (including but " +"not limited to course videos, test questions, exams, course materials, notes" +" and teaching assistant services). Except as otherwise explicitely expressed" +" in this Agreement, any new features of the Service that are added or " +"enhanced by EliteMBA, including new products introduced, are subject to the " +"terms of this Agreement. The User understands and agrees that the Service is" +" provided only in accordance with the current conditions and that EliteMBA " +"is not responsible for any user information or personalization settings, " +"such as timeliness, deletion, delivery errors, non-storage or any other " +"issues. EliteMBA reserves the right to suspend any part of the Service for " +"any maintenance, upgrade or other purpose without prior notice." +msgstr "" +"英荔目前向用户提供英荔自主制作的一系列课程服务(包括但不限于课程视频、测验题目、考试、课程资料、笔记以及助教服务)。除非本使用协议另有其他明示规定,英荔增加或强化此服务的任何新功能,包括所推出的新产品,均受到本使用协议之规范。用户了解并同意,本服务仅依其当前所呈现的状况提供,对于任何用户信息或个人化设定之失效、删除、传递错误、未予储存或其他任何问题,英荔均不承担任何责任。英荔保留不经事先通知因维修保养、升级或其他目的而暂停本服务任何部分的权利。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅲ. Abidance by Law" +msgstr "三、遵守法律" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User agrees to abide by all the provisions of the relevant laws and " +"regulations of the People's Republic of China and assumes full " +"responsibility for any actions and results of the use of the Service by any " +"means and password. If the user's behavior violates any provisions of " +"national laws and regulations and may constitute a crime, he will be held " +"criminally liable and the user shall bear full legal responsibility." +msgstr "" +"用户同意遵守中华人民共和国相关法律法规的所有规定,并对以任何方式通过本人的账号和密码使用本服务的任何行为及其结果承担全部责任。如用户的行为违反国家法律和法规的任何规定,有可能构成犯罪的,将被追究刑事责任,并由用户承担全部法律责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"At the same time, if EliteMBA has the reason to believe that any of the " +"User's actions, including but not limited to any of the User's statements " +"and other acts violates or may violate any of the provisions of national " +"laws and regulations, EliteMBA may terminate to offer service to the User at" +" any time without prior notice. " +msgstr "" +"同时,如果英荔有理由认为用户的任何行为,包括但不限于用户的任何言论和其他行为违反或可能违反国家法律和法规的任何规定,英荔可在任何时候不经任何事先通知终止向用户提供服务。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅳ. User Registration Obligation" +msgstr "四、用户的注册义务" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"In order to use the service, the User agrees to provide correct registered " +"account (email address and/or mobile phone number) and password according to" +" the service prompt, and ensure the validity and legality of the login " +"account, Avatar and other materials updated in the future. If the User " +"provides any material that is illegal, unethical, or that is deemed " +"unsuitable for display on this website, or that has reason to suspect that " +"the User's data is a program or malicious operation, EliteMBA has the right " +"to suspend or terminate the User's account and refuse the User to use all or" +" any part of the Service now and in the future. " +msgstr "" +"为了能使用本服务,用户同意以下事项:依本服务提示填写正确的注册账号(邮箱地址及/或手机号)、密码,并确保今后更新的登录账号、头像等资料的有效性和合法性。若用户提供任何违法、不道德或英荔认为不适合在本网站上展示的资料,或者英荔有理由怀疑用户的资料属于程序或恶意操作,英荔有权暂停或终止用户的账号,并拒绝用户于现在和未来使用本服务之全部或任何部分。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA is not responsible for any registration of any user, including but " +"not limited to the identification, verification of the authenticity, " +"correctness, completeness, suitability and/or responsibility of any " +"registration information." +msgstr "" +"英荔无须对任何用户的任何登记资料承担任何责任,包括但不限于鉴别、核实任何登记资料的真实性、正确性、完整性、适用性及/或是否为最新资料的责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "V. User Accounts, Passwords and Security" +msgstr "五、用户账号、密码及安全" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"After completing the registration process for this service and successfully " +"registered, the User can log in to the account of EliteMBA (hereinafter " +"referred to as the \"account\") using their email address and/or mobile " +"number and password. Users are responsible for protecting the security of " +"their accounts." +msgstr "" +"完成本服务的注册程序并成功注册之后,用户可使用其邮箱地址及/或手机号码和密码,登录到用户在英荔的账号(以下简称“账号”)。用户须承担保障自己账号安全的责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The user is solely responsible for all passwords used and the activities of " +"the account. User agrees:" +msgstr "用户应对所有使用的密码及账号的活动负全部责任。用户同意:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. Upon the occurrence of noticing any unauthorized account activity or " +"other security issue, User shall contact and notify E-ducation immediately;" +msgstr "1. 用户的英荔账号遭到未获授权的使用,或者发生其他任何安全问题时,用户将立即通知英荔;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. If the user does not keep his/her own account number and password, and " +"therefore any loss or damage caused by the User, EliteMBA cannot and will " +"not bear any responsibility;" +msgstr "2. 如果用户未保管好自己的账号和密码,因此而产生的任何损失或损害,英荔无法也不承担任何责任;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. User is solely responsible for all the activities and issues that occur " +"in their account. Upon the occurrence of any loss or damage to other Users, " +"Elite or any other third party due to the failure by the User in securing " +"their own Account and password, the aforementioned User shall take full " +"responsible." +msgstr "3. 每个用户都要对其账号中的所有行为和事件负全责。如果用户未保管好自己的账号和密码而对用户、英荔或第三方造成的损害,用户将负全部责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "VI. Privacy Policy of Elite Education " +msgstr "六、英荔隐私权政策" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The registration information provided by the User and certain other " +"information about the User retained by the company will be subject to the " +"laws of China's privacy and the company's Privacy Policy." +msgstr "用户提供的登记资料及英荔保留的有关用户的若干其他资料将受到中国有关隐私的法律和本公司《隐私政策》之规范。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "VII. Responsibility of the Provider/User" +msgstr "七、提供者之责任" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"In accordance with relevant laws and regulations, EliteMBA hereby notify all" +" Users solemnly that, the Provider of any content released or sent either " +"publicly or privately via Elite Education platform, including the publishing" +" or uploading of any text, information, data, picture, graphic, video or " +"other data (hereinafter referred to as \"Content\"), shall take full " +"responsibility for the Content they released or sent. EliteMBA only provides" +" storage space for Users, and cannot control the content transmitted through" +" the server, therefore we shall hold no responsibility for the validity, " +"integrity or quality of the Content. User shall be aware that there might be" +" unpleasant, inappropriate or disturbing Content upon the usage of the " +"service. In any case, EliteMBA shall hold no responsibility for any " +"aforementioned Content, and shall reserve the right to cease the " +"transmission of any of the aforementioned Content and take corresponding " +"actions by law, including but not limited to partially or entirely suspend " +"User from using this service, to keep relevant record and report to " +"authorities concerned." +msgstr "" +"根据有关法律法规,英荔在此郑重提醒用户注意,任何经由本服务而发布、上传的文字、资讯、资料、照片、图形、视讯、信息或其他资料(以下简称“内容”),无论系公开还是私下传送,均由内容提供者承担责任。英荔仅为用户提供内容存储空间,无法控制经由本服务传送之内容,因此不保证内容的正确性、完整性或品质。用户已预知使用本服务时,可能会接触到令人不快、不适当或令人厌恶之内容。在任何情况下,英荔均不为任何内容负责,但英荔有权依法停止传输任何前述内容并采取相应行动,包括但不限于暂停用户使用本服务的全部或部分,保存有关记录,并向有关机关报告。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "VIII. User Behavior" +msgstr "八、用户行为" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User agrees that the Service will not be used for any illegal or " +"improper activities, including but not limited to the following:" +msgstr "用户同意将不会利用本服务进行任何违法或不正当的活动,包括但不限于下列行为:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. Publish or otherwise transmit information that contains one of the " +"following:" +msgstr "1. 发布或以其他方式传送含有下列内容之一的信息:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Opposing to the basic principles established by the Constitution;" +msgstr "反对宪法所确定的基本原则的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Endanger national security, disclose state secrets, subvert state power or " +"sabotage state unification; " +msgstr "危害国家安全,泄露国家秘密,颠覆国家政权,破坏国家统一的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Damage to national honours and interests;" +msgstr "损害国家荣誉和利益的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Inciting national hatred, ethnic discrimination, and undermining national " +"unity;" +msgstr "煽动民族仇恨、民族歧视、破坏民族团结的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Destroy the national religious policy and promote cults and feudal " +"superstitions;" +msgstr "破坏国家宗教政策,宣扬邪教和封建迷信的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Spread rumors, disrupting social order or endanger social stability;" +msgstr "散布谣言,扰乱社会秩序,破坏社会稳定的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Spreading obscenity, eroticism, gambling, violence, murder and terrorism or " +"instigating others to commit crime;" +msgstr "散布淫秽、色情、赌博、暴力、凶杀、恐怖或者教唆犯罪的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Insulting or slandering others, infringing on the legal rights of others;" +msgstr "侮辱或者诽谤他人,侵害他人合法权利的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Contains false, fraudulent, harmful, coercive, infringing on the privacy of " +"others, harassment, infringement, slander, vulgarity, jealousy, or other " +"morally offensive content;" +msgstr "含有虚假、诈骗、有害、胁迫、侵害他人隐私、骚扰、侵害、中伤、粗俗、猥亵、或其他道德上令人反感的内容;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Contains other content restricted or prohibited by Chinese laws, " +"regulations, rules, regulations, and any legally binding norm;" +msgstr "含有中国法律、法规、规章、条例以及任何具有法律效力之规范所限制或禁止的其他内容的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Content considered by EliteMBA to be unsuitable for display on EliteMBA " +"platforms;" +msgstr "含有英荔认为不适合在英荔展示的内容;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "2. Harm the legitimate rights and interests of others in any way;" +msgstr "2. 以任何方式危害他人的合法权益;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. Pretend to be any other person or institution, or to make a false " +"statement about or lied to any person or institution;" +msgstr "3. 冒充其他任何人或机构,或以虚伪不实的方式陈述或谎称与任何人或机构有关;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Any content that is known but not authorized to be transmitted, sent by " +"e-mail or otherwise in accordance with any law or contract or legal " +"relationship. (e.g., due to employment relationships and internal " +"information, proprietary and confidential information known or disclosed " +"under a confidentiality contract);" +msgstr "" +"4.  " +"将依据任何法律或合约或法定关系(例如由于雇佣关系和依据保密合约所得知或揭露之内部资料、专属及机密资料)知悉但无权传送之任何内容加以发布、发送电子邮件或以其他方式传送;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"5. Publish or otherwise transmit the content of copyrights, patents, " +"trademarks, trade secrets, or other proprietary rights (hereinafter referred" +" to as \"exclusive rights\") that infringe upon others;" +msgstr "5. 将侵害他人著作权、专利权、商标权、商业秘密、或其他专属权利(以下简称“专属权利”)之内容加以发布或以其他方式传送;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"6. Publish, send or otherwise transmit any advertising letter, promotional " +"material, \"spam\", \"spamming\", \"chain mail\", \"direct sales\" or any " +"other form of persuasive material;" +msgstr "6. 将任何广告信函、促销资料、“垃圾邮件”、“滥发信件”、“连锁信件”、“直销”或其他任何形式的劝诱资料加以发布、发送或以其他方式传送;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"7. Publishing, sending or by any other means transmitting computer viruses " +"(hereinafter referred to as \"Viruses\"), including but not limited to " +"Trojan horses, worms, time bombs, Cancelbots, or other computer codes, files" +" and programs designed to interfere with, damage or limit the functionality " +"of any computer software, hardware or communication equipment;" +msgstr "" +"7. " +"将设计目的在于干扰、破坏或限制任何计算机软件、硬件或通讯设备功能之计算机病毒(包括但不限于木马程序、蠕虫、定时炸弹、删除器“Cancelbot”,以下简称“病毒”)或其他计算机代码、档案和程序之任何资料,加以发布、发送或以其他方式传送;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"8. Interfere with or disrupt this service or server and network connected to" +" the Service, or violate any rules, procedures, policies or specifications " +"regarding the network connection service;" +msgstr "8. 干扰或破坏本服务或与本服务相连线之服务器和网络,或违反任何关于本服务连线网络之规定、程序、政策或规范;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "9. Tracking, cyber manhunting or harassing others in any other ways;" +msgstr "9. 跟踪、人肉搜索或以其他方式骚扰他人;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"10. Deliberate or unintentional violate any applicable local and/or national" +" law and any legally binding rules;" +msgstr "10. 故意或非故意地违反任何适用的当地、国家法律,以及任何具有法律效力的规则;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"11. Intercept, tamper with, collect, store or delete personal information, " +"on-site mail or other data without legal authorization, or use such " +"information for any illegal or improper purpose. " +msgstr "11. 未经合法授权而截获、篡改、收集、储存或删除他人个人信息、站内邮件或其他数据资料,或将获知的此类资料用于任何非法或不正当目的。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User has acknowledged that EliteMBA does not have full control over the " +"User's use. When the User uses any content, including relying on the " +"correctness, completeness or practicability of the foregoing content, the " +"User agrees to judge and assume all risks without relying on EliteMBA. " +"However, in its sole discretion, EliteMBA may refuse and remove any content " +"provided by the Service that violates these Terms or any other content that " +"is controversial to EliteMBA." +msgstr "" +"用户已认可英荔未对用户的使用行为进行全面控制,用户使用任何内容时,包括依赖前述内容之正确性、完整性或实用性时,用户同意将自行加以判断并承担所有风险,而不依赖于英荔。但英荔依其自行之考虑,可拒绝和删除经由本服务提供之违反本条款的或其他引起英荔异议的任何内容。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"User understands and agrees that EliteMBA might save or disclose contents in" +" adherence of the requirements of laws and regulations, integrity or the " +"following purposes:" +msgstr "用户了解并同意,英荔依据法律法规要求、基于诚信或出于以下目的,可能对部分内容加以保存或揭露:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "1. Comply with legal procedures;" +msgstr "1. 遵守法律程序;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "3. Execute the implementation of this agreement;" +msgstr "3. 执行本使用协议;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "3. Respond to any claims made by third parties;" +msgstr "3. 回应任何第三人提出的权利主张;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Protect the rights, property or personal safety of Elite Education, its " +"users and the public;" +msgstr "4. 保护英荔、其用户及公众之权利、财产或个人安全;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "5. Other conditions that EliteMBA deems necessary." +msgstr "5. 其他英荔认为有必要的情况。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "IX. Special Warning for International Use" +msgstr "九、国际使用之特别警告" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Users are aware of the borderless nature of the Internet and agree to abide " +"by all local laws and regulations regarding online conduct and content. The " +"User specifically agrees to comply with all applicable laws and regulations " +"regarding the transmission of information from China or the country in which" +" the user is located." +msgstr "" +"用户已了解国际互联网的无国界性,同意遵守当地所有关于网上行为及内容之法律法规。用户特别同意遵守有关从中国或用户所在国家或地区输出信息之传输的所有适用法律法规。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "X. Public information published on EliteMBA" +msgstr "十、在英荔发布的公开信息" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. In this User Agreement, \"the area in which the service is used " +"publicly\" means the area that the general public can use;" +msgstr "1. 在本使用协议中,“本服务公开使用区域”系指一般公众可以使用的区域;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. For the content uploaded or published by the user in EliteMBA, the user " +"shall guarantee that he or she is the copyright owner or has obtained legal " +"authorization, and the content does not infringe the legal rights of any " +"third party, and the user agrees to grant all the aforementioned content to " +"EliteMBA for worldwide free, irrevocable, permanent, sublicensable or " +"transferable license use, under which license will have the right to use the" +" foregoing in a manner that is displayed, promoted and otherwise not " +"prohibited by our laws." +msgstr "" +"2. " +"用户在英荔上传或发布的内容,用户应保证其为著作权人或已取得合法授权,并且该内容不会侵犯任何第三方的合法权益,用户同意授予英荔所有前述内容在全球范围内的免费、不可撤销的、永久的、可再许可或转让的独家使用权许可,据该许可英荔将有权以展示、推广及其他不为我国法律所禁止的方式使用前述内容。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XI. Compensation" +msgstr "十一、赔偿" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Any third party's claim or request, including a reasonable attorney fee, due" +" to the content provided, posted or transmitted by the User, the User's " +"connection to the Service, the User's breach of the User Agreement, or any " +"infringement of the User's rights, the user agrees to indemnify EliteMBA and" +" its subsidiaries, affiliates, senior employees, agents, brand owners or " +"other partners and employees against damage, and assume all legal " +"liabilities arising therefrom." +msgstr "" +"由于用户通过本服务提供、发布或传送之内容、用户与本服务连线、用户违反本使用协议、或用户侵害他人任何权利因而衍生或导致任何第三人提出任何索赔或请求,包括合理的律师费,用户同意赔偿英荔及其子公司、关联企业、高级职员、代理人、品牌共有人或其他合作伙伴及员工,并使其免受损害," +" 并承担由此引发的全部法律责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XII. About Use" +msgstr "十二、关于使用" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User agrees not to copy, copy, sell, resell or use it for any other " +"commercial purpose for the use or acquisition of any part of the Service or " +"the Service." +msgstr "用户同意不对本服务任何部分或本服务之使用或获得,进行复制、拷贝、出售、转售或用于任何其他商业目的。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XIII. About Storage" +msgstr "十三、关于储存" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User agrees that EliteMBA shall be liable for any information, " +"communication materials and other content posted or transmitted through the " +"Service, if it is deleted or not stored." +msgstr "通过本服务发布或传送之任何信息、通讯资料和其他内容,如被删除或未予储存,用户同意英荔毋须承担任何责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XIV. Modification of Service" +msgstr "十四、服务之修改" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA reserves the right to modify or terminate the Service (or any part " +"thereof) temporarily or permanently at any time, with or without notice. The" +" User agrees that the User shall not be liable to the User and any third " +"party for any modification, suspension or termination of the Service." +msgstr "" +"英荔有权于任何时间暂时或永久修改或终止本服务(或其任何部分),且无论通知与否。用户同意对于本服务所作的任何修改、暂停或终止,英荔对用户和任何第三人均无需承担任何责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XV. Termination of Service" +msgstr "十五、终止服务" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"User agrees that EliteMBA can, in its sole discretion, terminate the User " +"account or the use of this service (or any part thereof) for any reason " +"(including but not limited to long-term inactive account, or EliteMBA " +"believes that User has violated the letters and spirit of this User " +"Agreement), and remove and delete any content of the User within the " +"service. User agrees that the service provided under any term of this User " +"Agreement can be suspended or terminated without prior notification. User " +"acknowledges and agrees that EliteMBA can immediately close or delete User " +"account and all the related data and files, and/or prohibit continued use of" +" the above files or this service. In addition, User agrees that if the use " +"of this service is suspended or terminated, or the User's account and " +"related data and files are closed or deleted, EliteMBA does not assume any " +"liability to the User or any third party." +msgstr "" +"用户同意英荔基于其自行之考虑,因任何理由(包含但不限于长期对账号无任何操作,或英荔认为用户已经违反本使用协议的文字及精神)终止用户的账号或本服务之使用(或服务之任何部分),并将用户在本服务内任何内容加以移除并删除。用户同意依本使用协议任何规定提供之本服务,无需进行事先通知即可中断或终止,用户承认并同意,英荔可立即关闭或删除用户的账号及用户账号中所有相关信息及文件,及/或禁止继续使用前述文件或本服务。此外,用户同意若本服务之使用被中断或终止或用户的账号及相关信息和文件被关闭或删除,英荔对用户或任何第三人均不承担任何责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XVI. Dealing with Advertisers and Other Third Parties" +msgstr "十六、与广告商及其他第三方进行交易" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Users engage in any form of communication or business dealings with " +"advertisers and other third parties through this website, or participate in " +"promotional activities, including payment and delivery of related goods or " +"services, and any other relevant terms, conditions, warranties or " +"representations reached, they are the fully behavior between users and " +"advertisers and other third parties. EliteMBA is not liable for any loss or " +"damage of any nature suffered by the user in connection with any of the " +"foregoing transactions or the aforementioned advertisers and other third " +"parties." +msgstr "" +"用户通过本网站与广告商及其他第三方进行任何形式的通讯或商业往来,或参与促销活动,包含相关商品或服务之付款及交付,以及达成的其他任何相关条款、条件、保证或声明,完全为用户与广告商及其他第三方之间之行为。用户因前述任何交易或前述广告商及其他第三方而遭受的任何性质的损失或损害,英荔对此不负任何法律责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XVII. Exclusive Rights of EliteMBA" +msgstr "十七、英荔之专属权利" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User also understands and agrees that the content of the sponsored " +"advertisements or information presented to the User via the Service or the " +"Advertiser is also protected by copyright, trademark, service mark, patent " +"or other proprietary rights. Users may not modify, rent, lend, sell, " +"distribute any part or all of the Service or the Software, or create " +"derivative works, or use unauthorized software, including but not without " +"the express authorization of EliteMBA or the advertiser. Limited to the " +"purpose of using the Service for unauthorized purposes. EliteMBA only grants" +" the user personal, non-transferable and non-exclusive right to use, so that" +" the User can use the purpose code of the software on a stand-alone " +"computer, but the User may not (and must not allow any third person) to " +"copy, modify, create derivative works, perform restoration work, reverse " +"translation, or otherwise discover the source code, or sell, transfer, " +"sublicense or provide software to set a warranty, or otherwise transfer any " +"rights in the software. The User agrees to use the Service through the " +"interface provided by EliteMBA and not in any other way." +msgstr "" +"用户也了解并同意,经由本服务或广告商向用户呈现之赞助广告或信息所包含之内容,亦受到著作权、商标权、服务商标、专利权或其他专属权利之法律保护。未经英荔或广告商明示授权,用户不得修改、出租、出借、出售、散布本服务或软件之任何部份或全部,或据以制作衍生著作,或使用擅自修改后的软件,包括但不限于为了未经授权而使用本服务之目的。英荔仅授予用户个人、不可移转及非专属之使用权,使用户得于单机计算机使用其软件之目的码,但用户不得(并不得允许任何第三人)复制、修改、创作衍生著作、进行还原工程、反向组译,或以其他方式发现原始码,或出售、转让、再授权或提供软件设定担保,或以其他方式移转软件之任何权利。用户同意将通过由英荔所提供的界面而非任何其他途径使用本服务。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XVIII. Guarantee and Warranty" +msgstr "十八、担保与保证" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "The User clearly understands and agrees:" +msgstr "用户明确了解并同意∶" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. No provision of this agreement will relieve EliteMBA of any liability for" +" the User's personal injury or damage or property loss resulting from " +"intentional misconduct or gross negligence;" +msgstr "1. 本使用协议的任何规定不会免除英荔对造成用户人身伤害的、或因故意或重大过失造成用户财产损失的任何责任;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. The use of the Service is at the User's own risk. The Service is provided" +" on the basis of \"status quo\" and \"existing\". EliteMBA does not provide " +"any warranty or guarantee, either express or implied, including but not " +"limited to commercial marketability, applicability for particular purpose " +"and non-infringement upon others' rights, etc.;" +msgstr "" +"2. " +"使用该服务是由用户自担风险。该服务是在“现状”和“现有”的基础上提供的。英荔不提供任何明示或暗示的担保或保证,包括但不限于商业适销性,针对特定用途的适用性和不侵犯他人权利等;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "3. Any statement or conduct by any third party in the Service;" +msgstr "3. 任何第三方在本服务中所作之声明或行为;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Other matters related to the Service, except as explicitely provided in " +"this Agreement of Use;" +msgstr "4. 与本服务相关的其他事宜,但本使用协议有明确规定的除外;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"5. Elite Education does not accept any responsibility for the posting or " +"delivery of fraudulent information by any third party or for inducing users " +"to suffer financial losses." +msgstr "5. 第三方以任何方式发布或投递欺诈性信息,或诱导用户受到经济损失,英荔不承担任何责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "ⅩⅨ. EliteMBA Trademarks Information" +msgstr "十九、英荔商标信息" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Elite Education, EliteMBA and other EliteMBA registered trademarks, logos " +"and products and service names are trademarks of EliteMBA (hereinafter " +"referred to as \"EliteMBA Mark\"). The User agrees not to display or use or " +"otherwise process the EliteMBA Mark in any manner without the prior written " +"consent of EliteMBA, or to indicate that the User has the right to display, " +"use or otherwise process the EliteMBA Mark." +msgstr "" +"英荔教育、英荔商学院、英荔以及其他英荔注册商标、标志及产品、服务名称,均为英荔公司之商标(以下简称“英荔标记”)。未经英荔事先书面同意,用户同意不将英荔标记以任何方式展示或使用或作其他处理,或表示用户有权展示、使用或另行处理英荔标记。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XX. Exclusive User Rights" +msgstr "二十、用户专属权利" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Elite Education respects the intellectual property rights of others and " +"calls on users to respect intellectual property rights as well." +msgstr "英荔尊重他人知识产权,呼吁用户也要同样尊重知识产权。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The services and materials of EliteMBA are provided on an \"as is\" basis " +"and expressly disclaims any express or implied warranties of \"service\", " +"\"material\" or \"product\", including but not limited to for commercial use" +" or fitness Guarantee for a specific purpose. EliteMBA is not responsible " +"for any direct, indirect, incidental or consequential damages arising out of" +" the Services, the materials or the products." +msgstr "" +"英荔之服务与资料是基于“现状”提供,而且英荔明确地表示拒绝对于“服务”、“资料”或“产品”给予任何明示或暗示之保证,包括但不限于,为商业使用或适合于特定目的之保证。英荔对于因“服务”、“资料”或“产品”所产生之任何直接、间接、附带的或因此而导致之衍生性损失概不负责。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"If the User infringes upon the intellectual property rights of others, " +"EliteMBA will, according to the provisions of the national laws and " +"regulations or under appropriate circumstances, delete specific contents or " +"even terminate the User's account according to Terms of Service or related " +"provisions." +msgstr "" +"如果用户对他人的知识产权造成了侵害,英荔将依国家法律法规的规定,或在适当的情形下,将依其服务条款或其相关规范性规定,删除特定内容或以至终止用户对账号的使用。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA respects any rights (including intellectual property rights) of " +"others and also requires our users to respect the rights of others. In the " +"appropriate circumstances, EliteMBA may, at its discretion, terminate the " +"account of the User who infringes or violates the rights of others." +msgstr "" +"英荔尊重他人的任何权利(包括知识产权),同时也要求我们的使用者也尊重他人之权利。英荔在适当情况下,可自行决定终止侵害或违反他人权利之使用者的账号。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"If the User believes that the copyright of his/her work has been infringed " +"or the User's intellectual property rights have been violated, according to " +"the Regulations on the Protection of Information Network Communication " +"Rights, users should contact EliteMBA and provide detailed evidence. Or " +"please go to the National Copyright Administration of the People's Republic " +"of China to download the \"Notice of Deleting or Disconnecting the " +"Infringing Web Content\" (hereinafter referred to as the \"Delete Notice\")." +" If the user does not understand the content of the \"Delete Notice\", " +"please log in to the National Copyright Administration of the People's " +"Republic of China and looks for the instructions for \"Notice to Remove or " +"Disconnect the Content of the Infringing Web Link\"." +msgstr "" +"若用户认为自己的作品著作权遭到侵害或用户的知识产权被侵犯,根据《信息网络传播权保护条例》的规定,用户需及时向英荔联系并提供详实的举证材料。或请到中华人民共和国国家版权局下载《要求删除或断开链接侵权网络内容的通知》(下称“删除通知”)的示范格式,如果用户不明白“删除通知”的内容,请登录中华人民共和国国家版权局查看《要求删除或断开链接侵权网络内容的通知》填写说明。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XXI. General Terms" +msgstr "二十一、一般条款" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. This User Agreement, Privacy Policy and Disclaimer constitute the entire " +"agreement between the User and EliteMBA, and regulate the User's use of the " +"Service. Additional terms and conditions apply when users use related " +"services and use content or software provided by third parties;" +msgstr "" +"1. " +"本使用协议和隐私政策及免责声明构成用户与英荔之全部协议,并规范用户对于本服务之使用行为。在用户使用相关服务、使用第三方提供的内容或软件时,亦应遵从所适用之附加条款及条件;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. The User Agreement and the relationship between the User and EliteMBA are" +" governed by the laws of the People's Republic of China. The dispute between" +" the user and EliteMBA on the service, the Agreement or other related " +"matters shall be settled through negotiation first. If the negotiation " +"fails, it shall be submitted to the China International Economic and Trade " +"Arbitration Commission for arbitration. The arbitral award is final and " +"binding on both parties;" +msgstr "" +"2.  " +"本使用协议及用户与英荔之关系,均受到中华人民共和国法律管辖。用户与英荔就本服务、本使用协议或其他有关事项发生的争议,应首先友好协商解决,协商不成时应提请中国国际经济贸易仲裁委员会仲裁,仲裁裁决是终局性的,对双方均有约束力;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. The failure of EliteMBA to exercise or enforce any rights or provisions " +"of this agreement shall not constitute the waiver of aforementioned rights;" +msgstr "3. 英荔未行使或执行本使用协议任何权利或规定,不构成对前述权利或权利之放弃;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. If any provision of this Terms of Use is ineffective due to conflicts " +"with the laws of the People's Republic of China, the User agrees that, in " +"accordance with the law, efforts shall be made to make the parties' " +"intentions reflected in the Regulations effectively, and that other " +"provisions of this User Agreement shall remain in full force;" +msgstr "" +"4. " +"倘本使用协议之任何规定因与中华人民共和国法律抵触而无效,用户依然同意应依照法律,努力使该规定所反映之当事人意向具备效力,且本使用协议其他规定仍应具有完整的效力;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"5. The title of this User Agreement is for convenience only and does not " +"have any legal or contractual effect;" +msgstr "5. 本使用协议之标题仅供方便而设,不具任何法律或契约效果;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"6. Elite Education has the final interpretation of this User Agreement." +msgstr "6. 英荔对本使用协议享有最终解释权。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Users are advised to notify EliteMBA of any violation of the Terms of " +"Service and/or any other announcements of EliteMBA." +msgstr "请用户在发现任何违反本服务协议以及其他任何单项服务的服务条款、英荔各类公告之情形时,通知英荔。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Effective on Nov 30th, 2018" +msgstr "协议生效日期:2018年11月30日" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The Products and services of EliteMBA(www.elitemba.cn)are provided by " +"Guangzhou Elite Education & Technology Co., Ltd (hereinafter referred to as " +"\"we\", \"Company\" or \"Elite\"). This User Agreement is applicable to " +"E-ducation websites, E-ducation applications and other related products and " +"services on computer/mobile phone/tablet or other devices. EliteMBA attaches" +" great importance to the protection of the privacy of EliteMBA Users " +"(hereinafter referred to as \"Users\"). Sometimes we need certain " +"information to provide users with the requested services. This policy " +"explains the data collection and use under these circumstances." +msgstr "" +"英荔商学院(www.EliteMBA.cn)的产品及服务由广东英荔国际教育科技有限公司(以下简称“英荔”或“我们”)提供。本隐私政策(以下简称“本政策”)适用于英荔的网站、在计算机/手机/平板电脑或其他设备上使用的英荔的应用程序和其他产品及服务。英荔非常重视对英荔用户(以下简称“用户”)个人隐私的保护,有时候我们需要某些信息才能为用户提供请求的服务,本政策解释了这些情况下的数据收集和使用情况。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"This policy applies to all relevant services in EliteMBA. As the scope of " +"the EliteMBA services expands, the content of the policy may be amended or " +"changed at any time by EliteMBA. EliteMBA will publish and update the " +"effective date. Once the updated Privacy Policy is published, it effectively" +" replaces the original Privacy Policy. By continuing to use EliteMBA " +"Service, the User agrees to and accepts this Policy and any updated versions" +" thereof." +msgstr "" +"本政策适用于英荔的所有相关服务,随着英荔服务范围的扩大,政策的内容可由英荔随时修正或更改,英荔将公布并更新生效日期。更新后的隐私政策一旦公布即有效代替原来的隐私政策,用户继续使用英荔服务即表示用户同意并接受本政策及其任何更新版本。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅰ. The Information that We Collect" +msgstr "一、我们收集哪些信息" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Normally, you can visit EliteMBA and browse the information anonymously. " +"When your Personally Identifiable Information or contact details are needed," +" we will ask for your prior consent. Information such as Name, E-mail " +"Address, Residence Address and Mobile Number might be collected when " +"registering on EliteMBA or applying for new features and your confirmation " +"is needed. " +msgstr "" +"通常,用户能在匿名的状态下访问英荔并获取信息。当我们需要能识别用户个人信息或者可以与用户联系的信息时,我们会征求用户的同意。通常,在用户注册英荔或申请开通新的功能时,我们可能收集这些信息:姓名、邮箱地址、住址和电话号码,并征求用户的确认。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅱ. About User's Personal Information" +msgstr "二、关于您的个人信息" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA strictly protects the security of Users' personal information. We " +"use a variety of security technologies and procedures to protect our " +"personal information from unauthorized access, use or disclosure." +msgstr "英荔严格保护用户个人信息的安全。我们使用各种安全技术和程序来保护用户的个人信息不被未经授权的访问、使用或泄漏。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA will not disclose the personal information of the User to third " +"parties without the User's permission. The following conditions are listed " +"in this statement: the legal requirements or the User's violation of the " +"relevant terms of service of EliteMBA, the software license agreement, or " +"EliteMBA has good reasons to believe that this must be done in order to:" +msgstr "" +"未经用户本人允许,英荔不会向第三方透露用户的个人信息,本声明列出的以下情况除外:法律要求或用户违反英荔的相关服务条款、软件许可使用协议约定,或者英荔有充分理由相信必须这样做才能:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"(a) Meet the requirements of laws or administrative regulations that are " +"explicitely listed, or comply with applicable legal procedures to Elite " +"Education websites;" +msgstr "(a)满足法律或行政法规的明文规定,或者符合英荔网站适用的法律程序;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"(b) Comply with the terms of EliteMBA related service terms and software " +"license agreement;" +msgstr "(b)符合英荔相关服务条款、软件许可使用协议的约定;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "(c) Protection of the rights or property of EliteMBA;" +msgstr "(c)保护英荔的权利或财产;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"(d) Under urgent emergencies, ensure the safety of EliteMBA employees, " +"product or service users, or the public." +msgstr "(d)在紧急情况下保护英荔员工、英荔产品或服务的用户或大众的个人安全。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"This information will not be shared with third parties by EliteMBA without " +"the user's permission, except as outlined above in this statement." +msgstr "英荔不会未经用户的允许将这些信息与第三方共享,本声明已经列出的上述情况除外。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "III.Use of Cookie" +msgstr "三、COOKIE 的使用" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Using cookies helps users personalize their online experience. Users can " +"accept or reject cookies. Most web browsers automatically accept cookies, " +"but users can often modify their browser settings to reject cookies based on" +" their needs." +msgstr "" +"使用 Cookie 能帮助用户实现联机体验的个性化,用户可以接受或拒绝 Cookie,大多数 Web 浏览器会自动接受 " +"Cookie,但用户通常可根据自己的需要来修改浏览器的设置以拒绝 Cookie。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA will use cookies sometimes to capture the websites to learn which " +"websites are popular in order to provide better services to User when they " +"are visiting E-ducation." +msgstr "英荔有时会使用 Cookie 以便知道哪些网页受欢迎,使用户在访问英荔时能得到更好的服务。Cookie 不会跟踪个人信息。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA cookie is also used when the user registers for EliteMBA. In this " +"case, EliteMBA collects and stores useful information, and when the user " +"visits EliteMBA again, we can identify the user. Cookies from EliteMBA can " +"only be read by EliteMBA." +msgstr "" +"当用户注册英荔时,英荔亦会使用 Cookie。在这种情况下,英荔会收集并存储有用信息,当用户再次访问英荔时,我们可辨认用户的身份。来自英荔的 " +"Cookie 只能被英荔读取。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"If the User's browser is set to reject cookies, the User will still be able " +"to access most of the web pages of EliteMBA." +msgstr "如果用户的浏览器被设置为拒绝 Cookie,用户仍然能够访问英荔的大多数网页。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "IV. About Disclaimer" +msgstr "四、关于免责说明" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA does not assume any legal responsibility for the occurrence of the " +"following related matters:" +msgstr "就下列相关事宜的发生,英荔不承担任何法律责任:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. The leakage of any personal information caused by the User's notification" +" of the User's password or sharing the registered account with others, or " +"the leakage of other personal information that is not caused by EliteMBA " +"reasons; " +msgstr "1. 由于用户将用户密码告知他人或与他人共享注册账号,由此导致的任何个人信息的泄漏,或其他非因英荔原因导致的个人信息的泄漏;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. According to the provisions of the law or relevant government policy " +"requirements, Elitemba providing User's personal information;" +msgstr "2. 英荔根据法律规定或政府相关政策要求提供用户的个人信息;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. Disputes caused by any third party using User's personal information " +"under various circumstances listed in the terms of service and the " +"Disclaimer of EliteMBA;" +msgstr "3. 任何第三方根据英荔各服务条款及声明中所列明的情况使用用户的个人信息,由此所产生的纠纷;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Any temporary website closure due to hacking, computer virus intrusion or" +" government regulation;" +msgstr "4. 任何由于黑客攻击、电脑病毒侵入或政府管制而造成的暂时性网站关闭;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "5. Any consequences caused by force majeure;" +msgstr "5. 因不可抗力导致的任何后果;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"6. Ways of use or disclaimer circumstances listed by EliteMBA in terms of " +"service and this Disclaimer." +msgstr "6. 英荔在各服务条款及声明中列明的使用方式或免责情形。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "General Terms" +msgstr "总则" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The products and services of Elite Education (www.elitemba.cn) are provided " +"by Guangdong Elite International Education & Technology Co., Ltd. " +"(hereinafter referred to as \"EliteMBA\" or \"We\"). This Disclaimer " +"Statement(hereinafter referred to as \"Disclaimer\") applies to EliteMBA " +"website, other applications used on computers, mobile phones/tablets or " +"other devices and other products and services. EliteMBA User (hereinafter " +"referred to as \"User\") must carefully read these terms and agree to this " +"statement before accepting EliteMBA service." +msgstr "" +"英荔商学院(www.EliteMBA.cn)的产品及服务由广东英荔国际教育科技有限公司(以下简称“英荔”或“我们”)提供。本免责声明(以下简称“本声明”)适用于英荔的网站、在计算机/手机/平板电脑或其他设备上使用的英荔的应用程序和其他产品及服务。英荔用户(以下简称“用户”)在接受英荔服务之前,请务必仔细阅读本条款并同意本声明" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"User who directly or (such as off-site API references, etc.) indirectly uses" +" EliteMBA services and data through various means will be regarded as having" +" unconditionally accepted all the contents involved in this Disclaimer; if " +"user objects any of the terms in this Disclaimer, please stop using all " +"services provided by EliteMBA. " +msgstr "" +"用户直接或通过各类方式(如站外API引用等)间接使用英荔服务和数据的行为,都将被视作已无条件接受本声明所涉全部内容;若用户对本声明的任何条款有异议,请停止使用英荔所提供的全部服务。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"This disclaimer may be amended or changed at any time by EliteMBA. The " +"EliteMBA will announce and updated the effective date. The updated " +"disclaimer will effectively replace the original statement once it is " +"published. By continuing to use EliteMBA service, the user agrees to and " +"accepts this statement and any updated versions thereof." +msgstr "" +"本免责声明可由英荔随时修正或更改,英荔将公布并更新生效日期。更新后的免责声明一旦公布即有效代替原来的声明,用户继续使用英荔服务即表示用户同意并接受本声明及其任何更新版本。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Article 1" +msgstr "第一条" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Users may not use EliteMBA to directly or indirectly engage in breaches of " +"EliteMBA services and data (including but not limited to publication, " +"promotion, reprint, browsing, and use of EliteMBA or its users) in various " +"ways. Laws and regulations of the People's Republic of China, as well as the" +" behavior of social morality. Users should abide by the following " +"commitments:" +msgstr "" +"用户以各种方式使用英荔服务和数据(包括但不限于发表、宣传介绍、转载、浏览及利用英荔或其用户发布内容)的过程中,不得以任何方式利用英荔直接或间接从事违反中华人民共和国法律法规,以及社会公德的行为。用户应当恪守下述承诺:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. Content published, reprinted or provided should comply with Chinese laws " +"and regulations and social morality;" +msgstr "1. 发布、转载或提供的内容符合中国法律法规、社会公德;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. Cannot interfere with, damage or violate the various legal rights and " +"interests of Elite Education;" +msgstr "2. 不得干扰、损害和侵犯英荔的各种合法权利与利益;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. Shall not interfere with, damage and infringe upon the various legal " +"rights and interests of other EliteMBA users;" +msgstr "3. 不得干扰、损害和侵犯其他英荔用户的各种合法权利与利益;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Compliance with the rules and guidelines, management rules, etc. of Elite" +" Education website and other network related services;" +msgstr "4. 遵守英荔以及与之相关的网络服务的协议、指导原则、管理细则等;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"5. Elite Education has the right to remove content that violates the above " +"commitments." +msgstr "5. 英荔有权对违反上述承诺的内容予以删除。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Article 2" +msgstr "第二条" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. EliteMBA only provides storage space for content posted by users. " +"EliteMBA does not provide any form of guarantee for the content posted or " +"reprinted by the User: there is no guarantee that the content will meet the " +"requirements of users, and there is no guarantee that the services of " +"EliteMBA will not be interrupted. EliteMBA does not assume any legal " +"responsibility for any reason that the user cannot use the website due to " +"any conditions such as network conditions, communication lines, third-party " +"websites or management requirements." +msgstr "" +"1. " +"英荔仅为用户发布的内容提供存储空间,英荔不对用户发表、转载的内容提供任何形式的保证:不保证内容满足用户的要求,不保证英荔的服务不会中断。因网络状况、通讯线路、第三方网站或管理部门的要求等任何原因而导致用户不能正常使用本网站,英荔不承担任何法律责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. The content published by Elite User (including but not limited to the " +"contents of the current product features of Elite) only indicates their " +"personal position and views, and does not represent the position or opinion " +"of Elite. As the content publisher, it is the responsibility of the content " +"to be published. All the disputes arising from the published content shall " +"be the legal and joint responsibility of the publisher of the content. " +"EliteMBA does not assume any legal and joint responsibility. " +msgstr "" +"2. " +"用户在英荔发表的内容(包含但不限于英荔目前各产品功能里的内容)仅表明其个人的立场和观点,并不代表英荔的立场或观点。作为内容的发表者,需自行对所发表内容负责,因所发表内容引发的一切纠纷,由该内容的发表者承担全部法律及连带责任。英荔不承担任何法律及连带责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. if the user publishes content suspected of infringing on the intellectual" +" property rights or other legitimate rights and interests of others through " +"EliteMBA, after the relevant parties provide prima facie evidence, EliteMBA " +"has the right to delete it first and retain the right to transfer it to the " +"judicial authorities. Referring to the investigation results of the relevant" +" judicial authorities, EliteMBA has the final decision on the disposal of " +"the content posted on the website. " +msgstr "" +"3. " +"用户在英荔发布涉嫌侵犯他人知识产权或其他合法权益的内容,经相关方提供初步证据,英荔有权先行予以删除,并保留移交司法机关查处的权利。参照相应司法机关的查处结果,英荔对于网站发布内容的处置具有最终决定权。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. User should inform Elite when he/she discovers any violation of this " +"Service Agreement, the terms of service of any other individual service, and" +" various announcements made by Elite Education. " +msgstr "4. 个人或单位如认为英荔存在侵犯自身合法权益的内容,应准备好具有法律效应的证明材料,及时与英荔取得联系,以便英荔迅速做出处理。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Supplementary" +msgstr "附则" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA reserves the rights to interpret, modify and update the Disclaimer." +msgstr "对免责声明的解释、修改及更新权均属于英荔所有。" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "Join us" +msgstr "加入我们" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "Let Yourself be More Valuable" +msgstr "成为更有价值的自己" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "" +"EliteMBA pays attention to employee development and attaches importance to " +"the power of communication. We continue to learn, inspire each other, and " +"constantly discover industry inspiration at work, and open our eyes as a " +"whole community. Here, work is an organic combination of enjoyment and hard " +"work." +msgstr "" +"英荔关注员工发展,重视交流的力量。作为一个整体,我们不断学习,相互启发,在工作中不断发现行业灵感,大开眼界。在这里,工作是享受与拼搏的有机结合。" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "" +"We will release job information as soon as possible, so stay tuned. Of " +"course, this does not mean that we want to miss any future members. Feel " +"free to contact us through email directly" +msgstr "职位信息整理中,我们将尽快发布,敬请期待。当然,这并不意味着我们愿意错过任何一位未来的成员,欢迎直接邮件联系" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "Become a Lecturer" +msgstr "成为英荔讲师" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "" +"Standing on the platform, educators can impart wisdom to learners. EliteMBA " +"completely breaks the geographical restrictions of teaching and learning and" +" provides a broader platform for educators. We sincerely invite all elite " +"professors, scholars and experts who have been deeply involved in business " +"management disciplines to develop more outstanding business talents by " +"transforming intangible wisdom into a collectible course." +msgstr "" +"站上讲台,教育者得以向学习者传授智慧。英荔彻底打破教与学的地理限制,为教育者提供更广阔的讲台。我们诚挚地向所有深耕于商业管理学科的精英教授、学者和专家发出邀请,让我们共同将无形的智慧实化为可典藏的课程,以此培养更多杰出的商业人才。" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "Please contact" +msgstr "请直接邮件联系" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "directly or call 400-931-8118." +msgstr "或致电400-931-8118。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To know more about courses" +msgstr "如何了解课程?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Click the course to view the course introduction video, browse the course " +"introduction, instructor introduction and course outline, etc." +msgstr "点击课程进入详情页,观看课程简介视频,浏览课程简介、导师简介及课程大纲等。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To join as a member" +msgstr "如何加入会员?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Membership\" page, choose your learning duration and payment method." +" After payment is completed, you can enjoy learning all courses on EliteMBA " +"during the study period." +msgstr "进入“会员资格”页,选择适合您的学习时长及支付方式,支付成功后便可在会员期限内享受所有课程的学习权益。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To view the end-date of membership" +msgstr "如何查看已购买的会员期限?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "Enter \"Membership\" page to view the VIP open date and remaining days." +msgstr "进入“会员资格”页,可查看会员已开通时间及剩余时间。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To enroll as a member" +msgstr "会员如何选课?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Discover New\" page, click the course or search key words to select " +"courses you are interested in, click \"Free Enrollment for VIP\" button, " +"then the enrollment is fulfilled." +msgstr "进入“发现课程”页,直接选择或通过搜索关键字的方式选择您感兴趣的课程,点击“VIP会员免费选修此课程”,即为选课成功。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To purchase a course" +msgstr "非会员如何购买单课?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Discover New\" page, click the course or search key words to select " +"courses you are interested in, click \"Enroll\" button, then you can start " +"learning after payment is completed." +msgstr "进入“发现课程”页,直接选择或通过搜索关键字的方式选择您感兴趣的课程,点击“选修此课程”,支付成功后即可开始学习该门课程。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To start a course" +msgstr "如何开始学习?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Click your avatar in the upper right corner of the page, enter \"Dashboard\"" +" to view the course introduction, watch videos and complete assignments." +msgstr "点击网页右上角个人头像进入“课程面板-查看课程”,可浏览课程简介;点击“开始学习课程”,可观看课程视频,提交课后习题。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To participate in discussion" +msgstr "如何参与课程讨论?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Dashboard - View Course\" page, click \"Discussion\". You can view " +"discussions, engage with posts and receive updates." +msgstr "进入“课程面板-查看课程”页,点击“讨论”,可以查看讨论帖、参与讨论及接收讨论帖更新。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To view and download handouts" +msgstr "如何查看和下载课程讲义?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Dashboard - View Course\" page, find \"Course Handouts\" on the " +"right side. You can view handout content and download." +msgstr "进入“课程面板-查看课程”页,在右侧找到“课程讲义”,可查看讲义内容并下载。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "How do I change or reset my password?" +msgstr "如何更改或重置密码?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To change your password" +msgstr "更改您的密码" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"1. At the top of any page, select the dropdown menu icon next to your " +"username." +msgstr "1. 在任意页面的顶部,选择用户名旁边的下拉菜单图标;" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "2. Select \"Account\"." +msgstr "2. 选择“帐户”;" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "3. Select \"Reset Password\"." +msgstr "3. 选择“重置密码”" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"The system sends a confirmation message to the email address in the \"Email " +"Address\" field." +msgstr "系统会向“电子邮件地址”框内的电子邮件地址发送确认消息;" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "4. Select the confirmation link in the email message." +msgstr "4. 打开电子邮件中的确认链接以确认密码修改。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "Passwords must contain:" +msgstr "密码必须包含:" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "At least 6 characters" +msgstr "至少6个字符" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "How do I change my email address?" +msgstr "如何更改我的电子邮件地址?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"You can change your email address on any site page. You use your email " +"address to sign in to your account. In addition, communications from your " +"course teams are sent to this address." +msgstr "您可以在任何网站页面上更改您的电子邮件地址。您使用此电子邮件地址登录自己的帐户。另外,您所加入的课程团队将把课程信息发送到此电子邮件地址。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To change your email address" +msgstr "更改您的电子邮件地址" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"1. At the top of any page, select the dropdown menu icon next to your " +"username;" +msgstr "1. 在任意页面的顶部,选择用户名旁边的下拉菜单图标;" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "2. Select \"Account\";" +msgstr "2. 选择“账号”;" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"3. In the \"Email Address\" field, select your current email address and " +"replace it with the new address;" +msgstr "3. 在“电子邮件地址”的输入框中,选择您当前的电子邮件地址并将其替换为新的电子邮件地址;" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"4. To save your changes, click anywhere on the page outside of the \"Email " +"Address\" field, or navigate to a different page." +msgstr "4. 最后要保存更改,请单击“电子邮件地址”字段外部页面上的任意位置,或导航至其他页面。" + +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Mobile" +msgstr "手机" + +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Mobile Phone No.:" +msgstr "手机号码:" + +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Bind your EliteMBA account to your cellphone number." +msgstr "将您的手机号码与EliteMBA的账号绑定。" + +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Copyright" +msgstr "版权" + +#: themes/stanford-style/lms/templates/footer.html +msgid "Copyright {year}. All rights reserved." +msgstr "版权 {year}。保留所有权利。" + +#: themes/stanford-style/lms/templates/index.html +msgid "For anyone, anywhere, anytime" +msgstr "任何人,任何地点,任何时间" + +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "" +"You will receive an activation email. You must click on the activation link" +" to complete the process. Don't see the email? Check your spam folder and " +"mark emails from class.stanford.edu as 'not spam', since you'll want to be " +"able to receive email from your courses." +msgstr "" +"您会收到一封激活邮件。您必须点击激活链接才能完成注册。如果没有看见邮件,请检查垃圾邮件,并将来自class.stanford.edu的邮件标记为“非垃圾邮件”,因为您会希望收到来自您的课程的邮件。" + +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Need help in registering with {platform_name}?" +msgstr "在注册{platform_name}时需要帮助?" + +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "" +"Once registered, most questions can be answered in the course specific " +"discussion forums or through the FAQs." +msgstr "注册成功后,大部分问题均可在具体课程讨论论坛或FAQ中得到解决。" + +#: themes/stanford-style/lms/templates/emails/activation_email.txt +msgid "Thank you for signing up for {platform_name}." +msgstr "感谢您注册 {platform_name} 。" + +#: themes/stanford-style/lms/templates/emails/activation_email.txt +msgid "" +"Change your life and start learning today by activating your {platform_name}" +" account. Click on the link below or copy and paste it into your browser's " +"address bar." +msgstr "激活您的{platform_name}账号,从今天起开始学习,并以此改变您的生活。点击下面的链接或复制并粘贴到您浏览器的地址栏。" + +#: themes/stanford-style/lms/templates/emails/activation_email.txt +#: themes/stanford-style/lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the about section of the {platform_name} Courses web site." +msgstr "" +"如果您没发出过该请求,您不需要做任何事情;您将不会收到其他任何电子邮件。请不要回复此电子邮件;如果您需要帮助,请访问 {platform_name} " +"课程网站。" + +#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us at" +msgstr "" +"这封邮件是为了确认您和 {platform_name} 之间的电子邮件关联由 {old_email} 变更为 " +"{new_email}。如果您并没有发出该请求,请通过下列地址联系我们:" + +#: themes/stanford-style/lms/templates/emails/email_change.txt +msgid "" +"We received a request to change the e-mail associated with your " +"{platform_name} account from {old_email} to {new_email}. If this is correct," +" please confirm your new e-mail address by visiting:" +msgstr "" +"我们收到了您需要将 {platform_name} 账号的电子邮件关联由 {old_email} 变更为 {new_email} " +"的请求。如果该请求无误,请访问如下网页确认您的新电子邮件地址:" + +#: themes/stanford-style/lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the tech support at {email}" +msgstr "" +"我们很抱歉。我们的员工没有批准您的请求改变您的名字从{old_name} " +"{new_name}。如果您需要进一步的协助,请电子邮件的技术支持{email}" + +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Put your Terms of Service here!" +msgstr "将您的服务条款置于此处!" + +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Put your Privacy Policy here!" +msgstr "将您的隐私政策置于此处!" + +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Put your Honor Code here!" +msgstr "将您的诚信准则置于此处!" + +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Put your Copyright Text here!" +msgstr "将您的版权文本置于此处!" diff --git a/conf/locale/zh_CN/LC_MESSAGES/djangojs-partial.po b/conf/locale/zh_CN/LC_MESSAGES/djangojs-partial.po deleted file mode 100644 index 134be050a863..000000000000 --- a/conf/locale/zh_CN/LC_MESSAGES/djangojs-partial.po +++ /dev/null @@ -1,4989 +0,0 @@ -# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). -# Copyright (C) 2019 EdX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -# Translators: -# 嘉杰 李 , 2018 -# 微 李 , 2018 -# 婕 高 , 2018 -# 家璧 刘 , 2018 -# li ying , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-11 02:18+0000\n" -"PO-Revision-Date: 2018-11-26 07:55+0000\n" -"Last-Translator: li ying , 2019\n" -"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: cms/static/cms/js/xblock/cms.runtime.v1.js -#: cms/static/js/certificates/views/signatory_details.js -#: cms/static/js/models/section.js cms/static/js/utils/drag_and_drop.js -#: cms/static/js/views/asset.js cms/static/js/views/container.js -#: cms/static/js/views/course_info_handout.js -#: cms/static/js/views/course_info_update.js -#: cms/static/js/views/edit_textbook.js -#: cms/static/js/views/list_item_editor.js -#: cms/static/js/views/modals/edit_xblock.js cms/static/js/views/tabs.js -#: cms/static/js/views/tabs.js cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js lms/static/js/ccx/schedule.js -#: lms/static/js/views/fields.js -msgid "Saving" -msgstr "正在保存" - -#: cms/static/js/certificates/views/signatory_editor.js -#: cms/static/js/views/asset.js cms/static/js/views/list_item.js -#: cms/static/js/views/manage_users_and_roles.js -#: cms/static/js/views/show_textbook.js -#: lms/djangoapps/teams/static/teams/js/views/instructor_tools.js -msgid "Delete" -msgstr "删除" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/certificates/views/signatory_editor.js -#: cms/static/js/views/asset.js cms/static/js/views/course_info_update.js -#: cms/static/js/views/export.js cms/static/js/views/manage_users_and_roles.js -#: cms/static/js/views/modals/base_modal.js -#: cms/static/js/views/modals/course_outline_modals.js -#: cms/static/js/views/modals/course_outline_modals.js -#: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js -#: cms/static/js/views/validation.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/static/common/js/components/utils/view_utils.js -#: lms/static/js/Markdown.Editor.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -#: lms/static/js/writable_gradebook.js -msgid "Cancel" -msgstr "取消" - -#. Translators: This is the status of an active video upload -#: cms/static/js/models/active_video_upload.js cms/static/js/views/assets.js -#: cms/static/js/views/video_thumbnail.js lms/static/js/views/image_field.js -msgid "Uploading" -msgstr "上传中" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/active_video_upload.js -#: cms/static/js/views/modals/edit_xblock.js -#: cms/static/js/views/video_transcripts.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -#: lms/static/js/student_account/tos_modal.js -msgid "Close" -msgstr "关闭" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/assets.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Name" -msgstr "姓名" - -#: cms/static/js/views/assets.js lms/static/js/Markdown.Editor.js -msgid "Choose File" -msgstr "选取文件" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/course_info_update.js cms/static/js/views/tabs.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: lms/static/js/Markdown.Editor.js -msgid "OK" -msgstr "是的" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/course_video_settings.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "None" -msgstr "无" - -#: cms/static/js/views/course_video_settings.js -#: cms/static/js/views/metadata.js -#: cms/static/js/views/previous_video_upload.js -#: cms/static/js/views/video_transcripts.js -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -#: lms/static/js/views/image_field.js -msgid "Remove" -msgstr "移除" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/manage_users_and_roles.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Ok" -msgstr "确定" - -#: cms/static/js/views/manage_users_and_roles.js -#: lms/static/js/instructor_dashboard/util.js -msgid "Unknown" -msgstr "未知" - -#: cms/static/js/views/manage_users_and_roles.js -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Are you sure?" -msgstr "您确定吗?" - -#: cms/static/js/views/metadata.js lms/static/js/views/file_uploader.js -msgid "Upload File" -msgstr "上传文件" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/modals/base_modal.js -#: cms/static/js/views/modals/course_outline_modals.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: lms/static/js/writable_gradebook.js -msgid "Save" -msgstr "保存" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: cms/static/js/views/modals/course_outline_modals.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Advanced" -msgstr "高级" - -#: cms/static/js/views/previous_video_upload.js -#: cms/static/js/views/video/translations_editor.js -#: cms/static/js/views/video_transcripts.js lms/static/js/views/image_field.js -msgid "Removing" -msgstr "移除中" - -#: cms/static/js/views/validation.js -#: lms/static/js/discussions_management/views/divided_discussions_course_wide.js -#: lms/static/js/discussions_management/views/divided_discussions_inline.js -#: lms/static/js/views/fields.js -msgid "Your changes have been saved." -msgstr "您所作的变更已保存。" - -#. Translators: This message will be added to the front of messages of type -#. error, -#. e.g. "Error: required field is missing". -#: cms/static/js/views/xblock_validation.js -#: common/static/common/js/discussion/utils.js -#: common/static/common/js/discussion/utils.js -#: common/static/common/js/discussion/views/discussion_inline_view.js -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -#: common/static/common/js/discussion/views/discussion_thread_view.js -#: common/static/common/js/discussion/views/discussion_thread_view.js -#: common/static/common/js/discussion/views/discussion_thread_view.js -#: common/static/common/js/discussion/views/response_comment_view.js -#: lms/static/js/student_account/views/FinishAuthView.js -#: lms/static/js/verify_student/views/payment_confirmation_step_view.js -#: lms/static/js/verify_student/views/step_view.js -#: lms/static/js/views/fields.js -msgid "Error" -msgstr "错误" - -#: common/lib/xmodule/xmodule/assets/library_content/public/js/library_content_edit.js -#: common/lib/xmodule/xmodule/js/public/js/library_content_edit.js -msgid "Updating with latest library content" -msgstr "更新最新的库内容" - -#: common/lib/xmodule/xmodule/assets/split_test/public/js/split_test_author_view.js -#: common/lib/xmodule/xmodule/js/public/js/split_test_author_view.js -msgid "Creating missing groups" -msgstr "正在创建缺失的组。" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "{start_strong}{total}{end_strong} words submitted in total." -msgstr "共提交{start_strong}{total}{end_strong}字。" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "text_word_{uniqueId} title_word_{uniqueId}" -msgstr "text_word_{uniqueId} title_word_{uniqueId}" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "title_word_{uniqueId}" -msgstr "title_word_{uniqueId}" - -#: common/lib/xmodule/xmodule/assets/word_cloud/src/js/word_cloud_main.js -msgid "text_word_{uniqueId}" -msgstr "text_word_{uniqueId}" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -msgid "Show Annotations" -msgstr "显示批注" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -msgid "Hide Annotations" -msgstr "隐藏批注" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -msgid "Expand Instructions" -msgstr "展开说明" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -msgid "Collapse Instructions" -msgstr "折叠说明" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -msgid "Commentary" -msgstr "评注" - -#: common/lib/xmodule/xmodule/js/src/annotatable/display.js -msgid "Reply to Annotation" -msgstr "回复批注" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "%(num_points)s point possible (graded, results hidden)" -msgid_plural "%(num_points)s points possible (graded, results hidden)" -msgstr[0] "%(num_points)s 满分 (计入成绩, 隐藏答案)" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "%(num_points)s point possible (ungraded, results hidden)" -msgid_plural "%(num_points)s points possible (ungraded, results hidden)" -msgstr[0] " %(num_points)s满分 (不计入成绩, 隐藏答案)" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "%(num_points)s point possible (graded)" -msgid_plural "%(num_points)s points possible (graded)" -msgstr[0] "%(num_points)s 满分 (计入成绩)" - -#. Translators: %(num_points)s is the number of points possible (examples: 1, -#. 3, 10).; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "%(num_points)s point possible (ungraded)" -msgid_plural "%(num_points)s points possible (ungraded)" -msgstr[0] "%(num_points)s满分(不计入成绩)" - -#. Translators: %(earned)s is the number of points earned. %(possible)s is the -#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of -#. points will always be at least 1. We pluralize based on the total number of -#. points (example: 0/1 point; 1/2 points); -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "%(earned)s/%(possible)s point (graded)" -msgid_plural "%(earned)s/%(possible)s points (graded)" -msgstr[0] "%(earned)s/%(possible)s得分 (计入成绩)" - -#. Translators: %(earned)s is the number of points earned. %(possible)s is the -#. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of -#. points will always be at least 1. We pluralize based on the total number of -#. points (example: 0/1 point; 1/2 points); -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "%(earned)s/%(possible)s point (ungraded)" -msgid_plural "%(earned)s/%(possible)s points (ungraded)" -msgstr[0] "%(earned)s/%(possible)s 得分 (不计入成绩)" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "The grading process is still running. Refresh the page to see updates." -msgstr "正在进行评分,请刷新页面查看结果。" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "Could not grade your answer. The submission was aborted." -msgstr "无法进行评分。提交中断。" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "" -"Submission aborted! Sorry, your browser does not support file uploads. If " -"you can, please use Chrome or Safari which have been verified to support " -"file uploads." -msgstr "提交中断!抱歉,您的浏览器不支持文件上传。请尽可能使用 Chrome 或者 Safari 等支持文件上传的浏览器。" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "You submitted {filename}; only {allowedFiles} are allowed." -msgstr "您提交了 {filename};仅支持提交 {allowedFiles} 格式的文件。" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "Your file {filename} is too large (max size: {maxSize}MB)." -msgstr "您的文件 {filename} 过大 ( 最大: {maxSize} MB)。" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "You did not submit the required files: {requiredFiles}." -msgstr "您没有提交需要的文件:{requiredFiles}。" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "You did not select any files to submit." -msgstr "您未选择任何要上传的文件。" - -#. Translators: This is only translated to allow for reordering of label and -#. associated status.; -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "{label}: {status}" -msgstr "{label}: {status}" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "This problem has been reset." -msgstr "此问题已重置。" - -#: common/lib/xmodule/xmodule/js/src/capa/display.js -msgid "unsubmitted" -msgstr "未提交" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Paragraph" -msgstr "段落" - -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Preformatted" -msgstr "预设格式" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Heading 3" -msgstr "标题 3" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Heading 4" -msgstr "标题 4" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Heading 5" -msgstr "标题 5" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Heading 6" -msgstr "标题 6" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Add to Dictionary" -msgstr "加入到字典" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Align center" -msgstr "居中对齐" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Align left" -msgstr "左对齐" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Align right" -msgstr "右对齐" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Alignment" -msgstr "对齐" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Alternative source" -msgstr "备用源" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Anchor" -msgstr "锚点" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Anchors" -msgstr "锚点" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Author" -msgstr "作者" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Background color" -msgstr "背景颜色" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: lms/static/js/Markdown.Editor.js -msgid "Blockquote" -msgstr "引用" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Blocks" -msgstr "块" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Body" -msgstr "主体" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Bold" -msgstr "粗体" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Border color" -msgstr "边框色" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Border" -msgstr "边框" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Bottom" -msgstr "底端" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Bullet list" -msgstr "项目符号列表" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Caption" -msgstr "标题" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cell padding" -msgstr "单元格边距" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cell properties" -msgstr "单元格属性" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cell spacing" -msgstr "单元格间距" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cell type" -msgstr "单元格类型" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cell" -msgstr "单元格" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Center" -msgstr "居中对齐" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Circle" -msgstr "空心圆" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Clear formatting" -msgstr "清除格式" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#. Translators: this is a toolbar button tooltip from the raw HTML editor -#. displayed in the browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Code block" -msgstr "代码块" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Code" -msgstr "代码" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Color" -msgstr "颜色" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cols" -msgstr "列" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Column group" -msgstr "列组" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Column" -msgstr "列" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Constrain proportions" -msgstr "保持纵横比" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Copy row" -msgstr "复制行" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Copy" -msgstr "复制" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Could not find the specified string." -msgstr "无法找到指定的字符串。" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Custom color" -msgstr "自定义颜色" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Custom..." -msgstr "自定义…" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cut row" -msgstr "剪切行" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Cut" -msgstr "剪切" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Decrease indent" -msgstr "减少缩进" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Default" -msgstr "默认" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Delete column" -msgstr "删除列" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Delete row" -msgstr "删除行" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Delete table" -msgstr "删除表格" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Description" -msgstr "描述" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Dimensions" -msgstr "尺寸" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Disc" -msgstr "实心圆" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Div" -msgstr "Div 标签" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Document properties" -msgstr "文档属性" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Edit HTML" -msgstr "编辑 HTML" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Edit" -msgstr "编辑" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Embed" -msgstr "内嵌" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Emoticons" -msgstr "表情" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Encoding" -msgstr "编码" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "File" -msgstr "文件" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Find and replace" -msgstr "查找和替换" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Find next" -msgstr "查找下一个" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Find previous" -msgstr "查找上一个" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Find" -msgstr "查找" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Finish" -msgstr "完成" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Font Family" -msgstr "字体" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Font Sizes" -msgstr "字号" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Footer" -msgstr "脚注" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Format" -msgstr "格式" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Formats" -msgstr "格式" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Fullscreen" -msgstr "全屏" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "General" -msgstr "一般" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "H Align" -msgstr "水平对齐" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header 1" -msgstr "标题 1" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header 2" -msgstr "标题 2" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header 3" -msgstr "标题 3" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header 4" -msgstr "标题 4" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header 5" -msgstr "标题 5" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header 6" -msgstr "标题 6" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Header cell" -msgstr "表头单元格" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "Header" -msgstr "表头" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Headers" -msgstr "标题" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Heading 1" -msgstr "标题 1" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Heading 2" -msgstr "标题 2" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Headings" -msgstr "标题" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Height" -msgstr "高度" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Horizontal line" -msgstr "水平线" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Horizontal space" -msgstr "水平间距" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "HTML source code" -msgstr "HTML 源代码" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Ignore all" -msgstr "全部忽略" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Ignore" -msgstr "忽略" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Image description" -msgstr "图片描述" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Increase indent" -msgstr "增加缩进" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Inline" -msgstr "对齐" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert column after" -msgstr "在右侧插入列" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert column before" -msgstr "在左侧插入列" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert date/time" -msgstr "插入日期/时间" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert image" -msgstr "插入图片" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert link" -msgstr "插入链接" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert row after" -msgstr "在下方插入行" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert row before" -msgstr "在上方插入行" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert table" -msgstr "插入表格" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert template" -msgstr "插入模板" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert video" -msgstr "插入视频" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert" -msgstr "插入" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert/edit image" -msgstr "插入/编辑图片" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert/edit link" -msgstr "插入/编辑链接" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert/edit video" -msgstr "插入/编辑视频" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Italic" -msgstr "斜体" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Justify" -msgstr "两端对齐" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Keywords" -msgstr "关键字" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Left to right" -msgstr "从左向右" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Left" -msgstr "左对齐" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Lower Alpha" -msgstr "小写字母" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Lower Greek" -msgstr "小写希腊字母" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Lower Roman" -msgstr "小写罗马字母" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Match case" -msgstr "匹配大小写" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Merge cells" -msgstr "合并单元格" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Middle" -msgstr "中间" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "New document" -msgstr "新建文档" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "New window" -msgstr "新建窗口" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Next" -msgstr "下一个" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "No color" -msgstr "无颜色" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Nonbreaking space" -msgstr "不间断空格" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Numbered list" -msgstr "编号列表" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Page break" -msgstr "分页符" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Paste as text" -msgstr "粘贴为文本" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "" -"Paste is now in plain text mode. Contents will now be pasted as plain text " -"until you toggle this option off." -msgstr "当前为纯文本粘贴模式,所有内容都将以纯文本形式粘贴。关闭该选项可以回到普通粘贴模式。" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Paste row after" -msgstr "在下方粘贴行" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Paste row before" -msgstr "在上方粘贴行" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Paste your embed code below:" -msgstr "将内嵌代码粘贴到下方:" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Paste" -msgstr "粘贴" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Poster" -msgstr "封面" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Pre" -msgstr "Pre 标签" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Prev" -msgstr "上一个" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js lms/static/js/customwmd.js -msgid "Preview" -msgstr "预览" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Print" -msgstr "打印" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Redo" -msgstr "重做" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Remove link" -msgstr "移除链接" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Replace all" -msgstr "全部替换" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Replace with" -msgstr "替换为" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Replace" -msgstr "替换" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Restore last draft" -msgstr "恢复上一版草稿" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "" -"Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press " -"ALT-0 for help" -msgstr "RTF富文本区域。按 ALT-F9 打开菜单,按 ALT-F10 打开工具栏,按 ALT-0 查看帮助" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Right to left" -msgstr "从右向左" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Right" -msgstr "右对齐" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Robots" -msgstr "机器人" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Row group" -msgstr "行组" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Row properties" -msgstr "行属性" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Row type" -msgstr "行类型" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Row" -msgstr "行" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Rows" -msgstr "行" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Scope" -msgstr "范围" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Select all" -msgstr "全选" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Show blocks" -msgstr "显示块" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Show invisible characters" -msgstr "显示不可见字符" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Source code" -msgstr "源代码" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Source" -msgstr "源" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Special character" -msgstr "特殊字符" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Spellcheck" -msgstr "拼写检查" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Split cell" -msgstr "拆分单元格" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Square" -msgstr "正方形" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Start search" -msgstr "开始搜索" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Strikethrough" -msgstr "删除线" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Style" -msgstr "样式" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Subscript" -msgstr "下标" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Superscript" -msgstr "上标" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Table properties" -msgstr "表格属性" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Table" -msgstr "表格" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Target" -msgstr "目标" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Templates" -msgstr "模板" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Text color" -msgstr "文本颜色" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Text to display" -msgstr "要显示的文字" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "" -"The URL you entered seems to be an email address. Do you want to add the " -"required mailto: prefix?" -msgstr "输入的URL似乎是一个电子邮件地址,您想加上必要的“mailto:”前缀吗?" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "" -"The URL you entered seems to be an external link. Do you want to add the " -"required http:// prefix?" -msgstr "输入的 URL 似乎是一个外部链接,您想加上必要的 http:// 前缀吗?" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Title" -msgstr "标题" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Tools" -msgstr "工具" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Top" -msgstr "顶端" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Underline" -msgstr "下划线" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Undo" -msgstr "撤销" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Upper Alpha" -msgstr "大写字母" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Upper Roman" -msgstr "大写罗马字母" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Url" -msgstr "URL" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "V Align" -msgstr "垂直对齐" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Vertical space" -msgstr "垂直间距" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "View" -msgstr "视图" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Visual aids" -msgstr "网格线" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Whole words" -msgstr "全字匹配" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Width" -msgstr "宽" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Words: {0}" -msgstr "字数: {0}" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "You have unsaved changes are you sure you want to navigate away?" -msgstr "有未保存的更改,确定要离开吗?" - -#. Translators: this is a message from the raw HTML editor displayed in the -#. browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "" -"Your browser doesn't support direct access to the clipboard. Please use the " -"Ctrl+X/C/V keyboard shortcuts instead." -msgstr "您的浏览器不支持直接访问剪贴板,请使用快捷键 Ctrl+X/C/V 代替。" - -#. Translators: this is a toolbar button tooltip from the raw HTML editor -#. displayed in the browser when a user needs to edit HTML -#: common/lib/xmodule/xmodule/js/src/html/edit.js -msgid "Insert/Edit Image" -msgstr "插入/编辑图片" - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -msgid "" -"Click OK to have your username and e-mail address sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" -"点击确定,将您的用户名和电子邮件地址发送给第三方应用程序。\n" -"\n" -"点击取消,取消发送信息并返回当前页。" - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -msgid "" -"Click OK to have your username sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" -"点击确定,将您的用户名发送给第3方应用程序。\n" -"\n" -"点击取消,取消发送信息并返回当前页。" - -#: common/lib/xmodule/xmodule/js/src/lti/lti.js -msgid "" -"Click OK to have your e-mail address sent to a 3rd party application.\n" -"\n" -"Click Cancel to return to this page without sending your information." -msgstr "" -"点击确定,将您的电子邮件地址发送给第三方应用程序。\n" -"\n" -"点击取消,取消发送信息并返回当前页。" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "incorrect" -msgstr "不正确" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "correct" -msgstr "正确" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "answer" -msgstr "答案" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "Short explanation" -msgstr "简要说明" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "" -"If you use the Advanced Editor, this problem will be converted to XML and you will not be able to return to the Simple Editor Interface.\n" -"\n" -"Proceed to the Advanced Editor and convert this problem to XML?" -msgstr "" -"如果您使用高级编辑器,该题目将转换为XML格式,并且无法再回到简易编辑器界面。\n" -"\n" -"要继续使用高级编辑器并将该题目转换为XML格式吗?" - -#: common/lib/xmodule/xmodule/js/src/problem/edit.js -msgid "Explanation" -msgstr "解析" - -#: common/lib/xmodule/xmodule/js/src/sequence/display.js -msgid "" -"Sequence error! Cannot navigate to %(tab_name)s in the current " -"SequenceModule. Please contact the course staff." -msgstr "序列错误! 无法导航到当前序列模块中的%(tab_name)s,请联系课程工作人员。" - -#: common/lib/xmodule/xmodule/js/src/sequence/display.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -msgid "Bookmarked" -msgstr "已收藏" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js -msgid "Play" -msgstr "播放" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/09_play_pause_control.js -msgid "Pause" -msgstr "暂停" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Mute" -msgstr "静音" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Unmute" -msgstr "取消静音" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js -msgid "Exit full browser" -msgstr "退出全屏" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js -#: common/lib/xmodule/xmodule/js/src/video/04_video_full_screen.js -msgid "Fill browser" -msgstr "全屏" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -msgid "Speed" -msgstr "速度" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/08_video_auto_advance_control.js -msgid "Auto-advance" -msgstr "自动播放" - -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -msgid "Volume" -msgstr "音量" - -#. Translators: Volume level equals 0%. -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Muted" -msgstr "静音" - -#. Translators: Volume level in range ]0,20]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Very low" -msgstr "音量最小" - -#. Translators: Volume level in range ]20,40]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Low" -msgstr "音量较小" - -#. Translators: Volume level in range ]40,60]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Average" -msgstr "音量中等" - -#. Translators: Volume level in range ]60,80]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Loud" -msgstr "音量较大" - -#. Translators: Volume level in range ]80,99]% -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Very loud" -msgstr "音量最大" - -#. Translators: Volume level equals 100%. -#: common/lib/xmodule/xmodule/js/src/video/00_i18n.js -msgid "Maximum" -msgstr "最大数值" - -#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js -msgid "This browser cannot play .mp4, .ogg, or .webm files." -msgstr "当前浏览器不支持播放 MP4、OGG 或 WEBM 格式的文件。" - -#: common/lib/xmodule/xmodule/js/src/video/02_html5_video.js -msgid "Try using a different browser, such as Google Chrome." -msgstr "请尝试更换一个浏览器,如谷歌的 Chrome 浏览器。" - -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -msgid "High Definition" -msgstr "高级定义" - -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -msgid "off" -msgstr "关闭" - -#: common/lib/xmodule/xmodule/js/src/video/05_video_quality_control.js -msgid "on" -msgstr "开启" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -msgid "Video position. Press space to toggle playback" -msgstr "视频位置。按空格键控制播放" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -msgid "Video ended" -msgstr "视频结束" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -msgid "Video position" -msgstr "视频位置" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -msgid "%(value)s hour" -msgid_plural "%(value)s hours" -msgstr[0] "%(value)s小时" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -msgid "%(value)s minute" -msgid_plural "%(value)s minutes" -msgstr[0] "%(value)s分钟" - -#: common/lib/xmodule/xmodule/js/src/video/06_video_progress_slider.js -msgid "%(value)s second" -msgid_plural "%(value)s seconds" -msgstr[0] "%(value)s秒" - -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -msgid "" -"Click on this button to mute or unmute this video or press UP or DOWN " -"buttons to increase or decrease volume level." -msgstr "请点击此按钮以对该视频静音/取消静音, 或者使用键盘的上下方向键增大或减小音量。" - -#: common/lib/xmodule/xmodule/js/src/video/07_video_volume_control.js -msgid "Adjust video volume" -msgstr "调整视频音量" - -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -msgid "" -"Press UP to enter the speed menu then use the UP and DOWN arrow keys to " -"navigate the different speeds, then press ENTER to change to the selected " -"speed." -msgstr "按向上键打开速度菜单,再按上下方向键来选择速度,然后按回车键切换到选定速度。" - -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -msgid "Adjust video speed" -msgstr "调整视频播放速度" - -#: common/lib/xmodule/xmodule/js/src/video/08_video_speed_control.js -msgid "Video speed: " -msgstr "视频播放速度:" - -#: common/lib/xmodule/xmodule/js/src/video/09_play_skip_control.js -msgid "Skip" -msgstr "跳过" - -#: common/lib/xmodule/xmodule/js/src/video/09_poster.js -msgid "Play video" -msgstr "播放视频" - -#: common/lib/xmodule/xmodule/js/src/video/09_skip_control.js -msgid "Do not show again" -msgstr "不再显示" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Open language menu" -msgstr "打开语言功能菜单" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Transcript will be displayed when you start playing the video." -msgstr "开始播放视频时将显示字幕。" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "" -"Activating a link in this group will skip to the corresponding point in the " -"video." -msgstr "激活本组中的链接将跳转至视频中相应的时间点。" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Video transcript" -msgstr "视频字幕" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Start of transcript. Skip to the end." -msgstr "字幕开始。跳转至结尾。" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "End of transcript. Skip to the start." -msgstr "字幕结尾。跳转至开始。" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "" -"Press the UP arrow key to enter the language menu then use UP and DOWN arrow" -" keys to navigate language options. Press ENTER to change to the selected " -"language." -msgstr "按向上键打开语言功能菜单,然后使用上下方向键来选择语言选项。按回车键以切换到所选择的语言。" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Hide closed captions" -msgstr "隐藏CC字幕" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "(Caption will be displayed when you start playing the video.)" -msgstr "(开始播放视频时将显示字幕)" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Turn on closed captioning" -msgstr "打开CC字幕" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Turn on transcripts" -msgstr "打开字幕" - -#: common/lib/xmodule/xmodule/js/src/video/09_video_caption.js -msgid "Turn off transcripts" -msgstr "关闭字幕" - -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "View child items" -msgstr "查看子类目" - -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Navigate up" -msgstr "回到顶部" - -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Browsing" -msgstr "浏览" - -#: common/static/common/js/components/BlockBrowser/components/BlockBrowser/BlockBrowser.jsx -msgid "Select" -msgstr "选取" - -#: common/static/common/js/components/utils/view_utils.js -msgid "Required field." -msgstr "必填字段。" - -#: common/static/common/js/components/utils/view_utils.js -msgid "Please do not use any spaces in this field." -msgstr "此字段的内容不能包含空格。" - -#: common/static/common/js/components/utils/view_utils.js -msgid "Please do not use any spaces or special characters in this field." -msgstr "此字段的内容不能包含空格或特殊字符。" - -#: common/static/common/js/components/views/paginated_view.js -#: common/static/common/js/components/views/paging_footer.js -msgid "Pagination" -msgstr "页码" - -#: common/static/common/js/components/views/paginated_view.js -msgid "" -"Your request could not be completed. Reload the page and try again. If the " -"issue persists, click the Help tab to report the problem." -msgstr "您的请求无法完成。重新加载页面并重试。如果问题仍然存在,点击“帮助”选项报告问题。" - -#: common/static/common/js/components/views/paging_header.js -msgid "Showing {firstIndex} out of {numItems} total" -msgstr "显示 {firstIndex} / {numItems}" - -#: common/static/common/js/components/views/paging_header.js -msgid "Showing {firstIndex}-{lastIndex} out of {numItems} total" -msgstr "显示 {firstIndex} - {lastIndex} / {numItems}" - -#: common/static/common/js/discussion/utils.js -msgid "Loading content" -msgstr "正在加载内容" - -#: common/static/common/js/discussion/utils.js -msgid "Your request could not be processed. Refresh the page and try again." -msgstr "您的请求无法处理。请刷新页面并重试。" - -#: common/static/common/js/discussion/utils.js -#: common/static/common/js/discussion/utils.js -msgid "…" -msgstr "…" - -#: common/static/common/js/discussion/utils.js -msgid "Some images in this post have been omitted" -msgstr "此帖的部分图片被省略。" - -#: common/static/common/js/discussion/utils.js -msgid "image omitted" -msgstr "省略的图片" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "there is currently {numVotes} vote" -msgid_plural "there are currently {numVotes} votes" -msgstr[0] "当前有 {numVotes} 票" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "{numVotes} Vote" -msgid_plural "{numVotes} Votes" -msgstr[0] "{numVotes} 票" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"You could not be subscribed to this post. Refresh the page and try again." -msgstr "您无法订阅此贴。请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"You could not be unsubscribed from this post. Refresh the page and try " -"again." -msgstr "您无法取消订阅此贴。请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"This response could not be marked as an answer. Refresh the page and try " -"again." -msgstr "无法将该回复标记为答案,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"This response could not be unmarked as an answer. Refresh the page and try " -"again." -msgstr "该回复已被标记为答案,无法取消。请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"This response could not be marked as endorsed. Refresh the page and try " -"again." -msgstr "无法标记此回复为赞同,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "This response could not be unendorsed. Refresh the page and try again." -msgstr "无法标记此回复为不赞同,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "This vote could not be processed. Refresh the page and try again." -msgstr "无法处理此投票,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "This post could not be pinned. Refresh the page and try again." -msgstr "无法置顶此帖子,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "This post could not be unpinned. Refresh the page and try again." -msgstr "无法取消置顶此帖子,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"This post could not be flagged for abuse. Refresh the page and try again." -msgstr "无法将此帖子举报为滥用,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "" -"This post could not be unflagged for abuse. Refresh the page and try again." -msgstr "无法取消此帖子的滥用举报,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "This post could not be closed. Refresh the page and try again." -msgstr "无法关闭此帖子,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_content_view.js -msgid "This post could not be reopened. Refresh the page and try again." -msgstr "无法重开此帖子,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_inline_view.js -#: common/static/common/js/discussion/views/discussion_inline_view.js -msgid "Hide Discussion" -msgstr "隐藏讨论" - -#: common/static/common/js/discussion/views/discussion_inline_view.js -msgid "This discussion could not be loaded. Refresh the page and try again." -msgstr "无法加载此讨论,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_inline_view.js -msgid "Show Discussion" -msgstr "显示讨论" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "There are no posts in this topic yet." -msgstr "暂无关于此主题的帖子。" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "Loading more threads" -msgstr "载入更多的主题" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "Additional posts could not be loaded. Refresh the page and try again." -msgstr "无法加载更多帖子,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "Current conversation" -msgstr "当前对话" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "Loading posts list" -msgstr "正在加载帖子列表" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "" -"No results found for {original_query}. Showing results for " -"{suggested_query}." -msgstr "搜索“{original_query}”未找到结果,为您推荐{suggested_query}。" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "No posts matched your query." -msgstr "未找到与您查询内容相匹配的帖子。" - -#: common/static/common/js/discussion/views/discussion_thread_list_view.js -msgid "Show posts by {username}." -msgstr "显示{username}的帖子。" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "The post you selected has been deleted." -msgstr "您所选择的帖子已被删除。" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "Responses could not be loaded. Refresh the page and try again." -msgstr "无法加载回复,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "" -"Additional responses could not be loaded. Refresh the page and try again." -msgstr "无法加载更多回复,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "{numResponses} other response" -msgid_plural "{numResponses} other responses" -msgstr[0] "{numResponses}个其他回复" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "{numResponses} response" -msgid_plural "{numResponses} responses" -msgstr[0] "{numResponses}个回复" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "Showing all responses" -msgstr "显示所有的回复" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "Showing first response" -msgid_plural "Showing first {numResponses} responses" -msgstr[0] "前{numResponses}个回复" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "Load all responses" -msgstr "载入所有的回复" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "Load next {numResponses} responses" -msgstr "加载接下来的{numResponses}个回复" - -#: common/static/common/js/discussion/views/discussion_thread_view.js -msgid "Are you sure you want to delete this post?" -msgstr "您确定要删除这个帖子?" - -#: common/static/common/js/discussion/views/new_post_view.js -msgid "Your post will be discarded." -msgstr "您的帖子将被撤销。" - -#: common/static/common/js/discussion/views/response_comment_show_view.js -msgid "anonymous" -msgstr "匿名" - -#: common/static/common/js/discussion/views/response_comment_view.js -msgid "Are you sure you want to delete this comment?" -msgstr "您确定要删除这条评论吗?" - -#: common/static/common/js/discussion/views/response_comment_view.js -msgid "This comment could not be deleted. Refresh the page and try again." -msgstr "无法删除此评论,请刷新页面并重试。" - -#: common/static/common/js/discussion/views/thread_response_view.js -msgid "Are you sure you want to delete this response?" -msgstr "您确定要删除这个回复吗" - -#: common/static/common/js/utils/edx.utils.validate.js -msgid "Incorrect format." -msgstr "格式不正确" - -#: common/static/common/js/utils/edx.utils.validate.js -msgid "%(field)s must have at least %(count)d characters." -msgstr "%(field)s 至少要有 %(count)d 字符。" - -#: common/static/common/js/utils/edx.utils.validate.js -msgid "%(field)s can only contain up to %(count)d characters." -msgstr "%(field)s 最多只能有 %(count)d 个字符。" - -#: common/static/common/js/utils/edx.utils.validate.js -msgid "Please enter your %(field)s." -msgstr "请输入您的%(field)s。" - -#: common/static/js/capa/drag_and_drop/base_image.js -msgid "Drop target image" -msgstr "拖放的目标图像" - -#: common/static/js/capa/drag_and_drop/draggable_events.js -msgid "dragging out of slider" -msgstr "拖拽出滑块区域" - -#: common/static/js/capa/drag_and_drop/draggable_events.js -msgid "dragging" -msgstr "拖拽" - -#: common/static/js/capa/drag_and_drop/draggable_events.js -msgid "dropped in slider" -msgstr "在滑块中放下" - -#: common/static/js/capa/drag_and_drop/draggable_events.js -msgid "dropped on target" -msgstr "在目标上放下" - -#. Translators: %s will be a time quantity, such as "4 minutes" or "1 day" -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%s ago" -msgstr "%s 以前" - -#. Translators: %s will be a time quantity, such as "4 minutes" or "1 day" -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%s from now" -msgstr "距现在:%s" - -#: common/static/js/src/jquery.timeago.locale.js -msgid "less than a minute" -msgstr "少于一分钟" - -#: common/static/js/src/jquery.timeago.locale.js -msgid "about a minute" -msgstr "大约一分钟" - -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d分钟" - -#: common/static/js/src/jquery.timeago.locale.js -msgid "about an hour" -msgstr "大约一小时" - -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "about %d hour" -msgid_plural "about %d hours" -msgstr[0] "大约%d小时" - -#: common/static/js/src/jquery.timeago.locale.js -msgid "a day" -msgstr "一天" - -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%d day" -msgid_plural "%d days" -msgstr[0] "%d天" - -#: common/static/js/src/jquery.timeago.locale.js -msgid "about a month" -msgstr "大约一个月" - -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%d month" -msgid_plural "%d months" -msgstr[0] "%d月" - -#: common/static/js/src/jquery.timeago.locale.js -msgid "about a year" -msgstr "大约一年" - -#: common/static/js/src/jquery.timeago.locale.js -#, javascript-format -msgid "%d year" -msgid_plural "%d years" -msgstr[0] "%d年" - -#: lms/djangoapps/discussion/static/discussion/js/views/discussion_board_view.js -#: lms/static/js/edxnotes/views/tabs/search_results.js -msgid "Search Results" -msgstr "搜索结果" - -#: lms/djangoapps/instructor/static/instructor/ProblemBrowser/components/Main/Main.jsx -msgid "Select a section or problem" -msgstr "选择一个章节或一个问题" - -#: lms/djangoapps/support/static/support/js/views/certificates.js -msgid "An unexpected error occurred. Please try again." -msgstr "意外错误发生,请重试。" - -#: lms/djangoapps/support/static/support/js/views/enrollment.js -msgid "Financial Assistance" -msgstr "经济补助" - -#: lms/djangoapps/support/static/support/js/views/enrollment.js -msgid "Upset Learner" -msgstr "感到不满意的学生" - -#: lms/djangoapps/support/static/support/js/views/enrollment.js -msgid "Teaching Assistant" -msgstr "助教" - -#: lms/djangoapps/support/static/support/js/views/enrollment_modal.js -msgid "Please specify a reason." -msgstr "请说明原因。" - -#: lms/djangoapps/support/static/support/js/views/enrollment_modal.js -msgid "Something went wrong changing this enrollment. Please try again." -msgstr "在变更这项注册时出现了一些问题。请再试一次。" - -#: lms/djangoapps/support/static/support/jsx/errors_list.jsx -msgid "Please fix the following errors:" -msgstr "请改正以下错误:" - -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Files that you upload must be smaller than 5MB in size." -msgstr "上传的文件不得超过5MB。" - -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "" -"Files that you upload must be PDFs or image files in .gif, .jpg, .jpeg, or " -".png format." -msgstr "只支持上传PDF或 .gif .jpg .jpeg .png 格式图片文件。" - -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Something went wrong. Please try again later." -msgstr "发生错误,请稍后重试。" - -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Add Attachment" -msgstr "添加附件" - -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "(Optional)" -msgstr "(非必填)" - -#: lms/djangoapps/support/static/support/jsx/file_upload.jsx -msgid "Remove file" -msgstr "移除文件" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Course Name" -msgstr "课程名称" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Not specific to a course" -msgstr "不针对特定课程" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "What can we help you with, {username}?" -msgstr "请问需要什么帮助,{username}?" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -#: lms/static/js/instructor_dashboard/util.js -msgid "Subject" -msgstr "标题" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Details" -msgstr "细节" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "The more you tell us, the more quickly and helpfully we can respond!" -msgstr "若您能提供更详尽的信息,我们就能在更短时间内更有针对性地答复您。" - -#: lms/djangoapps/support/static/support/jsx/logged_in_user.jsx -msgid "Submit" -msgstr "提交" - -#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -msgid "Sign in to {platform} so we can help you better." -msgstr "请登录{platform},以获得更好的帮助。" - -#: lms/djangoapps/support/static/support/jsx/logged_out_user.jsx -msgid "" -"If you are unable to access your account contact us via email using {email}." -msgstr "如果您无法访问账号,请通过以下邮箱联系我们{email}." - -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "" -"Select a course or select \"Not specific to a course\" for your support " -"request." -msgstr "选择一门课程或选择“不针对特定课程”选项。" - -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Enter a subject for your support request." -msgstr "输入您所需要的支持的主题。" - -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Enter some details for your support request." -msgstr "输入您所需要的支持的细节。" - -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Contact Us" -msgstr "联系我们" - -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Find answers to the top questions asked by learners." -msgstr "查看学员最常问的问题及答案。" - -#: lms/djangoapps/support/static/support/jsx/single_support_form.jsx -msgid "Search the {platform} Help Center" -msgstr "搜索{platform}帮助中心" - -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Go to my Dashboard" -msgstr "前往我的课程面板" - -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "Go to {platform} Home" -msgstr "前往{platform}主页" - -#: lms/djangoapps/support/static/support/jsx/success.jsx -msgid "" -"Thank you for submitting a request! We will contact you within 24 hours." -msgstr "感谢您提交请求!我们将在24小时内与您联系。" - -#: lms/djangoapps/support/static/support/jsx/upload_progress.jsx -msgid "Cancel upload" -msgstr "取消上传" - -#: lms/djangoapps/teams/static/teams/js/collections/team.js -msgid "last activity" -msgstr "最后活动" - -#: lms/djangoapps/teams/static/teams/js/collections/team.js -msgid "open slots" -msgstr "开放的时段" - -#: lms/djangoapps/teams/static/teams/js/collections/topic.js -msgid "name" -msgstr "名称" - -#. Translators: This refers to the number of teams (a count of how many teams -#. there are) -#: lms/djangoapps/teams/static/teams/js/collections/topic.js -msgid "team count" -msgstr "团队计数" - -#: lms/djangoapps/teams/static/teams/js/teams_tab_factory.js -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Teams" -msgstr "团队" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Create" -msgstr "创建" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Update" -msgstr "更新" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Team Name (Required) *" -msgstr "团队名(必需)*" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "A name that identifies your team (maximum 255 characters)." -msgstr "团队名称 (不长于255个字符)" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Team Description (Required) *" -msgstr "团队介绍(必需)*" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "" -"A short description of the team to help other learners understand the goals " -"or direction of the team (maximum 300 characters)." -msgstr "简短的团队描述,以帮助其他学习者了解此团队的目标与方向 (最大为300个字符长度)" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -#: lms/static/js/student_account/views/account_settings_factory.js -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Language" -msgstr "语言" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "" -"The language that team members primarily use to communicate with each other." -msgstr "团队成员主要使用的交流语言。" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Country" -msgstr "国家/地区" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "The country that team members primarily identify with." -msgstr "多数团队成员来自的国家" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -#: lms/static/js/views/fields.js -msgid "An error occurred. Please try again." -msgstr "发生了一个未知错误,请重试。" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Check the highlighted fields below and try again." -msgstr "请确认下方提醒的字段并重新输入。" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Enter team name." -msgstr "输入团队名" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Team name cannot have more than 255 characters." -msgstr "团队名称不能超过 255 个字符" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Enter team description." -msgstr "输入团队介绍" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team.js -msgid "Team description cannot have more than 300 characters." -msgstr "团队描述不能超过 300 个字符。" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -msgid "An error occurred while removing the member from the team. Try again." -msgstr "移除成员时发生错误。请重试一次。" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -msgid "This team does not have any members." -msgstr "本团队没有成员。" - -#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: -#. https://github.com/rmm5t/jquery-timeago) -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -msgid "Joined %(date)s" -msgstr "于 %(date)s 加入" - -#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: -#. https://github.com/rmm5t/jquery-timeago) -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -msgid "Last Activity %(date)s" -msgstr "上一次活动在 %(date)s " - -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -msgid "Remove this team member?" -msgstr "移除此成员?" - -#: lms/djangoapps/teams/static/teams/js/views/edit_team_members.js -msgid "" -"This learner will be removed from the team, allowing another learner to take" -" the available spot." -msgstr "此成员将被移除,释出名额后其他成员可加入。" - -#: lms/djangoapps/teams/static/teams/js/views/instructor_tools.js -msgid "Delete this team?" -msgstr "删除此团队?" - -#: lms/djangoapps/teams/static/teams/js/views/instructor_tools.js -msgid "" -"Deleting a team is permanent and cannot be undone. All members are removed " -"from the team, and team discussions can no longer be accessed." -msgstr "删除团队是永久性的,无法挽回。所有成员会从团队移除,团队讨论将无法再被造访。" - -#: lms/djangoapps/teams/static/teams/js/views/instructor_tools.js -msgid "Team \"{team}\" successfully deleted." -msgstr "团队 \"{team}\" 已成功删除。" - -#: lms/djangoapps/teams/static/teams/js/views/my_teams.js -msgid "You are not currently a member of any team." -msgstr "您目前不是任何团队中的一员。" - -#. Translators: "and others" refers to fact that additional members of a team -#. exist that are not displayed. -#: lms/djangoapps/teams/static/teams/js/views/team_card.js -msgid "and others" -msgstr "其他" - -#. Translators: 'date' is a placeholder for a fuzzy, relative timestamp (see: -#. http://momentjs.com/) -#: lms/djangoapps/teams/static/teams/js/views/team_card.js -msgid "Last activity %(date)s" -msgstr "上一次活动在 %(date)s " - -#: lms/djangoapps/teams/static/teams/js/views/team_card.js -msgid "View %(span_start)s %(team_name)s %(span_end)s" -msgstr "查看%(span_start)s %(team_name)s %(span_end)s" - -#: lms/djangoapps/teams/static/teams/js/views/team_profile.js -#: lms/djangoapps/teams/static/teams/js/views/team_profile_header_actions.js -msgid "An error occurred. Try again." -msgstr "发生错误。 再试一次。" - -#: lms/djangoapps/teams/static/teams/js/views/team_profile.js -msgid "Leave this team?" -msgstr "离开这个团队?" - -#: lms/djangoapps/teams/static/teams/js/views/team_profile.js -msgid "" -"If you leave, you can no longer post in this team's discussions. Your place " -"will be available to another learner." -msgstr "如果您离开了,您不能在本团队的讨论区上发言。您的位置将提供给其他的学习者。" - -#: lms/djangoapps/teams/static/teams/js/views/team_profile.js -#: lms/static/js/verify_student/views/reverify_view.js -msgid "Confirm" -msgstr "确认" - -#: lms/djangoapps/teams/static/teams/js/views/team_profile_header_actions.js -msgid "You already belong to another team." -msgstr "您已经属于另一个团队。" - -#: lms/djangoapps/teams/static/teams/js/views/team_profile_header_actions.js -msgid "This team is full." -msgstr "这个团队已经满了。" - -#: lms/djangoapps/teams/static/teams/js/views/team_utils.js -msgid "%(memberCount)s / %(maxMemberCount)s Member" -msgid_plural "%(memberCount)s / %(maxMemberCount)s Members" -msgstr[0] "%(memberCount)s / %(maxMemberCount)s 个成员" - -#: lms/djangoapps/teams/static/teams/js/views/teams.js -msgid "All teams" -msgstr "所有群组" - -#: lms/djangoapps/teams/static/teams/js/views/teams.js -msgid "Teams Pagination" -msgstr "团队分页" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Topics" -msgstr "主题" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "" -"See all teams in your course, organized by topic. Join a team to collaborate" -" with other learners who are interested in the same topic as you are." -msgstr "在您的课程中查看以主题组织的所有团队。加入一个团队,与其他志同道合的学习者合作。" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "My Team" -msgstr "我的团队" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Browse" -msgstr "浏览" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Your request could not be completed. Reload the page and try again." -msgstr "您的请求无法完成。刷新页面,然后重试。" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "" -"Your request could not be completed due to a server problem. Reload the page" -" and try again. If the issue persists, click the Help tab to report the " -"problem." -msgstr "服务器忙,您的请求无法完成。请刷新页面并重试。如果问题仍然存在,请点击“帮助”选项报告问题。" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Team Search" -msgstr "搜索团队" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Showing results for \"{searchString}\"" -msgstr "显示\"{searchString}\"的搜索结果" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Create a New Team" -msgstr "创建新的团队" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "" -"Create a new team if you can't find an existing team to join, or if you " -"would like to learn with friends you know." -msgstr "建立一个新的团队-- 如果您找不到现有的团队加入,或者您想和您认识的朋友组队。" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Edit Team" -msgstr "编辑团队" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "" -"If you make significant changes, make sure you notify members of the team " -"before making these changes." -msgstr "如果您做较大更改,请确保您在进行这些更改之前通知团队成员。" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Membership" -msgstr "会员资格" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "" -"You can remove members from this team, especially if they have not " -"participated in the team's activity." -msgstr "您可以从此组中删除成员,尤其是还没有参加团队活动的成员。" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "Search teams" -msgstr "搜索团队" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "All Topics" -msgstr "所有主题" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "The page \"{route}\" could not be found." -msgstr "无法找到\"{route}\"页面。" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "The topic \"{topic}\" could not be found." -msgstr "无法找到\"{topic}\"主题。" - -#: lms/djangoapps/teams/static/teams/js/views/teams_tab.js -msgid "The team \"{team}\" could not be found." -msgstr "无法找到\"{team}\"团队。" - -#: lms/djangoapps/teams/static/teams/js/views/topic_card.js -msgid "%(team_count)s Team" -msgid_plural "%(team_count)s Teams" -msgstr[0] "%(team_count)s 个团队" - -#: lms/djangoapps/teams/static/teams/js/views/topic_card.js -msgid "Topic" -msgstr "主题" - -#: lms/djangoapps/teams/static/teams/js/views/topic_card.js -msgid "View Teams in the %(topic_name)s Topic" -msgstr "查看 %(topic_name)s主题下的团队" - -#. Translators: this string is shown at the bottom of the teams page -#. to find a team to join or else to create a new one. There are three -#. links that need to be included in the message: -#. 1. Browse teams in other topics -#. 2. search teams -#. 3. create a new team -#. Be careful to start each link with the appropriate start indicator -#. (e.g. {browse_span_start} for #1) and finish it with {span_end}. -#: lms/djangoapps/teams/static/teams/js/views/topic_teams.js -msgid "" -"{browse_span_start}Browse teams in other topics{span_end} or " -"{search_span_start}search teams{span_end} in this topic. If you still can't " -"find a team to join, {create_span_start}create a new team in this " -"topic{span_end}." -msgstr "" -"{browse_span_start} 用其他标题浏览团队 {span_end} 或 {search_span_start} " -"搜索团队{span_end} 於此标题。 如果您仍然无法找到团队来加入, {create_span_start} " -"在此标题新创一个团队{span_end}。" - -#: lms/djangoapps/teams/static/teams/js/views/topics.js -msgid "All topics" -msgstr "所有主题" - -#: lms/static/js/Markdown.Editor.js -msgid "Insert Hyperlink" -msgstr "插入超链接" - -#: lms/static/js/Markdown.Editor.js -msgid "e.g. 'http://google.com'" -msgstr "例如“http://google.com/”" - -#: lms/static/js/Markdown.Editor.js -msgid "Link Description" -msgstr "链接的描述" - -#: lms/static/js/Markdown.Editor.js -msgid "e.g. 'google'" -msgstr "例如'google'" - -#: lms/static/js/Markdown.Editor.js -msgid "Please provide a description of the link destination." -msgstr "请提供链接的描述。" - -#: lms/static/js/Markdown.Editor.js -msgid "Insert Image (upload file or type URL)" -msgstr "插入图片 (上传文件或输入URL)" - -#: lms/static/js/Markdown.Editor.js -msgid "" -"Type in a URL or use the \"Choose File\" button to upload a file from your " -"machine. (e.g. 'http://example.com/img/clouds.jpg')" -msgstr "输入一个网址,或按下“选取文件”按钮来上传文件。(例如'http://example.com/img/clouds.jpg')" - -#: lms/static/js/Markdown.Editor.js -msgid "Image Description" -msgstr "图片描述" - -#: lms/static/js/Markdown.Editor.js -msgid "" -"Please describe this image or agree that it has no contextual value by " -"checking the checkbox." -msgstr "请描述本图片或勾选复选框表示图片不含与内容相关的价值。" - -#: lms/static/js/Markdown.Editor.js -msgid "" -"e.g. 'Sky with clouds'. The description is helpful for users who cannot see " -"the image." -msgstr "例如“天空有云”。该描述对于无法看见图片的使用者是有帮助的。" - -#: lms/static/js/Markdown.Editor.js -msgid "How to create useful text alternatives." -msgstr "如何建立有用的文字替代物。" - -#: lms/static/js/Markdown.Editor.js -msgid "" -"This image is for decorative purposes only and does not require a " -"description." -msgstr "此图片仅作装饰用,无需描述。" - -#: lms/static/js/Markdown.Editor.js -msgid "Markdown Editing Help" -msgstr "Markdown编辑帮助" - -#: lms/static/js/Markdown.Editor.js -msgid "URL" -msgstr "URL" - -#: lms/static/js/Markdown.Editor.js -msgid "Please provide a valid URL." -msgstr "请提供一个有效的网址。" - -#. Translators: 'errorCount' is the number of errors found in the form. -#: lms/static/js/Markdown.Editor.js -msgid "%(errorCount)s error found in form." -msgid_plural "%(errorCount)s errors found in form." -msgstr[0] "表格中发现 %(errorCount)s 个错误。" - -#: lms/static/js/Markdown.Editor.js -msgid "Bold (Ctrl+B)" -msgstr "粗体(Ctrl+B)" - -#: lms/static/js/Markdown.Editor.js -msgid "Italic (Ctrl+I)" -msgstr "斜体(Ctrl+I)" - -#: lms/static/js/Markdown.Editor.js -msgid "Hyperlink (Ctrl+L)" -msgstr "超链接(Ctrl+L)" - -#: lms/static/js/Markdown.Editor.js -msgid "Blockquote (Ctrl+Q)" -msgstr "引用(Ctrl+Q)" - -#: lms/static/js/Markdown.Editor.js -msgid "Code Sample (Ctrl+K)" -msgstr "代码示例(Ctrl+K)" - -#: lms/static/js/Markdown.Editor.js -msgid "Image (Ctrl+G)" -msgstr "图片(Ctrl+G)" - -#: lms/static/js/Markdown.Editor.js -msgid "Numbered List (Ctrl+O)" -msgstr "有序列表(Ctrl+O)" - -#: lms/static/js/Markdown.Editor.js -msgid "Bulleted List (Ctrl+U)" -msgstr "符号列表(Ctrl+U)" - -#: lms/static/js/Markdown.Editor.js -msgid "Heading (Ctrl+H)" -msgstr "标题(Ctrl+H)" - -#: lms/static/js/Markdown.Editor.js -msgid "Horizontal Rule (Ctrl+R)" -msgstr "水平线(Ctrl+R)" - -#: lms/static/js/Markdown.Editor.js -msgid "Undo (Ctrl+Z)" -msgstr "撤销(Ctrl+Z)" - -#: lms/static/js/Markdown.Editor.js -msgid "Redo (Ctrl+Y)" -msgstr "重做(Ctrl+Y)" - -#: lms/static/js/Markdown.Editor.js -msgid "Redo (Ctrl+Shift+Z)" -msgstr "重做(Ctrl+Shift+Z)" - -#: lms/static/js/Markdown.Editor.js -msgid "strong text" -msgstr "加粗文字" - -#: lms/static/js/Markdown.Editor.js -msgid "emphasized text" -msgstr "强调文字" - -#: lms/static/js/Markdown.Editor.js -msgid "enter link description here" -msgstr "此处输入链接的描述" - -#: lms/static/js/Markdown.Editor.js lms/static/js/Markdown.Editor.js -msgid "enter code here" -msgstr "此处输入代码" - -#: lms/static/js/Markdown.Editor.js -msgid "List item" -msgstr "列表项" - -#: lms/static/js/Markdown.Editor.js -msgid "Heading" -msgstr "标题" - -#: lms/static/js/ajax-error.js -msgid "" -"You have been logged out of your EliteMBA account. Click Okay to log in " -"again now. Click Cancel to stay on this page (you must log in again to save " -"your work)." -msgstr "您已退出EliteMBA账号,点击“确定”重新登录,点击“取消”留在此页面(必须重新登录才能保存内容)。" - -#: lms/static/js/api_admin/views/catalog_preview.js -msgid "Preview this query" -msgstr "预览该查询" - -#: lms/static/js/calculator.js -msgid "Open Calculator" -msgstr "开启计算器" - -#: lms/static/js/calculator.js -msgid "Close Calculator" -msgstr "关闭计算器" - -#: lms/static/js/ccx/schedule.js -msgid "All subsections" -msgstr "所有节" - -#: lms/static/js/ccx/schedule.js -msgid "All units" -msgstr "所有单元" - -#: lms/static/js/ccx/schedule.js lms/static/js/ccx/schedule.js -msgid "Click to change" -msgstr "点击更改" - -#: lms/static/js/ccx/schedule.js -msgid "Select a chapter" -msgstr "选择一章" - -#: lms/static/js/ccx/schedule.js lms/static/js/ccx/schedule.js -msgid "Save changes" -msgstr "保存修改" - -#: lms/static/js/ccx/schedule.js -msgid "Please enter valid start date and time." -msgstr "请输入有效的开始日期与时间" - -#: lms/static/js/ccx/schedule.js -msgid "Due date cannot be before start date." -msgstr "课程的结束日期不能在开始日期之前。" - -#: lms/static/js/ccx/schedule.js -msgid "Enter Due Date and Time" -msgstr "输入截止日期" - -#: lms/static/js/ccx/schedule.js -msgid "Enter Start Date and Time" -msgstr "输入开始日期与时间" - -#: lms/static/js/certificates/models/certificate_exception.js -msgid "" -"Student username/email field is required and can not be empty. Kindly fill " -"in username/email and then press \"Add to Exception List\" button." -msgstr "学生的用户名 / 电子邮件是必填项,不能留空。请填入用户名 / 电子邮件,并点击“添加到例外名单”按钮。" - -#: lms/static/js/certificates/models/certificate_invalidation.js -msgid "" -"Student username/email field is required and can not be empty. Kindly fill " -"in username/email and then press \"Invalidate Certificate\" button." -msgstr "学生的用户名 / 电子邮件是必填项,不能留空。请填入用户名 / 电子邮件,并点击“作废证书”的按钮。" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid "Uploaded file issues. Click on \"+\" to view." -msgstr "上传文件有问题。点击 “+” 来检视。" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learners are successfully added to exception list" -msgstr "学习者已经成功地加入到例外列表" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learner is successfully added to the exception list" -msgstr "学习者已经成功地加入到例外列表" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " records are not in correct format and not added to the exception list" -msgstr "这些记录的格式不正确,无法添加到例外名单" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " record is not in correct format and not added to the exception list" -msgstr "这条记录的格式不正确,无法添加到例外名单" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learners do not exist in LMS and not added to the exception list" -msgstr "学员记录不存在LMS中,无法添加到例外名单" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learner does not exist in LMS and not added to the exception list" -msgstr "学习者不存在系统中,将不加到例外列表中" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learners are already white listed and not added to the exception list" -msgstr "学员已被列入白名单,无法添加到例外名单" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learner is already white listed and not added to the exception list" -msgstr "学员已被列入白名单,无法添加到例外名单" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid "" -" learners are not enrolled in course and not added to the exception list" -msgstr "学员未报名此课程,无法添加到例外名单" - -#: lms/static/js/certificates/views/certificate_bulk_whitelist.js -msgid " learner is not enrolled in course and not added to the exception list" -msgstr "学员未报名此课程,无法添加到例外名单" - -#: lms/static/js/certificates/views/certificate_invalidation_view.js -msgid "" -"Certificate of <%= user %> has already been invalidated. Please check your " -"spelling and retry." -msgstr " <%= user %> 的证书已经无效。请确认您的拼写并再试一次。" - -#: lms/static/js/certificates/views/certificate_invalidation_view.js -msgid "Certificate has been successfully invalidated for <%= user %>." -msgstr " <%= user %> 的证书已成功地转为失效" - -#: lms/static/js/certificates/views/certificate_invalidation_view.js -#: lms/static/js/certificates/views/certificate_invalidation_view.js -#: lms/static/js/certificates/views/certificate_whitelist.js -#: lms/static/js/certificates/views/certificate_whitelist_editor.js -msgid "Server Error, Please refresh the page and try again." -msgstr "服务器错误。请刷新页面并再试一次。" - -#: lms/static/js/certificates/views/certificate_invalidation_view.js -msgid "" -"The certificate for this learner has been re-validated and the system is re-" -"running the grade for this learner." -msgstr "这名学生的证书已经重新验证及系统重新计算该名学生的成绩。" - -#: lms/static/js/certificates/views/certificate_invalidation_view.js -msgid "" -"Could not find Certificate Invalidation in the list. Please refresh the page" -" and try again" -msgstr "无法在这份列表中找到证书失效证明。请重新载入页面或再试一次。" - -#: lms/static/js/certificates/views/certificate_whitelist.js -msgid "Student Removed from certificate white list successfully." -msgstr "学生已从证书许可名单中移除成功。" - -#: lms/static/js/certificates/views/certificate_whitelist.js -msgid "" -"Could not find Certificate Exception in white list. Please refresh the page " -"and try again" -msgstr "在许可名单中找不到证书特例的人。请重新载入页面或再试一次。" - -#: lms/static/js/certificates/views/certificate_whitelist_editor.js -msgid "<%= user %> already in exception list." -msgstr "<%= user %> 已在特例名单中。" - -#: lms/static/js/certificates/views/certificate_whitelist_editor.js -msgid "" -"<%= user %> has been successfully added to the exception list. Click " -"Generate Exception Certificate below to send the certificate." -msgstr "已经成功新增<%= user %>到特例名单中。请点击下面的产生特例证书并发送证书。" - -#: lms/static/js/course_survey.js -msgid "There has been an error processing your survey." -msgstr "在处理您的调查时出现了一个错误。" - -#: lms/static/js/courseware/credit_progress.js -#: lms/static/js/courseware/credit_progress.js -msgid "More" -msgstr "更多" - -#: lms/static/js/courseware/credit_progress.js -msgid "Less" -msgstr "收起" - -#: lms/static/js/customwmd.js -msgid "HTML preview of post" -msgstr "帖子的HTML预览" - -#: lms/static/js/customwmd.js -msgid "Your question or idea (required)" -msgstr "您的问题或想法 (必填项)" - -#: lms/static/js/dashboard/donation.js -msgid "Please enter a valid donation amount." -msgstr "请输入一个有效的捐助金额。" - -#: lms/static/js/dashboard/donation.js -msgid "Your donation could not be submitted." -msgstr "您的捐款无法提交。" - -#: lms/static/js/dashboard/legacy.js lms/static/js/dashboard/legacy.js -msgid "You will be refunded the amount you paid." -msgstr "您将会收到全额退款。" - -#: lms/static/js/dashboard/legacy.js -msgid "You will not be refunded the amount you paid." -msgstr "您将无法获得全额退款。" - -#: lms/static/js/dashboard/legacy.js -msgid "" -"Are you sure you want to unenroll from the purchased course %(courseName)s " -"(%(courseNumber)s)?" -msgstr "您确定要退选已购买课程%(courseName)s(%(courseNumber)s)?" - -#: lms/static/js/dashboard/legacy.js -msgid "" -"Are you sure you want to unenroll from %(courseName)s (%(courseNumber)s)?" -msgstr "您确定要退选课程%(courseName)s(%(courseNumber)s)?" - -#: lms/static/js/dashboard/legacy.js -msgid "" -"Are you sure you want to unenroll from the verified %(certNameLong)s track " -"of %(courseName)s (%(courseNumber)s)?" -msgstr "您确定要退选已通过身份认证的课程%(certNameLong)s的%(courseName)s(%(courseNumber)s)?" - -#: lms/static/js/dashboard/legacy.js -msgid "" -"Are you sure you want to unenroll from the verified %(certNameLong)s track " -"of %(courseName)s (%(courseNumber)s)?" -msgstr "您确定要退选已经过身份认证的课程%(certNameLong)s的%(courseName)s(%(courseNumber)s)?" - -#: lms/static/js/dashboard/legacy.js -msgid "" -"The refund deadline for this course has passed,so you will not receive a " -"refund." -msgstr "此课程的退款期限已过,您将无法获得退款。" - -#: lms/static/js/dashboard/legacy.js lms/static/js/dashboard/legacy.js -#: lms/static/js/learner_dashboard/views/unenroll_view.js -msgid "" -"Unable to determine whether we should give you a refund because of System " -"Error. Please try again later." -msgstr "系统发生错误,无法判断是否应给您退款,请稍后重试。" - -#: lms/static/js/discovery/views/search_form.js -#, javascript-format -msgid "Viewing %s course" -msgid_plural "Viewing %s courses" -msgstr[0] "查看 %s 个课程" - -#: lms/static/js/discovery/views/search_form.js -#, javascript-format -msgid "We couldn't find any results for \"%s\"." -msgstr "我们找不到有关“%s”的任何结果。" - -#: lms/static/js/discovery/views/search_form.js -msgid "There was an error, try searching again." -msgstr "出错了,请尝试重新搜素。" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Not divided" -msgstr "不区分" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "" -"Discussions are unified; all learners interact with posts from other " -"learners, regardless of the group they are in." -msgstr "讨论区是统一标准的,学员可以与所有其他小组学员的帖子进行互动。" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Enrollment Tracks" -msgstr "选课通道" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "" -"Use enrollment tracks as the basis for dividing discussions. All learners, " -"regardless of their enrollment track, see the same discussion topics, but " -"within divided topics, only learners who are in the same enrollment track " -"see and respond to each others’ posts." -msgstr "" -"将选课通道作为划分讨论组的基础。所有的学员,不管他们的选课通道是什么,都可以看到相同的讨论主题,但是在不同的主题中,只有在同一选课通道上的学员才能看到和回复彼此的帖子。" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Cohorts" -msgstr "群组" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "" -"Use cohorts as the basis for dividing discussions. All learners, regardless " -"of cohort, see the same discussion topics, but within divided topics, only " -"members of the same cohort see and respond to each others’ posts. " -msgstr "按群组区分讨论组,所有学员,不管所在什么群组,都可以看到同样的讨论主题;但在不同的主题中,只有同一群组的成员可以查看和回复彼此的帖子。" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Discussion topics in the course are not divided." -msgstr "不区分课程中的讨论主题。" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Any divided discussion topics are divided based on enrollment track." -msgstr "任何有区分的讨论主题都是根据选课通道来区分的。" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Any divided discussion topics are divided based on cohort." -msgstr "任何有区分的讨论主题都按群组进行区分的。" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "Your changes have been saved. {details}" -msgstr "已保存更改。{details}" - -#: lms/static/js/discussions_management/views/discussions.js -msgid "We have encountered an error. Refresh your browser and then try again." -msgstr "发生错误,请刷新您的浏览器并重试。" - -#: lms/static/js/discussions_management/views/divided_discussions.js -#: lms/static/js/discussions_management/views/divided_discussions_course_wide.js -#: lms/static/js/discussions_management/views/divided_discussions_inline.js -#: lms/static/js/groups/views/cohort_form.js -#: lms/static/js/groups/views/cohorts.js -msgid "We've encountered an error. Refresh your browser and then try again." -msgstr "我们遇到了一个错误。请刷新您的浏览器并重试。" - -#: lms/static/js/edxnotes/views/notes_visibility_factory.js -#: lms/static/js/edxnotes/views/search_box.js -msgid "" -"An error has occurred. Make sure that you are connected to the Internet, and" -" then try refreshing the page." -msgstr "出现了一个错误。请确保您已联网,然后刷新页面。" - -#: lms/static/js/edxnotes/views/notes_visibility_factory.js -msgid "Hide notes" -msgstr "隐藏注释" - -#: lms/static/js/edxnotes/views/notes_visibility_factory.js -msgid "Notes visible" -msgstr "注释可见" - -#: lms/static/js/edxnotes/views/notes_visibility_factory.js -msgid "Show notes" -msgstr "显示注释" - -#: lms/static/js/edxnotes/views/notes_visibility_factory.js -msgid "Notes hidden" -msgstr "注释已隐藏" - -#: lms/static/js/edxnotes/views/search_box.js -msgid "Please enter a term in the {anchorStart} search field{anchorEnd}." -msgstr "请在{anchorStart}搜索框{anchorEnd}中输入搜索内容。" - -#: lms/static/js/edxnotes/views/tab_item.js -msgid "Current tab" -msgstr "当前标签" - -#: lms/static/js/edxnotes/views/tabs/course_structure.js -msgid "Location in Course" -msgstr "课程中的位置" - -#: lms/static/js/edxnotes/views/tabs/recent_activity.js -msgid "Recent Activity" -msgstr "近期活动" - -#: lms/static/js/edxnotes/views/tabs/search_results.js -msgid "No results found for \"%(query_string)s\". Please try searching again." -msgstr "未找到有关\"%(query_string)s\"的任何结果。请重新搜索。" - -#. Translators: this is a title shown before all Notes that have no associated -#. tags. It is put within -#. brackets to differentiate it from user-defined tags, but it should still be -#. translated. -#: lms/static/js/edxnotes/views/tabs/tags.js -msgid "[no tags]" -msgstr "[无标签]" - -#. Translators: 'Tags' is the name of the view (noun) within the Student Notes -#. page that shows all -#. notes organized by the tags the student has associated with them (if any). -#. When defining a -#. note in the courseware, the student can choose to associate 1 or more tags -#. with the note -#. in order to group similar notes together and help with search. -#: lms/static/js/edxnotes/views/tabs/tags.js -msgid "Tags" -msgstr "标签" - -#: lms/static/js/financial-assistance/views/financial_assistance_form_view.js -msgid "Unable to submit application" -msgstr "无法提交申请" - -#: lms/static/js/financial-assistance/views/financial_assistance_form_view.js -#: lms/static/js/student_account/views/LoginView.js -msgid "An error has occurred. Check your Internet connection and try again." -msgstr "错误发生。请检查您的网络连接情况,并且重试一次。" - -#: lms/static/js/financial-assistance/views/financial_assistance_form_view.js -msgid "Choose one" -msgstr "请选取" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "Selected tab" -msgstr "选中的标签" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "Saved cohort" -msgstr "已保存的群组" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "Error adding learners." -msgstr "添加学员时发生错误。" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "Enter a username or email." -msgstr "输入用户名或电子邮件地址。" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "{numUsersAdded} learner has been added to this cohort. " -msgid_plural "{numUsersAdded} learners have been added to this cohort. " -msgstr[0] "{numUsersAdded}个学员已被添加至此群组。" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "{numMoved} learner was moved from {prevCohort}" -msgid_plural "{numMoved} learners were moved from {prevCohort}" -msgstr[0] "{numMoved}个学员被移出{prevCohort}" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "{numPresent} learner was already in the cohort" -msgid_plural "{numPresent} learners were already in the cohort" -msgstr[0] "{numPresent}个学员已在群组中" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "{email}" -msgstr "{email}" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "" -"{numPreassigned} learner was pre-assigned for this cohort. This learner will" -" automatically be added to the cohort when they enroll in the course." -msgid_plural "" -"{numPreassigned} learners were pre-assigned for this cohort. These learners " -"will automatically be added to the cohort when they enroll in the course." -msgstr[0] "{numPreassigned}个学员被预分配至此群组中,在报名课程时他们将自动被添加至此群组中。" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "Unknown username: {user}" -msgstr "未知用户名: {user}" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "Invalid email address: {email}" -msgstr "无效的邮箱地址: {email}" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "There was an error when trying to add learners:" -msgid_plural "{numErrors} learners could not be added to this cohort:" -msgstr[0] "{numErrors}个学员无法被添加至此群组中:" - -#: lms/static/js/groups/views/cohort_editor.js -msgid "View all errors" -msgstr "查看所有错误" - -#: lms/static/js/groups/views/cohort_form.js -msgid "You must specify a name for the cohort" -msgstr "您必须为该群组命名。" - -#: lms/static/js/groups/views/cohort_form.js -msgid "You did not select a content group" -msgstr "您未选取内容组。" - -#: lms/static/js/groups/views/cohort_form.js -msgid "The selected content group does not exist" -msgstr "选取的内容组不存在。" - -#: lms/static/js/groups/views/cohort_form.js -msgid "The cohort cannot be saved" -msgstr "该群组不能保存" - -#: lms/static/js/groups/views/cohort_form.js -msgid "The cohort cannot be added" -msgstr "该群组不能添加" - -#: lms/static/js/groups/views/cohorts.js -msgid "You currently have no cohorts configured" -msgstr "您目前没有已配置的群组" - -#: lms/static/js/groups/views/cohorts.js -msgid "Add Cohort" -msgstr "添加群组" - -#: lms/static/js/groups/views/cohorts.js -msgid "" -"The {cohortGroupName} cohort has been created. You can manually add students" -" to this cohort below." -msgstr "{cohortGroupName}群组已经创建,您可以手动添加学生到这个群组。" - -#: lms/static/js/groups/views/cohorts.js -msgid "Assign students to cohorts by uploading a CSV file." -msgstr "上传一个 CSV 文件以将学生分配到群组中。" - -#: lms/static/js/groups/views/cohorts.js -msgid "Choose a .csv file" -msgstr "选取一个.csv的文件" - -#: lms/static/js/groups/views/cohorts.js -msgid "Only properly formatted .csv files will be accepted." -msgstr "只有标准的CSV格式文件会被接受。" - -#: lms/static/js/groups/views/cohorts.js -msgid "Upload File and Assign Students" -msgstr "上传文件并为学生分组" - -#: lms/static/js/groups/views/cohorts.js -msgid "" -"Your file '{file}' has been uploaded. Allow a few minutes for processing." -msgstr "您的文件'{file}'已经上传。需要几分钟时间进行处理。" - -#: lms/static/js/groups/views/course_cohort_settings_notification.js -msgid "Cohorts Enabled" -msgstr "群组已启用" - -#: lms/static/js/groups/views/course_cohort_settings_notification.js -msgid "Cohorts Disabled" -msgstr "群组已禁用" - -#: lms/static/js/groups/views/verified_track_settings_notification.js -msgid "" -"This course uses automatic cohorting for verified track learners. You cannot" -" disable cohorts, and you cannot rename the manual cohort named " -"'{verifiedCohortName}'. To change the configuration for verified track " -"cohorts, contact your EliteMBA partner manager." -msgstr "" -"这门课程为要获取认证证书的学生自动分组。您无法取消分组,也无法重新命名手动设置的群组'{verifiedCohortName}'。如要改变认证组的分组设置,请联系您的EliteMBA" -" 合作经理。" - -#: lms/static/js/groups/views/verified_track_settings_notification.js -msgid "" -"This course has automatic cohorting enabled for verified track learners, but" -" the required cohort does not exist. You must create a manually-assigned " -"cohort named '{verifiedCohortName}' for the feature to work." -msgstr "" -"这门课程为要获取认证证书的学生自动分组,但要求的群组不存在。为了使该功能正常运行,您必须手动设置一个群组,名为'{verifiedCohortName}'。" - -#: lms/static/js/groups/views/verified_track_settings_notification.js -msgid "" -"This course has automatic cohorting enabled for verified track learners, but" -" cohorts are disabled. You must enable cohorts for the feature to work." -msgstr "这门课程为要获取认证证书的学生自动分组,但是群组功能被禁止。为了使该功能正常运行,您必须启用群组功能," - -#: lms/static/js/instructor_dashboard/certificates.js -msgid "Allow students to generate certificates for this course?" -msgstr "是否允许学生生成该课程证书?" - -#: lms/static/js/instructor_dashboard/certificates.js -msgid "Prevent students from generating certificates in this course?" -msgstr "是否阻止学生生成该课程证书?" - -#: lms/static/js/instructor_dashboard/certificates.js -msgid "Start generating certificates for all students in this course?" -msgstr "是否开始为该课程的所有学生生成证书?" - -#: lms/static/js/instructor_dashboard/certificates.js -msgid "Error while generating certificates. Please try again." -msgstr "生成证书期间出现错误,请重试。" - -#: lms/static/js/instructor_dashboard/certificates.js -msgid "Start regenerating certificates for students in this course?" -msgstr "确定重新产生此课程所有学生的证书?" - -#: lms/static/js/instructor_dashboard/certificates.js -msgid "Error while regenerating certificates. Please try again." -msgstr "产生错误证书。 请再试一次。" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Loading data..." -msgstr "载入数据中......" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error getting issued certificates list." -msgstr "获取已颁发证书的列表时发生错误" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating proctored exam results. Please try again." -msgstr "产生考试成绩错误。 请再试一次。" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating survey results. Please try again." -msgstr "产生调查结果时发生错误。 请再试一次。" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating student profile information. Please try again." -msgstr "生成学生档案信息时发生错误,请重试。" - -#: lms/static/js/instructor_dashboard/data_download.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmarks_list.js -msgid "Loading" -msgstr "正在加载" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error getting student list." -msgstr "获取学生列表时发生错误" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating list of students who may enroll. Please try again." -msgstr "获取可能选课的学生列表时出现错误,请重试。" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error retrieving grading configuration." -msgstr "取得评分标准时错误。" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating grades. Please try again." -msgstr "生成评分结果时发生错误,请重试。" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating problem grade report. Please try again." -msgstr "生成评分结果报告时发生错误,请重试。" - -#: lms/static/js/instructor_dashboard/data_download.js -msgid "Error generating ORA data report. Please try again." -msgstr "产生ORA数据报告时发生错误。请重新再试。" - -#: lms/static/js/instructor_dashboard/ecommerce.js -#: lms/static/js/instructor_dashboard/ecommerce.js -msgid "" -"There was a problem creating the report. Select \"Create Executive Summary\"" -" to try again." -msgstr "创建报告时发生问题,请选择“创建执行摘要”重新尝试。" - -#: lms/static/js/instructor_dashboard/ecommerce.js -msgid "Enter the enrollment code." -msgstr "输入选课码。" - -#: lms/static/js/instructor_dashboard/ecommerce.js -msgid "Cancel enrollment code" -msgstr "取消选课码" - -#: lms/static/js/instructor_dashboard/ecommerce.js -msgid "Restore enrollment code" -msgstr "恢复选课码" - -#: lms/static/js/instructor_dashboard/ecommerce.js -msgid "Mark enrollment code as unused" -msgstr "标记选课码为尚未使用的" - -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/student_account/views/account_settings_factory.js -#: lms/static/js/writable_gradebook.js -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Username" -msgstr "用户名" - -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/instructor_dashboard/membership.js -msgid "Email" -msgstr "电子邮件" - -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/instructor_dashboard/membership.js -msgid "Revoke access" -msgstr "取消授权" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Group" -msgstr "小组" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Enter username or email" -msgstr "输入用户名或者电子邮件地址" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Please enter a username or email." -msgstr "请输入一个用户名或者电子邮件。" - -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/instructor_dashboard/membership.js -msgid "This role requires a divided discussions scheme." -msgstr "这个角色需要一个区分讨论组的方案。" - -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/instructor_dashboard/membership.js -msgid "Error changing user's permissions." -msgstr "更改用户权限出错。" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"Could not find a user with username or email address '<%- identifier %>'." -msgstr "未找到用户名或邮箱地址为<%- identifier %>的用户。" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"Error: User '<%- username %>' has not yet activated their account. Users " -"must create and activate their accounts before they can be assigned a role." -msgstr "发生错误:用户“<%- username %>”未激活账号,必须先创建并激活账号才能分配角色。" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Error: You cannot remove yourself from the Instructor group!" -msgstr "错误:您不可以将自己从教师组中删除。" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Errors" -msgstr "错误" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "The following errors were generated:" -msgstr "出现以下错误:" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Warnings" -msgstr "警告" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "The following warnings were generated:" -msgstr "出现以下警告:" - -#: lms/static/js/instructor_dashboard/membership.js -#: lms/static/js/views/fields.js -msgid "Success" -msgstr "成功" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "All accounts were created successfully." -msgstr "所有账号创建成功。" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Error adding/removing users as beta testers." -msgstr "添加/删除beta测试用户出错。" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "These users were successfully added as beta testers:" -msgstr "这些用户已经添加为beta测试者:" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"These users could not be added as beta testers because their accounts are " -"not yet activated:" -msgstr "无法将这些用户设置为BETA测试员,因为他们的账号未激活:" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "These users were successfully removed as beta testers:" -msgstr "这些用户不再是beta测试者:" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "These users were not added as beta testers:" -msgstr "这些用户未添加为beta测试者:" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "These users were not removed as beta testers:" -msgstr "这些用户未从beta测试者中删除:" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"Users must create and activate their account before they can be promoted to " -"beta tester." -msgstr "成为beta测试者之前,需要创建并激活账号。" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Could not find users associated with the following identifiers:" -msgstr "未能找到与以下识别码关联的用户:" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Reason field should not be left blank." -msgstr "原因不能为空。" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Role field should not be left unselected." -msgstr "请勾选角色选项。" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Error enrolling/unenrolling users." -msgstr "用户选课/放弃选课时出错。" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "The following email addresses and/or usernames are invalid:" -msgstr "以下电子邮件地址/用户名无效:" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "Successfully enrolled and sent email to the following users:" -msgstr "以下用户已成功选课,并向他们发送电子邮件:" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "Successfully enrolled the following users:" -msgstr "以下用户已经成功选课:" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"Successfully sent enrollment emails to the following users. They will be " -"allowed to enroll once they register:" -msgstr "选课邮件已成功发送至以下用户,他们注册后即可选课:" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "These users will be allowed to enroll once they register:" -msgstr "这些用户一旦注册即可选课:" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"Successfully sent enrollment emails to the following users. They will be " -"enrolled once they register:" -msgstr "选课邮件已成功发送至这些用户,他们注册后即已选课:" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "These users will be enrolled once they register:" -msgstr "这些用户注册后即已选课:" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"Emails successfully sent. The following users are no longer enrolled in the " -"course:" -msgstr "邮件发送成功,以下用户已不再选修本课程:" - -#. Translators: A list of users appears after this sentence; -#: lms/static/js/instructor_dashboard/membership.js -msgid "The following users are no longer enrolled in the course:" -msgstr "以下用户已不再选修本课程:" - -#: lms/static/js/instructor_dashboard/membership.js -msgid "" -"These users were not affiliated with the course so could not be unenrolled:" -msgstr "这些用户并不属于本课程学员,因此无法使其放弃选修:" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Your message must have a subject." -msgstr "您的消息必须有一个标题。" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Your message cannot be blank." -msgstr "您的消息不能为空。" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Your message must have at least one target." -msgstr "您的消息必须至少有一个接收者。" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "" -"There are invalid keywords in your email. Check the following keywords and " -"try again." -msgstr "您的电子邮件中存在无效关键词,请检查以下关键词并重试。" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Yourself" -msgstr "您自己" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Everyone who has staff privileges in this course" -msgstr "此课程中拥有员工权限的所有人" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "All learners who are enrolled in this course" -msgstr "所有已报名此课程的学员" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "All learners in the {cohort_name} cohort" -msgstr "所有在{cohort_name}群组中的学员" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "All learners in the {track_name} track" -msgstr "所有在{track_name}选课通道中的学员" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "" -"Your email message was successfully queued for sending. In courses with a " -"large number of learners, email messages to learners might take up to an " -"hour to be sent." -msgstr "您的电子邮件已成功加入等待发送队列中,如果课程的学员众多,则发送给学员的电子邮件可能最多需要等待一个小时才能发送完毕。" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "" -"You are sending an email message with the subject {subject} to the following" -" recipients." -msgstr "您正在发送含有{subject}主题的电子邮件给以下收件人。" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Is this OK?" -msgstr "是否可以?" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Error sending email." -msgstr "发送电子邮件时出错。" - -#: lms/static/js/instructor_dashboard/send_email.js -#: lms/static/js/instructor_dashboard/send_email.js -msgid "There is no email history for this course." -msgstr "本课程尚无发送电子邮件记录。" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "There was an error obtaining email task history for this course." -msgstr "获取该课程的邮件任务历史记录时发生错误。" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "There was an error obtaining email content history for this course." -msgstr "存在能获取该课程邮件内容历史记录的错误" - -#: lms/static/js/instructor_dashboard/send_email.js -msgid "Send to:" -msgstr "发送至:" - -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Please enter a student email address or username." -msgstr "请输入学生的邮件地址或用户名。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error getting enrollment status for '<%- student_id %>'. Make sure that the " -"student identifier is spelled correctly." -msgstr "获取'<%- student_id %>'的选课状态时出错,请确保学生ID拼写正确。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Retrieving enrollment status..." -msgstr "正在获取选课状态..." - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error getting student progress url for '<%- student_id %>'. Make sure that " -"the student identifier is spelled correctly." -msgstr "获取“<%- student_id %>”学生进度URL时发生错误,请确保学生ID拼写正确。" - -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Please enter a problem location." -msgstr "请输入问题的位置。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Success! Problem attempts reset for problem '<%- problem_id %>' and student " -"'<%- student_id %>'." -msgstr "处理成功!题目'<%- problem_id %>' 与学生'<%- student_id %>'的回答尝试次数已重置。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error resetting problem attempts for problem '<%= problem_id %>' and student" -" '<%- student_id %>'. Make sure that the problem and student identifiers are" -" complete and correct." -msgstr "" -"重置题目“<%= problem_id %>”和学生“<%- student_id %>”的回答尝试次数时发生错误,请确保题目ID和学生ID拼写正确。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Delete student '<%- student_id %>'s state on problem '<%- problem_id %>'?" -msgstr "确定要删除学生“<%- student_id %>”在题目“<%- problem_id %>”的状态?" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error deleting student '<%- student_id %>'s state on problem '<%- problem_id" -" %>'. Make sure that the problem and student identifiers are complete and " -"correct." -msgstr "" -"删除学生“<%- student_id %>”在题目“<%- problem_id %>”的状态时发生错误,请确保题目ID和学生ID拼写完整并正确。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Module state successfully deleted." -msgstr "已成功删除模块状态。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error getting task history for problem '<%- problem_id %>' and student '<%- " -"student_id %>'. Make sure that the problem and student identifiers are " -"complete and correct." -msgstr "" -"在获取题目“<%- problem_id %>”和学生“<%- student_id " -"%>”的操作任务历史记录时发生错误,请确保题目ID和学生ID拼写完整并正确。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Entrance exam attempts is being reset for student '{student_id}'." -msgstr "正在重置学生“{student_id}”的入学考试尝试次数。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error resetting entrance exam attempts for student '{student_id}'. Make sure" -" student identifier is correct." -msgstr "重置学生'{student_id}'的入学考试尝试次数时出错了,请确认学生编号无误。" - -#: lms/static/js/instructor_dashboard/student_admin.js -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Enter a student's username or email address." -msgstr "输入学生的用户名或电子邮件地址。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Do you want to allow this student ('{student_id}') to skip the entrance " -"exam?" -msgstr "您是否允许该学生('{student_id}')跳过入学考试?" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"An error occurred. Make sure that the student's username or email address is" -" correct and try again." -msgstr "发生了一个错误,请确认学生用户名或电子邮件地址正确并再次尝试。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Entrance exam state is being deleted for student '{student_id}'." -msgstr "学生'{student_id}'的入学考试的状态已被删除。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error deleting entrance exam state for student '{student_id}'. Make sure " -"student identifier is correct." -msgstr "删除学生'{student_id}'的入学考试状态时出错了,请确认学生编号无误。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error getting entrance exam task history for student '{student_id}'. Make " -"sure student identifier is correct." -msgstr "获取学生'{student_id}'的入学考试任务历史时出错了,请确认学生编号无误。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Reset attempts for all students on problem '<%- problem_id %>'?" -msgstr "是否重置所有学生对题目'<%- problem_id %>'的尝试次数?" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Successfully started task to reset attempts for problem '<%- problem_id %>'." -" Click the 'Show Task Status' button to see the status of the task." -msgstr "成功开启重置题目“<%- problem_id %>”的尝试次数的任务,点击“显示任务状态”按钮可查看任务的状态。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error starting a task to reset attempts for all students on problem '<%- " -"problem_id %>'. Make sure that the problem identifier is complete and " -"correct." -msgstr "启动重置所有学员在题目“<%- problem_id %>'”的答题次数的任务时发生错误,请确保题目ID拼写完整并正确。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Error listing task history for this student and problem." -msgstr "显示此学生与问题的任务历史时发生错误。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Started rescore problem task for problem '<%- problem_id %>' and student " -"'<%- student_id %>'. Click the 'Show Task Status' button to see the status " -"of the task." -msgstr "" -"已启动覆盖题目“<%- problem_id %>”和学生“<%- student_id %>”分数的任务,点击“显示任务状态”可查看任务的状态。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error starting a task to rescore problem '<%- problem_id %>' for student " -"'<%- student_id %>'. Make sure that the the problem and student identifiers " -"are complete and correct." -msgstr "" -"启动对学生“<%- student_id %>”的题目“<%- problem_id %>”的重新评分任务时出错。请确认该题目的 ID 及学生的 ID " -"是完整且正确的。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Please enter a score." -msgstr "请输入分数。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Started task to override the score for problem '<%- problem_id %>' and " -"student '<%- student_id %>'. Click the 'Show Task Status' button to see the " -"status of the task." -msgstr "" -"已启动覆盖题目“<%- problem_id %>”和学生“<%- student_id %>”分数的任务,点击“显示任务状态”可查看任务的状态。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error starting a task to override score for problem '<%- problem_id %>' for " -"student '<%- student_id %>'. Make sure that the the score and the problem " -"and student identifiers are complete and correct." -msgstr "" -"启动覆盖学生“<%- student_id %>”的题目“<%- problem_id %>”的评分任务时出错。请确认该题目的 ID 及学生的 ID " -"是完整且正确的。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Started entrance exam rescore task for student '{student_id}'. Click the " -"'Show Task Status' button to see the status of the task." -msgstr "已启动为学生'{student_id}'的入学考试重新评分的任务,请点击“显示任务状态”按钮来查看任务状态。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error starting a task to rescore entrance exam for student '{student_id}'. " -"Make sure that entrance exam has problems in it and student identifier is " -"correct." -msgstr "为学生'{student_id}'开始运行重新计算入学考试分数的任务时出错了,请确认该入学考试中有题目并且学生编号无误。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "Rescore problem '<%- problem_id %>' for all students?" -msgstr "确认对所有学生的题目'<%- problem_id %>'重新评分?" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Successfully started task to rescore problem '<%- problem_id %>' for all " -"students. Click the 'Show Task Status' button to see the status of the task." -msgstr "成功启动为所有学生的题目 '<%- problem_id %>'重新评分的任务。点击“显示任务状态”按钮来查看任务状态。" - -#: lms/static/js/instructor_dashboard/student_admin.js -msgid "" -"Error starting a task to rescore problem '<%- problem_id %>'. Make sure that" -" the problem identifier is complete and correct." -msgstr "启动对题目“<%- problem_id %>”重新评分的任务时出错。请确认该题目的 ID 是完整且正确的。" - -#. Translators: a "Task" is a background process such as grading students or -#. sending email -#: lms/static/js/instructor_dashboard/util.js -msgid "Task Type" -msgstr "任务类型" - -#. Translators: a "Task" is a background process such as grading students or -#. sending email -#: lms/static/js/instructor_dashboard/util.js -msgid "Task inputs" -msgstr "任务输入" - -#. Translators: a "Task" is a background process such as grading students or -#. sending email -#: lms/static/js/instructor_dashboard/util.js -msgid "Task ID" -msgstr "任务ID" - -#. Translators: a "Requester" is a username that requested a task such as -#. sending email -#: lms/static/js/instructor_dashboard/util.js -msgid "Requester" -msgstr "请求者" - -#. Translators: A timestamp of when a task (eg, sending email) was submitted -#. appears after this -#: lms/static/js/instructor_dashboard/util.js -msgid "Submitted" -msgstr "已提交" - -#. Translators: The length of a task (eg, sending email) in seconds appears -#. this -#: lms/static/js/instructor_dashboard/util.js -msgid "Duration (sec)" -msgstr "持续时间(秒)" - -#. Translators: The state (eg, "In progress") of a task (eg, sending email) -#. appears after this. -#: lms/static/js/instructor_dashboard/util.js -msgid "State" -msgstr "状态" - -#. Translators: a "Task" is a background process such as grading students or -#. sending email -#: lms/static/js/instructor_dashboard/util.js -msgid "Task Status" -msgstr "任务状态" - -#. Translators: a "Task" is a background process such as grading students or -#. sending email -#: lms/static/js/instructor_dashboard/util.js -msgid "Task Progress" -msgstr "任务进度" - -#: lms/static/js/instructor_dashboard/util.js -msgid "" -"An error occurred retrieving your email. Please try again later, and contact" -" technical support if the problem persists." -msgstr "获取邮件发生错误,请稍后重试。如问题持续发生,请咨询技术支持。" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Sent By" -msgstr "发送人" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Sent To" -msgstr "发送至" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Time Sent" -msgstr "发送时间" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Number Sent" -msgstr "发送数目" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Copy Email To Editor" -msgstr "复制邮件至编辑器" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Subject:" -msgstr "标题" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Sent By:" -msgstr "发件人" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Time Sent:" -msgstr "发送时间" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Sent To:" -msgstr "发送至" - -#: lms/static/js/instructor_dashboard/util.js -msgid "Message:" -msgstr "消息:" - -#: lms/static/js/instructor_dashboard/util.js -msgid "No tasks currently running." -msgstr "没有正在执行的任务" - -#: lms/static/js/instructor_dashboard/util.js -msgid "File Name" -msgstr "文件名" - -#: lms/static/js/instructor_dashboard/util.js -msgid "" -"Links are generated on demand and expire within 5 minutes due to the " -"sensitive nature of student information." -msgstr "由于包含涉及学生的敏感信息,生成的链接将在5分钟后失效。" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Starts {start}" -msgstr "(自主模式) 开始 {start}" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Started {start}" -msgstr "(自主模式) 开始 {start}" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Ends {end}" -msgstr "(自主模式) 结束 {end}" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "(Self-paced) Ended {end}" -msgstr "(自主模式) 结束 {end}" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Starts {start}" -msgstr "开始{start}" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Started {start}" -msgstr "开始{start}" - -#: lms/static/js/learner_dashboard/models/course_card_model.js -msgid "Ends {end}" -msgstr "结束{end}" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "You must select a session to access the course." -msgstr "必须选择一个学期才能访问课程。" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "There was an error. Please reload the page and try again." -msgstr "发生错误,请重新加载页面并重试。" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Change Session" -msgstr "更改学期" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Select Session" -msgstr "选择学期" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Leave Current Session" -msgstr "离开当前学期" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure you want to select this session?" -msgstr "确定选择此学期?" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure you want to change to a different session?" -msgstr "确定更改学期?" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Any course progress or grades from your current session will be lost." -msgstr "所有当前学期的学习进度和成绩都会丢失。" - -#: lms/static/js/learner_dashboard/views/course_entitlement_view.js -msgid "Are you sure that you want to leave this session?" -msgstr "确定离开此学期?" - -#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js -msgid "" -"Your unenrollment request could not be processed. Please try again later." -msgstr "未能处理您的课程退选申请,请稍后重试。" - -#: lms/static/js/learner_dashboard/views/entitlement_unenrollment_view.js -msgid "" -"Are you sure you want to unenroll from {courseName} ({courseNumber})? You " -"will be refunded the amount you paid." -msgstr "确定退选课程 {courseName} ({courseNumber})?您将会收到全额退款。" - -#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js -msgid "{type} Progress" -msgstr "{type}进度" - -#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js -#: lms/static/js/learner_dashboard/views/program_details_sidebar_view.js -msgid "Earned Certificates" -msgstr "已获取证书" - -#: lms/static/js/learner_dashboard/views/program_details_view.js -msgid "Enrolled" -msgstr "已报名" - -#: lms/static/js/staff_debug_actions.js -msgid "Successfully reset the attempts for user {user}" -msgstr "成功重置用户{user}的请求" - -#: lms/static/js/staff_debug_actions.js -msgid "Failed to reset attempts for user." -msgstr "重置用户的尝试次数失败。" - -#: lms/static/js/staff_debug_actions.js -msgid "Successfully deleted student state for user {user}" -msgstr "成功删除学生{user}的状态" - -#: lms/static/js/staff_debug_actions.js -msgid "Failed to delete student state for user." -msgstr "删除用户的学生状态失败。" - -#: lms/static/js/staff_debug_actions.js -msgid "Successfully rescored problem for user {user}" -msgstr "成功重评用户 {user}得分" - -#: lms/static/js/staff_debug_actions.js -msgid "Failed to rescore problem for user." -msgstr "为用户重评题目得分失败。" - -#: lms/static/js/staff_debug_actions.js -msgid "Successfully rescored problem to improve score for user {user}" -msgstr "为用户{user}重评题目得分成功" - -#: lms/static/js/staff_debug_actions.js -msgid "Failed to rescore problem to improve score for user." -msgstr "为用户重评题目得分失败。" - -#: lms/static/js/staff_debug_actions.js -msgid "Successfully overrode problem score for {user}" -msgstr "成功覆盖{user}的题目得分" - -#: lms/static/js/staff_debug_actions.js -msgid "Could not override problem score for {user}." -msgstr "无法覆盖{user}的题目得分。" - -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Reset Your Password" -msgstr "重置您的密码" - -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Enter and confirm your new password." -msgstr "输入并确认新密码" - -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "New Password" -msgstr "新密码" - -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Confirm Password" -msgstr "确认密码" - -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Passwords do not match." -msgstr "两次密码输入不一致" - -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -msgid "Reset My Password" -msgstr "重置密码" - -#: lms/static/js/student_account/components/PasswordResetInput.jsx -msgid "Error: " -msgstr "错误:" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"You may also lose access to verified certificates and other program " -"credentials. If you want to make a copy of these for your records before " -"proceeding with deletion, please go to {htmlStart}Dashboard{htmlEnd} to view" -" your certificates." -msgstr "" -"您可能也将无法访问已认证的证书和其他专业课程的证书。如果您希望在操作删除前对这些文件进行备份,请到{htmlStart}课程面板{htmlEnd}查看您获得的证书。" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"Before proceeding, please {htmlStart}unlink all social media " -"accounts{htmlEnd}." -msgstr "继续操作前,请先{htmlStart}解绑所有社交软件账号{htmlEnd}。" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "Before proceeding, please {htmlStart}activate your account{htmlEnd}." -msgstr "继续操作前,请先{htmlStart}激活您的账号{htmlEnd}。" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"{htmlStart}Want to change your email, name, or password instead?{htmlEnd}" -msgstr "{htmlStart}是否想要更改您的电子邮件,名字,或者密码?{htmlEnd}" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"{strongStart}Warning: Account deletion is permanent.{strongEnd} Please read " -"the above carefully before proceeding. This is an irreversible action, and " -"{strongStart}you will no longer be able to use the same email on " -"EliteMBA.{strongEnd}" -msgstr "" -"{strongStart}警告:账号将被永久删除。{strongEnd}在继续之前,请仔细阅读以上内容。这是一个不可撤销的操作,并且{strongStart}您将不能够在英荔商学院上使用相同的电子邮件地址。{strongEnd}" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "We’re sorry to see you go!" -msgstr "很遗憾看到您要离开!" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -msgid "" -"Please note: Deletion of your account and personal data is permanent and " -"cannot be undone. EliteMBA will not be able to recover your account or the " -"data that is deleted." -msgstr "请注意:删除账号及个人数据的操作将不可撤销。英荔商学院无法恢复已删除的账号及数据。" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"Once your account is deleted, you cannot use it to take courses on the " -"EliteMBA app, elitemba.cn, or any other site hosted by EliteMBA." -msgstr "一旦删除了账号,您将无法在英荔商学院App、elitemba.cn或其他任何由英荔商学院托管的站点上学习课程。" - -#: lms/static/js/student_account/components/StudentAccountDeletion.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Delete My Account" -msgstr "删除我的账号" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Password is incorrect" -msgstr "密码错误" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Unable to delete account" -msgstr "无法删除账号" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Please re-enter your password." -msgstr "请重新输入您的密码。" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"Sorry, there was an error trying to process your request. Please try again " -"later." -msgstr "抱歉,处理您的请求时发生错误,请稍后重试。" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "A Password is required" -msgstr "密码为必填项" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"You have selected “Delete my account.” Deletion of your account and personal" -" data is permanent and cannot be undone. EliteMBA will not be able to " -"recover your account or the data that is deleted." -msgstr "您选择了“删除我的账号”,删除账号与个人数据将无法撤销。英荔商学院无法恢复您已删除的账号或数据。" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"If you still wish to continue and delete your account, please enter your " -"account password:" -msgstr "如果您仍然要删除账号,请输入您的账号密码:" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Password" -msgstr "密码" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "Yes, Delete" -msgstr "是的,确定删除" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "We're sorry to see you go! Your account will be deleted shortly." -msgstr "很遗憾您要离开!您的账号将很快被删除。" - -#: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -msgid "" -"Account deletion, including removal from email lists, may take a few weeks " -"to fully process through our system." -msgstr "删除账号包括从邮箱列表中移除您的邮箱地址,我们的系统可能需要耗时数周才能完成处理。" - -#: lms/static/js/student_account/tos_modal.js -msgid "Terms of Service and Honor Code" -msgstr "服务条款和诚信准则" - -#: lms/static/js/student_account/views/FinishAuthView.js -msgid "Saving your email preference" -msgstr "正在保存您的电子邮件偏好" - -#: lms/static/js/student_account/views/FinishAuthView.js -msgid "Enrolling you in the selected course" -msgstr "将您加入到选定的课程" - -#: lms/static/js/student_account/views/FinishAuthView.js -msgid "Adding the selected course to your cart" -msgstr "正在将您所选的课程添加到您的购物车" - -#: lms/static/js/student_account/views/FinishAuthView.js -msgid "Loading your courses" -msgstr "正在加载您的课程" - -#: lms/static/js/student_account/views/FormView.js -#: lms/static/js/student_account/views/RegisterView.js -msgid "An error occurred." -msgstr "发生了一个错误。" - -#. Translators: This string is appended to optional field labels on the -#. student login, registration, and -#. profile forms. -#: lms/static/js/student_account/views/FormView.js -msgid "(optional)" -msgstr "(非必填)" - -#: lms/static/js/student_account/views/LoginView.js -msgid "We couldn't sign you in." -msgstr "登录失败。" - -#: lms/static/js/student_account/views/LoginView.js -#, javascript-format -msgid "An error occurred when signing you in to %s." -msgstr "您在登录%s时发生错误。" - -#: lms/static/js/student_account/views/LoginView.js -msgid "Check Your Email" -msgstr "请检查您的电子邮件" - -#: lms/static/js/student_account/views/LoginView.js -msgid "" -"{paragraphStart}You entered {boldStart}{email}{boldEnd}. If this email " -"address is associated with your {platform_name} account, we will send a " -"message with password reset instructions to this email " -"address.{paragraphEnd}{paragraphStart}If you do not receive a password reset" -" message, verify that you entered the correct email address, or check your " -"spam folder.{paragraphEnd}{paragraphStart}If you need further assistance, " -"{anchorStart}contact technical support{anchorEnd}.{paragraphEnd}" -msgstr "" -"{paragraphStart}您已输入{boldStart}{email}{boldEnd}。如果此邮箱地址与您的{platform_name}账号相关联,我们会发送一封重置密码指引邮件到此邮箱。{paragraphEnd}{paragraphStart}如果您没收到该邮件,请检查所输入的邮箱地址是否正确,或者查看邮箱中的垃圾邮件。{paragraphEnd}{paragraphStart}如需进一步协助,{anchorStart}请联系技术支持{anchorEnd}。{paragraphEnd}" - -#: lms/static/js/student_account/views/LoginView.js -msgid "" -"An error has occurred. Try refreshing the page, or check your Internet " -"connection." -msgstr "发生错误。请尝试刷新页面,或检查您的网络连接情况。" - -#: lms/static/js/student_account/views/LoginView.js -msgid "" -"You have successfully signed into %(currentProvider)s, but your " -"%(currentProvider)s account does not have a linked %(platformName)s account." -" To link your accounts, sign in now using your %(platformName)s password." -msgstr "" -"您已成功登录%(currentProvider)s,但是您的%(currentProvider)s账号尚无关联的%(platformName)s账号。要关联您的账号,请使用您的%(platformName)s密码登录。" - -#: lms/static/js/student_account/views/RegisterView.js -msgid "We couldn't create your account." -msgstr "无法创建账号。" - -#: lms/static/js/student_account/views/RegisterView.js -msgid "Create Account" -msgstr "创建账号" - -#: lms/static/js/student_account/views/RegisterView.js -msgid "(required)" -msgstr "(必填项)" - -#: lms/static/js/student_account/views/RegisterView.js -msgid "You've successfully signed into %(currentProvider)s." -msgstr "您已成功授权%(currentProvider)s登录。" - -#: lms/static/js/student_account/views/RegisterView.js -msgid "" -"We just need a little more information before you start learning with " -"%(platformName)s." -msgstr "您只需再多提供一点信息就可以开始在%(platformName)s学习了。" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"Your profile settings are managed by {enterprise_name}. Contact your " -"administrator or {link_start}EliteMBA Support{link_end} for help." -msgstr "" -"您的账号设置由{enterprise_name}管理,如需帮助请联系您的管理员或{link_start}EliteMBA支持{link_end}。" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Email Address (Sign In)" -msgstr "电子邮件地址(登录)" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"You receive messages from {platform_name} and course teams at this address." -msgstr "此邮箱地址用于接收来自{platform_name}和课程团队的信息。" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"You have joined Harvard Learning Camp. Email Modification is not supported." -msgstr "您参加了“哈佛学习营”,暂不支持修改邮箱。" - -#: lms/static/js/student_account/views/account_settings_factory.js -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Full Name" -msgstr "全名" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"The name that is used for ID verification and that appears on your " -"certificates." -msgstr "用于身份认证和显示在证书上的姓名。" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Country or Region of Residence" -msgstr "国家或地区" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "The country or region where you live." -msgstr "您所居住的国家或地区。" - -#: lms/static/js/student_account/views/account_settings_factory.js -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Basic Account Information" -msgstr "基本账号信息" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "These settings include basic information about your account." -msgstr "这些设置包括您账号的基本信息。" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"The name that identifies you on {platform_name}. You cannot change your " -"username." -msgstr "您在{platform_name}上的名字,用户名无法更改。" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Check your email account for instructions to reset your password." -msgstr "查看邮箱中的重置密码指引。" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"The language used throughout this site. This site is currently available in " -"a limited number of languages. Changing the value of this field will cause " -"the page to refresh." -msgstr "本站所使用的语言,暂时只支持部分语言,更改此字段的值会导致页面刷新。" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Time Zone" -msgstr "时区" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"Select the time zone for displaying course dates. If you do not specify a " -"time zone, course dates, including assignment deadlines, will be displayed " -"in your browser's local time zone." -msgstr "请选择用于显示课程日期的时区。如果您不设置时区,那么如作业截止日期等课程日期信息将根据您浏览器的本地时区显示。" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "All Time Zones" -msgstr "所有时区" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Default (Local Time Zone)" -msgstr "默认 (本地时区)" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Additional Information" -msgstr "其他信息" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Education Completed" -msgstr "教育程度" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Gender" -msgstr "性别" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Year of Birth" -msgstr "出生年份" - -#: lms/static/js/student_account/views/account_settings_factory.js -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Preferred Language" -msgstr "首选语言" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Social Media Links" -msgstr "社交媒体链接" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"Optionally, link your personal accounts to the social media icons on your " -"EliteMBA profile." -msgstr "您可以选择将个人社交媒体的链接图标放到您的EliteMBA个人资料中。" - -#: lms/static/js/student_account/views/account_settings_factory.js -#, javascript-format -msgid "" -"Enter your %s username or the URL to your %s page. Delete the URL to remove " -"the link." -msgstr "输入您的%s用户名或您的%s主页URL。删除URL以移除链接。" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid " Link" -msgstr "关联" - -#: lms/static/js/student_account/views/account_settings_factory.js -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Linked Accounts" -msgstr "关联的账号" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"You can link your social media accounts to simplify signing in to " -"{platform_name}." -msgstr "您可以关联您的社交媒体账号来登录{platform_name}。" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "ORDER NAME" -msgstr "订单名称" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "ORDER PLACED" -msgstr "订单" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "TOTAL" -msgstr "总计" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "ORDER NUMBER" -msgstr "订单号" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "My Orders" -msgstr "我的订单" - -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "" -"This page contains information about orders that you have placed with " -"{platform_name}." -msgstr "此页面包含您在{platform_name}所下的订单信息。" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "" -"We've sent a confirmation message to {new_email_address}. Click the link in " -"the message to update your email address." -msgstr "我们已会发送一个验证讯息至 {new_email_address}。点击讯息中的链接以更新您的电子邮件信箱。" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "" -"You must sign out and sign back in before your language changes take effect." -msgstr "语言设置将在您重新登录后生效" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "" -"We've sent a message to {email}. Click the link in the message to reset your" -" password. Didn't receive the message? Contact {anchorStart}technical " -"support{anchorEnd}." -msgstr "" -"密码重置邮件已发送至{email},请点击邮件中的链接来重置密码,如未收到邮件,请联系{anchorStart}技术支持{anchorEnd}。" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Link your {accountName} account" -msgstr "关联您的{accountName}账号" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Unlink This Account" -msgstr "解绑此账号" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "" -"You can use your {accountName} account to sign in to your {platformName} " -"account." -msgstr "您可以使用您的{accountName}账号来登录您的{platformName}账号。" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Unlink your {accountName} account" -msgstr "解绑您的{accountName}账号" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Link Your Account" -msgstr "关联您的账号" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "" -"Link your {accountName} account to your {platformName} account and use " -"{accountName} to sign in to {platformName}." -msgstr "" -"把您的{accountName}账号与您的{platformName}账号相关联,并使用{accountName}登录{platformName}。" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Unlinking" -msgstr "解绑中" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Linking" -msgstr "关联中" - -#: lms/static/js/student_account/views/account_settings_fields.js -msgid "Successfully unlinked." -msgstr "解绑成功。" - -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Account Information" -msgstr "账号信息" - -#: lms/static/js/student_account/views/account_settings_view.js -msgid "Order History" -msgstr "订单记录" - -#: lms/static/js/verify_student/views/image_input_view.js -msgid "Image Upload Error" -msgstr "图片上传错误" - -#: lms/static/js/verify_student/views/image_input_view.js -msgid "Please verify that you have uploaded a valid image (PNG and JPEG)." -msgstr "请验证您已上传了一张有效的图片(PNG或JPEG格式)。" - -#: lms/static/js/verify_student/views/incourse_reverify_view.js -#: lms/static/js/verify_student/views/review_photos_step_view.js -msgid "An error has occurred. Please try again later." -msgstr "发生了一个错误,请稍后重试。" - -#: lms/static/js/verify_student/views/incourse_reverify_view.js -#: lms/static/js/verify_student/views/review_photos_step_view.js -msgid "Could not submit photos" -msgstr "照片提交失败" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Professional Education Verified Certificate" -msgstr "专业教育认证证书" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Professional Education" -msgstr "专业教育" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Verified Certificate upgrade" -msgstr "认证证书升级" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Verified Certificate" -msgstr "认证证书" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Checkout" -msgstr "付款" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Checkout with PayPal" -msgstr "使用PayPal付款" - -#. Translators: 'processor' is the name of a third-party payment processing -#. vendor (example: "PayPal") -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Checkout with {processor}" -msgstr "使用{processor}付款" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "All payment options are currently unavailable." -msgstr "所有的付款方式目前不可用。" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Try the transaction again in a few minutes." -msgstr "请等待几分钟后再尝试。" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmarks_list.js -msgid "An error has occurred. Please try again." -msgstr "发生了一个未知错误,请重试。" - -#: lms/static/js/verify_student/views/make_payment_step_view.js -msgid "Could not submit order" -msgstr "订单提交失败" - -#: lms/static/js/verify_student/views/payment_confirmation_step_view.js -msgid "Could not retrieve payment information" -msgstr "无法读取支付信息" - -#: lms/static/js/verify_student/views/reverify_view.js -msgid "Take a photo of your ID" -msgstr "拍摄一张您的身份证件的照片" - -#: lms/static/js/verify_student/views/reverify_view.js -msgid "Review your info" -msgstr "审核您的信息" - -#: lms/static/js/verify_student/views/step_view.js -msgid "An error has occurred. Please try reloading the page." -msgstr "发生了一个错误。请重新加载这个页面。" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Video Capture Error" -msgstr "视频捕获失败" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "" -"Please verify that your webcam is connected and that you have allowed your " -"browser to access it." -msgstr "请检查您的摄像头已连接并且允许浏览器使用它。" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "No Webcam Detected" -msgstr "没有检测到摄像头" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "You don't seem to have a webcam connected." -msgstr "您似乎没有连接一个摄像头。" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Double-check that your webcam is connected and working to continue." -msgstr "继续前请再次确认您的摄像头已经连接并且可以正常使用。" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "Photo Captured successfully." -msgstr "照片获取成功!" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "No Flash Detected" -msgstr "没有发现Flash" - -#: lms/static/js/verify_student/views/webcam_photo_view.js -msgid "" -"You don't seem to have Flash installed. Get Flash to continue your " -"verification." -msgstr "您似乎并未安装Flash软件。为能继续进行认证,请安装Flash。" - -#: lms/static/js/views/fields.js -msgid "Editable" -msgstr "可编辑" - -#: lms/static/js/views/fields.js -msgid "Validation Error" -msgstr "验证错误" - -#: lms/static/js/views/fields.js -msgid "In Progress" -msgstr "正在进行中" - -#: lms/static/js/views/fields.js -msgid "Placeholder" -msgstr "占位符" - -#: lms/static/js/views/file_uploader.js -msgid "Your upload of '{file}' succeeded." -msgstr "您的文件'{file}'上传成功。" - -#: lms/static/js/views/file_uploader.js -msgid "Your upload of '{file}' failed." -msgstr "您的文件'{file}'上传失败。" - -#: lms/static/js/views/image_field.js -msgid "Upload an image" -msgstr "上传图片" - -#: lms/static/js/views/image_field.js -msgid "Change image" -msgstr "修改图片" - -#: lms/static/js/views/image_field.js -msgid "Image" -msgstr "图像" - -#: lms/static/js/views/image_field.js -msgid "An error has occurred. Refresh the page, and then try again." -msgstr "发生了一个错误,请刷新页面后重试。" - -#: lms/static/js/views/image_field.js -msgid "The file must be at least {size} in size." -msgstr "文件必须大于 {size}" - -#: lms/static/js/views/image_field.js -msgid "The file must be smaller than {size} in size." -msgstr "文件必须小于 {size} " - -#: lms/static/js/views/image_field.js -msgid "" -"Upload is in progress. To avoid errors, stay on this page until the process " -"is complete." -msgstr "正在上传。为避免发生错误,在上传完成前请不要离开本页。" - -#: lms/static/js/views/image_field.js -msgid "" -"Removal is in progress. To avoid errors, stay on this page until the process" -" is complete." -msgstr "正在移除。为避免发生错误,在上传完成前请不要离开本页。" - -#: lms/static/js/views/image_field.js -msgid "bytes" -msgstr "字节" - -#: lms/static/js/views/image_field.js -msgid "KB" -msgstr "KB" - -#: lms/static/js/views/image_field.js -msgid "MB" -msgstr "MB" - -#: lms/static/js/writable_gradebook.js -msgid "Total" -msgstr "总计" - -#: lms/static/js/writable_gradebook.js -msgid "The Assignment name is:" -msgstr "任务名称为:" - -#: lms/static/js/writable_gradebook.js -msgid "Publish grades" -msgstr "发布成绩" - -#: lms/static/js/writable_gradebook.js -msgid "No matching records found" -msgstr "找不到匹配记录" - -#: lms/static/js/writable_gradebook.js -msgid "Student Name" -msgstr "学生姓名" - -#: lms/static/js/writable_gradebook.js -msgid "There are no student grades to adjust." -msgstr "无可调整学生成绩" - -#: lms/static/js/writable_gradebook.js -msgid "Update in progress, please wait..." -msgstr "正在更新,请稍等" - -#: lms/static/lms/js/preview/preview_factory.js -msgid "Course is not yet visible to students." -msgstr "该课程尚未对学生公开" - -#: lms/static/lms/js/preview/preview_factory.js -msgid "" -"You cannot view the course as a student or beta tester before the course " -"release date." -msgstr "在此课程公开之前,您无法以学生或测试者身份查看该课程。" - -#: lms/templates/class_dashboard/d3_stacked_bar_graph.js -msgid "%(num_students)s student opened Subsection" -msgid_plural "%(num_students)s students opened Subsection" -msgstr[0] "%(num_students)s 个学生已打开分项" - -#: lms/templates/class_dashboard/d3_stacked_bar_graph.js -msgid "%(num_students)s student" -msgid_plural "%(num_students)s students" -msgstr[0] "%(num_students)s 个学生" - -#: lms/templates/class_dashboard/d3_stacked_bar_graph.js -msgid "%(num_questions)s question" -msgid_plural "%(num_questions)s questions" -msgstr[0] "%(num_questions)s 个问题" - -#: lms/templates/class_dashboard/d3_stacked_bar_graph.js -msgid "Number of Students" -msgstr "学生数目" - -#: lms/templates/courseware/progress_graph.js -msgid "Overall Score" -msgstr "总成绩" - -#: openedx/features/course_bookmarks/static/course_bookmarks/js/views/bookmark_button.js -msgid "Bookmark this page" -msgstr "收藏此页" - -#: openedx/features/course_experience/static/course_experience/js/CourseGoals.js -msgid "Thank you for setting your course goal to {goal}!" -msgstr "感谢您将课程目标定为{goal}!" - -#: openedx/features/course_experience/static/course_experience/js/CourseHome.js -msgid "You have successfully updated your goal." -msgstr "您已成功更新目标。" - -#: openedx/features/course_experience/static/course_experience/js/CourseHome.js -msgid "There was an error updating your goal." -msgstr "更新目标时出错。" - -#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js -msgid "Expand All" -msgstr "展开全部" - -#: openedx/features/course_experience/static/course_experience/js/CourseOutline.js -msgid "Collapse All" -msgstr "全部折叠" - -#: openedx/features/course_search/static/course_search/js/views/search_results_view.js -msgid "{total_results} result" -msgid_plural "{total_results} results" -msgstr[0] "{total_results} 结果" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Profile Visibility:" -msgstr "账号资料可见:" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Limited Profile" -msgstr "部分资料" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Full Profile" -msgstr "全部资料" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Joined" -msgstr "已加入" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Joined Date" -msgstr "加入日期" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Location" -msgstr "位置" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Add Country" -msgstr "添加国家" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "Add language" -msgstr "添加语言" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "About me" -msgstr "个人资料" - -#: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js -msgid "" -"Tell other learners a little about yourself: where you live, what your " -"interests are, why you're taking courses, or what you hope to learn." -msgstr "向其他用户简单介绍下您自己:如居住地、兴趣爱好、为什么选择这些课程,及您希望学习哪方面的知识。" - -#: openedx/features/learner_profile/static/learner_profile/js/views/badge_list_container.js -msgid "Accomplishments Pagination" -msgstr "成绩分页" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js -msgid "Account Settings page." -msgstr "账号设置" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js -msgid "" -"You must specify your birth year before you can share your full profile. To " -"specify your birth year, go to the {account_settings_page_link}" -msgstr "您必须填写出生年份才能分享完整资料。点击 {account_settings_page_link} 填写" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js -msgid "" -"You must be over 13 to share a full profile. If you are over 13, make sure " -"that you have specified a birth year on the {account_settings_page_link}" -msgstr "" -"13岁以上的用户才能分享完整资料。如果您在13岁以上,请确认已在 {account_settings_page_link} 页面中填写了出生年份。" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js -msgid "Profile Image" -msgstr "资料照片" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_fields.js -msgid "Profile image for {username}" -msgstr "{username} 的头像" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_view.js -msgid "About Me" -msgstr "个人资料" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_view.js -msgid "Accomplishments" -msgstr "成绩" - -#: openedx/features/learner_profile/static/learner_profile/js/views/learner_profile_view.js -msgid "Profile" -msgstr "个人主页" - -#: themes/normal-theme/lms/static/js/binding.js -#, javascript-format -msgid "%s s" -msgstr "%s秒" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Get the verification code" -msgstr "获取验证码" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Cell phone number cannot be blanked" -msgstr "手机号码不能为空" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "incorrect cellphone number format" -msgstr "手机号码格式不正确" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Cellphone number binding successfully" -msgstr "手机号码绑定成功" diff --git a/conf/locale/zh_CN/LC_MESSAGES/djangojs-studio.po b/conf/locale/zh_CN/LC_MESSAGES/djangojs-studio.po deleted file mode 100644 index 997708c3d744..000000000000 --- a/conf/locale/zh_CN/LC_MESSAGES/djangojs-studio.po +++ /dev/null @@ -1,1432 +0,0 @@ -# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). -# Copyright (C) 2019 EdX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -# Translators: -# li ying , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-11 02:18+0000\n" -"PO-Revision-Date: 2018-11-26 07:56+0000\n" -"Last-Translator: li ying , 2019\n" -"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: cms/static/cms/js/main.js cms/static/js/views/active_video_upload_list.js -#: cms/static/js/views/video_transcripts.js -msgid "" -"This may be happening because of an error with our server or your internet " -"connection. Try refreshing the page or making sure you are online." -msgstr "此问题可能是由于服务器故障或您的网络连接错误导致的。请刷新网页或检查网络连接。" - -#: cms/static/cms/js/main.js -msgid "Studio's having trouble saving your work" -msgstr "保存时遇到问题" - -#: cms/static/cms/js/xblock/cms.runtime.v1.js -msgid "OpenAssessment Save Error" -msgstr "保存开放评估时出现错误" - -#: cms/static/js/base.js -msgid "This link will open in a new browser window/tab" -msgstr "该链接将在新浏览器窗口/标签页中打开" - -#: cms/static/js/base.js -msgid "This link will open in a modal window" -msgstr "将在模式窗口中打开此链接" - -#: cms/static/js/certificates/collections/certificates.js -msgid "Could not parse certificate JSON. %(message)s" -msgstr "无法解析证书JSON. %(message)s" - -#: cms/static/js/certificates/models/certificate.js -msgid "Certificate name is required." -msgstr "证书名必须填写。" - -#: cms/static/js/certificates/models/certificate.js -msgid "Signatory field(s) has invalid data." -msgstr "印章输入框(s)无效的数据。" - -#: cms/static/js/certificates/views/certificate_details.js -msgid "Edit this certificate?" -msgstr "编辑此证书?" - -#: cms/static/js/certificates/views/certificate_details.js -msgid "" -"This certificate has already been activated and is live. Are you sure you " -"want to continue editing?" -msgstr "这个证书已经被激活并且正被使用。您确认要继续编辑么?" - -#: cms/static/js/certificates/views/certificate_details.js -msgid "Yes, allow edits to the active Certificate" -msgstr "是的,允许编辑激活的证书" - -#. Translators: This field pertains to the custom label for a certificate. -#. Translators: this refers to a collection of certificates. -#: cms/static/js/certificates/views/certificate_item.js -#: cms/static/js/certificates/views/certificates_list.js -msgid "certificate" -msgstr "证书" - -#: cms/static/js/certificates/views/certificates_list.js -msgid "Set up your certificate" -msgstr "设置您的证书" - -#. Translators: This line refers to the initial state of the form when no data -#. has been inserted -#: cms/static/js/certificates/views/certificates_list.js -msgid "You have not created any certificates yet." -msgstr "您还没有创建任何证书。" - -#: cms/static/js/certificates/views/signatory_editor.js -msgid "Delete \"<%= signatoryName %>\" from the list of signatories?" -msgstr "确定要从签章列表中删除 \"<%= signatoryName %>\" 吗?" - -#: cms/static/js/certificates/views/signatory_editor.js -#: cms/static/js/views/course_info_update.js -msgid "This action cannot be undone." -msgstr "这个动作无法取消。" - -#: cms/static/js/certificates/views/signatory_editor.js -#: cms/static/js/views/course_info_update.js cms/static/js/views/list_item.js -#: cms/static/js/views/show_textbook.js cms/static/js/views/tabs.js -#: cms/static/js/views/utils/xblock_utils.js -msgid "Deleting" -msgstr "正在删除" - -#: cms/static/js/certificates/views/signatory_editor.js -msgid "Upload signature image." -msgstr "上传签名图片。" - -#: cms/static/js/certificates/views/signatory_editor.js -msgid "Image must be in PNG format." -msgstr "图像必须是PNG格式" - -#: cms/static/js/collections/group.js -#, javascript-format -msgid "Group %s" -msgstr "%s组" - -#. Translators: Dictionary used for creation ids that are used in -#. default group names. For example: A, B, AA in Group A, -#. Group B, ..., Group AA, etc. -#: cms/static/js/collections/group.js -msgid "ABCDEFGHIJKLMNOPQRSTUVWXYZ" -msgstr "ABCDEFGHIJKLMNOPQRSTUVWXYZ" - -#: cms/static/js/factories/export.js -msgid "Your export has failed." -msgstr "您的导出失败了。" - -#: cms/static/js/factories/manage_users.js -msgid "Already a course team member" -msgstr "已经是课程团队成员" - -#: cms/static/js/factories/manage_users.js -msgid "" -"Are you sure you want to delete {email} from the course team for " -"“{container}”?" -msgstr "您确定要从“{container}”的课程团队中删除{email}?" - -#: cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users_lib.js -msgid "Staff" -msgstr "教员" - -#: cms/static/js/factories/manage_users.js -#: cms/static/js/factories/manage_users_lib.js -msgid "Admin" -msgstr "管理员" - -#: cms/static/js/factories/manage_users_lib.js -msgid "Already a library team member" -msgstr "已经是知识库团队成员" - -#: cms/static/js/factories/manage_users_lib.js -msgid "" -"Are you sure you want to delete {email} from the library “{container}”?" -msgstr "您确定要从知识库“{container}”中删除{email}?" - -#: cms/static/js/factories/manage_users_lib.js -msgid "Library User" -msgstr "知识库用户" - -#: cms/static/js/factories/settings_advanced.js -msgid "Hide Deprecated Settings" -msgstr "隐藏已过时的设置" - -#: cms/static/js/factories/settings_advanced.js -msgid "Show Deprecated Settings" -msgstr "显示已过时的设置" - -#: cms/static/js/factories/textbooks.js -#: cms/static/js/views/pages/group_configurations.js -msgid "You have unsaved changes. Do you really want to leave this page?" -msgstr "您尚有未保存的修改,确定要离此页面吗?" - -#: cms/static/js/features/import/factories/import.js -msgid "There was an error during the upload process." -msgstr "上传过程中出现错误。" - -#: cms/static/js/features/import/factories/import.js -msgid "There was an error while unpacking the file." -msgstr "解压文件时出错。" - -#: cms/static/js/features/import/factories/import.js -msgid "There was an error while verifying the file you submitted." -msgstr "验证上传文件时出现错误" - -#: cms/static/js/features/import/factories/import.js -msgid "Choose new file" -msgstr "选择文件" - -#: cms/static/js/features/import/factories/import.js -msgid "" -"File format not supported. Please upload a file with a {ext} extension." -msgstr "文件格式不支持。请上传扩展名为{ext}的文件。" - -#: cms/static/js/features/import/factories/import.js -msgid "There was an error while importing the new library to our database." -msgstr "上传新文库至数据库时出现错误。" - -#: cms/static/js/features/import/factories/import.js -msgid "There was an error while importing the new course to our database." -msgstr "导入新课程到数据库时出错。" - -#: cms/static/js/features/import/factories/import.js -msgid "Your import has failed." -msgstr "导入失败" - -#: cms/static/js/features/import/views/import.js -msgid "Your import is in progress; navigating away will abort it." -msgstr "正在导入,离开将导致此过程中止。" - -#: cms/static/js/features/import/views/import.js -msgid "Error importing course" -msgstr "导入课程时出错" - -#: cms/static/js/features/import/views/import.js -msgid "There was an error with the upload" -msgstr "文件上传错误" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -msgid "Organization:" -msgstr "机构:" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -msgid "Course Number:" -msgstr "课程代码:" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -msgid "Course Run:" -msgstr "开课时间:" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -msgid "(Read-only)" -msgstr "(只读)" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -msgid "Re-run Course" -msgstr "重新开课" - -#: cms/static/js/features_jsx/studio/CourseOrLibraryListing.jsx -msgid "View Live" -msgstr "在线查看" - -#: cms/static/js/maintenance/force_publish_course.js -msgid "Internal Server Error." -msgstr "内部服务器错误" - -#. Translators: This is the status of a video upload that is queued -#. waiting for other uploads to complete -#: cms/static/js/models/active_video_upload.js -msgid "Queued" -msgstr "已排队" - -#. Translators: This is the status of a video upload that has -#. completed successfully -#: cms/static/js/models/active_video_upload.js -msgid "Upload completed" -msgstr "上传完成" - -#. Translators: This is the status of a video upload that has failed -#: cms/static/js/models/active_video_upload.js -msgid "Upload failed" -msgstr "上传失败" - -#: cms/static/js/models/chapter.js -msgid "Chapter name and asset_path are both required" -msgstr "需提供章节名称及资源路径" - -#: cms/static/js/models/chapter.js -msgid "Chapter name is required" -msgstr "请输入章节名称" - -#: cms/static/js/models/chapter.js -msgid "asset_path is required" -msgstr "请输入资源路径" - -#: cms/static/js/models/course.js cms/static/js/models/section.js -msgid "You must specify a name" -msgstr "您需指定一个名称" - -#: cms/static/js/models/course_update.js -msgid "Action required: Enter a valid date." -msgstr "需要采取的行动:输入一个有效的日期" - -#: cms/static/js/models/group.js -msgid "Group name is required" -msgstr "组名称是必需的" - -#: cms/static/js/models/group_configuration.js -msgid "Group A" -msgstr "A 组" - -#: cms/static/js/models/group_configuration.js -msgid "Group B" -msgstr "B 组" - -#: cms/static/js/models/group_configuration.js -msgid "Group Configuration name is required." -msgstr "组配置名称是必需的。" - -#: cms/static/js/models/group_configuration.js -msgid "There must be at least one group." -msgstr "必须至少有一个组。" - -#: cms/static/js/models/group_configuration.js -msgid "All groups must have a name." -msgstr "所有组都必须有名称。" - -#: cms/static/js/models/group_configuration.js -msgid "All groups must have a unique name." -msgstr "所有的组的名字必须是唯一的。" - -#: cms/static/js/models/settings/course_details.js -msgid "The course must have an assigned start date." -msgstr "课程必须指定开始日期。" - -#: cms/static/js/models/settings/course_details.js -msgid "The course end date must be later than the course start date." -msgstr "课程的结束日期必须晚于课程的开始日期。" - -#: cms/static/js/models/settings/course_details.js -msgid "The course start date must be later than the enrollment start date." -msgstr "课程的开始日期必须晚于课程的注册日期。" - -#: cms/static/js/models/settings/course_details.js -msgid "The enrollment start date cannot be after the enrollment end date." -msgstr "选课开始日期应该早于选课截止日期。" - -#: cms/static/js/models/settings/course_details.js -msgid "The enrollment end date cannot be after the course end date." -msgstr "选课截止日期应在课程结束日期之前。" - -#: cms/static/js/models/settings/course_details.js -msgid "The certificate available date must be later than the course end date." -msgstr "课程结束日期须早于证书有效期。" - -#: cms/static/js/models/settings/course_details.js -msgid "Key should only contain letters, numbers, _, or -" -msgstr "关键字只能包含字母、数字、下划线和连字符。" - -#: cms/static/js/models/settings/course_details.js -msgid "Please enter an integer between %(min)s and %(max)s." -msgstr "请输入一个 %(min)s 到 %(max)s 之间的整数。" - -#: cms/static/js/models/settings/course_grader.js -msgid "The assignment type must have a name." -msgstr "必须对作业类型命名。" - -#: cms/static/js/models/settings/course_grader.js -msgid "There's already another assignment type with this name." -msgstr "已经有另一个作业类型使用了这个名字。" - -#: cms/static/js/models/settings/course_grader.js -msgid "Please enter an integer between 0 and 100." -msgstr "请输入一个0到100之间的整数。" - -#: cms/static/js/models/settings/course_grader.js -msgid "Please enter an integer greater than 0." -msgstr "请输入一个大于0的整数。" - -#: cms/static/js/models/settings/course_grader.js -msgid "Please enter non-negative integer." -msgstr "请输入非负整数。" - -#: cms/static/js/models/settings/course_grader.js -msgid "Cannot drop more <%= types %> assignments than are assigned." -msgstr "不能删除更多的 <%= types %> 以至于超过分配的数量" - -#: cms/static/js/models/settings/course_grading_policy.js -msgid "Grace period must be specified in HH:MM format." -msgstr "宽限时间必须以 HH:MM 格式设定。" - -#: cms/static/js/models/settings/course_grading_policy.js -msgid "Not able to set passing grade to less than %(minimum_grade_cutoff)s%." -msgstr "及格分数不能低于%(minimum_grade_cutoff)s%。" - -#: cms/static/js/models/textbook.js -msgid "Textbook name is required" -msgstr "教材名称必填" - -#: cms/static/js/models/textbook.js -msgid "Please add at least one chapter" -msgstr "请至少添加一个章节" - -#: cms/static/js/models/textbook.js -msgid "All chapters must have a name and asset" -msgstr "所有章节都必须拥有名称和内容" - -#: cms/static/js/models/uploads.js -msgid "" -"Only <%= fileTypes %> files can be uploaded. Please select a file ending in " -"<%= fileExtensions %> to upload." -msgstr "只能上传<%= fileTypes %>类型的文件。请上传扩展名为<%= fileExtensions %>的文件。" - -#: cms/static/js/models/uploads.js -msgid "or" -msgstr "或" - -#: cms/static/js/models/xblock_validation.js -msgid "This unit has validation issues." -msgstr "此单元含验证问题。" - -#: cms/static/js/models/xblock_validation.js -msgid "This component has validation issues." -msgstr "此组件含验证问题。" - -#: cms/static/js/views/active_video_upload.js cms/static/js/views/assets.js -msgid "Your file could not be uploaded" -msgstr "您的文件无法上传。" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Upload Videos" -msgstr "上传视频" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Drag and drop or {spanStart}browse your computer{spanEnd}." -msgstr "把文件拖动文件至此,或{spanStart}选择文件{spanEnd}" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Maximum file size: {maxFileSize} GB" -msgstr "文件容量限制:{maxFileSize} GB" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Supported file types: {supportedVideoTypes}" -msgstr "允许的文件类型:{supportedVideoTypes}" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Your video uploads are not complete." -msgstr "您的视频还没有上传完成。" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Upload completed for video {fileName}" -msgstr "视频{fileName}上传成功" - -#: cms/static/js/views/active_video_upload_list.js -#: cms/static/js/views/active_video_upload_list.js -msgid "Upload failed for video {fileName}" -msgstr "视频{fileName}上传失败" - -#: cms/static/js/views/active_video_upload_list.js -msgid "" -"{filename} is not in a supported file format. Supported file formats are " -"{supportedFileFormats}." -msgstr "文件{filename}的格式不被支持。支持的文件格式:{supportedFileFormats}。" - -#: cms/static/js/views/active_video_upload_list.js -msgid "{filename} exceeds maximum size of {maxFileSizeInGB} GB." -msgstr "文件{filename}的容量超出限制。(限制容量为{maxFileSizeInGB}。)" - -#: cms/static/js/views/active_video_upload_list.js -msgid ": video upload complete." -msgstr "视频上传成功" - -#: cms/static/js/views/active_video_upload_list.js -msgid "Previous Uploads table has been updated." -msgstr "完成上传任务清单已更新。" - -#: cms/static/js/views/asset.js -msgid "Delete File Confirmation" -msgstr "删除文件确认" - -#: cms/static/js/views/asset.js -msgid "" -"Are you sure you wish to delete this item. It cannot be reversed!\n" -"\n" -"Also any content that links/refers to this item will no longer work (e.g. broken images and/or links)" -msgstr "" -"删除的项目不能恢复!您确定要删除这个项目吗?\n" -"\n" -"\n" -"与这个项目相关的一切信息(如相应的图片和链接)都会丢失。" - -#: cms/static/js/views/asset.js -msgid "Your file has been deleted." -msgstr "您的文件已经被删除" - -#: cms/static/js/views/assets.js -msgid "Date Added" -msgstr "添加日期" - -#: cms/static/js/views/assets.js -msgid "Type" -msgstr "类型" - -#: cms/static/js/views/assets.js -msgid "File {filename} exceeds maximum size of {maxFileSizeInMBs} MB" -msgstr "文件 {filename} 的大小超过了 {maxFileSizeInMBs} MB 的限制" - -#: cms/static/js/views/assets.js -msgid "" -"Please follow the instructions here to upload a file elsewhere and link to " -"it: {maxFileSizeRedirectUrl}" -msgstr "请按照这里({maxFileSizeRedirectUrl})的说明上传文件到别处后链接到该文件。" - -#: cms/static/js/views/assets.js -msgid "Max file size exceeded" -msgstr "文件大小超出限制" - -#: cms/static/js/views/assets.js cms/static/js/views/assets.js -msgid "Upload New File" -msgstr "上传新文件" - -#: cms/static/js/views/assets.js cms/static/js/views/assets.js -msgid "Load Another File" -msgstr "加载其他文件" - -#: cms/static/js/views/components/add_xblock.js -#: cms/static/js/views/utils/xblock_utils.js -msgid "Adding" -msgstr "正在添加" - -#: cms/static/js/views/course_info_update.js -msgid "Are you sure you want to delete this update?" -msgstr "您确定要删除此更新吗?" - -#: cms/static/js/views/course_rerun.js -msgid "Create Re-run" -msgstr "创建重启" - -#: cms/static/js/views/course_rerun.js -msgid "Processing Re-run Request" -msgstr "正在处理重启请求" - -#: cms/static/js/views/course_video_settings.js -msgid "An error has occurred. Wait a few minutes, and then try again." -msgstr "发生了一个错误,请稍后尝试。" - -#: cms/static/js/views/course_video_settings.js -msgid "Select turnaround" -msgstr "选择转换" - -#: cms/static/js/views/course_video_settings.js -msgid "Select fidelity" -msgstr "选择保真度" - -#: cms/static/js/views/course_video_settings.js -#: cms/static/js/views/course_video_settings.js -msgid "Select language" -msgstr "选择语言" - -#: cms/static/js/views/course_video_settings.js -msgid "Press Remove to remove language" -msgstr "按移除键去除语言" - -#: cms/static/js/views/course_video_settings.js -msgid "Settings updated" -msgstr "设置已更新" - -#: cms/static/js/views/course_video_settings.js -msgid "Last updated" -msgstr "最后更新" - -#: cms/static/js/views/course_video_settings.js -msgid "Required" -msgstr "必要的" - -#: cms/static/js/views/course_video_settings.js -msgid "Automatic transcripts are disabled." -msgstr "自动脚本已禁用。" - -#: cms/static/js/views/course_video_settings.js -msgid "{selectedProvider} credentials saved" -msgstr "{selectedProvider} 证书已保存" - -#: cms/static/js/views/edit_chapter.js -msgid "Upload a new PDF to “<%= name %>”" -msgstr "上传新的PDF文件至 “<%= name %>”" - -#: cms/static/js/views/edit_chapter.js -msgid "Please select a PDF file to upload." -msgstr "请选择PDF文件上传" - -#: cms/static/js/views/export.js -msgid "There has been an error while exporting." -msgstr "导出时出错了。" - -#: cms/static/js/views/export.js -msgid "" -"There has been a failure to export to XML at least one component. It is " -"recommended that you go to the edit page and repair the error before " -"attempting another export. Please check that all components on the page are " -"valid and do not display any error messages." -msgstr "" -"至少有一个组件在导出到XML时失败了。在尝试重新导出之前,建议您先去编辑页面并修复错误。请检查并确认这个页面上的所有的组件都有效,而且没有显示任何错误信息。" - -#: cms/static/js/views/export.js -msgid "Correct failed component" -msgstr "纠正失败的组件" - -#: cms/static/js/views/export.js -msgid "Return to Export" -msgstr "返回至导出页面" - -#: cms/static/js/views/export.js -msgid "" -"Your library could not be exported to XML. There is not enough information " -"to identify the failed component. Inspect your library to identify any " -"problematic components and try again." -msgstr "您的知识库无法导出至XML。暂时没有足够的信息来定位失败的组件,请检查您的知识库以定位任何可能有问题的组件,然后重试。" - -#: cms/static/js/views/export.js -msgid "Take me to the main library page" -msgstr "跳转至知识库主页" - -#: cms/static/js/views/export.js -msgid "" -"Your course could not be exported to XML. There is not enough information to" -" identify the failed component. Inspect your course to identify any " -"problematic components and try again." -msgstr "您的课程无法导出至XML。暂时没有足够的信息来定位失败的组件,请检查您的课程以定位任何可能有问题的组件,然后重试。" - -#: cms/static/js/views/export.js -msgid "Take me to the main course page" -msgstr "跳转至课程主页" - -#: cms/static/js/views/export.js -msgid "The raw error message is:" -msgstr "原始的错误信息是:" - -#: cms/static/js/views/export.js -msgid "There has been an error with your export." -msgstr "导出时发生了错误。" - -#. Translators: 'count' is number of groups that the group -#. configuration contains. -#: cms/static/js/views/group_configuration_details.js -msgid "Contains {count} group" -msgid_plural "Contains {count} groups" -msgstr[0] "包含 {count} 组" - -#: cms/static/js/views/group_configuration_details.js -#: cms/static/js/views/partition_group_details.js -msgid "Not in Use" -msgstr "未使用" - -#. Translators: 'count' is number of units that the group -#. configuration is used in. -#. Translators: 'count' is number of locations that the group -#. configuration is used in. -#: cms/static/js/views/group_configuration_details.js -#: cms/static/js/views/partition_group_details.js -msgid "Used in {count} location" -msgid_plural "Used in {count} locations" -msgstr[0] "在 {count} 个位置使用" - -#. Translators: this refers to a collection of groups. -#: cms/static/js/views/group_configuration_item.js -#: cms/static/js/views/group_configurations_list.js -msgid "group configuration" -msgstr "组配置" - -#: cms/static/js/views/group_configurations_list.js -msgid "Add your first group configuration" -msgstr "添加您的第一个组配置" - -#: cms/static/js/views/group_configurations_list.js -msgid "You have not created any group configurations yet." -msgstr "您还没有创建任何组配置。" - -#: cms/static/js/views/instructor_info.js -msgid "Upload instructor image." -msgstr "上传教师的照片" - -#: cms/static/js/views/instructor_info.js cms/static/js/views/settings/main.js -msgid "Files must be in JPEG or PNG format." -msgstr "文件必须是JPEG或者PNG格式。" - -#: cms/static/js/views/license.js -msgid "All Rights Reserved" -msgstr "保留所有权利" - -#: cms/static/js/views/license.js -msgid "You reserve all rights for your work" -msgstr "您拥有对您作品的所有使用权。" - -#: cms/static/js/views/license.js -msgid "Creative Commons" -msgstr "知识共享" - -#: cms/static/js/views/license.js -msgid "You waive some rights for your work, such that others can use it too" -msgstr "您需要对您所做的贡献放弃部分权利,例如他人也可以使用您的成果" - -#: cms/static/js/views/license.js -msgid "Version" -msgstr "版本" - -#: cms/static/js/views/license.js -msgid "Attribution" -msgstr "署名" - -#: cms/static/js/views/license.js -msgid "" -"Allow others to copy, distribute, display and perform your copyrighted work " -"but only if they give credit the way you request. Currently, this option is " -"required." -msgstr "请按照您指定的方式获取许可,允许他人复制、发行、演示及使用您拥有版权的作品。当前,该选项为必选项。" - -#: cms/static/js/views/license.js -msgid "Noncommercial" -msgstr "非商业的" - -#: cms/static/js/views/license.js -msgid "" -"Allow others to copy, distribute, display and perform your work - and " -"derivative works based upon it - but for noncommercial purposes only." -msgstr "您允许他人对自己享有著作权的作品及衍生作品进行复制、发行、展览、表演,但仅可用于非商业用途。" - -#: cms/static/js/views/license.js -msgid "No Derivatives" -msgstr "禁止改作" - -#: cms/static/js/views/license.js -msgid "" -"Allow others to copy, distribute, display and perform only verbatim copies " -"of your work, not derivative works based upon it. This option is " -"incompatible with \"Share Alike\"." -msgstr "您允许他人对您的作品原封不动地进行复制、发行、展览、表演,但不得进行演绎创作。此选项与“相同方式共享”选项不兼容。" - -#: cms/static/js/views/license.js -msgid "Share Alike" -msgstr "相同方式共享" - -#: cms/static/js/views/license.js -msgid "" -"Allow others to distribute derivative works only under a license identical " -"to the license that governs your work. This option is incompatible with \"No" -" Derivatives\"." -msgstr "在遵守与本作品一致的授权条款的前提下,允许他人发行衍生作品。该选项不符合“禁止改作”的规定。" - -#. Translators: "item_display_name" is the name of the item to be deleted. -#: cms/static/js/views/list_item.js -msgid "Delete this %(item_display_name)s?" -msgstr "要删除该%(item_display_name)s吗?" - -#. Translators: "item_display_name" is the name of the item to be deleted. -#: cms/static/js/views/list_item.js -msgid "Deleting this %(item_display_name)s is permanent and cannot be undone." -msgstr "将永久删除该%(item_display_name)s,无法撤销。" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "There was an error changing the user's role" -msgstr "更改用户角色过程中出现错误" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "Error adding user" -msgstr "添加用户过程中出现错误" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "Error removing user" -msgstr "删除用户过程中出现错误" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "A valid email address is required" -msgstr "需要一个有效的电子邮件地址" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "You must enter a valid email address in order to add a new team member" -msgstr "您必须输入一个有效的电子邮件地址以便添加一个新的团队成员" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "Return and add email address" -msgstr "返回并添加电子邮件地址" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "Already a member" -msgstr "已经是成员了" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "" -"{email} is already on the {container} team. Recheck the email address if you" -" want to add a new member." -msgstr "{email}已在{container}团队中。如果您想添加新成员,请再次检查电子邮件地址。" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "Return to team listing" -msgstr "返回团队列表" - -#: cms/static/js/views/manage_users_and_roles.js -msgid "Are you sure you want to restrict {email} access to “{container}”?" -msgstr "您确定要限制{email}对“{container}”的访问?" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "{display_name} Settings" -msgstr "{display_name} 设置" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Publish {display_name}" -msgstr "发布 {display_name}" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Publish all unpublished changes for this {item}?" -msgstr "要发布此 {item} 中所有尚未发布的更改吗?" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Publish" -msgstr "发布" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Highlights for {display_name}" -msgstr "{display_name} 亮点" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Enable Weekly Highlight Emails" -msgstr "启用每周亮点邮件" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Enable" -msgstr "启用" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Not yet" -msgstr "未好" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "All Learners and Staff" -msgstr "所有学生与教员" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Basic" -msgstr "基本" - -#: cms/static/js/views/modals/course_outline_modals.js -msgid "Visibility" -msgstr "可见性" - -#. Translators: "title" is the name of the current component being edited. -#: cms/static/js/views/modals/edit_xblock.js -msgid "Editing: %(title)s" -msgstr "编辑:%(title)s" - -#: cms/static/js/views/modals/edit_xblock.js -msgid "Unit" -msgstr "单元" - -#: cms/static/js/views/modals/edit_xblock.js -msgid "Component" -msgstr "组件" - -#: cms/static/js/views/modals/move_xblock_modal.js -msgid "Move" -msgstr "移动" - -#: cms/static/js/views/modals/move_xblock_modal.js -msgid "Choose a location to move your component to" -msgstr "选择一个位置并将您的的组件移动至此" - -#: cms/static/js/views/modals/move_xblock_modal.js -msgid "Move: {displayName}" -msgstr "移动:{displayName}" - -#: cms/static/js/views/modals/validation_error_modal.js -msgid "Validation Error While Saving" -msgstr "在保存过程中出现验证错误" - -#: cms/static/js/views/modals/validation_error_modal.js -msgid "Undo Changes" -msgstr "撤销更改" - -#: cms/static/js/views/modals/validation_error_modal.js -msgid "Change Manually" -msgstr "手动更改" - -#: cms/static/js/views/move_xblock_list.js -msgid "Sections" -msgstr "章节" - -#: cms/static/js/views/move_xblock_list.js -msgid "Subsections" -msgstr "小节" - -#: cms/static/js/views/move_xblock_list.js -msgid "Units" -msgstr "单元" - -#: cms/static/js/views/move_xblock_list.js -msgid "Components" -msgstr "组件" - -#: cms/static/js/views/move_xblock_list.js -msgid "Groups" -msgstr "群组" - -#: cms/static/js/views/move_xblock_list.js -msgid "This {parentCategory} has no {childCategory}" -msgstr "{parentCategory}目录下无{childCategory}" - -#: cms/static/js/views/move_xblock_list.js -msgid "Course Outline" -msgstr "课程大纲" - -#: cms/static/js/views/paged_container.js -msgid "Date added" -msgstr "已添加日期" - -#. Translators: "title" is the name of the current component or unit being -#. edited. -#: cms/static/js/views/pages/container.js -msgid "Editing access for: %(title)s" -msgstr "编辑组件%(title)s路径" - -#: cms/static/js/views/pages/container_subviews.js -msgid "Publishing" -msgstr "正在发布" - -#: cms/static/js/views/pages/container_subviews.js -#: cms/static/js/views/pages/container_subviews.js -msgid "Discard Changes" -msgstr "放弃更改" - -#: cms/static/js/views/pages/container_subviews.js -msgid "" -"Are you sure you want to revert to the last published version of the unit? " -"You cannot undo this action." -msgstr "确定把本单元还原至上一版本吗?此操作不可撤销。" - -#: cms/static/js/views/pages/container_subviews.js -msgid "Discarding Changes" -msgstr "放弃更改" - -#: cms/static/js/views/pages/container_subviews.js -msgid "Hiding from Students" -msgstr "对学生隐藏" - -#: cms/static/js/views/pages/container_subviews.js -msgid "Explicitly Hiding from Students" -msgstr "对学生显示为不可见" - -#: cms/static/js/views/pages/container_subviews.js -msgid "Inheriting Student Visibility" -msgstr "继承学生可见性" - -#: cms/static/js/views/pages/container_subviews.js -#: cms/static/js/views/pages/container_subviews.js -msgid "Make Visible to Students" -msgstr "对学生可见" - -#: cms/static/js/views/pages/container_subviews.js -msgid "" -"If the unit was previously published and released to students, any changes " -"you made to the unit when it was hidden will now be visible to students. Do " -"you want to proceed?" -msgstr "如果本单元早前已发布并对学生可见,您在学生不可见期间所做更改现在将对学生可见。您还要继续吗?" - -#: cms/static/js/views/pages/container_subviews.js -msgid "Making Visible to Students" -msgstr "对学生可见" - -#: cms/static/js/views/pages/course_outline.js -msgid "Course Index" -msgstr "课程索引" - -#: cms/static/js/views/pages/course_outline.js -msgid "There were errors reindexing course." -msgstr "重建课程索引时出错了。" - -#: cms/static/js/views/pages/paged_container.js -msgid "Hide Previews" -msgstr "隐藏预览" - -#: cms/static/js/views/pages/paged_container.js -msgid "Show Previews" -msgstr "显示预览" - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added -#. ascending" -#: cms/static/js/views/paging_header.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, filtered by " -"{assetType}, sorted by {sortName} ascending" -msgstr "" -"以 {assetType} 过滤,按照 {sortName} 升序显示 {totalItemsCount} 中的 {currentItemRange} " - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, filtered by Images, sorted by Date Added -#. descending" -#: cms/static/js/views/paging_header.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, filtered by " -"{assetType}, sorted by {sortName} descending" -msgstr "" -"以 {assetType} 过滤,按照 {sortName} 降序显示 {totalItemsCount} 中的 {currentItemRange} " - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, sorted by Date Added ascending" -#: cms/static/js/views/paging_header.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " -"ascending" -msgstr "以 {sortName} 为升序显示 {totalItemsCount} 中的 {currentItemRange} " - -#. Translators: sample result: -#. "Showing 0-9 out of 25 total, sorted by Date Added descending" -#: cms/static/js/views/paging_header.js -msgid "" -"Showing {currentItemRange} out of {totalItemsCount}, sorted by {sortName} " -"descending" -msgstr "在 {totalItemsCount} 外显示 {currentItemRange},根据 {sortName} 降序进行分类" - -#. Translators: turns into "25 total" to be used in other sentences, e.g. -#. "Showing 0-9 out of 25 total". -#: cms/static/js/views/paging_header.js -msgid "{totalItems} total" -msgstr "总计{totalItems} " - -#. Translators: This refers to a content group that can be linked to a student -#. cohort. -#: cms/static/js/views/partition_group_item.js -#: cms/static/js/views/partition_group_list.js -msgid "content group" -msgstr "内容组" - -#: cms/static/js/views/partition_group_list.js -msgid "Add your first content group" -msgstr "添加您的第一个内容组" - -#: cms/static/js/views/partition_group_list.js -msgid "You have not created any content groups yet." -msgstr "您还没有创建任何内容组。" - -#: cms/static/js/views/previous_video_upload.js -msgid "Are you sure you want to remove this video from the list?" -msgstr "您确定要将此视频从列表中移除?" - -#: cms/static/js/views/previous_video_upload.js -msgid "" -"Removing a video from this list does not affect course content. Any content " -"that uses a previously uploaded video ID continues to display in the course." -msgstr "从此列表中移除一个视频不会影响课程内容。使用之前上传的视频 ID 的内容将会持续显示在课程中。" - -#: cms/static/js/views/settings/advanced.js -msgid "" -"Your changes will not take effect until you save your progress. Take care " -"with key and value formatting, as validation is not implemented." -msgstr "变更在保存之后生效。由于系统暂时不支持校验功能,请仔细检查策略键值对设置。" - -#: cms/static/js/views/settings/advanced.js -msgid "Your policy changes have been saved." -msgstr "您的策略变更已保存。" - -#: cms/static/js/views/settings/advanced.js -msgid "" -"No validation is performed on policy keys or value pairs. If you are having " -"difficulties, check your formatting." -msgstr "策略键或值对不执行任何验证。如果您有困难,请检查您的格式设置。" - -#: cms/static/js/views/settings/grader.js -msgid "" -"For grading to work, you must change all {oldName} subsections to {newName}." -msgstr "分级工作,您必须更改所有 {newName} {oldName} 款。" - -#: cms/static/js/views/settings/main.js -msgid "Course Credit Requirements" -msgstr "课程学分要求" - -#: cms/static/js/views/settings/main.js -msgid "The minimum grade for course credit is not set." -msgstr "未设置能够获取课程学分的最低分。" - -#: cms/static/js/views/settings/main.js -msgid "Course pacing cannot be changed once a course has started." -msgstr "一旦课程开始后,课程进程将不能被更改" - -#: cms/static/js/views/settings/main.js -msgid "{hours}:{minutes} (current UTC time)" -msgstr "{hours}:{minutes}(当前UTC或时间)" - -#: cms/static/js/views/settings/main.js -msgid "Upload your course image." -msgstr "上传您的课程图片。" - -#: cms/static/js/views/settings/main.js -msgid "Upload your banner image." -msgstr "上传您的横幅图像。" - -#: cms/static/js/views/settings/main.js -msgid "Upload your video thumbnail image." -msgstr "上传您的视频缩略图图像。" - -#: cms/static/js/views/show_textbook.js -msgid "Delete “<%= name %>”?" -msgstr "确定删除“<%= name %>”吗?" - -#: cms/static/js/views/show_textbook.js -msgid "" -"Deleting a textbook cannot be undone and once deleted any reference to it in" -" your courseware's navigation will also be removed." -msgstr "删除教材的操作无法撤销。一旦删除,课件导航中对该教材的引用也将被移除。" - -#: cms/static/js/views/tabs.js -msgid "Delete Page Confirmation" -msgstr "确认删除页面" - -#: cms/static/js/views/tabs.js -msgid "" -"Are you sure you want to delete this page? This action cannot be undone." -msgstr "确定删除本页吗?此操作不可撤销。" - -#: cms/static/js/views/uploads.js -msgid "Upload" -msgstr "上传" - -#: cms/static/js/views/uploads.js -msgid "We're sorry, there was an error" -msgstr "很抱歉,此处出现错误" - -#: cms/static/js/views/utils/create_course_utils.js -msgid "" -"The combined length of the organization, course number, and course run " -"fields cannot be more than <%=limit%> characters." -msgstr "机构、课程编号和开课时间字段合在一起不能超过 <%=limit%> 个字符。" - -#: cms/static/js/views/utils/create_library_utils.js -msgid "" -"The combined length of the organization and library code fields cannot be " -"more than <%=limit%> characters." -msgstr "机构和知识库编号字段合在一起不能超过 <%=limit%> 个字符" - -#: cms/static/js/views/utils/move_xblock_utils.js -msgid "Success! \"{displayName}\" has been moved." -msgstr "移除成功!\"{displayName}\" 已被移除。" - -#: cms/static/js/views/utils/move_xblock_utils.js -msgid "" -"Move cancelled. \"{sourceDisplayName}\" has been moved back to its original " -"location." -msgstr "取消移动。\"{sourceDisplayName}\"已被移回原始位置。" - -#: cms/static/js/views/utils/move_xblock_utils.js -msgid "Undo move" -msgstr "撤销移动" - -#: cms/static/js/views/utils/move_xblock_utils.js -msgid "Take me to the new location" -msgstr "跳转至新位置" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "Duplicating" -msgstr "正在复制" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "Undo moving" -msgstr "撤销移动" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "Moving" -msgstr "正在移动" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "Deleting this {xblock_type} is permanent and cannot be undone." -msgstr "永久删除此 {xblock_type}并无法撤回" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "" -"Any content that has listed this content as a prerequisite will also have " -"access limitations removed." -msgstr "任何将此条目列为先修条件的条目也将取消访问限制" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "Delete this {xblock_type} (and prerequisite)?" -msgstr "确认删除此 {xblock_type}(以及先修内容)?" - -#: cms/static/js/views/utils/xblock_utils.js -#: cms/static/js/views/utils/xblock_utils.js -msgid "Yes, delete this {xblock_type}" -msgstr "是的,删除该 {xblock_type}" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "Delete this {xblock_type}?" -msgstr "确定删除{xblock_type}吗?" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "section" -msgstr "节" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "subsection" -msgstr "小节" - -#: cms/static/js/views/utils/xblock_utils.js -msgid "unit" -msgstr "单元" - -#: cms/static/js/views/validation.js -msgid "You've made some changes" -msgstr "您已更改" - -#: cms/static/js/views/validation.js -msgid "Your changes will not take effect until you save your progress." -msgstr "您所作变更在保存后才能生效。" - -#: cms/static/js/views/validation.js -msgid "You've made some changes, but there are some errors" -msgstr "您所作变更存在错误" - -#: cms/static/js/views/validation.js -msgid "" -"Please address the errors on this page first, and then save your progress." -msgstr "请先解决本页存在的错误,然后保存。" - -#: cms/static/js/views/validation.js -msgid "Save Changes" -msgstr "保存更改" - -#: cms/static/js/views/video/transcripts/file_uploader.js -msgid "Please select a file in .srt format." -msgstr "请选择格式为.srt的文件。" - -#: cms/static/js/views/video/transcripts/file_uploader.js -msgid "Error: Uploading failed." -msgstr "错误:上传失败" - -#: cms/static/js/views/video/transcripts/message_manager.js -msgid "Error: Import failed." -msgstr "错误:导入失败" - -#: cms/static/js/views/video/transcripts/message_manager.js -msgid "Error: Replacing failed." -msgstr "错误:替代失败" - -#: cms/static/js/views/video/transcripts/message_manager.js -#: cms/static/js/views/video/transcripts/message_manager.js -msgid "Error: Choosing failed." -msgstr "错误:选取失败" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -msgid "Error: Connection with server failed." -msgstr "错误:连接服务器失败。" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -msgid "Link types should be unique." -msgstr "链接类型具有唯一性。" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -msgid "Links should be unique." -msgstr "链接具有唯一性。" - -#: cms/static/js/views/video/transcripts/metadata_videolist.js -msgid "Incorrect url format." -msgstr "URL格式错误" - -#: cms/static/js/views/video/translations_editor.js -msgid "" -"Sorry, there was an error parsing the subtitles that you uploaded. Please " -"check the format and try again." -msgstr "抱歉,解析上传的字幕时发生错误。请检查格式后重试。" - -#: cms/static/js/views/video/translations_editor.js -#: cms/static/js/views/video_transcripts.js -msgid "Are you sure you want to remove this transcript?" -msgstr "您确定要移除此字幕?" - -#: cms/static/js/views/video/translations_editor.js -msgid "" -"If you remove this transcript, the transcript will not be available for this" -" component." -msgstr "移除此字幕将导致此组件中的字幕不可用。" - -#: cms/static/js/views/video/translations_editor.js -msgid "Remove Transcript" -msgstr "移除字幕" - -#: cms/static/js/views/video/translations_editor.js -msgid "Upload translation" -msgstr "上传翻译" - -#: cms/static/js/views/video_thumbnail.js -msgid "Add Thumbnail" -msgstr "添加缩略图!" - -#: cms/static/js/views/video_thumbnail.js -msgid "Edit Thumbnail" -msgstr "编辑缩略图" - -#. Translators: This is a 2 part text which tells the image requirements. -#: cms/static/js/views/video_thumbnail.js -msgid "" -"{InstructionsSpanStart}{videoImageResoultion}{lineBreak} " -"{videoImageSupportedFileFormats}{spanEnd}" -msgstr "" -"{InstructionsSpanStart}{videoImageResoultion}{lineBreak} " -"{videoImageSupportedFileFormats}{spanEnd}" - -#: cms/static/js/views/video_thumbnail.js -msgid "Image upload failed" -msgstr "图片上传失败" - -#. Translators: This is a 3 part text which tells the image requirements. -#: cms/static/js/views/video_thumbnail.js -msgid "" -"{ReqTextSpanStart}Requirements{spanEnd}{lineBreak}{InstructionsSpanStart}{videoImageResoultion}{lineBreak}" -" {videoImageSupportedFileFormats}{spanEnd}" -msgstr "" -"{ReqTextSpanStart}Requirements{spanEnd}{lineBreak}{InstructionsSpanStart}{videoImageResoultion}{lineBreak}" -" {videoImageSupportedFileFormats}{spanEnd}" - -#. Translators: message will be like 1280x720 pixels -#: cms/static/js/views/video_thumbnail.js -msgid "{maxWidth}x{maxHeight} pixels" -msgstr "{maxWidth}x{maxHeight} 像素" - -#. Translators: message will be like Thumbnail for Arrow.mp4 -#: cms/static/js/views/video_thumbnail.js -msgid "Thumbnail for {videoName}" -msgstr "{videoName} 缩略图" - -#. Translators: message will be like Add Thumbnail - Arrow.mp4 -#: cms/static/js/views/video_thumbnail.js -msgid "Add Thumbnail - {videoName}" -msgstr "添加 {videoName} 缩略图" - -#. Translators: humanizeDuration will be like 10 minutes, an hour and 20 -#. minutes etc -#: cms/static/js/views/video_thumbnail.js -msgid "Video duration is {humanizeDuration}" -msgstr "视频时长 {humanizeDuration}" - -#: cms/static/js/views/video_thumbnail.js -msgid "minutes" -msgstr "分" - -#: cms/static/js/views/video_thumbnail.js -msgid "minute" -msgstr "分" - -#. Translators: message will be like 15 minutes, 1 minute -#: cms/static/js/views/video_thumbnail.js -msgid "{minutes} {unit}" -msgstr "{minutes} {unit}" - -#: cms/static/js/views/video_thumbnail.js -msgid "seconds" -msgstr "秒" - -#: cms/static/js/views/video_thumbnail.js -msgid "second" -msgstr "秒" - -#. Translators: message will be like 20 seconds, 1 second -#: cms/static/js/views/video_thumbnail.js -msgid "{seconds} {unit}" -msgstr "{seconds} {unit}" - -#. Translators: `and` will be used to combine both miuntes and seconds like -#. `13 minutes and 45 seconds` -#: cms/static/js/views/video_thumbnail.js -msgid " and " -msgstr "与" - -#: cms/static/js/views/video_thumbnail.js -msgid "Video image upload started" -msgstr "视频图片上传已开始" - -#: cms/static/js/views/video_thumbnail.js -msgid "Video image upload completed" -msgstr "视频图片上传已完成" - -#: cms/static/js/views/video_thumbnail.js -msgid "" -"This image file type is not supported. Supported file types are " -"{supportedFileFormats}." -msgstr "图片文件格式不支持。支持的文件格式包括 {supportedFileFormats}。" - -#. Translators: maxFileSizeInMB will be like 2 MB. -#: cms/static/js/views/video_thumbnail.js -msgid "The selected image must be smaller than {maxFileSizeInMB}." -msgstr "所选择的图片必须小于 {maxFileSizeInMB}。" - -#. Translators: minFileSizeInKB will be like 2 KB. -#: cms/static/js/views/video_thumbnail.js -msgid "The selected image must be larger than {minFileSizeInKB}." -msgstr "所选择的图片必须大于 {minFileSizeInKB}。" - -#: cms/static/js/views/video_thumbnail.js -msgid "Could not upload the video image file" -msgstr "无法上传视频图片文件" - -#: cms/static/js/views/video_thumbnail.js -msgid "Image upload failed. " -msgstr "图片上传失败" - -#: cms/static/js/views/video_transcripts.js -msgid "The file could not be uploaded." -msgstr "无法上传此文件。" - -#: cms/static/js/views/video_transcripts.js -msgid "Hide transcripts ({transcriptCount})" -msgstr "隐藏字幕({transcriptCount})" - -#: cms/static/js/views/video_transcripts.js -msgid "Show transcripts ({transcriptCount})" -msgstr "显示字幕({transcriptCount})" - -#: cms/static/js/views/video_transcripts.js -msgid "" -"This file type is not supported. Supported file type is " -"{supportedFileFormat}." -msgstr "不支持此文件类型。仅支持{supportedFileFormat}。" - -#: cms/static/js/views/video_transcripts.js -msgid "{transcriptClientTitle}_{transcriptLanguageCode}.{fileExtension}" -msgstr "{transcriptClientTitle}_{transcriptLanguageCode}.{fileExtension}" - -#: cms/static/js/views/video_transcripts.js -msgid "" -"If you remove this transcript, the transcript will not be available for any " -"components that use this video." -msgstr "如果您移除此字幕,那么使用此视频的所有组件将无法使用此字幕。" - -#: cms/static/js/views/xblock_editor.js -msgid "Editor" -msgstr "编辑器" - -#: cms/static/js/views/xblock_editor.js -msgid "Settings" -msgstr "设置" - -#: cms/static/js/views/xblock_outline.js -msgid "New {component_type}" -msgstr "新建 {component_type}" - -#. Translators: This message will be added to the front of messages of type -#. warning, -#. e.g. "Warning: this component has not been configured yet". -#: cms/static/js/views/xblock_validation.js -msgid "Warning" -msgstr "警告" - -#: cms/static/js/xblock_asides/structured_tags.js -msgid "Updating Tags" -msgstr "更新标签中" diff --git a/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo b/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 30fba275e5fe..000000000000 Binary files a/conf/locale/zh_CN/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/conf/locale/zh_CN/LC_MESSAGES/djangojs.po b/conf/locale/zh_CN/LC_MESSAGES/djangojs.po index 34a7544f7e59..7f1fdf420831 100644 --- a/conf/locale/zh_CN/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_CN/LC_MESSAGES/djangojs.po @@ -1,49 +1,63 @@ # #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). -# Copyright (C) 2019 EdX +# Copyright (C) 2020 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # # Translators: -# 嘉杰 李 , 2018 -# 微 李 , 2018 -# 婕 高 , 2018 -# 家璧 刘 , 2018 # li ying , 2019 # # #-#-#-#-# djangojs-studio.po (0.1a) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). -# Copyright (C) 2019 EdX +# Copyright (C) 2020 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # # Translators: # li ying , 2019 # # #-#-#-#-# underscore.po (0.1a) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) -# Copyright (C) 2019 edX +# Copyright (C) 2020 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # # Translators: -# 微 李 , 2018 +# Sushan Wu , 2019 # li ying , 2019 # # #-#-#-#-# underscore-studio.po (0.1a) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) -# Copyright (C) 2019 edX +# Copyright (C) 2020 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # # Translators: # li ying , 2019 # -# #-#-#-#-# membership-js.po (0.1a) #-#-#-#-# +# #-#-#-#-# membership-js.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# li ying , 2019 +# +# #-#-#-#-# djangojs-theme.po (0.1a) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). -# Copyright (C) 2019 EdX +# Copyright (C) 2020 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# li ying , 2019 +# +# #-#-#-#-# underscore-theme.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) +# Copyright (C) 2020 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # # Translators: # li ying , 2019 @@ -52,8 +66,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-01-15 19:13+0800\n" -"PO-Revision-Date: 2018-12-07 12:23+0000\n" +"POT-Creation-Date: 2020-01-10 17:58+0800\n" +"PO-Revision-Date: 2019-06-19 06:25+0000\n" "Last-Translator: li ying , 2019\n" "Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" "Language: zh_CN\n" @@ -62,7 +76,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 1.3\n" -"#-#-#-#-# membership-js.po (0.1a) #-#-#-#-#\n" #: cms/static/cms/js/xblock/cms.runtime.v1.js #: cms/static/js/certificates/views/signatory_details.js @@ -116,7 +129,6 @@ msgstr "删除" #: common/static/common/js/components/utils/view_utils.js #: lms/static/js/Markdown.Editor.js #: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -#: lms/static/js/writable_gradebook.js #: cms/templates/js/add-xblock-component-menu-problem.underscore #: cms/templates/js/add-xblock-component-menu.underscore #: cms/templates/js/certificate-editor.underscore @@ -173,6 +185,7 @@ msgstr "关闭" #: cms/templates/js/previous-video-upload-list.underscore #: cms/templates/js/signatory-details.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Name" msgstr "姓名" @@ -239,7 +252,6 @@ msgstr "上传文件" #: cms/static/js/views/modals/base_modal.js #: cms/static/js/views/modals/course_outline_modals.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: lms/static/js/writable_gradebook.js #: cms/templates/js/certificate-editor.underscore #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course_info_handouts.underscore @@ -378,7 +390,7 @@ msgstr[0] "%(num_points)s满分(不计入成绩)" #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(earned)s/%(possible)s point (graded)" msgid_plural "%(earned)s/%(possible)s points (graded)" -msgstr[0] "%(earned)s/%(possible)s得分 (计入成绩)" +msgstr[0] "%(earned)s/%(possible)s 得分 (计入成绩)" #. Translators: %(earned)s is the number of points earned. %(possible)s is the #. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of @@ -2207,7 +2219,7 @@ msgstr "格式不正确" #: common/static/common/js/utils/edx.utils.validate.js msgid "%(field)s must have at least %(count)d characters." -msgstr "%(field)s 至少要有 %(count)d 字符。" +msgstr "%(field)s至少要有 %(count)d 字符。" #: common/static/common/js/utils/edx.utils.validate.js msgid "%(field)s can only contain up to %(count)d characters." @@ -3477,6 +3489,31 @@ msgid "" " cohorts are disabled. You must enable cohorts for the feature to work." msgstr "这门课程为要获取认证证书的学生自动分组,但是群组功能被禁止。为了使该功能正常运行,您必须启用群组功能," +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "span" +msgstr "" + +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "div" +msgstr "" + +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "p" +msgstr "" + +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "img" +msgstr "" + +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "li" +msgstr "" + #: lms/static/js/instructor_dashboard/certificates.js msgid "Allow students to generate certificates for this course?" msgstr "是否允许学生生成该课程证书?" @@ -3576,7 +3613,6 @@ msgstr "标记选课码为尚未使用的" #: lms/static/js/instructor_dashboard/membership.js #: lms/static/js/student_account/views/account_settings_factory.js -#: lms/static/js/writable_gradebook.js #: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js #: cms/templates/js/transcript-organization-credentials.underscore #: lms/djangoapps/support/static/support/templates/manage_user.underscore @@ -4271,11 +4307,6 @@ msgstr "成功覆盖{user}的题目得分" msgid "Could not override problem score for {user}." msgstr "无法覆盖{user}的题目得分。" -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Reset Your Password" -msgstr "重置您的密码" - #: lms/static/js/student_account/components/PasswordResetConfirmation.jsx msgid "Enter and confirm your new password." msgstr "输入并确认新密码" @@ -4296,6 +4327,11 @@ msgstr "两次密码输入不一致" msgid "Reset My Password" msgstr "重置密码" +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "Reset Your Password" +msgstr "重置您的密码" + #: lms/static/js/student_account/components/PasswordResetInput.jsx msgid "Error: " msgstr "错误:" @@ -4525,8 +4561,16 @@ msgstr "此邮箱地址用于接收来自{platform_name}和课程团队的信息 #: lms/static/js/student_account/views/account_settings_factory.js msgid "" -"You have joined Harvard Learning Camp. Email Modification is not supported." -msgstr "您参加了“哈佛学习营”,暂不支持修改邮箱。" +"You have joined Harvard ManageMentor. Email Modification is not supported." +msgstr "您参加了“哈佛管理导师”,暂不支持修改邮箱。" + +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "Secondary Email Address" +msgstr "备选邮箱" + +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "You may access your account when single-sign on is not available." +msgstr "如果单点登录不可用,您可以访问自己的账号。" #: lms/static/js/student_account/views/account_settings_factory.js #: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js @@ -4612,6 +4656,12 @@ msgstr "出生年份" msgid "Preferred Language" msgstr "首选语言" +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "" +"We've sent a confirmation message to {new_secondary_email_address}. Click " +"the link in the message to update your secondary email address." +msgstr "我们已向{new_secondary_email_address}发送了确认消息。 点击邮件中的链接以更新辅助电子邮件地址。" + #: lms/static/js/student_account/views/account_settings_factory.js msgid "Social Media Links" msgstr "社交媒体链接" @@ -4929,37 +4979,6 @@ msgstr "KB" msgid "MB" msgstr "MB" -#: lms/static/js/writable_gradebook.js -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Total" -msgstr "总计" - -#: lms/static/js/writable_gradebook.js -msgid "The Assignment name is:" -msgstr "任务名称为:" - -#: lms/static/js/writable_gradebook.js -msgid "Publish grades" -msgstr "发布成绩" - -#: lms/static/js/writable_gradebook.js -msgid "No matching records found" -msgstr "找不到匹配记录" - -#: lms/static/js/writable_gradebook.js -msgid "Student Name" -msgstr "学生姓名" - -#: lms/static/js/writable_gradebook.js -msgid "There are no student grades to adjust." -msgstr "无可调整学生成绩" - -#: lms/static/js/writable_gradebook.js -msgid "Update in progress, please wait..." -msgstr "正在更新,请稍等" - #: lms/static/lms/js/preview/preview_factory.js msgid "Course is not yet visible to students." msgstr "该课程尚未对学生公开" @@ -5107,27 +5126,6 @@ msgstr "成绩" msgid "Profile" msgstr "个人主页" -#: themes/normal-theme/lms/static/js/binding.js -#, javascript-format -msgid "%s s" -msgstr "%s秒" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Get the verification code" -msgstr "获取验证码" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Cell phone number cannot be blanked" -msgstr "手机号码不能为空" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "incorrect cellphone number format" -msgstr "手机号码格式不正确" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Cellphone number binding successfully" -msgstr "手机号码绑定成功" - #: cms/static/cms/js/main.js cms/static/js/views/active_video_upload_list.js #: cms/static/js/views/video_transcripts.js msgid "" @@ -5151,10 +5149,6 @@ msgstr "该链接将在新浏览器窗口/标签页中打开" msgid "This link will open in a modal window" msgstr "将在模式窗口中打开此链接" -#: cms/static/js/certificates/collections/certificates.js -msgid "Could not parse certificate JSON. %(message)s" -msgstr "无法解析证书JSON. %(message)s" - #: cms/static/js/certificates/models/certificate.js msgid "Certificate name is required." msgstr "证书名必须填写。" @@ -5943,8 +5937,12 @@ msgstr "可见性" #. Translators: "title" is the name of the current component being edited. #: cms/static/js/views/modals/edit_xblock.js -msgid "Editing: %(title)s" -msgstr "编辑:%(title)s" +msgid "Editing: {title}" +msgstr "正在编辑:{title}" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Plugins" +msgstr "插件" #: cms/static/js/views/modals/edit_xblock.js #: lms/templates/ccx/schedule.underscore @@ -6584,6 +6582,7 @@ msgstr "上一步" #: lms/djangoapps/support/static/support/templates/manage_user.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Action" msgstr "操作" @@ -6991,6 +6990,7 @@ msgstr "课程ID" #: lms/djangoapps/support/static/support/templates/certificates_results.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "No results" msgstr "没有结果" @@ -7318,6 +7318,12 @@ msgstr "订单号:" msgid "Amount" msgstr "金额" +#: lms/templates/commerce/receipt.underscore +#: lms/templates/verify_student/make_payment_step_ab_testing.underscore +#: lms/templates/verify_student/payment_confirmation_step.underscore +msgid "Total" +msgstr "总计" + #: lms/templates/commerce/receipt.underscore #: lms/templates/verify_student/payment_confirmation_step.underscore msgid "Please Note" @@ -7433,26 +7439,32 @@ msgid "Click to edit" msgstr "点击以编辑" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Order Number" msgstr "订单号" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Date Placed" msgstr "已设置日期" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Cost" msgstr "价格" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Order Details" msgstr "订单细节" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "for" msgstr "的" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Product Name" msgstr "产品名称" @@ -7556,6 +7568,7 @@ msgstr "已设定为无效" #: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Notes" msgstr "笔记" @@ -7582,30 +7595,37 @@ msgid "Free text notes" msgstr "自由文本注释" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Generate Exception Certificates" msgstr "生成特例证书" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "All users on the Exception list who do not yet have a certificate" msgstr "特殊处理列表中尚未获得证书的所有用户" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "All users on the Exception list" msgstr "特殊处理列表中的所有用户" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "User Email" msgstr "用户电子邮件" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Exception Granted" msgstr "特殊处理已批准" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Certificate Generated" msgstr "证书已生成" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Remove from List" msgstr "从列表中删除" @@ -7864,7 +7884,7 @@ msgstr "挑选一个会话:" #: lms/templates/learner_dashboard/course_enroll.underscore msgid "Enroll Now" -msgstr "现在选课" +msgstr "现在加入" #: lms/templates/learner_dashboard/course_enroll.underscore msgid "Coming Soon" @@ -7872,7 +7892,7 @@ msgstr "即将上线" #: lms/templates/learner_dashboard/course_enroll.underscore msgid "Enrollment Opens on" -msgstr "开放注测" +msgstr "开放注册" #: lms/templates/learner_dashboard/course_enroll.underscore msgid "Not Currently Available" @@ -7918,6 +7938,12 @@ msgstr "您尚未注册任何课程。" msgid "Explore Programs" msgstr "发现课程" +#: lms/templates/learner_dashboard/expired_notification.underscore +msgid "" +"You enrolled in this course but did not earn the certificate required to " +"complete this program." +msgstr "您已注册此课程,但未获得完成此课程所需的证书。" + #: lms/templates/learner_dashboard/explore_new_programs.underscore msgid "" "Browse recently launched courses and see what\\'s new in your favorite " @@ -7989,10 +8015,20 @@ msgstr "附加的职业机会" msgid "Congratulations!" msgstr "恭喜!" +#: lms/templates/learner_dashboard/program_details_view.underscore +msgid "" +"You have successfully completed all the requirements for the {title} {type}." +msgstr "您已成功完成 {title} {type}专业的所有要求。" + #: lms/templates/learner_dashboard/program_details_view.underscore msgid "Your Program Journey" msgstr "您的课程学习之旅" +#: lms/templates/learner_dashboard/program_details_view.underscore +msgid "" +"Track and plan your progress through the {count} courses in this program." +msgstr "通过本系列的 {count} 门课程来跟踪和计划你的学习进度。" + #: lms/templates/learner_dashboard/program_details_view.underscore msgid "" "To complete the program, you must earn a verified certificate for each " @@ -8008,8 +8044,8 @@ msgid "{listPrice}" msgstr "{listPrice}" #: lms/templates/learner_dashboard/program_details_view.underscore -msgid " {price} {currency} )" -msgstr "{price} {currency} )" +msgid "{price})" +msgstr "{price})" #: lms/templates/learner_dashboard/program_details_view.underscore msgid "COURSES IN PROGRESS" @@ -8056,7 +8092,22 @@ msgstr "更改我的电子邮件" msgid "Reset Password" msgstr "重设密码" +#: lms/templates/student_account/account_recovery.underscore +msgid "Account Recovery" +msgstr "验证账户" + +#: lms/templates/student_account/account_recovery.underscore +msgid "" +"Please enter your secondary email address below and we will send you " +"instructions for recovering your account and setting a new password." +msgstr "请在下面输入您的电子邮件以便我们给您发送如何设置新密码的说明。" + +#: lms/templates/student_account/account_recovery.underscore +msgid "Recover my account" +msgstr "删除我的账号" + #: lms/templates/student_account/account_settings.underscore +#: themes/elitemba-theme/lms/templates/student_account/account_settings.underscore msgid "Account Settings" msgstr "账号设置" @@ -8070,6 +8121,7 @@ msgstr "忘记密码?" #: lms/templates/student_account/hinted_login.underscore #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign in" msgstr "登录" @@ -8109,72 +8161,87 @@ msgid "Register through edX" msgstr "通过edX注册" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "First time here?" msgstr "初次使用?" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Create an Account." msgstr "注册" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign in to continue learning as {email}" msgstr "使用{email}登录,继续学习" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign in to continue learning" msgstr "登录并继续学习" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "" "You already have an EliteMBA account with your {enterprise_name} email " "address." msgstr "您已使用{enterprise_name}邮箱地址注册EliteMBA账号。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "" "Going forward, your account information will be updated and maintained by " "{enterprise_name}." msgstr "下一步,由{enterprise_name}更新并维护您的账号信息。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "" "You can view your information or unlink from {enterprise_name} anytime in " "your Account Settings." msgstr "您可在账号设置中,随时查看账号信息或与{enterprise_name}解绑。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "To continue learning with this account, sign in below." msgstr "如需继续使用此账号学习,请点击以下按钮登录。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign In" msgstr "登录" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "" "Sign in here using your email address and password, or use one of the " "providers listed below." msgstr "使用您的电子邮件和密码或使用以下列出的一个方式在此处登录。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign in here using your email address and password." msgstr "在这里使用您的电子邮件和密码登录。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "If you do not yet have an account, use the button below to register." msgstr "如果您尚无账号,请使用以下按钮进行注册。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "or sign in with" msgstr "或者通过以下方式登录" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore #, python-format msgid "Sign in with %(providerName)s" msgstr "使用 %(providerName)s 登录" #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Use my institution/campus credentials" msgstr "使用我的机构/校园账号" @@ -9263,7 +9330,7 @@ msgstr "监考下的测试" #: cms/templates/js/course-outline.underscore msgid "Timed Exam" -msgstr "计时测验" +msgstr "" #: cms/templates/js/course-outline.underscore #: cms/templates/js/xblock-outline.underscore @@ -9275,6 +9342,10 @@ msgstr "折叠/扩展该%(xblock_type)s" msgid "Display Name" msgstr "显示名称" +#: cms/templates/js/course-outline.underscore +msgid "Proctoring Settings" +msgstr "监考设置" + #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "配置" @@ -9954,6 +10025,10 @@ msgid "" " when they submit answers to assessments." msgstr "如果节不设有截止日期,那么只要学员提交答案至评分,就可以查看自己的得分。" +#: cms/templates/js/show-textbook.underscore +msgid "PDF Chapters" +msgstr "PDF各章节" + #: cms/templates/js/signatory-details.underscore #: cms/templates/js/signatory-editor.underscore msgid "Signatory" @@ -10411,7 +10486,7 @@ msgid "Use Current Transcript" msgstr "使用当前字幕" #: membership/static/membership/js/card.js -msgid "Open membership" +msgid "Join" msgstr "开通" #: membership/static/membership/js/card.js @@ -10423,23 +10498,19 @@ msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: membership/static/membership/js/card.js -msgid "Open date:" +msgid "Open date: " msgstr "开通日期:" #: membership/static/membership/js/card.js -msgid "Expire:" +msgid "Expire: " msgstr "到期日期:" -#: membership/static/membership/js/card.js -msgid "Last open date:" -msgstr "上次开通日期:" - #: membership/static/membership/js/card.js msgid "Renew" msgstr "续费" #: membership/static/membership/js/index.js -msgid "Average per month" +msgid "/M" msgstr "月均" #: membership/static/membership/js/pay.js @@ -10450,3 +10521,28 @@ msgstr "调起支付失败" #, javascript-format msgid "Return to EliteMBA in %s seconds" msgstr "%s 秒后返回英荔商学院" + +#: themes/elitemba-theme/lms/static/js/binding.js +#, javascript-format +msgid "%s s" +msgstr "%s秒" + +#: themes/elitemba-theme/lms/static/js/binding.js +msgid "Get the verification code" +msgstr "获取验证码" + +#: themes/elitemba-theme/lms/static/js/binding.js +msgid "Cell phone number cannot be blanked" +msgstr "手机号码不能为空" + +#: themes/elitemba-theme/lms/static/js/binding.js +msgid "incorrect cellphone number format" +msgstr "手机号码格式不正确" + +#: themes/elitemba-theme/lms/static/js/binding.js +msgid "Cellphone number binding successfully" +msgstr "手机号码绑定成功" + +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +msgid "Certificate exceptions group selection" +msgstr "选择群体" diff --git a/conf/locale/zh_CN/LC_MESSAGES/eliteu.po b/conf/locale/zh_CN/LC_MESSAGES/eliteu.po new file mode 100644 index 000000000000..8dd1259e2c99 --- /dev/null +++ b/conf/locale/zh_CN/LC_MESSAGES/eliteu.po @@ -0,0 +1,31 @@ +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/en/). +# Copyright (C) 2019 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2019. +# +# Translators: +# li ying , 2019 +# li ying , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: 0.1a\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2019-01-24 03:59+0000\n" +"PO-Revision-Date: 2019-05-16 12:40+0000\n" +"Last-Translator: li ying , 2019\n" +"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "email address" +msgstr "邮箱" + +msgid "English" +msgstr "英语" + +msgid "Chinese" +msgstr "中文" diff --git a/conf/locale/zh_CN/LC_MESSAGES/mako-studio.po b/conf/locale/zh_CN/LC_MESSAGES/mako-studio.po deleted file mode 100644 index 4074cb46a6da..000000000000 --- a/conf/locale/zh_CN/LC_MESSAGES/mako-studio.po +++ /dev/null @@ -1,3357 +0,0 @@ -# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) -# Copyright (C) 2019 edX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -# Translators: -# li ying , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-11 02:17+0000\n" -"PO-Revision-Date: 2018-11-26 07:56+0000\n" -"Last-Translator: li ying , 2019\n" -"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" - -#: cms/templates/404.html -msgid "The page that you were looking for was not found." -msgstr "您查找的页面无法找到。" - -#: cms/templates/404.html -msgid "" -"Go back to the {homepage} or let us know about any pages that may have been " -"moved at {email}." -msgstr "返回到{homepage}或发电子邮件至{email}告诉我们被移动的页面。" - -#: cms/templates/500.html -msgid "{studio_name} Server Error" -msgstr "{studio_name}服务器错误" - -#: cms/templates/500.html -msgid "The {em_start}{studio_name}{em_end} servers encountered an error" -msgstr "{em_start}{studio_name}{em_end} 服务器出现一个错误" - -#: cms/templates/500.html -msgid "" -"An error occurred in {studio_name} and the page could not be loaded. Please " -"try again in a few moments." -msgstr "{studio_name}出现错误,页面无法加载,请稍后再试。" - -#: cms/templates/500.html -msgid "" -"We've logged the error and our staff is currently working to resolve this " -"error as soon as possible." -msgstr "我们已经记录下这个错误,我们的员工正在试图尽快解决这个问题。" - -#: cms/templates/500.html -msgid "If the problem persists, please email us at {email_link}." -msgstr "如果问题仍然存在,请发送电子邮件至{email_link}。" - -#: cms/templates/accessibility.html -msgid "Studio Accessibility Policy" -msgstr "Studio开放政策" - -#: cms/templates/activation_active.html cms/templates/activation_complete.html -#: cms/templates/activation_invalid.html -msgid "{studio_name} Account Activation" -msgstr "{studio_name}账号激活" - -#: cms/templates/activation_active.html -msgid "Your account is already active" -msgstr "您的账号已经激活" - -#: cms/templates/activation_active.html -msgid "" -"This account, set up using {email}, has already been activated. Please sign " -"in to start working within {studio_name}." -msgstr "通过{email}注册的这个账号已被激活,请登录以开始在{studio_name}中工作。" - -#: cms/templates/activation_active.html cms/templates/activation_complete.html -msgid "Sign into {studio_name}" -msgstr "登录{studio_name}" - -#: cms/templates/activation_complete.html -msgid "Your account activation is complete!" -msgstr "您的账号激活已经完成!" - -#: cms/templates/activation_complete.html -msgid "" -"Thank you for activating your account. You may now sign in and start using " -"{studio_name} to author courses." -msgstr "谢谢您激活了您的账号,您现在可以登录 {studio_name}并开始创建课程了。" - -#: cms/templates/activation_invalid.html -msgid "Your account activation is invalid" -msgstr "您的账号激活是无效的" - -#: cms/templates/activation_invalid.html -msgid "" -"We're sorry. Something went wrong with your activation. Check to make sure " -"the URL you went to was correct, as e-mail programs will sometimes split it " -"into two lines." -msgstr "很抱歉,您的激活中出现了一些错误。请核对以确保您进入了正确的 URL,因为某些时候电子邮件程序会将其分割成两行。" - -#: cms/templates/activation_invalid.html -msgid "" -"If you still have issues, contact {platform_name} Support. In the meantime, " -"you can also return to {link_start}the {studio_name} homepage.{link_end}" -msgstr "" -"如果您仍然有问题,请联系{platform_name}支持。同时,您也可以返回到{link_start}{studio_name}主页{link_end}。" - -#: cms/templates/asset_index.html cms/templates/asset_index.html -#: cms/templates/widgets/header.html -msgid "Files & Uploads" -msgstr "文件&上传" - -#: cms/templates/certificates.html cms/templates/certificates.html -#: cms/templates/certificates.html cms/templates/export.html -#: cms/templates/widgets/header.html -msgid "Certificates" -msgstr "证书" - -#: cms/templates/certificates.html -msgid "This module is not enabled." -msgstr "此模块不可用。" - -#: cms/templates/certificates.html -msgid "This course does not use a mode that offers certificates." -msgstr "本课程不提供证书。" - -#: cms/templates/certificates.html -msgid "Working with Certificates" -msgstr "使用证书" - -#: cms/templates/certificates.html -msgid "" -"Specify a course title to use on the certificate if the course's official " -"title is too long to be displayed well." -msgstr "当因课程正式名称过长而不易展示在证书上时,可使用特定的缩写。" - -#: cms/templates/certificates.html -msgid "" -"For verified certificates, specify between one and four signatories and " -"upload the associated images." -msgstr "对于验证的证书,指定1到4个簽署国,并上传了相关图片。" - -#: cms/templates/certificates.html -msgid "" -"To edit or delete a certificate before it is activated, hover over the top " -"right corner of the form and select {em_start}Edit{em_end} or the delete " -"icon." -msgstr "编辑或删除证书之前,它被激活,将鼠标悬停在表的右上角,然后选择{em_start}修改{em_end}或删除图标。" - -#: cms/templates/certificates.html -msgid "" -"To view a sample certificate, choose a course mode and select " -"{em_start}Preview Certificate{em_end}." -msgstr "要查看样品证书,选择课程模式,并选择{em_start}预览证书{em_end}。" - -#: cms/templates/certificates.html -msgid "Issuing Certificates to Learners" -msgstr "为课程学习者提供证书" - -#: cms/templates/certificates.html -msgid "" -"To begin issuing course certificates, a course team member with either the " -"Staff or Admin role selects {em_start}Activate{em_end}. Only course team " -"members with these roles can edit or delete an activated certificate." -msgstr "" -"员工或管理员身份的课程团队成员选择{em_start}激活{em_end},可以开始颁发课程证书。只有此两种身份的课程团队成员才能编辑或删除已激活的证书。" - -#: cms/templates/certificates.html -msgid "" -"{em_start}Do not{em_end} delete certificates after a course has started; " -"learners who have already earned certificates will no longer be able to " -"access them." -msgstr "{em_start}不要{em_end}删除证书后,课程开始;谁已经获得了证书,学生将不再能够访问它们。" - -#: cms/templates/certificates.html -msgid "Learn more about certificates" -msgstr "了解更多关于证书的信息" - -#: cms/templates/certificates.html cms/templates/certificates.html -#: cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/settings_graders.html -msgid "Other Course Settings" -msgstr "课程其他设置" - -#: cms/templates/certificates.html cms/templates/settings_graders.html -msgid "Details & Schedule" -msgstr "细节&日程" - -#: cms/templates/certificates.html cms/templates/group_configurations.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -msgid "Grading" -msgstr "评分" - -#: cms/templates/certificates.html cms/templates/group_configurations.html -#: cms/templates/manage_users.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html -msgid "Course Team" -msgstr "课程团队" - -#: cms/templates/certificates.html cms/templates/group_configurations.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html -msgid "Advanced Settings" -msgstr "高级设置" - -#: cms/templates/certificates.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/settings.html -#: cms/templates/settings_advanced.html cms/templates/settings_graders.html -#: cms/templates/widgets/header.html -msgid "Group Configurations" -msgstr "组配置" - -#: cms/templates/checklists.html cms/templates/checklists.html -#: cms/templates/widgets/header.html -msgid "Checklists" -msgstr "核对表" - -#: cms/templates/checklists.html cms/templates/export.html -#: cms/templates/export_git.html cms/templates/import.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -msgid "Tools" -msgstr "工具" - -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html -msgid "Duplicate" -msgstr "复制" - -#: cms/templates/component.html -msgid "Duplicate this component" -msgstr "复制该组件" - -#: cms/templates/component.html cms/templates/component.html -#: cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html -msgid "Move" -msgstr "移动" - -#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html -msgid "Delete" -msgstr "删除" - -#: cms/templates/component.html -msgid "Delete this component" -msgstr "删除此组件" - -#: cms/templates/component.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/studio_xblock_wrapper.html -msgid "Drag to reorder" -msgstr "拖动以重排序" - -#: cms/templates/container.html cms/templates/library.html -msgid "Display Name" -msgstr "显示名称" - -#: cms/templates/container.html cms/templates/container.html -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html cms/templates/course_info.html -#: cms/templates/course_info.html cms/templates/course_outline.html -#: cms/templates/course_outline.html cms/templates/edit-tabs.html -#: cms/templates/edit-tabs.html cms/templates/index.html -#: cms/templates/index.html cms/templates/library.html -#: cms/templates/library.html cms/templates/manage_users.html -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -#: cms/templates/manage_users_lib.html cms/templates/textbooks.html -#: cms/templates/textbooks.html cms/templates/videos_index.html -#: cms/templates/videos_index.html -msgid "Page Actions" -msgstr "页面操作" - -#: cms/templates/container.html -msgid "Open the courseware in the LMS" -msgstr "在LMS中打开课件" - -#: cms/templates/container.html -msgid "View Live Version" -msgstr "观看在线版本" - -#: cms/templates/container.html -msgid "Preview the courseware in the LMS" -msgstr "在LMS中预览课件" - -#: cms/templates/container.html -msgid "Preview" -msgstr "预览" - -#: cms/templates/container.html -msgid "Adding components" -msgstr "添加组件" - -#: cms/templates/container.html -msgid "" -"Select a component type under {strong_start}Add New Component{strong_end}. " -"Then select a template." -msgstr "选择一个组件类型在{strong_start}之下,并新增新的组件{strong_end}。然后选择一个範本。" - -#: cms/templates/container.html -msgid "" -"The new component is added at the bottom of the page or group. You can then " -"edit and move the component." -msgstr "新建的组件会添加到页面或组的底部,然后您可以编辑或移动该组件。" - -#: cms/templates/container.html -msgid "Editing components" -msgstr "编辑组件" - -#: cms/templates/container.html -msgid "" -"Click the {strong_start}Edit{strong_end} icon in a component to edit its " -"content." -msgstr "从组件中,点击{strong_start}编辑{strong_end}图示,编辑内容。" - -#: cms/templates/container.html -msgid "Reorganizing components" -msgstr "重新组织组件" - -#: cms/templates/container.html -msgid "Drag components to new locations within this component." -msgstr "在该组件中将组件拖动到新位置。" - -#: cms/templates/container.html -msgid "For content experiments, you can drag components to other groups." -msgstr "对于内容实验,您可以拖拽组件到其他组里。" - -#: cms/templates/container.html -msgid "Working with content experiments" -msgstr "使用内容实验" - -#: cms/templates/container.html -msgid "" -"Confirm that you have properly configured content in each of your experiment" -" groups." -msgstr "确认您的每个实验组中都有正确配置的内容。" - -#: cms/templates/container.html -msgid "Learn more about component containers" -msgstr "了解更多关于组件容器的信息" - -#: cms/templates/container.html -msgid "Unit Location" -msgstr "单元位置" - -#: cms/templates/container.html -msgid "Location ID" -msgstr "位置 ID" - -#: cms/templates/container.html -msgid "" -"To create a link to this unit from an HTML component in this course, enter " -"\"/jump_to_id/\" as the URL value." -msgstr "如需创建此课程HTML组件与单元的链接,请输入“/jump_to_id/”作为URL值。" - -#: cms/templates/container.html -msgid "Location in Course Outline" -msgstr "在课程大纲中的位置" - -#: cms/templates/course-create-rerun.html -msgid "Create a Course Rerun of:" -msgstr "创建课程重启:" - -#: cms/templates/course-create-rerun.html -msgid "Create a re-run of a course" -msgstr "创建一次课程重启" - -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html -msgid "Cancel" -msgstr "取消" - -#: cms/templates/course-create-rerun.html -msgid "You are creating a re-run from:" -msgstr "您正在为以下课程创建一次重启:" - -#: cms/templates/course-create-rerun.html -msgid "" -"Provide identifying information for this re-run of the course. The original " -"course is not affected in any way by a re-run." -msgstr "请为该重启的课程提供识别信息,原来的课程不会受重启的影响。" - -#: cms/templates/course-create-rerun.html -msgid "" -"Note: Together, the organization, course number, and course run must " -"uniquely identify this new course instance." -msgstr "注意:机构名称、课程编号以及开课时间三者合在一起必须能够唯一标识此新建的课程实例。" - -#: cms/templates/course-create-rerun.html -msgid "Required Information to Create a re-run of a course" -msgstr "创建一次课程重启所必需的信息" - -#. Translators: This is an example name for a new course, seen when -#. filling out the form to create a new course. -#: cms/templates/course-create-rerun.html cms/templates/index.html -msgid "e.g. Introduction to Computer Science" -msgstr "例如,计算机科学导论" - -#: cms/templates/course-create-rerun.html -msgid "" -"The public display name for the new course. (This name is often the same as " -"the original course name.)" -msgstr "新课程的公开显示名称。(该名字通常与原始的课程名称相同。)" - -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html cms/templates/settings.html -msgid "Organization" -msgstr "机构" - -#. Translators: This is an example for the name of the organization sponsoring -#. a course, seen when filling out the form to create a new course. The -#. organization name cannot contain spaces. -#. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed -#. when user put no data into this field. -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/index.html -msgid "e.g. UniversityX or OrganizationX" -msgstr "例如:UniversityX 或 OrganizationX" - -#: cms/templates/course-create-rerun.html -msgid "" -"The name of the organization sponsoring the new course. (This name is often " -"the same as the original organization name.)" -msgstr "资助该新课程的机构的名称。(该名字通常与原始的机构名称相同。)" - -#: cms/templates/course-create-rerun.html -#: cms/templates/course-create-rerun.html -msgid "Note: No spaces or special characters are allowed." -msgstr "注意:不允许有空格或特殊字符。" - -#. Translators: This is an example for the number used to identify a course, -#. seen when filling out the form to create a new course. The number here is -#. short for "Computer Science 101". It can contain letters but cannot contain -#. spaces. -#: cms/templates/course-create-rerun.html cms/templates/index.html -msgid "e.g. CS101" -msgstr "例如: CS101" - -#: cms/templates/course-create-rerun.html -msgid "" -"The unique number that identifies the new course within the organization. " -"(This number will be the same as the original course number and cannot be " -"changed.)" -msgstr "用于识别组织内新课程的唯一编号。(此编号与原来的课程编号一致,无法更改)" - -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/settings.html -msgid "Course Run" -msgstr "开课时间" - -#. Translators: This is an example for the "run" used to identify different -#. instances of a course, seen when filling out the form to create a new -#. course. -#: cms/templates/course-create-rerun.html cms/templates/index.html -msgid "e.g. 2014_T1" -msgstr "例如:2014_T1" - -#: cms/templates/course-create-rerun.html -msgid "" -"The term in which the new course will run. (This value is often different " -"than the original course run value.)" -msgstr "将开设该新课程的学期。(该值通常与原始开课时间的值不同。)" - -#: cms/templates/course-create-rerun.html -msgid "Create Re-run" -msgstr "创建重启" - -#: cms/templates/course-create-rerun.html -msgid "When will my course re-run start?" -msgstr "我的课程何时可以重启?" - -#: cms/templates/course-create-rerun.html -msgid "The new course is set to start on January 1, 2030 at midnight (UTC)." -msgstr "新课程设置为将于2030年1月1日午夜开始(UTC)。" - -#: cms/templates/course-create-rerun.html -msgid "What transfers from the original course?" -msgstr "原始课程中的哪些内容会复制过来?" - -#: cms/templates/course-create-rerun.html -msgid "" -"The new course has the same course outline and content as the original " -"course. All problems, videos, announcements, and other files are duplicated " -"to the new course." -msgstr "新课程与原始课程具有相同的课程大纲,所有的问题、视频、通知以及其他文件都复制到了新课程中。" - -#: cms/templates/course-create-rerun.html -msgid "What does not transfer from the original course?" -msgstr "原始课程中的哪些内容不会复制过来?" - -#: cms/templates/course-create-rerun.html -msgid "" -"You are the only member of the new course's staff. No students are enrolled " -"in the course, and there is no student data. There is no content in the " -"discussion topics or wiki." -msgstr "您是新课程的唯一课程员工。没有学生选修该课程,没有学生数据,论坛或Wiki里也没有内容。" - -#: cms/templates/course-create-rerun.html -msgid "Learn more about Course Re-runs" -msgstr "了解更多关于课程重启的信息" - -#: cms/templates/course_info.html cms/templates/course_info.html -msgid "Course Updates" -msgstr "课程更新" - -#: cms/templates/course_info.html -msgid "New Update" -msgstr "新的更新" - -#: cms/templates/course_info.html -msgid "" -"Use course updates to notify students of important dates or exams, highlight" -" particular discussions in the forums, announce schedule changes, and " -"respond to student questions. You add or edit updates in HTML." -msgstr "使用课程更新来通知学生重要的日期或者考试,高亮显示论坛中的特别讨论,发布进度变更,以及回复学生问题。您可以用HTML来编辑更新。" - -#: cms/templates/course_outline.html -msgid "" -"This course was created as a re-run. Some manual configuration is needed." -msgstr "本课程已作为重启创建,需要进行一些必要的手动配置。" - -#: cms/templates/course_outline.html -msgid "" -"No course content is currently visible, and no learners are enrolled. Be " -"sure to review and reset all dates, including the Course Start Date; set up " -"the course team; review course updates and other assets for dated material; " -"and seed the discussions and wiki." -msgstr "" -"当前没有可见的课程内容,也没有学生选修。请确保已检查和重置包括课程开始日期在内的所有的日期,设置好课程团队,检查课程更新和其他资料中的过期内容,并设置好论坛和Wiki。" - -#: cms/templates/course_outline.html -msgid "Warning" -msgstr "警告" - -#: cms/templates/course_outline.html -msgid "This course uses features that are no longer supported." -msgstr "该课程使用了不再支持的特性。" - -#: cms/templates/course_outline.html -msgid "You must delete or replace the following components." -msgstr "您必须删除或替换下面这些组件。" - -#: cms/templates/course_outline.html -msgid "Unsupported Components" -msgstr "不支持的组件" - -#: cms/templates/course_outline.html -msgid "Deprecated Component" -msgstr "被弃用的组件" - -#: cms/templates/course_outline.html -msgid "" -"To avoid errors, {platform_name} strongly recommends that you remove " -"unsupported features from the course advanced settings. To do this, go to " -"the {link_start}Advanced Settings page{link_end}, locate the \"Advanced " -"Module List\" setting, and then delete the following modules from the list." -msgstr "" -"为了避免出现错误,{platform_name}强烈建议您从课程的高级设置中移除不支持的特性。为此,您可以去往{link_start}高级设置网页{link_end},找到“高级模块列表”设置,然后从列表中删除下面的模块。" - -#: cms/templates/course_outline.html -msgid "Unsupported Advance Modules" -msgstr "不支持的高级模块" - -#: cms/templates/course_outline.html -msgid "Click to add a new section" -msgstr "点击添加新的一章" - -#: cms/templates/course_outline.html -msgid "New Section" -msgstr "添加新章节" - -#: cms/templates/course_outline.html -msgid "Reindex current course" -msgstr "重新索引当前课程" - -#: cms/templates/course_outline.html -msgid "Reindex" -msgstr "重新索引" - -#: cms/templates/course_outline.html -msgid "Collapse All Sections" -msgstr "折叠所有章节" - -#: cms/templates/course_outline.html -msgid "Expand All Sections" -msgstr "展开所有章" - -#: cms/templates/course_outline.html -msgid "Click to open the courseware in the LMS in a new tab" -msgstr "点击以在新的标签页中使用LMS打开课件" - -#: cms/templates/course_outline.html cms/templates/edit-tabs.html -msgid "View Live" -msgstr "在线查看" - -#: cms/templates/course_outline.html -msgid "Creating your course organization" -msgstr "创建您的课程组织" - -#: cms/templates/course_outline.html -msgid "You add sections, subsections, and units directly in the outline." -msgstr "您可以直接在大纲中添加章、节和单元。" - -#: cms/templates/course_outline.html -msgid "" -"Create a section, then add subsections and units. Open a unit to add course " -"components." -msgstr "创建一个章,然后添加节和单元;打开一个单元以添加课程组件。" - -#: cms/templates/course_outline.html -msgid "Reorganizing your course" -msgstr "重新组织您的课程" - -#: cms/templates/course_outline.html -msgid "Drag sections, subsections, and units to new locations in the outline." -msgstr "在大纲中拖动章、节和单元到新的位置。" - -#: cms/templates/course_outline.html -msgid "Learn more about the course outline" -msgstr "了解更多关于课程大纲的信息" - -#: cms/templates/course_outline.html -msgid "Setting release dates and grading policies" -msgstr "设置课程公开日期和评分策略" - -#: cms/templates/course_outline.html -msgid "" -"Select the Configure icon for a section or subsection to set its release " -"date. When you configure a subsection, you can also set the grading policy " -"and due date." -msgstr "选择配置图标来为章、节设置公开日期。在对节进行配置时,您还可以设置评分策略及截止日期。" - -#: cms/templates/course_outline.html -msgid "Learn more about grading policy settings" -msgstr "了解更多关于评分标准的事" - -#: cms/templates/course_outline.html -msgid "Changing the content learners see" -msgstr "正在更改学员可见的内容" - -#: cms/templates/course_outline.html -msgid "" -"To publish draft content, select the Publish icon for a section, subsection," -" or unit." -msgstr "请选择章、节或单元中的发布图标以发布草稿内容。" - -#: cms/templates/course_outline.html -msgid "" -"To make a section, subsection, or unit unavailable to learners, select the " -"Configure icon for that level, then select the appropriate " -"{em_start}Hide{em_end} option. Grades for hidden sections, subsections, and " -"units are not included in grade calculations." -msgstr "" -"可以点击“设置 > {em_start}隐藏{em_end}”按钮对该层级的章、节、单元进行对学员隐藏。隐藏的章、节、单元的分数不计入总分。" - -#: cms/templates/course_outline.html -msgid "" -"To hide the content of a subsection from learners after the subsection due " -"date has passed, select the Configure icon for a subsection, then select " -"{em_start}Hide content after due date{em_end}. Grades for the subsection " -"remain included in grade calculations." -msgstr "" -"如需在截止日期过后对学员隐藏节的内容,可以点击该节的“设置 > {em_start}隐藏已过期内容到期日{em_end}”按钮,该节分数仍计入总分。" - -#: cms/templates/course_outline.html -msgid "Learn more about content visibility settings" -msgstr "了解更多关于内容可见性设置的信息" - -#. Translators: Pages refer to the tabs that appear in the top navigation of -#. each course. -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -#: cms/templates/export.html cms/templates/widgets/header.html -msgid "Pages" -msgstr "页面" - -#: cms/templates/edit-tabs.html -msgid "New Page" -msgstr "新的页面" - -#: cms/templates/edit-tabs.html -msgid "" -"Note: Pages are publicly visible. If users know the URL of a page, they can " -"view the page even if they are not registered for or logged in to your " -"course." -msgstr "注意:页面是公开可见的,知道该页面链接的用户可以直接查看,即使他们尚未注册或者登录到您的课程。" - -#: cms/templates/edit-tabs.html -msgid "Show this page" -msgstr "显示该页面" - -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -msgid "Show/hide page" -msgstr "显示/隐藏页面" - -#: cms/templates/edit-tabs.html cms/templates/edit-tabs.html -msgid "This page cannot be reordered" -msgstr "该页面无法重新排序" - -#: cms/templates/edit-tabs.html -msgid "You can add additional custom pages to your course." -msgstr "您可以在课程中添加额外的自定义页面" - -#: cms/templates/edit-tabs.html -msgid "Add a New Page" -msgstr "添加新的页面" - -#: cms/templates/edit-tabs.html -msgid "What are pages?" -msgstr "什么是页面?" - -#: cms/templates/edit-tabs.html -msgid "" -"Pages are listed horizontally at the top of your course. Default pages " -"(Home, Course, Discussion, Wiki, and Progress) are followed by textbooks and" -" custom pages that you create." -msgstr "课程页面顶部水平列有默认页面 (课件,课程信息,讨论,维基和进度),之后是教材和自定义页面。" - -#: cms/templates/edit-tabs.html -msgid "Custom pages" -msgstr "自定义页面" - -#: cms/templates/edit-tabs.html -msgid "" -"You can create and edit custom pages to provide students with additional " -"course content. For example, you can create pages for the grading policy, " -"course slides, and a course calendar. " -msgstr "您可以通过创建个性化页面来为学生提供额外的课程内容。例如,您可以为评分策略、课程幻灯片、课程日历等创建自定义页面。" - -#: cms/templates/edit-tabs.html -msgid "How do pages look to students in my course?" -msgstr "学生看到的课程页面会是什么样子?" - -#: cms/templates/edit-tabs.html -msgid "" -"Students see the default and custom pages at the top of your course and use " -"these links to navigate." -msgstr "学生将会看到水平列于您课程主页上方的缺省页面及自定义页面的链接,并通过这些链接来漫游整个课程。" - -#: cms/templates/edit-tabs.html -msgid "See an example" -msgstr "查看例子" - -#: cms/templates/edit-tabs.html -msgid "Pages in Your Course" -msgstr "课程中的页面" - -#: cms/templates/edit-tabs.html -msgid "Preview of Pages in your course" -msgstr "课程页面预览" - -#: cms/templates/edit-tabs.html -msgid "" -"Pages appear in your course's top navigation bar. The default pages (Home, " -"Course, Discussion, Wiki, and Progress) are followed by textbooks and custom" -" pages." -msgstr "您课程页面顶部导航栏,默认标签页为(主页、课程、讨论、Wiki、进度),之后是教材和自定义标签页。" - -#: cms/templates/edit-tabs.html cms/templates/howitworks.html -#: cms/templates/howitworks.html cms/templates/howitworks.html -msgid "close modal" -msgstr "关闭模式对话框" - -#: cms/templates/error.html -msgid "Internal Server Error" -msgstr "内部服务器错误" - -#: cms/templates/error.html -msgid "The Page You Requested Page Cannot be Found" -msgstr "您请求的页面无法找到" - -#: cms/templates/error.html -msgid "" -"We're sorry. We couldn't find the {studio_name} page you're looking for. You" -" may want to return to the {studio_name} Dashboard and try again. If you are" -" still having problems accessing things, please feel free to " -"{link_start}contact {studio_name} support{link_end} for further help." -msgstr "" -"很抱歉,我们无法找到您请求的{studio_name}页面。您可能希望返回至{studio_name}课程面板后重新尝试。如果您仍遇到问题,请随时{link_start}联系{studio_name}支持{link_end}以获取更多帮助。" - -#: cms/templates/error.html -msgid "The Server Encountered an Error" -msgstr "服务器发生错误" - -#: cms/templates/error.html -msgid "" -"We're sorry. There was a problem with the server while trying to process " -"your last request. You may want to return to the {studio_name} Dashboard or " -"try this request again. If you are still having problems accessing things, " -"please feel free to {link_start}contact {studio_name} support{link_end} for " -"further help." -msgstr "" -"很抱歉,服务器在处理您的上一个请求时遇到问题。您可能希望返回至{studio_name}课程面板或重新提交请求。如果您仍遇到问题,请随时{link_start}联系{studio_name}支持{link_end}以寻求帮助。" - -#: cms/templates/error.html -msgid "Back to dashboard" -msgstr "回到课程面板" - -#: cms/templates/export.html cms/templates/export.html -msgid "Library Export" -msgstr "知识库导出" - -#: cms/templates/export.html cms/templates/export.html -msgid "Course Export" -msgstr "导出课程" - -#: cms/templates/export.html -msgid "About Exporting Libraries" -msgstr "关于导出知识库" - -#. Translators: ".tar.gz" is a file extension, and should not be translated -#: cms/templates/export.html -msgid "" -"You can export libraries and edit them outside of {studio_name}. The " -"exported file is a .tar.gz file (that is, a .tar file compressed with GNU " -"Zip) that contains the library structure and content. You can also re-import" -" libraries that you've exported." -msgstr "" -"您可以导出知识库并在{studio_name}之外编辑它们。导出的文件是一个包含知识库结构和内容的 .tar.gz 文件(即,使用GNU Zip压缩的 " -".tar 文件)。您也可以再次导入这些已经导出的知识库。" - -#: cms/templates/export.html -msgid "About Exporting Courses" -msgstr "关于导出课程" - -#. Translators: ".tar.gz" is a file extension, and should not be translated -#: cms/templates/export.html -msgid "" -"You can export courses and edit them outside of {studio_name}. The exported " -"file is a .tar.gz file (that is, a .tar file compressed with GNU Zip) that " -"contains the course structure and content. You can also re-import courses " -"that you've exported." -msgstr "" -"您可以导出课程并在{studio_name}之外编辑它们。导出的文件是一个包含课程结构和内容的 .tar.gz 文件(即,使用GNU Zip压缩的 " -".tar 文件)。您也可以再次导入这些已经导出的课程。" - -#: cms/templates/export.html -msgid "" -"{em_start}Caution:{em_end} When you export a course, information such as " -"MATLAB API keys, LTI passports, annotation secret token strings, and " -"annotation storage URLs are included in the exported data. If you share your" -" exported files, you may also be sharing sensitive or license-specific " -"information." -msgstr "" -"{em_start}注意{em_end}:当您导出一门课程时,像MATLAB API密钥、LTI通行证、批注秘密令牌以及批注存储 URL " -"等信息都包含在导出的数据中。如果您分享了导出的文件,就等于您同时也分享了敏感的或者与许可证相关的信息。" - -#: cms/templates/export.html -msgid "Export My Library Content" -msgstr "导出我的知识库内容" - -#: cms/templates/export.html -msgid "Export My Course Content" -msgstr "导出我的课程内容" - -#: cms/templates/export.html -msgid "Export Library Content" -msgstr "导出知识库内容" - -#: cms/templates/export.html -msgid "Export Course Content" -msgstr "导出课程内容" - -#: cms/templates/export.html -msgid "Library Export Status" -msgstr "知识库导出状态" - -#: cms/templates/export.html -msgid "Course Export Status" -msgstr "课程导出状态" - -#: cms/templates/export.html -msgid "Preparing" -msgstr "正在准备" - -#: cms/templates/export.html -msgid "Preparing to start the export" -msgstr "正在准备导出" - -#: cms/templates/export.html -msgid "Exporting" -msgstr "正在导出" - -#: cms/templates/export.html -msgid "" -"Creating the export data files (You can now leave this page safely, but " -"avoid making drastic changes to content until this export is complete)" -msgstr "正在创建导出数据文件(您现在可以安全离开此页面,但请在导出结束前不要对内容进行重大更改)" - -#: cms/templates/export.html -msgid "Compressing" -msgstr "正在压缩" - -#: cms/templates/export.html -msgid "Compressing the exported data and preparing it for download" -msgstr "正在压缩已导出数据并正在准备下载" - -#: cms/templates/export.html cms/templates/import.html -msgid "Success" -msgstr "成功" - -#: cms/templates/export.html -msgid "Your exported library can now be downloaded" -msgstr "您现在可以下载已导出的知识库" - -#: cms/templates/export.html -msgid "Your exported course can now be downloaded" -msgstr "您现在可以下载已导出的课程" - -#: cms/templates/export.html -msgid "Download Exported Library" -msgstr "下载已导出的知识库" - -#: cms/templates/export.html -msgid "Download Exported Course" -msgstr "下载已导出课程" - -#: cms/templates/export.html -msgid "Data {em_start}exported with{em_end} your course:" -msgstr "随课程{em_start} 导出 {em_end} 数据:" - -#: cms/templates/export.html -msgid "" -"Values from Advanced Settings, including MATLAB API keys and LTI passports" -msgstr "来自高级设置中的值,包括 MATLAB API 密钥和 LTI 通行证" - -#: cms/templates/export.html -msgid "Course Content (all Sections, Sub-sections, and Units)" -msgstr "课程内容 (所有章节,小节和单元)" - -#: cms/templates/export.html -msgid "Course Structure" -msgstr "课程结构" - -#: cms/templates/export.html -msgid "Individual Problems" -msgstr "个别问题" - -#: cms/templates/export.html -msgid "Course Assets" -msgstr "课程资源" - -#: cms/templates/export.html -msgid "Course Settings" -msgstr "课程设置" - -#: cms/templates/export.html -msgid "Data {em_start}not exported{em_end} with your course:" -msgstr "不随课程{em_start} 导出 {em_end} 的数据:" - -#: cms/templates/export.html -msgid "User Data" -msgstr "用户数据" - -#: cms/templates/export.html -msgid "Course Team Data" -msgstr "课程团队数据" - -#: cms/templates/export.html -msgid "Forum/discussion Data" -msgstr "论坛/讨论数据" - -#: cms/templates/export.html -msgid "Why export a library?" -msgstr "为何要导出知识库?" - -#: cms/templates/export.html -msgid "" -"You may want to edit the XML in your library directly, outside of " -"{studio_name}. You may want to create a backup copy of your library. Or, you" -" may want to create a copy of your library that you can later import into " -"another library instance and customize." -msgstr "" -"您可能想在{studio_name}之外直接编辑知识库的XML,或为您的知识库建立备份,或者您是想创建一份知识库的副本以便日后导入进另一个知识库实例并进行自定义。" - -#: cms/templates/export.html cms/templates/export.html -msgid "Opening the downloaded file" -msgstr "打开下载的文件" - -#. Translators: ".tar.gz" is a file extension, and should not be translated -#: cms/templates/export.html -msgid "" -"Use an archive program to extract the data from the .tar.gz file. Extracted " -"data includes the library.xml file, as well as subfolders that contain " -"library content." -msgstr "使用归档程序从该 .tar.gz 中文件解压数据,解压后的数据包含了一个 library.xml 文件,以及一些存放了知识库内容的子目录。" - -#: cms/templates/export.html -msgid "Learn more about exporting a library" -msgstr "了解更多关于知识库导出的信息" - -#: cms/templates/export.html -msgid "Why export a course?" -msgstr "为什么导出课程?" - -#: cms/templates/export.html -msgid "" -"You may want to edit the XML in your course directly, outside of " -"{studio_name}. You may want to create a backup copy of your course. Or, you " -"may want to create a copy of your course that you can later import into " -"another course instance and customize." -msgstr "" -"您可能想在{studio_name}之外直接编辑课程的XML,或为您的课程建立备份,或者您是想创建一份课程的副本以便日后导入进另一个课程实例并进行自定义。" - -#: cms/templates/export.html -msgid "What content is exported?" -msgstr "哪些内容被导出了?" - -#: cms/templates/export.html -msgid "The following content is exported." -msgstr "以下内容已导出。" - -#: cms/templates/export.html cms/templates/import.html -msgid "Course content and structure" -msgstr "课程内容和结构" - -#: cms/templates/export.html cms/templates/import.html -msgid "Course dates" -msgstr "课程日期" - -#: cms/templates/export.html cms/templates/import.html -msgid "Grading policy" -msgstr "评分政策" - -#: cms/templates/export.html cms/templates/import.html -msgid "Any group configurations" -msgstr "任何小组配置项" - -#: cms/templates/export.html cms/templates/import.html -msgid "" -"Settings on the Advanced Settings page, including MATLAB API keys and LTI " -"passports" -msgstr "高级设置页面的设置项,包括MATLAB API keys和LTI通行证" - -#: cms/templates/export.html -msgid "The following content is not exported." -msgstr "以下内容未导出。" - -#: cms/templates/export.html cms/templates/import.html -msgid "" -"Learner-specific content, such as learner grades and discussion forum data" -msgstr "关于学员的信息,比如学员的成绩和论坛数据" - -#: cms/templates/export.html cms/templates/import.html -msgid "The course team" -msgstr "课程团队" - -#. Translators: ".tar.gz" is a file extension, and should not be translated -#: cms/templates/export.html -msgid "" -"Use an archive program to extract the data from the .tar.gz file. Extracted " -"data includes the course.xml file, as well as subfolders that contain course" -" content." -msgstr "使用档案工具解压.tar.gz中的文件。解压后的数据包含coursex.xml,还有一些子目录,存放了课程内容。" - -#: cms/templates/export.html -msgid "Learn more about exporting a course" -msgstr "了解更多关于课程导出的信息" - -#: cms/templates/export_git.html -msgid "Export Course to Git" -msgstr "导出课程到Git" - -#: cms/templates/export_git.html cms/templates/export_git.html -#: cms/templates/widgets/header.html -msgid "Export to Git" -msgstr "导出到Git" - -#: cms/templates/export_git.html -msgid "About Export to Git" -msgstr "关于导出课程到Git" - -#: cms/templates/export_git.html -msgid "Use this to export your course to its git repository." -msgstr "使用这个来导出您的课程到Git源。" - -#: cms/templates/export_git.html -msgid "" -"This will then trigger an automatic update of the main LMS site and update " -"the contents of your course visible there to students if automatic git " -"imports are configured." -msgstr "这将触发主LMS站点的自动更新,若自动Git导入已配置好,学生可见的课程内容也会被自动更新。" - -#: cms/templates/export_git.html -msgid "Export Course to Git:" -msgstr "导出课程到Git:" - -#: cms/templates/export_git.html -msgid "" -"giturl must be defined in your course settings before you can export to git." -msgstr "在您导出到Git之前必须在课程设置里定义Git地址。" - -#: cms/templates/export_git.html -msgid "Export Failed" -msgstr "导出失败" - -#: cms/templates/export_git.html -msgid "Export Succeeded" -msgstr "导出成功" - -#: cms/templates/export_git.html -msgid "Your course:" -msgstr "您的课程:" - -#: cms/templates/export_git.html -msgid "Course git url:" -msgstr "课程Git地址:" - -#: cms/templates/group_configurations.html -#: cms/templates/group_configurations.html -msgid "Experiment Group Configurations" -msgstr "实验组配置" - -#: cms/templates/group_configurations.html -msgid "This module is disabled at the moment." -msgstr "这个模块目前被禁用。" - -#: cms/templates/group_configurations.html -msgid "Enrollment Track Groups" -msgstr "选课记录组" - -#: cms/templates/group_configurations.html -msgid "" -"Enrollment track groups allow you to offer different course content to " -"learners in each enrollment track. Learners enrolled in each enrollment " -"track in your course are automatically included in the corresponding " -"enrollment track group." -msgstr "注册跟踪组允许您在每个注册跟踪中为学习者提供不同的课程内容。在您课程的每个注册轨道上注册的学员将自动加入相应的注册轨道组。" - -#: cms/templates/group_configurations.html -msgid "" -"On unit pages in the course outline, you can restrict access to components " -"to learners based on their enrollment track." -msgstr "在课程概述的单元页面上,您可以根据学习者的注册轨迹限制对组件的访问。" - -#: cms/templates/group_configurations.html -msgid "" -"You cannot edit enrollment track groups, but you can expand each group to " -"view details of the course content that is designated for learners in the " -"group." -msgstr "您不能编辑注册跟踪组,但是您可以扩展每个组去查看组中学习者指定的课程内容的详细信息。" - -#: cms/templates/group_configurations.html -msgid "Content Groups" -msgstr "内容组" - -#: cms/templates/group_configurations.html -msgid "" -"If you have cohorts enabled in your course, you can use content groups to " -"create cohort-specific courseware. In other words, you can customize the " -"content that particular cohorts see in your course." -msgstr "如果您在您的课程中启用了群组,您可以使用内容组来创建群组特定的课件。换句话说,您可以在您课程中的自定义内容使得特定的群组才能看到这些内容。" - -#: cms/templates/group_configurations.html -msgid "" -"Each content group that you create can be associated with one or more " -"cohorts. In addition to making course content available to all learners, you" -" can restrict access to some content to learners in specific content groups." -" Only learners in the cohorts that are associated with the specified content" -" groups see the additional content." -msgstr "" -"您创建的每个内容组都可以与一个或多个群组相关联。可以将课程内容对所有学员开放,您还可以设置某些内容为仅某内容组的学员可见。只有在与某个内容组相关联的群组内的学员可查看额外内容。" - -#: cms/templates/group_configurations.html -msgid "" -"Click {em_start}New content group{em_end} to add a new content group. To " -"edit the name of a content group, hover over its box and click " -"{em_start}Edit{em_end}. You can delete a content group only if it is not in " -"use by a unit. To delete a content group, hover over its box and click the " -"delete icon." -msgstr "" -"点击{em_start}新建内容组{em_end}来添加一个新的内容组;如果要编辑某个内容组的名称,请点击该内容组的{em_start}编辑{em_end}按钮;一个内容组只有在未被任何一个单元使用的情况下可以被删除,请点击某个内容组的删除图标以删除该内容组。" - -#: cms/templates/group_configurations.html -msgid "" -"Use experiment group configurations if you are conducting content " -"experiments, also known as A/B testing, in your course. Experiment group " -"configurations define how many groups of learners are in a content " -"experiment. When you create a content experiment for a course, you select " -"the group configuration to use." -msgstr "" -"如果您正在您的课程中开展群组实验,也称A/B测试,您可以使用实验组配置。实验组配置决定在一个内容实验中有多少组学生。在您创建一个课程内容实验的时候,您可以选择要使用的组配置。" - -#: cms/templates/group_configurations.html -msgid "" -"Click {em_start}New Group Configuration{em_end} to add a new configuration. " -"To edit a configuration, hover over its box and click " -"{em_start}Edit{em_end}. You can delete a group configuration only if it is " -"not in use in an experiment. To delete a configuration, hover over its box " -"and click the delete icon." -msgstr "" -"点击{em_start}新建组配置{em_end}来添加一个新的配置;如果要编辑某个配置,请点击该配置的{em_start}编辑{em_end}按钮;一个组配置只有在未被任何一个实验使用的情况下可以被删除,请点击某个组配置的删除图标以删除该组配置。" - -#: cms/templates/group_configurations.html -#: cms/templates/settings_advanced.html -msgid "Details & Schedule" -msgstr "细节与日程" - -#: cms/templates/howitworks.html -msgid "Welcome" -msgstr "欢迎" - -#: cms/templates/howitworks.html -msgid "Welcome to {studio_name}" -msgstr "欢迎来到{studio_name}" - -#: cms/templates/howitworks.html -msgid "" -"{studio_name} helps manage your online courses, so you can focus on teaching" -" them" -msgstr "{studio_name}帮助您管理您的线上课程,这样您就可以专注于教学" - -#: cms/templates/howitworks.html -msgid "{studio_name}'s Many Features" -msgstr "{studio_name}的许多特性" - -#: cms/templates/howitworks.html cms/templates/howitworks.html -msgid "{studio_name} Helps You Keep Your Courses Organized" -msgstr "{studio_name}帮助您保持课程有序组织" - -#: cms/templates/howitworks.html cms/templates/howitworks.html -#: cms/templates/howitworks.html -msgid "Enlarge image" -msgstr "放大图片" - -#: cms/templates/howitworks.html -msgid "Keeping Your Course Organized" -msgstr "保持您的课程有序组织" - -#: cms/templates/howitworks.html -msgid "" -"The backbone of your course is how it is organized. {studio_name} offers an " -"{strong_start}Outline{strong_end} editor, providing a simple hierarchy and " -"easy drag and drop to help you and your students stay organized." -msgstr "" -"课程的关键在于如何组织其结构。在{studio_name}您可以编辑{strong_start}“教学大纲”{strong_end},为您提供简单易用的层级结构来确保课程组织有序。" - -#: cms/templates/howitworks.html -msgid "Simple Organization For Content" -msgstr "简单地组织内容" - -#: cms/templates/howitworks.html -msgid "" -"{studio_name} uses a simple hierarchy of {strong_start}sections{strong_end} " -"and {strong_start}subsections{strong_end} to organize your content." -msgstr "" -"{studio_name}使用简单层级结构管理内容:{strong_start}章{strong_end}和{strong_start}节{strong_end}。" - -#: cms/templates/howitworks.html -msgid "Change Your Mind Anytime" -msgstr "随时改变您的思路" - -#: cms/templates/howitworks.html -msgid "" -"Draft your outline and build content anywhere. Simple drag and drop tools " -"let you reorganize quickly." -msgstr "您可以在任意位置起草大纲并创建内容。简单的拖放工具使您可以快速地重新组织课程内容。" - -#: cms/templates/howitworks.html -msgid "Go A Week Or A Semester At A Time" -msgstr "按星期或学期发布内容" - -#: cms/templates/howitworks.html -msgid "" -"Build and release {strong_start}sections{strong_end} to your students " -"incrementally. You don't have to have it all done at once." -msgstr "逐渐创建并发布{strong_start}章{strong_end}。您不必一次完成所有事情。" - -#: cms/templates/howitworks.html cms/templates/howitworks.html -#: cms/templates/howitworks.html -msgid "Learning is More than Just Lectures" -msgstr "学习不仅仅是听课" - -#: cms/templates/howitworks.html -msgid "" -"{studio_name} lets you weave your content together in a way that reinforces " -"learning. Insert videos, discussions, and a wide variety of exercises with " -"just a few clicks." -msgstr "" -"{studio_name}使您可以将您的课程内容以有助于巩固学习效果的形式组织在一起。您只需通过几次点击就可以插入视频、讨论区以及各种各样的练习题。" - -#: cms/templates/howitworks.html -msgid "Create Learning Pathways" -msgstr "创建学习路径" - -#: cms/templates/howitworks.html -msgid "" -"Help your students understand one concept at a time with multimedia, HTML, " -"and exercises." -msgstr "通过多媒体、HTML和练习帮助您的学生每次理解一个概念。" - -#: cms/templates/howitworks.html -msgid "Work Visually, Organize Quickly" -msgstr "可视化地工作,快速地组织" - -#: cms/templates/howitworks.html -msgid "" -"Work visually and see exactly what your students will see. Reorganize all " -"your content with drag and drop." -msgstr "可视化地工作并且随时预览您的学生将要看的内容。通过拖放操作重新组织您的课程内容。" - -#: cms/templates/howitworks.html -msgid "A Broad Library of Problem Types" -msgstr "丰富的平台库可以支持各种问题类型" - -#: cms/templates/howitworks.html -msgid "" -"It's more than just multiple choice. {studio_name} supports more than a " -"dozen types of problems to challenge your learners." -msgstr "不只是选择题,{studio_name}支持各种各样的题型来挑战您的学生们。" - -#: cms/templates/howitworks.html cms/templates/howitworks.html -msgid "" -"{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " -"Friends." -msgstr "{studio_name}给您和您的朋友提供简单、快速、增量式的发布体验。" - -#: cms/templates/howitworks.html -msgid "Simple, Fast, and Incremental Publishing. With Friends." -msgstr "与其他人一起合作,体验简单、快速、增量式的内容发布过程" - -#: cms/templates/howitworks.html -msgid "" -"{studio_name} works like web applications you already know, yet understands " -"how you build curriculum. Instant publishing to the web when you want it, " -"incremental release when it makes sense. And with co-authors, you can have a" -" whole team building a course, together." -msgstr "" -"{studio_name}的工作方式与您熟知的网页应用类似,只是您还需要了解一下如何创建课程。您可以根据需要在网页上一次性地发布信息,或者采用增量式的发布形式。如果您有合作者,您们还可以作为一个团队来共同创建课程。" - -#: cms/templates/howitworks.html -msgid "Instant Changes" -msgstr "即时修改" - -#: cms/templates/howitworks.html -msgid "" -"Caught a bug? No problem. When you want, your changes go live when you click" -" Save." -msgstr "发现了一个错误?没有问题。只要您需要,点击保存按钮就可以将您的更改上线。" - -#: cms/templates/howitworks.html -msgid "Release-On Date Publishing" -msgstr "定期发布课程" - -#: cms/templates/howitworks.html -msgid "" -"When you've finished a {strong_start}section{strong_end}, pick when you want" -" it to go live and {studio_name} takes care of the rest. Build your course " -"incrementally." -msgstr "" -"当您完成了一个{strong_start}章{strong_end},指定上线时间,{studio_name}届时会自行发布。逐步创建您的课程。" - -#: cms/templates/howitworks.html -msgid "Work in Teams" -msgstr "参与团队协作" - -#: cms/templates/howitworks.html -msgid "" -"Co-authors have full access to all the same authoring tools. Make your " -"course better through a team effort." -msgstr "合作者有权访问相同的创作工具。团队协作将提高您的课程质量。" - -#: cms/templates/howitworks.html -msgid "Sign Up for {studio_name} Today!" -msgstr "立即在{studio_name}注册!" - -#: cms/templates/howitworks.html -msgid "Sign Up & Start Making Your {platform_name} Course" -msgstr "注册并开始打造您自己的{platform_name}课程" - -#: cms/templates/howitworks.html -msgid "Already have a {studio_name} Account? Sign In" -msgstr "已经有一个{studio_name}账号?请登录" - -#: cms/templates/howitworks.html -msgid "Outlining Your Course" -msgstr "列出您的课程大纲" - -#: cms/templates/howitworks.html -msgid "" -"Simple two-level outline to organize your course. Drag and drop, and see " -"your course at a glance." -msgstr "简洁的两级教学大纲、简单的拖放工具、清晰了然的课程显示。" - -#: cms/templates/howitworks.html -msgid "More than Just Lectures" -msgstr "不仅仅是课程讲座" - -#: cms/templates/howitworks.html -msgid "" -"Quickly create videos, text snippets, inline discussions, and a variety of " -"problem types." -msgstr "快速创建视频、文本片段、内部讨论和各种问题类型。" - -#: cms/templates/howitworks.html -msgid "Publishing on Date" -msgstr "发布时间" - -#: cms/templates/howitworks.html -msgid "" -"Simply set the date of a section or subsection, and {studio_name} will " -"publish it to your students for you." -msgstr "只需简单地设置章节的发布时间,{studio_name}会按照设定的时间为您发布这些内容给学生。" - -#: cms/templates/html_error.html -msgid "We're having trouble rendering your component" -msgstr "渲染组件时遇到问题" - -#: cms/templates/html_error.html -msgid "" -"Students will not be able to access this component. Re-edit your component " -"to fix the error." -msgstr "学生无法访问这个组件。请重新编辑您的组件以修复错误。" - -#: cms/templates/import.html cms/templates/import.html -msgid "Library Import" -msgstr "知识库导入" - -#: cms/templates/import.html cms/templates/import.html -msgid "Course Import" -msgstr "课程导入" - -#: cms/templates/import.html -msgid "" -"Be sure you want to import a library before continuing. The contents of the " -"imported library will replace the contents of the existing library. " -"{em_start}You cannot undo a library import{em_end}. Before you proceed, we " -"recommend that you export the current library, so that you have a backup " -"copy of it." -msgstr "" -"在继续之前,请确认您想要导入一个知识库。当前知识库的所有内容会被导入的内容所取代,{em_start}您无法撤销该导入操作 " -"{em_end}。我们建议您在继续操作之前先将当前知识库导出,以便有个备份。" - -#: cms/templates/import.html -msgid "" -"The library that you import must be in a .tar.gz file (that is, a .tar file " -"compressed with GNU Zip). This .tar.gz file must contain a library.xml file." -" It may also contain other files." -msgstr "" -"您导入的知识库必须是一个 .tar.gz 格式的文件(即,使用 GNU Zip 压缩的 .tar 文件)。该文件中必须包含一个 library.xml " -"文件,同时也可以包含其他文件。" - -#: cms/templates/import.html -msgid "" -"The import process has five stages. During the first two stages, you must " -"stay on this page. You can leave this page after the Unpacking stage has " -"completed. We recommend, however, that you don't make important changes to " -"your library until the import operation has completed." -msgstr "" -"导入过程有五个步骤。在前两个步骤进行时,请勿离开本页面;在“解压”步骤完成之后,您可以离开本页面。但是我们建议,在导入操作完成之前请不要对您的知识库做出重要改动。" - -#: cms/templates/import.html -msgid "" -"Be sure you want to import a course before continuing. The contents of the " -"imported course will replace the contents of the existing course. " -"{em_start}You cannot undo a course import{em_end}. Before you proceed, we " -"recommend that you export the current course, so that you have a backup copy" -" of it." -msgstr "" -"在继续之前,请确认您想要导入一门课程。当前课程的所有内容会被导入的内容所取代,{em_start}您无法撤销该导入操作 " -"{em_end}。我们建议您在继续操作之前先将当前课程导出,以便有个备份。" - -#: cms/templates/import.html -msgid "" -"The course that you import must be in a .tar.gz file (that is, a .tar file " -"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " -"It may also contain other files." -msgstr "" -"您导入的课程必须是一个 .tar.gz 格式的文件(即,使用 GNU Zip 压缩的 .tar 文件)。该文件中必须包含一个 library.xml " -"文件,同时也可以包含其他文件。" - -#: cms/templates/import.html -msgid "" -"The import process has five stages. During the first two stages, you must " -"stay on this page. You can leave this page after the Unpacking stage has " -"completed. We recommend, however, that you don't make important changes to " -"your course until the import operation has completed." -msgstr "" -"导入过程有五步。在前两步中,您必须停留在当前页面。而在解压步骤结束后您可以离开当前页面。不过,我们建议在导入操作结束前您都不要对课程做任何更改调整。" - -#: cms/templates/import.html -msgid "Select a .tar.gz File to Replace Your Library Content" -msgstr "请选择一个用于替换您的知识库内容的 .tar.gz 文件" - -#: cms/templates/import.html -msgid "Select a .tar.gz File to Replace Your Course Content" -msgstr "选择一个.tar.gz 文件以覆盖当前课程内容" - -#: cms/templates/import.html -msgid "Choose a File to Import" -msgstr "选择要导入的文件" - -#: cms/templates/import.html -msgid "File Chosen:" -msgstr "选中的文件:" - -#: cms/templates/import.html -msgid "Replace my library with the selected file" -msgstr "用所选的文件替换我的知识库" - -#: cms/templates/import.html -msgid "Replace my course with the selected file" -msgstr "用所选的文件替换我的课程" - -#: cms/templates/import.html -msgid "Library Import Status" -msgstr "知识库导入状态" - -#: cms/templates/import.html -msgid "Course Import Status" -msgstr "课程导入状态" - -#: cms/templates/import.html -msgid "Uploading" -msgstr "正在上传" - -#: cms/templates/import.html -msgid "Transferring your file to our servers" -msgstr "正在传输您的文件至服务器" - -#: cms/templates/import.html -msgid "Unpacking" -msgstr "正在解压" - -#: cms/templates/import.html -msgid "" -"Expanding and preparing folder/file structure (You can now leave this page " -"safely, but avoid making drastic changes to content until this import is " -"complete)" -msgstr "展开预定义的目录/文件结构(您现在可以安全地离开这个页面了,但在内容导入完成之前请尽量避免不必要的修改)" - -#: cms/templates/import.html -msgid "Verifying" -msgstr "正在校验" - -#: cms/templates/import.html -msgid "Reviewing semantics, syntax, and required data" -msgstr "正在复查语义、语法和必要数据" - -#: cms/templates/import.html -msgid "Updating Library" -msgstr "正在更新知识库" - -#: cms/templates/import.html -msgid "Updating Course" -msgstr "正在更新课程" - -#: cms/templates/import.html -msgid "" -"Integrating your imported content into this library. This process might take" -" longer with larger libraries." -msgstr "正在整合您导入的内容到该知识库。如果知识库较大,这一过程可能花费较多时间。" - -#: cms/templates/import.html -msgid "" -"Integrating your imported content into this course. This process might take " -"longer with larger courses." -msgstr "正在整合您导入的内容到该课程。如果课程较大,这一过程可能花费较多时间。" - -#: cms/templates/import.html -msgid "Your imported content has now been integrated into this library" -msgstr "您导入的内容已经被整合进该知识库" - -#: cms/templates/import.html -msgid "Your imported content has now been integrated into this course" -msgstr "您导入的内容已经被整合进课程" - -#: cms/templates/import.html -msgid "View Updated Library" -msgstr "查看更新后的知识库" - -#: cms/templates/import.html -msgid "View Updated Outline" -msgstr "查看更新后的课程大纲" - -#: cms/templates/import.html -msgid "Why import a library?" -msgstr "为什么要导入知识库?" - -#: cms/templates/import.html -msgid "" -"You might want to update an existing library to a new version, or replace an" -" existing library entirely. You might also have developed a library outside " -"of {studio_name}." -msgstr "您可能想为现有的知识库创建新版本,或者完全替换现有的知识库。您也可能已在{studio_name}之外创建了一个知识库。" - -#: cms/templates/import.html -msgid "Note: Library content is not automatically updated in courses" -msgstr "请注意:知识库的内容并不会在课程中自动更新" - -#: cms/templates/import.html -msgid "" -"If you change and import a library that is referenced by randomized content " -"blocks in one or more courses, those courses do not automatically use the " -"updated content. You must manually refresh the randomized content blocks to " -"bring them up to date with the latest library content." -msgstr "" -"如果您更新或导入一个知识库,并且该知识库由一门或多门课程中的随机内容块所引用,则这些课程将不会自动使用知识库中已更新的内容。相反,您必须手动刷新这些随机内容块以使其与最新的知识库内容相一致。" - -#: cms/templates/import.html -msgid "Learn more about importing a library" -msgstr "了解更多关于导入知识库的信息" - -#: cms/templates/import.html -msgid "Why import a course?" -msgstr "为什么导入课程?" - -#: cms/templates/import.html -msgid "" -"You may want to run a new version of an existing course, or replace an " -"existing course altogether. Or, you may have developed a course outside " -"{studio_name}." -msgstr "您可能想为现有的课程创建新版本,或者完全替换现有的课程。您也可能已在{studio_name}之外创建了一个课程。" - -#: cms/templates/import.html -msgid "What content is imported?" -msgstr "哪些内容被导入了?" - -#: cms/templates/import.html -msgid "The following content is imported." -msgstr "以下内容已导入。" - -#: cms/templates/import.html -msgid "The following content is not imported." -msgstr "以下内容未导入。" - -#: cms/templates/import.html -msgid "Warning: Importing while a course is running" -msgstr "注意:导入发生于课程进行中" - -#: cms/templates/import.html -msgid "" -"If you perform an import while your course is running, and you change the " -"URL names (or url_name nodes) of any Problem components, the student data " -"associated with those Problem components may be lost. This data includes " -"students' problem scores." -msgstr "" -"如果您在课程进行中执行了导入,并更改了任意问题组件的URL名字(或url名字节点) ,与此问题组件相关的学生数据将可能丢失。这些数据包括学生问题得分。" - -#: cms/templates/import.html -msgid "Learn more about importing a course" -msgstr "了解更多关于导入课程的信息" - -#: cms/templates/index.html cms/templates/index.html -#: cms/templates/widgets/user_dropdown.html -#: cms/templates/widgets/user_dropdown.html -msgid "{studio_name} Home" -msgstr "{studio_name}主页" - -#: cms/templates/index.html -msgid "New Course" -msgstr "新建课程" - -#: cms/templates/index.html -msgid "Email staff to create course" -msgstr "发邮件给教员来创建课程" - -#: cms/templates/index.html -msgid "New Library" -msgstr "新建知识库" - -#: cms/templates/index.html cms/templates/index.html -msgid "Please correct the highlighted fields below." -msgstr "请改正下面高亮的字段。" - -#: cms/templates/index.html -msgid "Create a New Course" -msgstr "创建一个新课程" - -#: cms/templates/index.html -msgid "Required Information to Create a New Course" -msgstr "创建一个新课程的必要信息" - -#: cms/templates/index.html -msgid "" -"The public display name for your course. This cannot be changed, but you can" -" set a different display name in Advanced Settings later." -msgstr "课程的公开显示名称,无法修改。但您可以稍后在高级设置中设置一个不同的显示名称。" - -#: cms/templates/index.html -msgid "" -"The name of the organization sponsoring the course. {strong_start}Note: The " -"organization name is part of the course URL.{strong_end} This cannot be " -"changed, but you can set a different display name in Advanced Settings " -"later." -msgstr "" -"开设这门课程的组织的名称。{strong_start}注意:课程URL包含该组织名称。{strong_end}无法更改此名称,但过后可以在高级设置中设另外一个显示名称。" - -#: cms/templates/index.html -msgid "" -"The unique number that identifies your course within your organization. " -"{strong_start}Note: This is part of your course URL, so no spaces or special" -" characters are allowed and it cannot be changed.{strong_end}" -msgstr "" -"在您组织内课程的唯一编号,{strong_start}注意:这是您课程URL的一部分,无法更改并且请勿使用空格或特殊字符。{strong_end}" - -#: cms/templates/index.html -msgid "" -"The term in which your course will run. {strong_start}Note: This is part of " -"your course URL, so no spaces or special characters are allowed and it " -"cannot be changed.{strong_end}" -msgstr "" -"关于您课程开课的学期,{strong_start}注意:这是您课程URL的一部分,无法更改并且请勿使用空格或特殊字符。{strong_end}" - -#: cms/templates/index.html cms/templates/index.html -msgid "Create" -msgstr "创建" - -#: cms/templates/index.html -msgid "Create a New Library" -msgstr "创建一个新的知识库" - -#: cms/templates/index.html -msgid "Required Information to Create a New Library" -msgstr "创建一个新知识库的必要信息" - -#: cms/templates/index.html -msgid "Library Name" -msgstr "知识库名称" - -#. Translators: This is an example name for a new content library, seen when -#. filling out the form to create a new library. -#. (A library is a collection of content or problems.) -#: cms/templates/index.html -msgid "e.g. Computer Science Problems" -msgstr "例如,计算机科学问题" - -#: cms/templates/index.html -msgid "The public display name for your library." -msgstr "知识库的公开显示名称。" - -#: cms/templates/index.html -msgid "The public organization name for your library." -msgstr "知识库的公开机构名称。" - -#: cms/templates/index.html -msgid "This cannot be changed." -msgstr "在确定后无法更改。" - -#: cms/templates/index.html -msgid "Library Code" -msgstr "知识库代码" - -#. Translators: This is an example for the "code" used to identify a library, -#. seen when filling out the form to create a new library. This example is -#. short -#. for "Computer Science Problems". The example number may contain letters -#. but must not contain spaces. -#: cms/templates/index.html -msgid "e.g. CSPROB" -msgstr "例如,CSPROB" - -#: cms/templates/index.html -msgid "" -"The unique code that identifies this library. {strong_start}Note: This is " -"part of your library URL, so no spaces or special characters are " -"allowed.{strong_end} This cannot be changed." -msgstr "" -"此知识库的唯一标识码。{strong_start}注意:知识库URL包含此标识码,请勿输入空格或特殊字符。{strong_end}并且无法更改。" - -#: cms/templates/index.html -msgid "Organization and Library Settings" -msgstr "组织和知识库设置" - -#: cms/templates/index.html -msgid "Show all courses in organization:" -msgstr "显示组织内所有课程:" - -#: cms/templates/index.html -msgid "For example, MITx" -msgstr "例如,MITx" - -#: cms/templates/index.html -msgid "Courses Being Processed" -msgstr "正在处理的课程" - -#: cms/templates/index.html -msgid "This course run is currently being created." -msgstr "正在创建该课程的本次运行。" - -#. Translators: This is a status message, used to inform the user of -#. what the system is doing. This status means that the user has -#. requested to re-run an existing course, and the system is currently -#. in the process of duplicating and configuring the existing course -#. so that it can be re-run. -#: cms/templates/index.html -msgid "Configuring as re-run" -msgstr "配置为重启" - -#: cms/templates/index.html -msgid "" -"The new course will be added to your course list in 5-10 minutes. Return to " -"this page or {link_start}refresh it{link_end} to update the course list. The" -" new course will need some manual configuration." -msgstr "" -"新的课程将在5-10分钟内添加到您的课程列表里中。返回到该页或者{link_start}刷新该页{link_end}以更新课程列表。新的课程将需要一些手动配置。" - -#. Translators: This is a status message for the course re-runs feature. -#. When a course admin indicates that a course should be re-run, the system -#. needs to process the request and prepare the new course. The status of -#. the process will follow this text. -#: cms/templates/index.html -msgid "This re-run processing status:" -msgstr "这重新运行处理状态:" - -#: cms/templates/index.html -msgid "Configuration Error" -msgstr "配置错误" - -#: cms/templates/index.html -msgid "" -"A system error occurred while your course was being processed. Please go to " -"the original course to try the re-run again, or contact your PM for " -"assistance." -msgstr "在处理您的课程过程中发生了系统错误。请回到原始课程里尝试再次重启,或向您的 PM 求助。" - -#: cms/templates/index.html -msgid "Archived Courses" -msgstr "存档课程" - -#: cms/templates/index.html -msgid "Libraries" -msgstr "知识库" - -#: cms/templates/index.html -msgid "Are you staff on an existing {studio_name} course?" -msgstr "您是否是一个{studio_name}现有课程的工作人员?" - -#: cms/templates/index.html -msgid "" -"The course creator must give you access to the course. Contact the course " -"creator or administrator for the course you are helping to author." -msgstr "课程的创建者必须授予您该课程的访问权限。如果您想帮助编写该课程,请联系课程的创建者或者管理员。" - -#: cms/templates/index.html cms/templates/index.html -msgid "Create Your First Course" -msgstr "创建您的第一个课程" - -#: cms/templates/index.html -msgid "Your new course is just a click away!" -msgstr "您的新课程只需点击即可!" - -#: cms/templates/index.html -msgid "Becoming a Course Creator in {studio_name}" -msgstr "成为{studio_name}中的课程创建者" - -#: cms/templates/index.html -msgid "" -"{studio_name} is a hosted solution for our xConsortium partners and selected" -" guests. Courses for which you are a team member appear above for you to " -"edit, while course creator privileges are granted by {platform_name}. Our " -"team will evaluate your request and provide you feedback within 24 hours " -"during the work week." -msgstr "" -"{studio_name}是一个为我们X-" -"联盟的合作者以及特定顾客提供的托管解决方案。您作为团队成员的课程已在上面列出供您编辑,而创建新课程的权限则需要由{platform_name}授予。我们的团队会评估您的请求,并会在工作日的24小时之内给予您反馈。" - -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html -msgid "Your Course Creator Request Status:" -msgstr "您的课程创建者资格请求状态:" - -#: cms/templates/index.html -msgid "Request the Ability to Create Courses" -msgstr "请求创建课程的权限" - -#: cms/templates/index.html cms/templates/index.html -msgid "Your Course Creator Request Status" -msgstr "您的课程创建者资格请求状态" - -#: cms/templates/index.html -msgid "" -"{studio_name} is a hosted solution for our xConsortium partners and selected" -" guests. Courses for which you are a team member appear above for you to " -"edit, while course creator privileges are granted by {platform_name}. Our " -"team is has completed evaluating your request." -msgstr "" -"{studio_name}是一个为我们X-" -"联盟的合作者以及特定顾客提供的托管解决方案。您作为团队成员的课程已在上面列出供您编辑,而创建新课程的权限则需要由{platform_name}授予。我们的团队已经完成了对您的请求的评估。" - -#: cms/templates/index.html cms/templates/index.html -msgid "Your Course Creator request is:" -msgstr "您的课程创建者资格的请求是:" - -#: cms/templates/index.html -msgid "Denied" -msgstr "拒绝" - -#: cms/templates/index.html -msgid "" -"Your request did not meet the criteria/guidelines specified by " -"{platform_name} Staff." -msgstr "您的请求不符合由{platform_name}员工指定的准则/方针。" - -#: cms/templates/index.html -msgid "" -"{studio_name} is a hosted solution for our xConsortium partners and selected" -" guests. Courses for which you are a team member appear above for you to " -"edit, while course creator privileges are granted by {platform_name}. Our " -"team is currently evaluating your request." -msgstr "" -"{studio_name}是一个为我们X-" -"联盟的合作者以及特定顾客提供的托管解决方案。您作为团队成员的课程已在上面列出供您编辑,而创建新课程的权限则需要由{platform_name}授予。我们的团队目前正在评估您的请求。" - -#: cms/templates/index.html -msgid "Pending" -msgstr "挂起" - -#: cms/templates/index.html -msgid "" -"Your request is currently being reviewed by {platform_name} staff and should" -" be updated shortly." -msgstr "您的请求正在由{platform_name}员工评审,应该很快会有更新。" - -#: cms/templates/index.html -msgid "Were you expecting to see a particular library here?" -msgstr "您是否曾期待在这里看到一个特定的知识库?" - -#: cms/templates/index.html -msgid "" -"The library creator must give you access to the library. Contact the library" -" creator or administrator for the library you are helping to author." -msgstr "知识库的创建者必须授予您该知识库的访问权限。如果您想帮助编写该知识库,请联系知识库的创建者或者管理员。" - -#: cms/templates/index.html cms/templates/index.html -msgid "Create Your First Library" -msgstr "创建您的第一个知识库" - -#: cms/templates/index.html -msgid "" -"Libraries hold a pool of components that can be re-used across multiple " -"courses. Create your first library with the click of a button!" -msgstr "知识库容纳了一组可以在多个课程中重复利用的组件。点击按钮以创建您的第一个知识库!" - -#: cms/templates/index.html -msgid "New to {studio_name}?" -msgstr "刚刚接触{studio_name}?" - -#: cms/templates/index.html -msgid "" -"Click Help in the upper-right corner to get more information about the " -"{studio_name} page you are viewing. You can also use the links at the bottom" -" of the page to access our continually updated documentation and other " -"{studio_name} resources." -msgstr "" -"点击右上角的的帮助按钮以获得更多关于{studio_name}当前页面的信息。您也可以使用页面底部的帮助链接访问我们持续更新的文档以及其他{studio_name}资源。" - -#: cms/templates/index.html -msgid "Getting Started with {studio_name}" -msgstr "{studio_name}入门" - -#: cms/templates/index.html cms/templates/index.html cms/templates/index.html -msgid "Can I create courses in {studio_name}?" -msgstr "我能在{studio_name}中创建课程吗?" - -#: cms/templates/index.html -msgid "" -"In order to create courses in {studio_name}, you must {link_start}contact " -"{platform_name} staff to help you create a course{link_end}." -msgstr "" -"您必须{link_start}联系{platform_name}工作人员{link_end}以帮助您在{studio_name}创建中课程。" - -#: cms/templates/index.html -msgid "" -"In order to create courses in {studio_name}, you must have course creator " -"privileges to create your own course." -msgstr "您必须获得课程创建者资格才能在{studio_name}中创建课程。" - -#: cms/templates/index.html -msgid "" -"Your request to author courses in {studio_name} has been denied. Please " -"{link_start}contact {platform_name} Staff with further questions{link_end}." -msgstr "" -"您在{studio_name}上申请成为课程创建者的请求已被拒绝,请{link_start}联系{platform_name}工作人员进一步了解问题{link_end}。" - -#: cms/templates/index.html -msgid "Thanks for signing up, {name}!" -msgstr "感谢注册,{name}!" - -#: cms/templates/index.html -msgid "We need to verify your email address" -msgstr "我们需要验证您的电子邮箱地址" - -#: cms/templates/index.html -msgid "" -"Almost there! In order to complete your sign up we need you to verify your " -"email address ({email}). An activation message and next steps should be " -"waiting for you there." -msgstr "注册快完成啦!您现在需要验证您的邮箱地址({email}),已发送激活邮件至此邮箱,请按照步骤完成注册。" - -#: cms/templates/index.html -msgid "Need help?" -msgstr "需要帮助?" - -#: cms/templates/index.html -msgid "" -"Please check your Junk or Spam folders in case our email isn't in your " -"INBOX. Still can't find the verification email? Request help via the link " -"below." -msgstr "请检查您的垃圾邮件,以防我们的邮件不在您的收件箱中。仍然不能找到确认邮件?通过下面的链接获得帮助。" - -#: cms/templates/library.html -msgid "Content Library" -msgstr "内容知识库" - -#: cms/templates/library.html -msgid "Add Component" -msgstr "添加组件" - -#: cms/templates/library.html -msgid "Adding content to your library" -msgstr "向您的知识库中添加内容" - -#: cms/templates/library.html -msgid "" -"Add components to your library for use in courses, using Add New Component " -"at the bottom of this page." -msgstr "请使用本页面底部的添加新组件按钮为您的知识库添加可在课程中使用的组件" - -#: cms/templates/library.html -msgid "" -"Components are listed in the order in which they are added, with the most " -"recently added at the bottom. Use the pagination arrows to navigate from " -"page to page if you have more than one page of components in your library." -msgstr "组件会按照添加的顺序升序排列(最近添加的在最底部)。当知识库中的组件超过一页时,请使用分页箭头来切换不同页面。" - -#: cms/templates/library.html -msgid "Using library content in courses" -msgstr "在课程中使用知识库内容" - -#: cms/templates/library.html -msgid "" -"Use library content in courses by adding the " -"{em_start}library_content{em_end} policy key to the Advanced Module List in " -"the course's Advanced Settings, then adding a Randomized Content Block to " -"your courseware. In the settings for each Randomized Content Block, select " -"this library as the source library, and specify the number of problems to be" -" randomly selected and displayed to each student." -msgstr "" -"要使用知识库,首先向课程高级设置页面中的“高级模块列表”项中添加{em_start}library_content{em_end}策略键,然后在课件中加入一个或多个“随机内容块”组件。在每个“随机内容块”组件的设置中,选择一个知识库作为源库,并指定要被随机选择并呈现给每个学生的问题的数量。" - -#: cms/templates/library.html -msgid "Learn more about content libraries" -msgstr "了解更多关于内容知识库的信息" - -#: cms/templates/login.html cms/templates/widgets/header.html -msgid "Sign In" -msgstr "登录" - -#: cms/templates/login.html cms/templates/login.html -msgid "Sign In to {studio_name}" -msgstr "登录{studio_name}" - -#: cms/templates/login.html -msgid "Don't have a {studio_name} Account? Sign up!" -msgstr "还没有{studio_name}账号?现在就注册!" - -#: cms/templates/login.html -msgid "Required Information to Sign In to {studio_name}" -msgstr "登录{studio_name}所必须的信息" - -#: cms/templates/manage_users.html -msgid "Course Team Settings" -msgstr "课程团队设置" - -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -msgid "New Team Member" -msgstr "新的团队成员" - -#: cms/templates/manage_users.html -msgid "Add a User to Your Course's Team" -msgstr "向您的课程团队中添加一个用户" - -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -msgid "New Team Member Information" -msgstr "新团队成员信息" - -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -msgid "User's Email Address" -msgstr "用户邮箱地址" - -#: cms/templates/manage_users.html -msgid "Provide the email address of the user you want to add as Staff" -msgstr "请提供您想要添加成为员工的用户的电子邮件地址" - -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -msgid "Add User" -msgstr "添加用户" - -#: cms/templates/manage_users.html -msgid "Add Team Members to This Course" -msgstr "向该课程添加团队成员" - -#: cms/templates/manage_users.html -msgid "" -"Adding team members makes course authoring collaborative. Users must be " -"signed up for {studio_name} and have an active account." -msgstr "添加团队成员使得课程编写可以协作完成,用户必须已经注册了{studio_name}并拥有一个已激活的账号。" - -#: cms/templates/manage_users.html -msgid "Add a New Team Member" -msgstr "添加一个团队成员" - -#: cms/templates/manage_users.html -msgid "Course Team Roles" -msgstr "课程团队角色" - -#: cms/templates/manage_users.html -msgid "" -"Course team members with the Staff role are course co-authors. They have " -"full writing and editing privileges on all course content." -msgstr "课程团队成员中员工角色是课程的共同作者。他们对课程内容具有完全的写作和编辑权限。" - -#: cms/templates/manage_users.html -msgid "" -"Admins are course team members who can add and remove other course team " -"members." -msgstr "管理员是课程团队成员中可以添加和移除其他课程团队成员的用户。" - -#: cms/templates/manage_users.html -msgid "" -"All course team members can access content in Studio, the LMS, and Insights," -" but are not automatically enrolled in the course." -msgstr "" -"All course team members can access content in Studio, the LMS, and Insights," -" but are not automatically enrolled in the course." - -#: cms/templates/manage_users.html -msgid "Transferring Ownership" -msgstr "移交所有权" - -#: cms/templates/manage_users.html -msgid "" -"Every course must have an Admin. If you are the Admin and you want to " -"transfer ownership of the course, click Add admin access to" -" make another user the Admin, then ask that user to remove you from the " -"Course Team list." -msgstr "" -"每门课程必须有一名管理员。如过您当前是管理员,且希望转让管理员身份,点击添加管理权限来赋予其他管理员权限,并请求他们将您从课程团队列表中删除。" - -#: cms/templates/manage_users_lib.html -msgid "Library User Access" -msgstr "知识库用户访问权限" - -#: cms/templates/manage_users_lib.html cms/templates/widgets/header.html -msgid "User Access" -msgstr "用户访问权限" - -#: cms/templates/manage_users_lib.html -msgid "Grant Access to This Library" -msgstr "授予对该知识库的访问权限" - -#: cms/templates/manage_users_lib.html -msgid "Provide the email address of the user you want to add" -msgstr "请提供您想添加的用户的邮件地址" - -#: cms/templates/manage_users_lib.html -msgid "Add More Users to This Library" -msgstr "添加更多用户到该知识库中" - -#: cms/templates/manage_users_lib.html -msgid "" -"Grant other members of your course team access to this library. New library " -"users must have an active {studio_name} account." -msgstr "向您课程团队的其他成员授予该知识库的访问权限。新的知识库用户必须有一个已激活的{studio_name}账号。" - -#: cms/templates/manage_users_lib.html -msgid "Add a New User" -msgstr "添加一个新用户" - -#: cms/templates/manage_users_lib.html -msgid "Library Access Roles" -msgstr "知识库访问角色" - -#: cms/templates/manage_users_lib.html -msgid "There are three access roles for libraries: User, Staff, and Admin." -msgstr "有三种知识库用户访问角色:用户、教员和管理员。" - -#: cms/templates/manage_users_lib.html -msgid "" -"Library Users can view library content and can reference or use library " -"components in their courses, but they cannot edit the contents of a library." -msgstr "知识库用户可以查看知识库内容,可以在他们的课程中参考或使用知识库组件,但不能够编辑知识库的内容。" - -#: cms/templates/manage_users_lib.html -msgid "" -"Library Staff are content co-authors. They have full editing privileges on " -"the contents of a library." -msgstr "知识库员工是内容的共同作者,他们对知识库的内容具有完全的编辑权限。" - -#: cms/templates/manage_users_lib.html -msgid "" -"Library Admins have full editing privileges and can also add and remove " -"other team members. There must be at least one user with the Admin role in a" -" library." -msgstr "知识库管理员具有完全的编辑权限,也可以添加和修改其他团队成员。一个知识库至少有一个用户担任管理员角色。" - -#: cms/templates/register.html cms/templates/widgets/header.html -msgid "Sign Up" -msgstr "注册" - -#: cms/templates/register.html -msgid "Sign Up for {studio_name}" -msgstr "注册{studio_name}" - -#: cms/templates/register.html -msgid "Already have a {studio_name} Account? Sign in" -msgstr "已经有一个{studio_name}账号了?请登录" - -#: cms/templates/register.html -msgid "" -"Ready to start creating online courses? Sign up below and start creating " -"your first {platform_name} course today." -msgstr "准备好创建在线课程了?请今天注册并创建您的第一个{platform_name}课程。" - -#: cms/templates/register.html -msgid "Required Information to Sign Up for {studio_name}" -msgstr "注册{studio_name}所必须的信息" - -#: cms/templates/register.html -msgid "" -"This will be used in public discussions with your courses and in our edX101 " -"support forums" -msgstr "这将会被用于您课程的公开讨论中以及我们edX101课程的支持论坛" - -#: cms/templates/register.html -msgid "Your Location" -msgstr "您的位置" - -#: cms/templates/register.html -msgid "Preferred Language" -msgstr "首选语言" - -#: cms/templates/register.html -msgid "I agree to the {a_start} Terms of Service {a_end}" -msgstr "我同意{a_start}服务条约{a_end}" - -#: cms/templates/register.html -msgid "Create My Account & Start Authoring Courses" -msgstr "创建我的账号&开始创建课程" - -#: cms/templates/register.html -msgid "Common {studio_name} Questions" -msgstr "关于{studio_name}的常见问题" - -#: cms/templates/register.html -msgid "Who is {studio_name} for?" -msgstr "{studio_name}是为谁而建的?" - -#: cms/templates/register.html -msgid "" -"{studio_name} is for anyone that wants to create online courses that " -"leverage the global {platform_name} platform. Our users are often faculty " -"members, teaching assistants and course staff, and members of instructional " -"technology groups." -msgstr "" -"{studio_name}面向任何希望在全球化的{platform_name}平台上创建在线课程的用户。我们的用户通常是教员、助教、课程员工或教学技术小组成员。" - -#: cms/templates/register.html -msgid "" -"How technically savvy do I need to be to create courses in {studio_name}?" -msgstr "在{studio_name}创建课程需要怎样的技术程度?" - -#: cms/templates/register.html -msgid "" -"{studio_name} is designed to be easy to use by almost anyone familiar with " -"common web-based authoring environments (Wordpress, Moodle, etc.). No " -"programming knowledge is required, but for some of the more advanced " -"features, a technical background would be helpful. As always, we are here to" -" help, so don't hesitate to dive right in." -msgstr "" -"对几乎所有熟悉基于网页的编辑环境(WordPress、Moodle等)的人而言,{studio_name}都是很容易使用的。它无需编程知识,但拥有一些技术背景会在使用一些高级特性时有所帮助。我们会一如既往地为您提供帮助。不要犹豫,赶快加入吧。" - -#: cms/templates/register.html -msgid "I've never authored a course online before. Is there help?" -msgstr "我以前从来没创建过在线课程,可以帮帮我吗?" - -#: cms/templates/register.html -msgid "" -"Absolutely. We have created an online course, edX101, that describes some " -"best practices: from filming video, creating exercises, to the basics of " -"running an online course. Additionally, we're always here to help, just drop" -" us a note." -msgstr "" -"当然。我们创建了一个在线课程:edX101,它介绍了一些创建在线课程的最佳实践:从拍摄视频,创建练习到开展在线教学的基础。另外,我们会尽力提供所需帮助,需要时请随时给我们留言。" - -#: cms/templates/settings.html -msgid "Schedule & Details Settings" -msgstr "日程与细节设置" - -#: cms/templates/settings.html cms/templates/widgets/header.html -msgid "Schedule & Details" -msgstr "日程 & 细节" - -#: cms/templates/settings.html -msgid "Basic Information" -msgstr "基本信息" - -#: cms/templates/settings.html -msgid "The nuts and bolts of your course" -msgstr "您课程的具体细节" - -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html -msgid "This field is disabled: this information cannot be changed." -msgstr "该字段已禁用:信息不可修改。" - -#: cms/templates/settings.html -msgid "Course Summary Page" -msgstr "课程概要页面" - -#: cms/templates/settings.html -msgid "(for student enrollment and access)" -msgstr "(用于学生选修和访问)" - -#: cms/templates/settings.html -msgid "Enroll in {course_display_name}" -msgstr "选修{course_display_name}" - -#: cms/templates/settings.html -msgid "" -"The course \"{course_display_name}\", provided by {platform_name}, is open " -"for enrollment. Please navigate to this course at {link_for_about_page} to " -"enroll." -msgstr "" -"由{platform_name}提供的课程“{course_display_name}”现已开放选课,请通过{link_for_about_page}选修该课程。" - -#: cms/templates/settings.html -msgid "Send a note to students via email" -msgstr "通过电子邮件给学生发送笔记" - -#: cms/templates/settings.html -msgid "Invite your students" -msgstr "邀请您的学生" - -#: cms/templates/settings.html -msgid "Promoting Your Course with {platform_name}" -msgstr "通过{platform_name}推广您的课程" - -#: cms/templates/settings.html -msgid "" -"Your course summary page will not be viewable until your course has been " -"announced. To provide content for the page and preview it, follow the " -"instructions provided by your Program Manager." -msgstr "您的课程概要页面在您的课程公开之后才对外可见。为了向该页面提供信息并预览该页面,请遵循您的项目经理提供的指导。" - -#: cms/templates/settings.html -msgid "Course Credit Requirements" -msgstr "课程学分要求" - -#: cms/templates/settings.html -msgid "Steps required to earn course credit" -msgstr "获取课程学分必要的步骤" - -#: cms/templates/settings.html cms/templates/settings.html -msgid "Minimum Grade" -msgstr "最低分" - -#: cms/templates/settings.html -msgid "Successful Proctored Exam" -msgstr "成功的监考考试" - -#: cms/templates/settings.html -msgid "Proctored Exam {number}" -msgstr "监考考试{number}" - -#: cms/templates/settings.html -msgid "ID Verification" -msgstr "身份验证" - -#: cms/templates/settings.html -msgid "In-Course Reverification {number}" -msgstr "考前复检检测{number}" - -#: cms/templates/settings.html -msgid "Course Pacing" -msgstr "课程开始" - -#: cms/templates/settings.html -msgid "Set the pacing for this course" -msgstr "设定课程开始" - -#: cms/templates/settings.html -msgid "Instructor-Paced" -msgstr "讲师进度" - -#: cms/templates/settings.html -msgid "" -"Instructor-paced courses progress at the pace that the course author sets. " -"You can configure release dates for course content and due dates for " -"assignments." -msgstr "教师教学课程的进度可以由该课程作者设置。您可以为该课程设置课程内容发布时间及停止观看时间。" - -#: cms/templates/settings.html -msgid "Self-Paced" -msgstr "自定进度" - -#: cms/templates/settings.html -msgid "" -"Self-paced courses do not have release dates for course content or due dates" -" for assignments. Learners can complete course material at any time before " -"the course end date." -msgstr "自学课程没有课程发布时间与作业缴交时间,学生可以在课程结束时间间自由地完成。" - -#: cms/templates/settings.html -msgid "Course Schedule" -msgstr "课程时间表" - -#: cms/templates/settings.html -msgid "Dates that control when your course can be viewed" -msgstr "调整您的课程可以浏览的日期" - -#: cms/templates/settings.html -msgid "First day the course begins" -msgstr "课程开始的第一天" - -#: cms/templates/settings.html -msgid "Course Start Time" -msgstr "课程开始时间" - -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html cms/templates/settings.html -msgid "(UTC)" -msgstr "(UTC)" - -#: cms/templates/settings.html -msgid "Last day your course is active" -msgstr "课程活跃的最后一天" - -#: cms/templates/settings.html -msgid "Course End Time" -msgstr "课程结束时间" - -#: cms/templates/settings.html -msgid "Certificates Available Date" -msgstr "证书获取日期" - -#: cms/templates/settings.html -msgid "By default, 48 hours after course end date" -msgstr "默认为结课日期的48小时候" - -#: cms/templates/settings.html -msgid "Enrollment Start Date" -msgstr "选课开始日期" - -#: cms/templates/settings.html -msgid "First day students can enroll" -msgstr "学生可以选课的第一天" - -#: cms/templates/settings.html -msgid "Enrollment Start Time" -msgstr "选课开始时间" - -#: cms/templates/settings.html -msgid "Enrollment End Date" -msgstr "选课截止日期" - -#: cms/templates/settings.html -msgid "Last day students can enroll." -msgstr "学生可以选课的最后一天。" - -#: cms/templates/settings.html -msgid "Contact your EliteMBA partner manager to update these settings." -msgstr "联系您的EliteMBA合作经理以更新这些设置项。" - -#: cms/templates/settings.html -msgid "Enrollment End Time" -msgstr "选课截止时间" - -#: cms/templates/settings.html -msgid "Course Details" -msgstr "课程详情" - -#: cms/templates/settings.html -msgid "Provide useful information about your course" -msgstr "提供有关您的课程的有用信息" - -#: cms/templates/settings.html -msgid "Course Language" -msgstr "课程语言" - -#: cms/templates/settings.html -msgid "" -"Identify the course language here. This is used to assist users find courses" -" that are taught in a specific language. It is also used to localize the " -"'From:' field in bulk emails." -msgstr "设置课程语言,用于帮助用户寻找用某个语言教学的课程,并本地化批量邮箱地址中的“From”输入框。" - -#: cms/templates/settings.html -msgid "Introducing Your Course" -msgstr "介绍您的课程" - -#: cms/templates/settings.html -msgid "Information for prospective students" -msgstr "提供给预期学生的信息" - -#: cms/templates/settings.html -msgid "Course Title" -msgstr "课程标题" - -#: cms/templates/settings.html -msgid "Displayed as title on the course details page. Limit to 50 characters." -msgstr "课程详情页面的标题,不超过50个字符。" - -#: cms/templates/settings.html -msgid "Course Subtitle" -msgstr "课程子标题" - -#: cms/templates/settings.html -msgid "" -"Displayed as subtitle on the course details page. Limit to 150 characters." -msgstr "课程详情页面的副标题,不超过150个字符。" - -#: cms/templates/settings.html -msgid "Course Duration" -msgstr "课时" - -#: cms/templates/settings.html -msgid "Displayed on the course details page. Limit to 50 characters." -msgstr "显示于课程详情页面,不超过50个字符。" - -#: cms/templates/settings.html -msgid "Course Description" -msgstr "课程描述" - -#: cms/templates/settings.html -msgid "Displayed on the course details page. Limit to 1000 characters." -msgstr "显示于课程详情页面,不超过1000个字符。" - -#: cms/templates/settings.html -msgid "" -"Appears on the course catalog page when students roll over the course name. " -"Limit to ~150 characters" -msgstr "将在学生浏览课程目录时出现。限制150个字符。" - -#: cms/templates/settings.html -msgid "Course Overview" -msgstr "课程概览" - -#: cms/templates/settings.html -msgid "HTML Code Editor" -msgstr "HTML代码编辑器" - -#: cms/templates/settings.html -msgid "" -"Introductions, prerequisites, FAQs that are used on {a_link_start}your " -"course summary page{a_link_end} (formatted in HTML)" -msgstr "在{a_link_start}您的课程摘要页面{a_link_end}的简介、先修条件、常见问题解答(HTML格式)。" - -#: cms/templates/settings.html -msgid "Course About Sidebar HTML" -msgstr "关于边栏HTML的课程" - -#: cms/templates/settings.html -msgid "" -"Custom sidebar content for {a_link_start}your course summary " -"page{a_link_end} (formatted in HTML)" -msgstr "{a_link_start}您课程摘要页面{a_link_end}的自定义工具栏内容 (HTML格式)" - -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html -msgid "Course Card Image" -msgstr "课程卡图片" - -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html -msgid "" -"You can manage this image along with all of your other {a_link_start}files " -"and uploads{a_link_end}" -msgstr "您可以管理此图片和其他所有{a_link_start}上传的文件和资料{a_link_end}" - -#: cms/templates/settings.html -msgid "" -"Your course currently does not have an image. Please upload one (JPEG or PNG" -" format, and minimum suggested dimensions are 375px wide by 200px tall)" -msgstr "您的课程目前没有图片。请上传一张(JPEG或PNG格式,最小建议大小为375像素宽、200像素高)" - -#. Translators: This is the placeholder text for a field that requests the URL -#. for a course image -#: cms/templates/settings.html -msgid "Your course image URL" -msgstr "您的课程图片 URL" - -#: cms/templates/settings.html -msgid "" -"Please provide a valid path and name to your course image (Note: only JPEG " -"or PNG format supported)" -msgstr "请为您的课程图片提供一个有效的路径和名字(注意:仅支持JPEG和PNG格式)" - -#: cms/templates/settings.html -msgid "Upload Course Card Image" -msgstr "上传课程卡图片" - -#: cms/templates/settings.html cms/templates/settings.html -#: cms/templates/settings.html -msgid "Course Banner Image" -msgstr "课程图标" - -#: cms/templates/settings.html -msgid "" -"Your course currently does not have an image. Please upload one (JPEG or PNG" -" format, and minimum suggested dimensions are 1440px wide by 400px tall)" -msgstr "您的课程暂无图片,请上传一张图片(JPEG/PNG),推荐最小尺寸1440px 宽 x 400px高" - -#. Translators: This is the placeholder text for a field that requests the URL -#. for a course banner image -#: cms/templates/settings.html -msgid "Your banner image URL" -msgstr "您的横幅图片URL" - -#: cms/templates/settings.html -msgid "" -"Please provide a valid path and name to your banner image (Note: only JPEG " -"or PNG format supported)" -msgstr "请输入有效的横幅图片路径和名称(注意:只支持JPEG/PNG格式图片)" - -#: cms/templates/settings.html -msgid "Upload Course Banner Image" -msgstr "上传课程横幅图片" - -#: cms/templates/settings.html -msgid "Course Video Thumbnail Image" -msgstr "课程视频缩略图" - -#: cms/templates/settings.html cms/templates/settings.html -msgid "Video Thumbnail Image" -msgstr "视频缩略图" - -#: cms/templates/settings.html -msgid "" -"Your course currently does not have a video thumbnail image. Please upload " -"one (JPEG or PNG format, and minimum suggested dimensions are 375px wide by " -"200px tall)" -msgstr "您的课程缺少视频缩略图,请上传一张视频缩略图(JPEG或PNG格式,推荐最小尺寸为375px 宽 X 200px 高)" - -#. Translators: This is the placeholder text for a field that requests the URL -#. for a course video thumbnail image -#: cms/templates/settings.html -msgid "Your video thumbnail image URL" -msgstr "您视频缩略图URL" - -#: cms/templates/settings.html -msgid "" -"Please provide a valid path and name to your video thumbnail image (Note: " -"only JPEG or PNG format supported)" -msgstr "请输入有效的视频缩略图的路径和名称(注意:只支持JPEG/PNG格式图片)" - -#: cms/templates/settings.html -msgid "Upload Video Thumbnail Image" -msgstr "上传视频缩略图" - -#: cms/templates/settings.html cms/templates/settings.html -msgid "Course Introduction Video" -msgstr "课程介绍视频" - -#: cms/templates/settings.html -msgid "Delete Current Video" -msgstr "删除当前视频" - -#. Translators: This is the placeholder text for a field that requests a -#. YouTube video ID for a course video -#: cms/templates/settings.html -msgid "your YouTube video's ID" -msgstr "您的 YouTube 视频 ID" - -#: cms/templates/settings.html -msgid "Enter your YouTube video's ID (along with any restriction parameters)" -msgstr "请输入您的YouTube视频编号(以及任何必要的限制参数)" - -#: cms/templates/settings.html -msgid "Learning Outcomes" -msgstr "学习成果" - -#: cms/templates/settings.html -msgid "Add the learning outcomes for this course" -msgstr "添加本门课程的预期学习成果" - -#: cms/templates/settings.html -msgid "Add Learning Outcome" -msgstr "添加学习预期成果" - -#: cms/templates/settings.html -msgid "Add details about the instructors for this course" -msgstr "添加本门课程教授的详细信息" - -#: cms/templates/settings.html -msgid "Add Instructor" -msgstr "添加主讲教师" - -#: cms/templates/settings.html -msgid "Expectations of the students taking this course" -msgstr "对参加本门课程的学生的期望" - -#: cms/templates/settings.html -msgid "Hours of Effort per Week" -msgstr "每周投入课程学习的小时数" - -#: cms/templates/settings.html -msgid "Time spent on all course work" -msgstr "在整个课程上投入的时间" - -#: cms/templates/settings.html -msgid "Prerequisite Course" -msgstr "先修课程" - -#: cms/templates/settings.html -msgid "None" -msgstr "无" - -#: cms/templates/settings.html -msgid "Course that students must complete before beginning this course" -msgstr "学生在开始本课程之前必须完成的课程" - -#: cms/templates/settings.html -msgid "set pre-requisite course" -msgstr "设置先修课程" - -#: cms/templates/settings.html -msgid "Entrance Exam" -msgstr "入学考试" - -#: cms/templates/settings.html -msgid "Require students to pass an exam before beginning the course." -msgstr "要求学生在课程开始前通过考试。" - -#: cms/templates/settings.html -msgid "" -"You can now view and author your course entrance exam from the " -"{link_start}Course Outline{link_end}." -msgstr "您现在可以从{link_start}课程大纲{link_end}中查看并编写您课程的入学考试内容。" - -#: cms/templates/settings.html -msgid "Grade Requirements" -msgstr "评分要求" - -#: cms/templates/settings.html -msgid " %" -msgstr "%" - -#: cms/templates/settings.html -msgid "" -"The score student must meet in order to successfully complete the entrance " -"exam. " -msgstr "学生要顺利完成入学考试所必须满足的分数。" - -#: cms/templates/settings.html -msgid "Course Content License" -msgstr "课程内容许可" - -#. Translators: At the course settings, the editor is able to select the -#. default course content license. -#. The course content will have this license set, some assets can override the -#. license with their own. -#. In the form, the license selector for course content is described using the -#. following string: -#: cms/templates/settings.html -msgid "Select the default license for course content" -msgstr "选择默认的课程内容许可" - -#: cms/templates/settings.html -msgid "How are these settings used?" -msgstr "如何使用这些设置?" - -#: cms/templates/settings.html -msgid "" -"Your course's schedule determines when students can enroll in and begin a " -"course." -msgstr "您的课程时间表决定何时学生可以注册和开始本门课程。" - -#: cms/templates/settings.html -msgid "" -"Other information from this page appears on the About page for your course. " -"This information includes the course overview, course image, introduction " -"video, and estimated time requirements. Students use About pages to choose " -"new courses to take." -msgstr "" -"本页面的其他信息将会出现在您课程的关于页面上。这些信息包括课程概要,课程图片,介绍视频,以及预估的时间要求。学生们使用关于页面来选择要上的课程。" - -#: cms/templates/settings_advanced.html -msgid "Your policy changes have been saved." -msgstr "您的策略调整已保存。" - -#: cms/templates/settings_advanced.html -msgid "There was an error saving your information. Please see below." -msgstr "保存您的信息时出现错误,详情见下。" - -#: cms/templates/settings_advanced.html -msgid "Manual Policy Definition" -msgstr "手工策略定义" - -#: cms/templates/settings_advanced.html -msgid "" -"{strong_start}Warning{strong_end}: Do not modify these policies unless you " -"are familiar with their purpose." -msgstr "{strong_start}警告{strong_end}:除非您熟悉这些政策的目的,否则请勿修改。" - -#: cms/templates/settings_advanced.html -msgid "Show Deprecated Settings" -msgstr "显示已过时的设置" - -#: cms/templates/settings_advanced.html -msgid "What do advanced settings do?" -msgstr "高级设置有何作用?" - -#: cms/templates/settings_advanced.html -msgid "" -"Advanced settings control specific course functionality. On this page, you " -"can edit manual policies, which are JSON-based key and value pairs that " -"control specific course settings." -msgstr "高级设置控制特定的课程功能。在本页面,您可以手工编辑基于JSON键值对的策略,控制特定的课程设置。" - -#: cms/templates/settings_advanced.html -msgid "" -"Any policies you modify here override all other information you've defined " -"elsewhere in {studio_name}. Do not edit policies unless you are familiar " -"with both their purpose and syntax." -msgstr "您在这里所做的任何更改都会覆盖您在{studio_name}其他地方定义的信息。请只在您已经熟悉某个策略的目的和语法之后再修改它。" - -#: cms/templates/settings_advanced.html -msgid "" -"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" -" you use double quotation marks (\") around the string. Do not use single " -"quotation marks (')." -msgstr "{em_start}注意:{em_end}当您输入政策值的字符串时,请在字符串两端使用双引号(\"),请勿使用单引号(')。" - -#: cms/templates/settings_graders.html -msgid "Grading Settings" -msgstr "评分设置" - -#: cms/templates/settings_graders.html -msgid "Overall Grade Range" -msgstr "整体评分范围" - -#: cms/templates/settings_graders.html -msgid "Your overall grading scale for student final grades" -msgstr "您对学生最终得分的整体评分范围" - -#: cms/templates/settings_graders.html -msgid "Add grade" -msgstr "添加成绩" - -#: cms/templates/settings_graders.html -msgid "Credit Eligibility" -msgstr "学分合格" - -#: cms/templates/settings_graders.html -msgid "Settings for course credit eligibility" -msgstr "为课程学分合格设置" - -#: cms/templates/settings_graders.html -msgid "Minimum Credit-Eligible Grade:" -msgstr "最小合格学分成绩" - -#: cms/templates/settings_graders.html -msgid "Must be greater than or equal to the course passing grade" -msgstr "必须大于或等于课程及格分数" - -#: cms/templates/settings_graders.html -msgid "Grading Rules & Policies" -msgstr "评分规则&策略" - -#: cms/templates/settings_graders.html -msgid "Deadlines, requirements, and logistics around grading student work" -msgstr "对学生作业进行评分的截止日期,要求和流程" - -#: cms/templates/settings_graders.html -msgid "Grace Period on Deadline:" -msgstr "截止日期的宽限期:" - -#: cms/templates/settings_graders.html -msgid "Leeway on due dates" -msgstr "截止日期余量" - -#: cms/templates/settings_graders.html -msgid "Assignment Types" -msgstr "作业类型" - -#: cms/templates/settings_graders.html -msgid "Categories and labels for any exercises that are gradable" -msgstr "所有可打分的练习的种类和标签" - -#: cms/templates/settings_graders.html -msgid "New Assignment Type" -msgstr "添加新的作业类型" - -#: cms/templates/settings_graders.html -msgid "What can I do on this page?" -msgstr "我在这个页面能做什么?" - -#: cms/templates/settings_graders.html -msgid "" -"You can use the slider under Overall Grade Range to specify whether your " -"course is pass/fail or graded by letter, and to establish the thresholds for" -" each grade." -msgstr "您可以使用全局评价范围下面的滑动条来指定您的课程评分是合格/不合格或者字母评价等级,并且建立每个评价等级的阈值。" - -#: cms/templates/settings_graders.html -msgid "" -"You can specify whether your course offers students a grace period for late " -"assignments." -msgstr "您可以指定您的课程是否给学生提供迟交作业的宽限期。" - -#: cms/templates/settings_graders.html -msgid "" -"You can also create assignment types, such as homework, labs, quizzes, and " -"exams, and specify how much of a student's grade each assignment type is " -"worth." -msgstr "您也可以创建作业类型,比如家庭作业、实验、测验、以及考试,并且指定每个作业是否计入最终的成绩及其评价分值。" - -#: cms/templates/studio_xblock_wrapper.html -#: cms/templates/studio_xblock_wrapper.html -msgid "Expand or Collapse" -msgstr "展开或折叠" - -#: cms/templates/studio_xblock_wrapper.html -msgid "Access Settings" -msgstr "访问设置" - -#: cms/templates/studio_xblock_wrapper.html -msgid "Set Access" -msgstr "设置访问限制" - -#: cms/templates/studio_xblock_wrapper.html -msgid "This block contains multiple components." -msgstr "本块包含多个组件。" - -#: cms/templates/textbooks.html cms/templates/textbooks.html -#: cms/templates/widgets/header.html -msgid "Textbooks" -msgstr "教材" - -#: cms/templates/textbooks.html -msgid "New Textbook" -msgstr "新教材" - -#: cms/templates/textbooks.html -msgid "Why should I break my textbook into chapters?" -msgstr "我什么我应该将教材拆分为章节?" - -#: cms/templates/textbooks.html -msgid "" -"Breaking your textbook into multiple chapters reduces loading times for " -"students, especially those with slow Internet connections. Breaking up " -"textbooks into chapters can also help students more easily find topic-based " -"information." -msgstr "将您的教材拆分为多个章节将有助于学生降低内容加载时间,特别是对于网速较慢的学生很有帮助。同时有助于学生按主题找到他们所需的信息。" - -#: cms/templates/textbooks.html -msgid "What if my book isn't divided into chapters?" -msgstr "如果我的教材没有拆分成章节会怎么样?" - -#: cms/templates/textbooks.html -msgid "" -"If your textbook doesn't have individual chapters, you can upload the entire" -" text as a single chapter and enter a name of your choice in the Chapter " -"Name field." -msgstr "如果您的教材没有独立的章节,您可以上传整个文本作为一个章节,并在章节名称字段中输入您所选择的名称。" - -#: cms/templates/textbooks.html -msgid "Learn more about textbooks" -msgstr "了解更多关于教材的信息" - -#: cms/templates/videos_index.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html -msgid "Video Uploads" -msgstr "视频上传" - -#: cms/templates/videos_index.html -msgid "Course Video Settings" -msgstr "课程视频设置" - -#: cms/templates/visibility_editor.html cms/templates/visibility_editor.html -msgid "Access is not restricted" -msgstr "没有访问限制" - -#: cms/templates/visibility_editor.html -msgid "" -"Access to this unit is not restricted, but visibility might be affected by " -"inherited settings." -msgstr "此单元的访问不设有限制,但可视性可能会被所沿用的设置所影响。" - -#: cms/templates/visibility_editor.html -msgid "" -"Access to this component is not restricted, but visibility might be affected" -" by inherited settings." -msgstr "不禁止访问此组件,但可视性可能会被所沿用的设置影响。" - -#: cms/templates/visibility_editor.html -msgid "" -"You can restrict access to this unit to learners in specific enrollment " -"tracks or content groups." -msgstr "您可以限制访问本单元的学习者在特定的注册轨道或内容组。" - -#: cms/templates/visibility_editor.html -msgid "" -"You can restrict access to this component to learners in specific enrollment" -" tracks or content groups." -msgstr "您可以将此组件的访问限制在特定的注册跟踪或内容组中。" - -#: cms/templates/visibility_editor.html -msgid "" -"You can restrict access to this unit to learners in specific content groups." -msgstr "您可设置此单元仅供某内容组学员可访问。" - -#: cms/templates/visibility_editor.html -msgid "" -"You can restrict access to this component to learners in specific content " -"groups." -msgstr "您可限制特定内容组的学员对此组件的访问。" - -#: cms/templates/visibility_editor.html -msgid "Manage content groups" -msgstr "管理内容组" - -#. Translators: Any text between {screen_reader_start} and {screen_reader_end} -#. is only read by screen readers and never shown in the browser. -#: cms/templates/visibility_editor.html -msgid "" -"{screen_reader_start}Warning:{screen_reader_end} The unit that contains this" -" component is hidden from learners. The unit setting overrides the component" -" access settings defined here." -msgstr "" -"{screen_reader_start}警告:{screen_reader_end}包含此组件的单元对学员隐藏,单元设置覆盖此处所设置的组件访问设置。" - -#: cms/templates/visibility_editor.html -msgid "Access is restricted to:" -msgstr "访问开放人群:" - -#: cms/templates/visibility_editor.html -msgid "Restrict access to:" -msgstr "可访问人群;" - -#: cms/templates/visibility_editor.html -msgid "Select a group type" -msgstr "选择分组类型" - -#: cms/templates/visibility_editor.html -msgid "All Learners and Staff" -msgstr "所有学生与教员" - -#: cms/templates/visibility_editor.html -msgid "Select one or more groups:" -msgstr "选择一或者多个群组" - -#: cms/templates/visibility_editor.html -msgid "Deleted Group" -msgstr "已删除组" - -#: cms/templates/visibility_editor.html -msgid "" -"This group no longer exists. Choose another group or remove the access " -"restriction." -msgstr "此组已不存在,请选择其他分组并撤销访问限制。" - -#: cms/templates/emails/activation_email.txt -msgid "" -"Thank you for signing up for {studio_name}! To activate your account, please" -" copy and paste this address into your web browser's address bar:" -msgstr "感谢您注册{studio_name}!要激活您的账号,请复制并粘贴下面的网址到您的浏览器的地址栏:" - -#: cms/templates/emails/activation_email.txt -msgid "" -"If you didn't request this, you don't need to do anything; you won't receive" -" any more email from us. Please do not reply to this e-mail; if you require " -"assistance, check the help section of the {studio_name} web site." -msgstr "" -"如果您没发出过该请求,您不需要做任何事情,您将不会收到其他任何电子邮件。请不要回复此电子邮件。如果您需要帮助,请访问{studio_name}网站。" - -#: cms/templates/emails/activation_email_subject.txt -msgid "Your account for {studio_name}" -msgstr "您的{studio_name}账号" - -#: cms/templates/emails/course_creator_admin_subject.txt -msgid "{email} has requested {studio_name} course creator privileges on edge" -msgstr "{email} 已在边缘站点上发出要求获得{studio_name}上课程创建者权限的请求" - -#: cms/templates/emails/course_creator_admin_user_pending.txt -msgid "" -"User '{user}' with e-mail {email} has requested {studio_name} course creator" -" privileges on edge." -msgstr "用户“{user}”(电子邮件地址:{email})已在边缘站点上发出要求获得{studio_name}上课程创建者权限的请求。" - -#: cms/templates/emails/course_creator_admin_user_pending.txt -msgid "To grant or deny this request, use the course creator admin table." -msgstr "要授予或拒绝这一请求,请使用课程创建者管理表。" - -#: cms/templates/emails/course_creator_denied.txt -msgid "" -"Your request for course creation rights to {studio_name} have been denied. " -"If you believe this was in error, please contact {email}" -msgstr "您在{studio_name}上请求的课程创建权限已被拒绝。如果您觉得有问题,请联系 {email}" - -#: cms/templates/emails/course_creator_granted.txt -msgid "" -"Your request for course creation rights to {studio_name} have been granted. To create your first course, visit\n" -"\n" -"{url}" -msgstr "" -"已授予您在{studio_name}上创建课程的权限。要创建您的第一门课程,请访问\n" -"\n" -"{url}" - -#: cms/templates/emails/course_creator_revoked.txt -msgid "" -"Your course creation rights to {studio_name} have been revoked. If you " -"believe this was in error, please contact {email}" -msgstr "您在{studio_name}上的课程创建权限已被撤销。如果您觉得有问题,请联系 {email}" - -#: cms/templates/emails/course_creator_subject.txt -msgid "Your course creator status for {studio_name}" -msgstr "您在{studio_name}上的课程创建者状态" - -#: cms/templates/emails/user_task_complete_email.txt -msgid "" -"Your {task_name} task has completed with the status '{task_status}'. Use " -"this URL to view task details or download any files created: {detail_url}" -msgstr "您的{task_name}任务状态是{task_status},请使用此URL查看任务详情或下载已创建的文件:{detail_url}" - -#: cms/templates/emails/user_task_complete_email.txt -msgid "" -"Your {task_name} task has completed with the status '{task_status}'. Sign in" -" to view the details of your task or download any files created." -msgstr "您的任务:{task_name}已超过“{task_status}”状态,请登录后查看任务详情或下载已创建文件。" - -#: cms/templates/emails/user_task_complete_email_subject.txt -msgid "{platform_name} {studio_name}: Task Status Update" -msgstr "{platform_name} {studio_name}:任务状态更新" - -#: cms/templates/maintenance/_force_publish_course.html -msgid "Required data to force publish course." -msgstr "强制发布课程所需的数据。" - -#: cms/templates/maintenance/_force_publish_course.html -msgid "course-v1:edX+DemoX+Demo_Course" -msgstr "course-v1:edX+DemoX+Demo_Course" - -#: cms/templates/maintenance/_force_publish_course.html -msgid "Force Publish Course" -msgstr "强制发布课程" - -#: cms/templates/maintenance/_force_publish_course.html -msgid "Reset values" -msgstr "重设值" - -#: cms/templates/maintenance/base.html cms/templates/maintenance/index.html -msgid "Maintenance Dashboard" -msgstr "维护面板" - -#: cms/templates/registration/activation_complete.html -msgid "Thanks for activating your account." -msgstr "谢谢您激活账号。" - -#: cms/templates/registration/activation_complete.html -msgid "This account has already been activated." -msgstr "本账号已经被激活" - -#: cms/templates/registration/activation_complete.html -msgid "Visit your {link_start}dashboard{link_end} to see your courses." -msgstr "访问您的{link_start}课程面板{link_end}来查看课程。" - -#: cms/templates/registration/activation_complete.html -msgid "You can now {link_start}sign in{link_end}." -msgstr "您现在可以{link_start}登录{link_end}。" - -#: cms/templates/registration/activation_invalid.html -msgid "Activation Invalid" -msgstr "激活无效" - -#: cms/templates/registration/activation_invalid.html -msgid "" -"Something went wrong. Email programs sometimes split URLs into two lines, so" -" make sure the URL you're using is formatted correctly. If you still have " -"issues, send us an email message at {email_start}{email}{email_end}." -msgstr "" -"发生了错误。电子邮件程序有时会将 URL 分成两行,因此请确保您使用的 URL 格式正确。如果您仍然有问题,请通过以下地址向我们发送电子邮件: " -"{email_start}{email}{email_end}。" - -#: cms/templates/registration/activation_invalid.html -msgid "Return to the {link_start}home page{link_end}." -msgstr "返回到{link_start}主页{link_end}。" - -#: cms/templates/registration/reg_complete.html -msgid "" -"We've sent an email message to {email} with instructions for activating your" -" account." -msgstr "我们已向您的邮箱{email}发送了一封邮件,其中包含有关激活账号的说明" - -#: cms/templates/widgets/footer.html -msgid "Policies" -msgstr "政策" - -#: cms/templates/widgets/footer.html -msgid "Accessibility Accommodation Request" -msgstr "可访问的住宿申请" - -#: cms/templates/widgets/footer.html -msgid "LMS" -msgstr "LMS" - -#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX -#. Inc.'. Please do not translate any of these trademarks and company names. -#: cms/templates/widgets/footer.html -msgid "" -"EdX, Open edX, Studio, and the edX and Open edX logos are registered " -"trademarks or trademarks of {link_start}edX Inc.{link_end}" -msgstr "" -"“EdX”、“Open edX”、“Studio”和 edX、Open edX 图标是 {link_start}edX 公司{link_end} " -"的(注册)商标。" - -#: cms/templates/widgets/header.html -msgid "Current Course:" -msgstr "当前课程" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -msgid "Course Navigation" -msgstr "课程导航" - -#: cms/templates/widgets/header.html -msgid "Outline" -msgstr "大纲" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -msgid "Import" -msgstr "导入" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -msgid "Export" -msgstr "导出" - -#: cms/templates/widgets/header.html -msgid "Current Library:" -msgstr "当前知识库:" - -#: cms/templates/widgets/header.html -msgid "Library" -msgstr "知识库" - -#: cms/templates/widgets/header.html -msgid "Language preference" -msgstr "语言首选项" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -msgid "Account Navigation" -msgstr "账号导航" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -msgid "Contextual Online Help" -msgstr "相关在线帮助" - -#: cms/templates/widgets/metadata-edit.html -msgid "Launch Latex Source Compiler" -msgstr "启动 Latex 源编译器" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Heading" -msgstr "标题" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Insert a heading" -msgstr "插入一个标题" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Multiple Choice" -msgstr "多项选择" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Add a multiple choice question" -msgstr "新增一个单选的问题" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Checkboxes" -msgstr "复选框" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Add a question with checkboxes" -msgstr "新增一个可复选的问题" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Text Input" -msgstr "文本输入" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Insert a text response" -msgstr "插入一个文字的回应" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Numerical Input" -msgstr "数值输入" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Insert a numerical response" -msgstr "插入一个数字的回应" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Dropdown" -msgstr "下拉列表" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Insert a dropdown response" -msgstr "插入一个下拉式的回应" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Explanation" -msgstr "解析" - -#: cms/templates/widgets/problem-edit.html -#: cms/templates/widgets/problem-edit.html -msgid "Add an explanation for this question" -msgstr "新增此章节的说明" - -#: cms/templates/widgets/problem-edit.html -msgid "Advanced Editor" -msgstr "高级编辑器" - -#: cms/templates/widgets/problem-edit.html -msgid "Toggle Cheatsheet" -msgstr "切换速记" - -#: cms/templates/widgets/problem-edit.html -msgid "Label" -msgstr "标签" - -#: cms/templates/widgets/sock_links.html -msgid "Access the Open edX Portal" -msgstr "访问 Open edX Portal" - -#: cms/templates/widgets/sock_links.html -msgid "Open edX Portal" -msgstr "Open edX Portal" - -#: cms/templates/widgets/user_dropdown.html -#: cms/templates/widgets/user_dropdown.html -msgid "Currently signed in as:" -msgstr "当前登录用户:" - -#: cms/templates/widgets/user_dropdown.html -msgid "Maintenance" -msgstr "维护" diff --git a/conf/locale/zh_CN/LC_MESSAGES/mako.po b/conf/locale/zh_CN/LC_MESSAGES/mako.po deleted file mode 100644 index 9f11d1bfaf03..000000000000 --- a/conf/locale/zh_CN/LC_MESSAGES/mako.po +++ /dev/null @@ -1,10826 +0,0 @@ -# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) -# Copyright (C) 2019 edX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -# Translators: -# 微 李 , 2018 -# 家璧 刘 , 2018 -# 婕 高 , 2018 -# li ying , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-11 02:17+0000\n" -"PO-Revision-Date: 2018-11-26 07:56+0000\n" -"Last-Translator: li ying , 2019\n" -"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" - -#: cms/templates/404.html cms/templates/error.html -#: lms/templates/static_templates/404.html -msgid "Page Not Found" -msgstr "找不到页面" - -#: cms/templates/404.html lms/templates/static_templates/404.html -msgid "Page not found" -msgstr "找不到页面" - -#: cms/templates/asset_index.html cms/templates/course_info.html -#: cms/templates/course_outline.html cms/templates/edit-tabs.html -#: cms/templates/textbooks.html cms/templates/videos_index.html -#: cms/templates/widgets/header.html lms/templates/static_htmlbook.html -#: lms/templates/static_pdfbook.html lms/templates/staticbook.html -msgid "Content" -msgstr "内容" - -#: cms/templates/base.html lms/templates/main.html -msgid "Skip to main content" -msgstr "跳至主要内容" - -#: cms/templates/certificates.html -#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html -msgid "Course Certificates" -msgstr "课程证书" - -#: cms/templates/certificates.html cms/templates/group_configurations.html -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -#: cms/templates/settings.html cms/templates/settings_advanced.html -#: cms/templates/settings_graders.html cms/templates/widgets/header.html -#: cms/templates/widgets/header.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "设置" - -#: cms/templates/certificates.html cms/templates/container.html -#: cms/templates/course_outline.html cms/templates/group_configurations.html -#: cms/templates/group_configurations.html cms/templates/library.html -#: cms/templates/manage_users.html cms/templates/manage_users_lib.html -#: lms/templates/courseware/courses.html lms/templates/edxnotes/edxnotes.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html -msgid "Loading" -msgstr "正在加载" - -#: cms/templates/component.html cms/templates/container.html -#: cms/templates/studio_xblock_wrapper.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/wiki/includes/article_menu.html -msgid "Edit" -msgstr "编辑" - -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: lms/templates/certificates/verify.html -#: lms/templates/shoppingcart/receipt.html -msgid "Course Name" -msgstr "课程名称" - -#: cms/templates/course-create-rerun.html cms/templates/index.html -#: cms/templates/settings.html lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Course Number" -msgstr "课程代码" - -#: cms/templates/course_outline.html cms/templates/course_outline.html -#: cms/templates/course_outline.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Course Outline" -msgstr "课程大纲" - -#: cms/templates/course_outline.html cms/templates/index.html -#: openedx/features/course_experience/templates/course_experience/latest-update-fragment.html -#: openedx/features/course_experience/templates/course_experience/welcome-message-fragment.html -msgid "Dismiss" -msgstr "解散" - -#: cms/templates/course_outline.html lms/templates/seq_module.html -#: lms/templates/ccx/schedule.html -#: lms/templates/courseware/writable_gradebook.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Section" -msgstr "章" - -#: cms/templates/group_configurations.html -#: cms/templates/group_configurations.html -#: cms/templates/group_configurations.html -#: lms/templates/courseware/program_marketing.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -#: themes/normal-theme/lms/templates/footer.html -msgid "Learn More" -msgstr "了解更多" - -#: cms/templates/html_error.html lms/templates/module-error.html -msgid "Error:" -msgstr "错误:" - -#: cms/templates/index.html lms/templates/help_modal.html -#: lms/templates/manage_user_standing.html lms/templates/register-shib.html -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -#: lms/templates/peer_grading/peer_grading_problem.html -#: lms/templates/survey/survey.html -#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html -#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Submit" -msgstr "提交" - -#: cms/templates/index.html cms/templates/index.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Organization:" -msgstr "机构:" - -#: cms/templates/index.html cms/templates/index.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Course Number:" -msgstr "课程代码:" - -#: cms/templates/index.html cms/templates/index.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Course Run:" -msgstr "课程长度:" - -#: cms/templates/index.html lms/templates/sysadmin_dashboard.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/courseware/courses.html -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Courses" -msgstr "课程" - -#: cms/templates/login.html cms/templates/register.html -#: lms/templates/help_modal.html lms/templates/login.html -#: lms/templates/provider_login.html lms/templates/provider_login.html -#: lms/templates/register-form.html lms/templates/register-form.html -#: lms/templates/register-shib.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "E-mail" -msgstr "电子邮件" - -#. Translators: This is the placeholder text for a field that requests an -#. email -#. address. -#: cms/templates/login.html cms/templates/manage_users.html -#: cms/templates/manage_users_lib.html cms/templates/register.html -#: lms/templates/login.html lms/templates/register-form.html -#: lms/templates/register-form.html lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "example: username@domain.com" -msgstr "例:username@domain.com" - -#: cms/templates/login.html cms/templates/register.html -#: lms/templates/login.html lms/templates/provider_login.html -#: lms/templates/provider_login.html lms/templates/register-form.html -#: lms/templates/register-form.html lms/templates/signup_modal.html -#: lms/templates/sysadmin_dashboard.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Password" -msgstr "密码" - -#: cms/templates/login.html lms/templates/login.html -msgid "Forgot password?" -msgstr "忘记密码?" - -#: cms/templates/register.html lms/templates/register-form.html -#: lms/templates/register-form.html lms/templates/register-shib.html -#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Full Name" -msgstr "全名" - -#. Translators: This is the placeholder text for a field that requests the -#. user's full name. -#: cms/templates/register.html lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "example: Jane Doe" -msgstr "例:Jane Doe" - -#: cms/templates/register.html lms/templates/register-form.html -#: lms/templates/register-shib.html lms/templates/signup_modal.html -#: lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Public Username" -msgstr "公开用户名" - -#. Translators: This is the placeholder text for a field that asks the user to -#. pick a username -#: cms/templates/register.html lms/templates/register-form.html -#: lms/templates/register-form.html lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "example: JaneDoe" -msgstr "例:JaneDoe" - -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course Start Date" -msgstr "课程开始日期" - -#: cms/templates/settings.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Course End Date" -msgstr "课程结束日期" - -#: cms/templates/settings.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Course Short Description" -msgstr "课程简介" - -#: cms/templates/settings.html lms/templates/courseware/program_marketing.html -msgid "Instructors" -msgstr "主讲教师" - -#: cms/templates/settings.html lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Requirements" -msgstr "修习要求" - -#: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html -#: lms/templates/help_modal.html lms/templates/module-error.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Details" -msgstr "细节" - -#. Translators: this is a verb describing the action of viewing more details -#: cms/templates/studio_xblock_wrapper.html -#: lms/templates/wiki/includes/article_menu.html -msgid "View" -msgstr "阅览" - -#: cms/templates/maintenance/_force_publish_course.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Course ID" -msgstr "课程ID" - -#: cms/templates/maintenance/_force_publish_course.html -#: lms/templates/problem.html lms/templates/shoppingcart/shopping_cart.html -#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html -#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html -msgid "Reset" -msgstr "重置" - -#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html -#: lms/templates/static_templates/tos.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/tos.html -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Terms of Service" -msgstr "服务条款" - -#: cms/templates/widgets/footer.html -#: lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy_policy.html -#: lms/templates/static_templates/privacy_policy.html -#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Privacy Policy" -msgstr "隐私政策" - -#: cms/templates/widgets/footer.html lms/templates/footer.html -#: lms/templates/footer.html -msgid "Legal" -msgstr "合法" - -#: cms/templates/widgets/footer.html cms/templates/widgets/footer.html -#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html -msgid "Powered by Open edX" -msgstr "Powered by Open edX" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/help_modal.html -#: lms/templates/courseware/course_navigation.html -#: lms/templates/courseware/courseware.html -#: lms/templates/courseware/courseware.html -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -msgid "Course" -msgstr "课程" - -#: cms/templates/widgets/header.html -#: lms/templates/api_admin/terms_of_service.html -#: openedx/features/course_experience/templates/course_experience/course-updates-fragment.html -#: openedx/features/course_experience/templates/course_experience/course-updates-fragment.html -msgid "Updates" -msgstr "更新" - -#: cms/templates/widgets/header.html lms/templates/header/header.html -#: lms/templates/navigation/navigation.html -#: lms/templates/widgets/footer-language-selector.html -msgid "Choose Language" -msgstr "选择语言" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/user_dropdown.html lms/templates/user_dropdown.html -#: lms/templates/user_dropdown.html lms/templates/header/user_dropdown.html -msgid "Account" -msgstr "账号" - -#: cms/templates/widgets/header.html cms/templates/widgets/header.html -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: lms/templates/static_templates/help.html -#: lms/templates/static_templates/help.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Help" -msgstr "帮助" - -#: cms/templates/widgets/sock.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Looking for help with {studio_name}?" -msgstr "查找有关{studio_name}的帮助?" - -#: cms/templates/widgets/sock.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Hide {studio_name} Help" -msgstr "隐藏{studio_name}帮助" - -#: cms/templates/widgets/sock.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "{studio_name} Documentation" -msgstr "{studio_name}文档" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Access documentation on http://docs.edx.org" -msgstr "到 http://docs.edx.org 获取文档" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "edX Documentation" -msgstr "edX文档" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Enroll in edX101: Overview of Creating an edX Course" -msgstr "参加 edX101:关于创建一门 edX 课程的概述" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Enroll in edX101" -msgstr "选修edX101" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Enroll in StudioX: Creating a Course with edX Studio" -msgstr "参加 StudioX:使用 edX Studio 创建一门课程" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Enroll in StudioX" -msgstr "参加 StudioX" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "Send an email to {email}" -msgstr "发送邮件到 {email}" - -#: cms/templates/widgets/sock_links.html -#: themes/edx.org/cms/templates/widgets/sock.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/contact.html -#: themes/stanford-style/lms/templates/static_templates/about.html -msgid "Contact Us" -msgstr "联系我们" - -#: cms/templates/widgets/tabs-aggregator.html -#: lms/templates/courseware/static_tab.html -#: lms/templates/courseware/tab-view-v2.html -#: lms/templates/courseware/tab-view.html -msgid "name" -msgstr "名称" - -#: cms/templates/widgets/user_dropdown.html -#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html -#: lms/templates/user_dropdown.html lms/templates/user_dropdown.html -msgid "Usermenu" -msgstr "用户菜单" - -#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html -msgid "Usermenu dropdown" -msgstr "用户菜单下拉列表" - -#: cms/templates/widgets/user_dropdown.html -#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html -#: lms/templates/user_dropdown.html lms/templates/user_dropdown.html -#: lms/templates/user_dropdown.html lms/templates/header/user_dropdown.html -msgid "Sign Out" -msgstr "退出" - -#: common/lib/capa/capa/templates/codeinput.html -msgid "Code Editor" -msgstr "代码编辑器" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Feedback Form" -msgstr "反馈表格" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Email: {email}" -msgstr "电子邮件: {email}" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Full Name: {realname}" -msgstr "全名: {realname}" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Inquiry Type: {inquiry_type}" -msgstr "查询类型: {inquiry_type}" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Message: {message}" -msgstr "信息: {message}" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Tags: {tags}" -msgstr "标签: {tags}" - -#: common/templates/emails/contact_us_feedback_email_body.txt -msgid "Additional Info:" -msgstr "附加信息" - -#: common/templates/emails/contact_us_feedback_email_subject.txt -msgid "Feedback from user" -msgstr "使用者反馈意见" - -#: common/templates/emails/sync_learner_profile_data_email_change_body.txt -msgid "" -"The email associated with your {platform_name} account has changed from " -"{old_email} to {new_email}." -msgstr "与您账号 {platform_name} 相关联的电子邮件地址由 {old_email} 修改为 {new_email}。" - -#: common/templates/emails/sync_learner_profile_data_email_change_body.txt -msgid "No action is needed on your part." -msgstr "您不需要进行任何操作。" - -#: common/templates/emails/sync_learner_profile_data_email_change_body.txt -msgid "" -"If this change is not correct, contact {link_start}{platform_name} " -"Support{link_end} or your administrator." -msgstr "如果此更改有误,请联系{link_start}{platform_name}客户支持服务{link_end}或您的管理员。" - -#: common/templates/emails/sync_learner_profile_data_email_change_subject.txt -msgid "Your {platform_name} account email has been updated" -msgstr "您的 {platform_name} 账号电子邮件已更新" - -#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html -msgid "Discussions" -msgstr "讨论" - -#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html -msgid "Add a Post" -msgstr "添加一个讨论帖" - -#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html -msgid "New topic form" -msgstr "新主题表格" - -#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html -msgid "Discussion thread list" -msgstr "讨论列表" - -#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -msgid "Discussion" -msgstr "讨论" - -#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html -#: lms/templates/discussion/_user_profile.html -#, python-format -msgid "%s discussion started" -msgid_plural "%s discussions started" -msgstr[0] "%s 场讨论已开始" - -#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html -#: lms/templates/discussion/_user_profile.html -#, python-format -msgid "%s comment" -msgid_plural "%s comments" -msgstr[0] "%s 条评论" - -#: lms/djangoapps/discussion/templates/discussion/maintenance_fragment.html -msgid "Discussion unavailable" -msgstr "讨论不可用" - -#: lms/djangoapps/discussion/templates/discussion/maintenance_fragment.html -msgid "" -"The discussions are currently undergoing maintenance. We'll have them back " -"up shortly!" -msgstr "讨论板块正在进行维护。我们会很快备份内容!" - -#: lms/djangoapps/teams/templates/teams/teams.html -msgid "Teams" -msgstr "团队" - -#: lms/templates/_gated_content.html lms/templates/_gated_content.html -#: lms/templates/seq_module.html -msgid "Content Locked" -msgstr "未解锁内容" - -#: lms/templates/_gated_content.html -msgid "" -"You must complete the prerequisites for '{prereq_section_name}' to access " -"this content." -msgstr "您必须先完成'{prereq_section_name}'的先修课程,才能访问此内容。" - -#: lms/templates/_gated_content.html -msgid "Go to Prerequisite Section" -msgstr "前往“先修课程要求”" - -#: lms/templates/annotatable.html lms/templates/peer_grading/peer_grading.html -msgid "Instructions" -msgstr "说明" - -#: lms/templates/annotatable.html -msgid "Collapse Instructions" -msgstr "折叠说明" - -#: lms/templates/annotatable.html -msgid "Guided Discussion" -msgstr "指导性讨论" - -#: lms/templates/annotatable.html -msgid "Hide Annotations" -msgstr "隐藏批注" - -#: lms/templates/bookmark_button.html lms/templates/seq_module.html -msgid "Bookmarked" -msgstr "已收藏" - -#: lms/templates/bookmark_button.html -msgid "Bookmark this page" -msgstr "收藏此页" - -#: lms/templates/conditional_module.html -msgid "You do not have access to this dependency module." -msgstr "您无权访问此依赖模块。" - -#: lms/templates/course.html -#: openedx/features/journals/templates/journals/bundle_card.html -#: openedx/features/journals/templates/journals/journal_card.html -msgid "LEARN MORE" -msgstr "了解更多" - -#: lms/templates/course.html -msgid "Starts: {date}" -msgstr "开课日期: {date}" - -#: lms/templates/course.html lms/templates/course.html -msgid "Starts" -msgstr "开始" - -#: lms/templates/courses_list.html -msgid "View all Courses" -msgstr "浏览所有课程" - -#: lms/templates/dashboard.html lms/templates/user_dropdown.html -#: lms/templates/user_dropdown.html lms/templates/user_dropdown.html -#: lms/templates/header/user_dropdown.html -#: themes/edx.org/lms/templates/dashboard.html -msgid "Dashboard" -msgstr "课程面板" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "You are not enrolled in any courses yet." -msgstr "您尚未参加任何课程。" - -#: lms/templates/dashboard.html -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: themes/edx.org/lms/templates/dashboard.html -msgid "Explore courses" -msgstr "发现课程" - -#: lms/templates/dashboard.html -#: lms/templates/registration/account_activation_sidebar_notice.html -msgid "Activate your account!" -msgstr "激活您的账号!" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Course-loading errors" -msgstr "课程加载错误" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Search Your Courses" -msgstr "查找课程" - -#: lms/templates/dashboard.html lms/templates/index.html -#: lms/templates/api_admin/catalogs/search.html -#: lms/templates/courseware/courses.html -#: lms/templates/courseware/courseware.html -#: lms/templates/edxnotes/edxnotes.html -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -#: openedx/features/course_search/templates/course_search/course-search-fragment.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/stanford-style/lms/templates/index.html -msgid "Search" -msgstr "搜索" - -#: lms/templates/dashboard.html lms/templates/courseware/courseware.html -#: themes/edx.org/lms/templates/dashboard.html -msgid "Clear search" -msgstr "清空搜索结果" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Account Status Info" -msgstr "账号状态信息" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Order History" -msgstr "订单记录" - -#: lms/templates/dashboard.html -msgid "VIP Expiry Date" -msgstr "会员有效期" - -#: lms/templates/dashboard.html -msgid "Subscription will soon be overdue. Please recharge in time." -msgstr "订阅期满,请及时充值" - -#: lms/templates/dashboard.html -msgid "" -"Sorry, your EliteMBA VIP has expired. In order not to disrupt your learning " -"schedule, please recharge in time." -msgstr "您好,您购买的英荔商学院 VIP 会员已到期,为了不影响您的学习进度,请及时充值" - -#: lms/templates/dashboard.html -msgid "Renew VIP" -msgstr "会员续费" - -#. Translators: this is a control to allow users to exit out of this modal -#. interface (a menu or piece of UI that takes the full focus of the screen) -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/forgot_password_modal.html lms/templates/help_modal.html -#: lms/templates/signup_modal.html lms/templates/ccx/schedule.html -#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -#: lms/templates/modal/_modal-settings-language.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -msgid "Close" -msgstr "关闭" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Email Settings for {course_number}" -msgstr "{course_number}的电子邮件设置" - -#. Translators: this text gives status on if the modal interface (a menu or -#. piece of UI that takes the full focus of the screen) is open or not -#: lms/templates/dashboard.html lms/templates/dashboard.html -#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -#: lms/templates/modal/_modal-settings-language.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -msgid "window open" -msgstr "窗口打开" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Receive course emails" -msgstr "接收课程邮件" - -#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html -msgid "Save Settings" -msgstr "保存设置" - -#: lms/templates/dashboard.html lms/templates/ccx/enrollment.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_entitlement_actions.html -#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -#: themes/edx.org/lms/templates/dashboard.html -#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html -msgid "Unenroll" -msgstr "放弃选修" - -#: lms/templates/edit_unit_link.html -msgid "View Unit in Studio" -msgstr "在 Studio 中查看单元" - -#: lms/templates/email_change_failed.html lms/templates/email_exists.html -msgid "E-mail change failed" -msgstr "邮箱变更失败" - -#: lms/templates/email_change_failed.html -msgid "We were unable to send a confirmation email to {email}" -msgstr "我们无法向 {email}发送确认邮件" - -#: lms/templates/email_change_failed.html lms/templates/email_exists.html -#: lms/templates/invalid_email_key.html -msgid "Go back to the {link_start}home page{link_end}." -msgstr "返回{link_start}主页{link_end}" - -#: lms/templates/email_change_successful.html -msgid "E-mail change successful!" -msgstr "邮箱更改成功!" - -#: lms/templates/email_change_successful.html -msgid "You should see your new email in your {link_start}dashboard{link_end}." -msgstr "您可以在{link_start}课程面板{link_end}看到您的新邮箱地址" - -#: lms/templates/email_exists.html -msgid "An account with the new e-mail address already exists." -msgstr "该邮箱地址已被另一个账号使用。" - -#: lms/templates/enroll_staff.html -msgid "You should Register before trying to access the Unit" -msgstr "您在查看单元前应先注册。" - -#: lms/templates/enroll_staff.html lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgctxt "self" -msgid "Enroll" -msgstr "选修" - -#: lms/templates/enroll_staff.html -msgid "Don't enroll" -msgstr "不选修" - -#: lms/templates/enroll_students.html -msgid "Student Enrollment Form" -msgstr "学生选课表" - -#: lms/templates/enroll_students.html -msgid "Course: " -msgstr "课程:" - -#: lms/templates/enroll_students.html -msgid "Add new students" -msgstr "添加新学生" - -#: lms/templates/enroll_students.html -msgid "Existing students:" -msgstr "现有学生:" - -#: lms/templates/enroll_students.html -msgid "New students added: " -msgstr "新增学生:" - -#: lms/templates/enroll_students.html -msgid "Students rejected: " -msgstr "被拒绝的学生:" - -#: lms/templates/enroll_students.html -msgid "Debug: " -msgstr "排除错误" - -#: lms/templates/extauth_failure.html lms/templates/extauth_failure.html -msgid "External Authentication failed" -msgstr "外部认证失败" - -#: lms/templates/footer.html lms/templates/footer.html -#: lms/templates/static_templates/about.html -#: lms/templates/static_templates/about.html -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/about.html -#: themes/stanford-style/lms/templates/static_templates/about.html -#: themes/stanford-style/lms/templates/static_templates/about.html -msgid "About" -msgstr "关于我们" - -#: lms/templates/forgot_password_modal.html -#: lms/templates/forgot_password_modal.html -msgid "Password Reset" -msgstr "密码重置" - -#: lms/templates/forgot_password_modal.html -msgid "" -"Please enter your e-mail address below, and we will e-mail instructions for " -"setting a new password." -msgstr "请在下面输入您的电子邮件地址。我们会通过邮件发送设置新密码的说明。" - -#: lms/templates/forgot_password_modal.html lms/templates/login.html -#: lms/templates/register-form.html lms/templates/register-shib.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Required Information" -msgstr "必填信息" - -#: lms/templates/forgot_password_modal.html -msgid "Your E-mail Address" -msgstr "您的邮件地址" - -#: lms/templates/forgot_password_modal.html lms/templates/login.html -msgid "This is the e-mail address you used to register with {platform}" -msgstr "这是您在{platform}注册时使用的e-mail地址。" - -#: lms/templates/forgot_password_modal.html -msgid "Reset My Password" -msgstr "重置我的密码" - -#: lms/templates/forgot_password_modal.html -msgid "Email is incorrect." -msgstr "邮箱不正确。" - -#: lms/templates/help_modal.html -msgid "Support" -msgstr "支持" - -#: lms/templates/help_modal.html -msgid "{platform_name} Support" -msgstr "{platform_name}支持" - -#: lms/templates/help_modal.html -msgid "" -"For {strong_start}questions on course lectures, homework, tools, or " -"materials for this course{strong_end}, post in the {link_start}course " -"discussion forum{link_end}." -msgstr "" -"关于{strong_start}此课程的讲座、作业、工具或材料的问题{strong_end},请发布在{link_start}课程讨论论坛{link_end}中。" - -#: lms/templates/help_modal.html -msgid "" -"Have {strong_start}general questions about {platform_name}{strong_end}? You " -"can find lots of helpful information in the {platform_name} " -"{link_start}FAQ{link_end}." -msgstr "" -"{strong_start}对{platform_name}有常见问题{strong_end}?您可以在 {platform_name} " -"{link_start}FAQ{link_end} 中找到许多有用的信息。" - -#: lms/templates/help_modal.html -msgid "" -"Have a {strong_start}question about something specific{strong_end}? You can " -"contact the {platform_name} general support team directly:" -msgstr "{strong_start}对具体事物有疑问{strong_end}?您可以直接联系 {platform_name} 支持团队:" - -#: lms/templates/help_modal.html -msgid "Report a problem" -msgstr "报告问题" - -#: lms/templates/help_modal.html -msgid "Make a suggestion" -msgstr "提供建议" - -#: lms/templates/help_modal.html -msgid "Ask a question" -msgstr "提问" - -#: lms/templates/help_modal.html -msgid "" -"Please note: The {platform_name} support team is English speaking. While we " -"will do our best to address your inquiry in any language, our responses will" -" be in English." -msgstr "请注意{platform_name}平台的技术支持团队说的是英语。我们将尽可能处理来自任何语种的请求,但我们只用英语答复。" - -#: lms/templates/help_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/receipt.html -msgid "Name" -msgstr "名称" - -#: lms/templates/help_modal.html -msgid "Briefly describe your issue" -msgstr "简述您的问题" - -#: lms/templates/help_modal.html -msgid "Tell us the details" -msgstr "告诉我们细节" - -#: lms/templates/help_modal.html -msgid "" -"Describe what you were doing when you encountered the issue. Include any " -"details that will help us to troubleshoot, including error messages that you" -" saw." -msgstr "请尽可能详细地描述您遇到该问题时的情况,包括显示的错误提示,以便我们排除故障。" - -#: lms/templates/help_modal.html -msgid "Thank You!" -msgstr "谢谢!" - -#: lms/templates/help_modal.html -msgid "" -"Thank you for your inquiry or feedback. We typically respond to a request " -"within one business day, Monday to Friday. In the meantime, please review " -"our {link_start}detailed FAQs{link_end} where most questions have already " -"been answered." -msgstr "" -"感谢您的咨询及反馈。我们一般将在1个工作日内给您答复,我们的工作日为周一至周五。您也可以访问我们的常见问题解答页面{link_start}{link_end}以获得问题答案。" - -#: lms/templates/help_modal.html -msgid "- Select -" -msgstr "选择" - -#: lms/templates/help_modal.html -msgid "problem" -msgstr "问题" - -#: lms/templates/help_modal.html -msgid "Report a Problem" -msgstr "报告问题" - -#: lms/templates/help_modal.html -msgid "Brief description of the problem" -msgstr "简述此问题" - -#: lms/templates/help_modal.html -msgid "Details of the problem you are encountering{asterisk}" -msgstr "问题详情{asterisk}" - -#: lms/templates/help_modal.html -msgid "suggestion" -msgstr "建议" - -#: lms/templates/help_modal.html -msgid "Make a Suggestion" -msgstr "提供建议" - -#: lms/templates/help_modal.html -msgid "Brief description of your suggestion" -msgstr "简述您的建议" - -#: lms/templates/help_modal.html -msgid "question" -msgstr "问题" - -#: lms/templates/help_modal.html -msgid "Ask a Question" -msgstr "提问" - -#: lms/templates/help_modal.html -msgid "Brief summary of your question" -msgstr "简单概述您的问题" - -#: lms/templates/help_modal.html -msgid "An error has occurred." -msgstr "发生错误" - -#: lms/templates/help_modal.html -msgid "Please {link_start}send us e-mail{link_end}." -msgstr "请 {link_start}发送e-mail{link_end} 给我们。" - -#: lms/templates/help_modal.html -msgid "Please try again later." -msgstr "请稍后再试。" - -#: lms/templates/hidden_content.html -msgid "The course has ended." -msgstr "课程已经结束" - -#: lms/templates/hidden_content.html -msgid "The due date for this assignment has passed." -msgstr "本次作业已经过了截止日期。" - -#: lms/templates/hidden_content.html -msgid "" -"Because the course has ended, this assignment is no longer " -"available.{line_break}If you have completed this assignment, your grade is " -"available on the {link_start}progress page{link_end}." -msgstr "" -"由于课程已经结束,此作业不再可用。{line_break} 如果您已经完成此作业,您可以在 {link_start}进度页面{link_end} " -"上查询作业成绩。" - -#: lms/templates/hidden_content.html -msgid "" -"Because the due date has passed, this assignment is no longer " -"available.{line_break}If you have completed this assignment, your grade is " -"available on the {link_start}progress page{link_end}." -msgstr "" -"由于截止日期已过,此作业不再可用。{line_break} 如果您已经完成此作业,您可以在 {link_start}进度页面{link_end} " -"上查询作业成绩。" - -#: lms/templates/index.html lms/templates/courseware/courses.html -msgid "List of Courses" -msgstr "课程列表" - -#: lms/templates/index.html lms/templates/index.html -#: lms/templates/courseware/courses.html lms/templates/courseware/courses.html -#: themes/stanford-style/lms/templates/index.html -#: themes/stanford-style/lms/templates/index.html -msgid "Search for a course" -msgstr "查找课程" - -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "Welcome to the Open edX{registered_trademark} platform!" -msgstr "欢迎来到Open edX{registered_trademark}平台!" - -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: lms/templates/index_overlay.html -msgid "It works! This is the default homepage for this Open edX instance." -msgstr "成功了!这是一个 Open edX 实例的默认主页。" - -#: lms/templates/invalid_email_key.html -msgid "Invalid email change key" -msgstr "无效的邮件变更码" - -#: lms/templates/invalid_email_key.html -msgid "This e-mail key is not valid. Please check:" -msgstr "邮件码无效。请检查:" - -#: lms/templates/invalid_email_key.html -msgid "" -"Was this key already used? Check whether the e-mail change has already " -"happened." -msgstr "如果该编码已被使用,请检查邮箱变更是否已成功。" - -#: lms/templates/invalid_email_key.html -msgid "Did your e-mail client break the URL into two lines?" -msgstr "您的邮箱客户端是否将URL分成两行?" - -#: lms/templates/invalid_email_key.html -msgid "The keys are valid for a limited amount of time. Has the key expired?" -msgstr "由于密钥的时效有限,请检查是否已过期。" - -#: lms/templates/library-block-author-preview-header.html -msgid "" -"Showing all matching content eligible to be added into {display_name}. Each " -"student will be assigned {max_count} component drawn randomly from this " -"list." -msgid_plural "" -"Showing all matching content eligible to be added into {display_name}. Each " -"student will be assigned {max_count} components drawn randomly from this " -"list." -msgstr[0] "显示可添加到 {display_name} 的全部匹配内容。每位学生都将从此列表随机分配到 {max_count} 个组件。" - -#: lms/templates/login-sidebar.html -msgid "Helpful Information" -msgstr "有用的信息" - -#: lms/templates/login-sidebar.html lms/templates/login-sidebar.html -msgid "Login via OpenID" -msgstr "通过OpenID登录" - -#: lms/templates/login-sidebar.html -msgid "" -"You can now start learning with {platform_name} by logging in with your OpenID account." -msgstr "" -"您现在可以登录您的 OpenID账号开始学习{platform_name}上的课程。" - -#: lms/templates/login-sidebar.html -msgid "Not Enrolled?" -msgstr "尚未选课?" - -#: lms/templates/login-sidebar.html -msgid "Sign up for {platform_name} today!" -msgstr "现在就注册加入{platform_name}!" - -#: lms/templates/login-sidebar.html lms/templates/register-sidebar.html -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "Need Help?" -msgstr "需要帮助?" - -#: lms/templates/login-sidebar.html -msgid "Looking for help signing in or with your {platform_name} account?" -msgstr "寻找关于登录或者您的 {platform_name} 账号的帮助?" - -#: lms/templates/login-sidebar.html -msgid "View our help section for answers to commonly asked questions." -msgstr "查看帮助部分来获得常见问题的解答。" - -#: lms/templates/login.html -msgid "Log into your {platform_name} Account" -msgstr "登录进入您的{platform_name}账号" - -#: lms/templates/login.html -msgid "Log into My {platform_name} Account" -msgstr "登录我的{platform_name}账号" - -#: lms/templates/login.html -msgid "Access My Courses" -msgstr "进入我的课程" - -#: lms/templates/login.html lms/templates/register-shib.html -#: lms/templates/register.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Processing your account information" -msgstr "正在处理您的账号信息" - -#: lms/templates/login.html -msgid "Please log in" -msgstr "请登录" - -#: lms/templates/login.html -msgid "to access your account and courses" -msgstr "来访问您的账号和课程" - -#: lms/templates/login.html -msgid "We're Sorry, {platform_name} accounts are unavailable currently" -msgstr "我们很遗憾,{platform_name} 账号现在无法使用" - -#: lms/templates/login.html -msgid "We couldn't log you in." -msgstr "无法登录。" - -#: lms/templates/login.html -msgid "Your email or password is incorrect" -msgstr "您的邮箱或密码不正确" - -#: lms/templates/login.html -msgid "An error occurred when signing you in to {platform_name}." -msgstr "您注册 {platform_name} 时发生了一个错误。" - -#: lms/templates/login.html -msgid "" -"Please provide the following information to log into your {platform_name} " -"account. Required fields are noted by bold text " -"and an asterisk (*)." -msgstr "" -"请提供下面的信息以登录进入您的 {platform_name} 账号,必须填写的信息已经被 加粗和用 (*)标出。" - -#: lms/templates/login.html -msgid "Account Preferences" -msgstr "账号参数" - -#: lms/templates/login.html -msgid "Remember me" -msgstr "记住我" - -#. Translators: this is the last choice of a number of choices of how to log -#. in -#. to the site. -#: lms/templates/login.html lms/templates/register-form.html -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "or" -msgstr "或者" - -#: lms/templates/login.html -msgid "Sign in with {provider_name}" -msgstr "以 {provider_name}登陆" - -#. Translators: "External resource" means that this learning module is hosted -#. on a platform external to the edX LMS -#: lms/templates/lti.html -msgid "External resource" -msgstr "外部资源" - -#. Translators: "points" is the student's achieved score on this LTI unit, and -#. "total_points" is the maximum number of points achievable. -#: lms/templates/lti.html -msgid "{points} / {total_points} points" -msgstr "{points} / 共{total_points} 分" - -#. Translators: "total_points" is the maximum number of points achievable on -#. this LTI unit -#: lms/templates/lti.html -msgid "{total_points} points possible" -msgstr "本题共有{total_points} 分" - -#: lms/templates/lti.html -msgid "View resource in a new window" -msgstr "在新窗口中查看资源" - -#: lms/templates/lti.html -msgid "" -"Please provide launch_url. Click \"Edit\", and fill in the required fields." -msgstr "请提供运行链接 launch_url,点击\"编辑\",并填写需要的项。" - -#: lms/templates/lti.html -msgid "Feedback on your work from the grader:" -msgstr "评分者给您的反馈:" - -#: lms/templates/lti_form.html -msgid "Press to Launch" -msgstr "点击来启动" - -#: lms/templates/manage_user_standing.html -msgid "Manage student accounts" -msgstr "管理学生账号" - -#: lms/templates/manage_user_standing.html -msgid "Username:" -msgstr "用户名:" - -#: lms/templates/manage_user_standing.html -msgid "Profile:" -msgstr "用户资料:" - -#: lms/templates/manage_user_standing.html -msgid "Image:" -msgstr "图像" - -#: lms/templates/manage_user_standing.html -msgid "Name:" -msgstr "名字" - -#: lms/templates/manage_user_standing.html -msgid "Choose an action:" -msgstr "选择一个行为:" - -#: lms/templates/manage_user_standing.html -msgid "View Profile" -msgstr "查看用户资料" - -#: lms/templates/manage_user_standing.html -msgid "Disable Account" -msgstr "停用账号" - -#: lms/templates/manage_user_standing.html -msgid "Reenable Account" -msgstr "重新启用账号" - -#: lms/templates/manage_user_standing.html -msgid "Remove Profile Image" -msgstr "删除用户资料照片" - -#: lms/templates/manage_user_standing.html -msgid "Students whose accounts have been disabled" -msgstr "学生账号已被停用" - -#: lms/templates/manage_user_standing.html -msgid "(reload your page to refresh)" -msgstr "(重新加载以刷新您的页面)" - -#: lms/templates/manage_user_standing.html -#: lms/templates/manage_user_standing.html -msgid "working" -msgstr "运行中" - -#: lms/templates/module-error.html -#: lms/templates/courseware/courseware-error.html -msgid "There has been an error on the {platform_name} servers" -msgstr "{platform_name} 平台的服务器发生了错误" - -#: lms/templates/module-error.html -#: lms/templates/courseware/courseware-error.html -#: lms/templates/courseware/error-message.html -msgid "" -"We're sorry, this module is temporarily unavailable. Our staff is working to" -" fix it as soon as possible. Please email us at {tech_support_email} to " -"report any problems or downtime." -msgstr "" -"非常抱歉,该模块暂时无法使用,我们的教员正在努力尽修复问题。要报告您发现的任何问题或遇到网站非正常,请向{tech_support_email}发送邮件" - -#: lms/templates/module-error.html -msgid "Raw data:" -msgstr "原始数据:" - -#: lms/templates/notes.html -msgid "My Notes" -msgstr "我的笔记" - -#: lms/templates/notes.html -msgid "You do not have any notes." -msgstr "您没有任何笔记。" - -#: lms/templates/preview_menu.html -msgid "Course View" -msgstr "课程内容查看" - -#: lms/templates/preview_menu.html -msgid "View this course as:" -msgstr "查看课程的身份:" - -#: lms/templates/preview_menu.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Staff" -msgstr "工作人员" - -#: lms/templates/preview_menu.html -msgid "Learner" -msgstr "学生" - -#: lms/templates/preview_menu.html -msgid "Specific learner" -msgstr "指定学生" - -#: lms/templates/preview_menu.html -msgid "Learner in {content_group}" -msgstr "{content_group}的学生" - -#: lms/templates/preview_menu.html -msgid "Username or email:" -msgstr "用户名或电子邮件:" - -#: lms/templates/preview_menu.html -msgid "Set preview mode" -msgstr "设为预览模式" - -#: lms/templates/preview_menu.html -msgid "You are now viewing the course as {i_start}{user_name}{i_end}." -msgstr "您正在以 {i_start}{user_name}{i_end} 身份查看课程。" - -#: lms/templates/problem.html -msgid "You have used {num_used} of {num_total} attempt" -msgid_plural "You have used {num_used} of {num_total} attempts" -msgstr[0] "您已经尝试了{num_used}次(总共可以尝试{num_total}次)" - -#: lms/templates/problem.html -msgid "" -"Some problems have options such as save, reset, hints, or show answer. These" -" options follow the Submit button." -msgstr "一些题目设有保存、重置、提示、显示答案等选项,点击提交后即会出现。" - -#: lms/templates/problem.html -msgid "Hint" -msgstr "提示" - -#: lms/templates/problem.html lms/templates/problem.html -#: lms/templates/word_cloud.html -msgid "Save" -msgstr "保存" - -#: lms/templates/problem.html -msgid "Save your answer" -msgstr "保存答案" - -#: lms/templates/problem.html -msgid "Reset your answer" -msgstr "重置答案" - -#: lms/templates/problem.html -msgid "Show Answer" -msgstr "显示答案" - -#: lms/templates/problem.html -msgid "Answers are displayed within the problem" -msgstr "答案已在问题中显示" - -#: lms/templates/problem_notifications.html -msgid "Next Hint" -msgstr "下个提示" - -#: lms/templates/problem_notifications.html -#: lms/templates/shoppingcart/shopping_cart_flow.html -msgid "Review" -msgstr "检查" - -#: lms/templates/provider_login.html -msgid "Log In" -msgstr "登录" - -#: lms/templates/provider_login.html -msgid "Email or password is incorrect." -msgstr "邮箱或密码错误。" - -#: lms/templates/provider_login.html -msgid "" -"Your username, email, and full name will be sent to {destination}, where the" -" collection and use of this information will be governed by their terms of " -"service and privacy policy." -msgstr "您的用户名、邮箱地址及全名将发送到 {destination},收集和使用这些信息将遵循他们的服务和隐私保护条款。" - -#: lms/templates/provider_login.html -#, python-format -msgid "Return To %s" -msgstr "返回%s" - -#: lms/templates/register-form.html lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "" -"We're sorry, but this version of your browser is not supported. Try again " -"using a different browser or a newer version of your browser." -msgstr "很抱歉,我们不支持您的浏览器版本。请使用不同的浏览器或您的浏览器的较新版本重试。" - -#: lms/templates/register-form.html lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "The following errors occurred while processing your registration:" -msgstr "在处理您的注册信息时发生了下列错误:" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Sign up with {provider_name}" -msgstr "使用 {provider_name} 账号登录" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Create your own {platform_name} account below" -msgstr "在下面创建您的 {platform_name} 账号" - -#: lms/templates/register-form.html lms/templates/register-form.html -#: lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "" -"Required fields are noted by bold text and an " -"asterisk (*)." -msgstr "必需的字段已经被粗体和星号(*)所标记。" - -#. Translators: selected_provider is the name of an external, third-party user -#. authentication service (like Google or LinkedIn). -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "You've successfully signed in with {selected_provider}." -msgstr "您已成功地以{selected_provider}账号登录。" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "" -"We just need a little more information before you start learning with " -"{platform_name}." -msgstr "您只需再多提供一点信息就可以开始在{platform_name}学习了。" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Please complete the following fields to register for an account. " -msgstr "请将以下字段补充完整以完成账号注册。" - -#: lms/templates/register-form.html lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Your legal name, used for any certificates you earn." -msgstr "将在您获得的所有证书上显示的法定姓名" - -#: lms/templates/register-form.html lms/templates/register-form.html -#: lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Will be shown in any discussions or forums you participate in" -msgstr "将会在您参加的任何讨论或论坛上显示" - -#: lms/templates/register-form.html lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "cannot be changed later" -msgstr "以后不能更改" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Welcome {username}" -msgstr "欢迎 {username}" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Enter a Public Display Name:" -msgstr "输入一个公开的显示名称:" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Public Display Name" -msgstr "公开显示名称" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Additional Personal Information" -msgstr "更多个人信息" - -#: lms/templates/register-form.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/shoppingcart/receipt.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "City" -msgstr "城市" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "example: New York" -msgstr "例:北京" - -#: lms/templates/register-form.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/shoppingcart/receipt.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Country" -msgstr "国家" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Highest Level of Education Completed" -msgstr "最高教育程度" - -#: lms/templates/register-form.html lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Gender" -msgstr "性别" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Year of Birth" -msgstr "出生年份" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Mailing Address" -msgstr "邮寄地址" - -#: lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Please share with us your reasons for registering with {platform_name}" -msgstr "请告诉我们您注册 {platform_name}的原因" - -#: lms/templates/register-form.html lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Account Acknowledgements" -msgstr "账号致谢" - -#: lms/templates/register-form.html lms/templates/register-shib.html -#: lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "I agree to the {link_start}Terms of Service{link_end}" -msgstr "我同意{link_start}服务条款{link_end}" - -#: lms/templates/register-form.html lms/templates/register-shib.html -#: lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-form.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "I agree to the {link_start}Honor Code{link_end}" -msgstr "我同意{link_start}诚信准则{link_end}" - -#: lms/templates/register-form.html -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Register" -msgstr "注册" - -#: lms/templates/register-form.html lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-form.html -msgid "Create My Account" -msgstr "创建我的账号" - -#: lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Preferences for {platform_name}" -msgstr "{platform_name}偏好设置" - -#: lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Update my {platform_name} Account" -msgstr "更新我的{platform_name}账号" - -#: lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Welcome {username}! Please set your preferences below" -msgstr "欢迎 {username}! 接下来请进行您的偏好设置" - -#: lms/templates/register-shib.html lms/templates/signup_modal.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Enter a public username:" -msgstr "输入用户昵称" - -#: lms/templates/register-shib.html -#: themes/stanford-style/lms/templates/register-shib.html -msgid "Update My Account" -msgstr "更新我的账号" - -#: lms/templates/register-sidebar.html -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "Registration Help" -msgstr "注册帮助" - -#: lms/templates/register-sidebar.html -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "Already registered?" -msgstr "已经注册过了?" - -#: lms/templates/register-sidebar.html -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "Log in" -msgstr "登录" - -#: lms/templates/register-sidebar.html -msgid "Welcome to {platform_name}" -msgstr "欢迎来到{platform_name}" - -#: lms/templates/register-sidebar.html -msgid "" -"Registering with {platform_name} gives you access to all of our current and " -"future free courses. Not ready to take a course just yet? Registering puts " -"you on our mailing list - we will update you as courses are added." -msgstr "" -"在 {platform_name} 注册之后, " -"您可以访问我们现有和将来所有的免费课程。现在还不想加入课程?注册后您将加入我们的收件人列表,您将通过邮件收到新课程的通知。" - -#: lms/templates/register-sidebar.html -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "Next Steps" -msgstr "下面的步骤" - -#: lms/templates/register-sidebar.html -msgid "" -"As part of joining {platform_name}, you will receive an email message with " -"instructions for activating your account. Don't see the email? Check your " -"spam folder and mark {platform_name} emails as 'not spam'. At " -"{platform_name}, we communicate mostly through email." -msgstr "" -"加入 {platform_name} 过程中,您将收到一封说明账号激活方法的电子邮件。如未收到邮件,请检查您的垃圾邮件文件夹并将 " -"{platform_name} 邮件标记为“非垃圾邮件”。在 {platform_name},电子邮件为主要沟通方式。" - -#: lms/templates/register-sidebar.html -msgid "Need help registering with {platform_name}?" -msgstr "注册{platform_name}账号遇到问题?" - -#: lms/templates/register-sidebar.html -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "View our FAQs for answers to commonly asked questions." -msgstr "查看我们的FAQ来获得常见问题的解答。" - -#: lms/templates/register-sidebar.html -msgid "" -"You can find the answers to most of your questions in our list of FAQs. " -"After you enroll in a course, you can also find answers in the course " -"discussions." -msgstr "在我们的常见问题解答列表中,您可以找到大多数问题的答案。加入课程后,您也可以在课程讨论中找到问题答案。" - -#: lms/templates/register.html -msgid "Register for {platform_name}" -msgstr "{platform_name}注册" - -#: lms/templates/register.html -msgid "Create My {platform_name} Account" -msgstr "创建我的{platform_name}账号" - -#: lms/templates/register.html -msgid "Welcome!" -msgstr "欢迎!" - -#: lms/templates/register.html -msgid "Register below to create your {platform_name} account" -msgstr "在下面注册来创建您在 {platform_name}的账号" - -#: lms/templates/resubscribe.html -msgid "Re-subscribe Successful!" -msgstr "重新订阅成功!" - -#: lms/templates/resubscribe.html -msgid "" -"You have re-enabled forum notification emails from {platform_name}. You may " -"{dashboard_link_start}return to your dashboard{link_end}." -msgstr "" -"您已重新启用{platform_name}的论坛邮件提醒。您可以{dashboard_link_start}返回您的课程面板{link_end}。" - -#: lms/templates/seq_module.html -msgid "Important!" -msgstr "重要事项!" - -#: lms/templates/seq_module.html lms/templates/seq_module.html -msgid "Previous" -msgstr "上一个" - -#: lms/templates/seq_module.html lms/templates/seq_module.html -msgid "Next" -msgstr "下一个" - -#: lms/templates/seq_module.html -msgid "Sequence" -msgstr "序列" - -#: lms/templates/signup_modal.html -msgid "Sign Up for {platform_name}" -msgstr "注册为{platform_name}平台的会员" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "e.g. yourname@domain.com" -msgstr "例如 yourname@domain.com" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "e.g. yourname (shown on forums)" -msgstr "例如:昵称(在论坛上显示的名称)" - -#: lms/templates/signup_modal.html lms/templates/signup_modal.html -msgid "e.g. Your Name (for certificates)" -msgstr "例如:姓名(用于证书)" - -#: lms/templates/signup_modal.html -msgid "Welcome {name}" -msgstr "欢迎 {name}" - -#: lms/templates/signup_modal.html -msgid "Full Name *" -msgstr "全名 *" - -#: lms/templates/signup_modal.html -msgid "Ed. Completed" -msgstr "已完成" - -#: lms/templates/signup_modal.html -msgid "Year of birth" -msgstr "出生年份" - -#: lms/templates/signup_modal.html -msgid "Mailing address" -msgstr "邮寄地址" - -#: lms/templates/signup_modal.html -msgid "Goals in signing up for {platform_name}" -msgstr "注册加入{platform_name}的目标" - -#: lms/templates/signup_modal.html -msgid "Already have an account?" -msgstr "已有账号?" - -#: lms/templates/signup_modal.html -msgid "Login." -msgstr "登录" - -#: lms/templates/split_test_author_view.html -msgid "" -"This content experiment uses group configuration " -"'{group_configuration_name}'." -msgstr "此内容实验使用了组配置“{group_configuration_name}”。" - -#: lms/templates/split_test_author_view.html -msgid "Active Groups" -msgstr "活跃小组" - -#: lms/templates/split_test_author_view.html -msgid "Inactive Groups" -msgstr "不活跃小组" - -#: lms/templates/staff_problem_info.html -msgid "Staff Debug Info" -msgstr "工作人员调试信息" - -#: lms/templates/staff_problem_info.html -msgid "Submission history" -msgstr "提交历史" - -#: lms/templates/staff_problem_info.html -msgid "{platform_name} Content Quality Assessment" -msgstr "{platform_name} 内容质量评估" - -#: lms/templates/staff_problem_info.html -msgid "Comment" -msgstr "注释" - -#: lms/templates/staff_problem_info.html -msgid "comment" -msgstr "注释" - -#: lms/templates/staff_problem_info.html -msgid "Tag" -msgstr "标签" - -#: lms/templates/staff_problem_info.html -msgid "Optional tag (eg \"done\" or \"broken\"):" -msgstr "可选标签(如:“done” 或 “broken”)" - -#: lms/templates/staff_problem_info.html -msgid "tag" -msgstr "标签" - -#: lms/templates/staff_problem_info.html -msgid "Add comment" -msgstr "添加评论" - -#: lms/templates/staff_problem_info.html -msgid "Staff Debug:" -msgstr "工作人员调试:" - -#: lms/templates/staff_problem_info.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Actions" -msgstr "动作" - -#: lms/templates/staff_problem_info.html -#: lms/templates/api_admin/catalogs/search.html -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Username" -msgstr "用户名" - -#: lms/templates/staff_problem_info.html -msgid "Score (for override only)" -msgstr "成绩(仅用于覆盖原来的成绩设置)" - -#: lms/templates/staff_problem_info.html -msgid "Reset Learner's Attempts to Zero" -msgstr "将学员的尝试次数置为0" - -#: lms/templates/staff_problem_info.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Delete Learner's State" -msgstr "删除学生状态" - -#: lms/templates/staff_problem_info.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore Learner's Submission" -msgstr "对学生的提交记录重新评分" - -#: lms/templates/staff_problem_info.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore Only If Score Improves" -msgstr "如果评分提高, 重新打分" - -#: lms/templates/staff_problem_info.html -msgid "Override Score" -msgstr "覆盖成绩" - -#: lms/templates/staff_problem_info.html lms/templates/staff_problem_info.html -msgid "Module Fields" -msgstr "模块域" - -#: lms/templates/staff_problem_info.html -msgid "XML attributes" -msgstr "XML 属性" - -#: lms/templates/staff_problem_info.html -msgid "Submission History Viewer" -msgstr "提交历史查看器" - -#: lms/templates/staff_problem_info.html -msgid "User:" -msgstr "用户:" - -#: lms/templates/staff_problem_info.html -msgid "View History" -msgstr "查看历史记录" - -#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html -#: lms/templates/staticbook.html -msgid "{course_number} Textbook" -msgstr "{course_number} 教材" - -#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html -#: lms/templates/staticbook.html -msgid "Textbook Navigation" -msgstr "课本导航" - -#: lms/templates/staticbook.html lms/templates/courseware/gradebook.html -msgid "Page" -msgstr "页面" - -#: lms/templates/staticbook.html -msgid "Previous page" -msgstr "上一页" - -#: lms/templates/staticbook.html -msgid "Next page" -msgstr "下一页" - -#: lms/templates/sysadmin_dashboard.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Sysadmin Dashboard" -msgstr "系统管理员面板" - -#: lms/templates/sysadmin_dashboard.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Users" -msgstr "用户" - -#: lms/templates/sysadmin_dashboard.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Staffing and Enrollment" -msgstr "教员配备及学生选课" - -#. Translators: refers to http://git-scm.com/docs/git-log -#: lms/templates/sysadmin_dashboard.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Git Logs" -msgstr "Git日志" - -#: lms/templates/sysadmin_dashboard.html -msgid "User Management" -msgstr "用户管理" - -#: lms/templates/sysadmin_dashboard.html -msgid "Email or username" -msgstr "电子邮件或名字" - -#: lms/templates/sysadmin_dashboard.html -msgid "Delete user" -msgstr "删除用户" - -#: lms/templates/sysadmin_dashboard.html -msgid "Create user" -msgstr "创建用户" - -#: lms/templates/sysadmin_dashboard.html -msgid "Download list of all users (csv file)" -msgstr "下载所有用户列表 (csv 文件)" - -#: lms/templates/sysadmin_dashboard.html -msgid "Check and repair external authentication map" -msgstr "检查修复外部认证映射" - -#: lms/templates/sysadmin_dashboard.html -msgid "" -"Go to each individual course's Instructor dashboard to manage course " -"enrollment." -msgstr "进入每个课程的教师控制面板来管理课程选修信息。" - -#: lms/templates/sysadmin_dashboard.html -msgid "Manage course staff and instructors" -msgstr "管理课程工作人员与教师" - -#: lms/templates/sysadmin_dashboard.html -msgid "Download staff and instructor list (csv file)" -msgstr "下载教员与主讲教师列名单(csv 文件)" - -#: lms/templates/sysadmin_dashboard.html -msgid "Administer Courses" -msgstr "管理课程" - -#. Translators: Repo is short for git repository or source of -#. courseware; see http://git-scm.com/about -#: lms/templates/sysadmin_dashboard.html -msgid "Repo Location" -msgstr "仓库位置" - -#. Translators: Repo is short for git repository (http://git-scm.com/about) or -#. source of -#. courseware and branch is a specific version within that repository -#: lms/templates/sysadmin_dashboard.html -msgid "Repo Branch (optional)" -msgstr "仓库分支(可选)" - -#. Translators: GitHub is a popular website for hosting code -#: lms/templates/sysadmin_dashboard.html -msgid "Load new course from GitHub" -msgstr "从github载入新的课程" - -#. Translators: 'dir' is short for 'directory' -#: lms/templates/sysadmin_dashboard.html -msgid "Course ID or dir" -msgstr "课程编号或目录" - -#: lms/templates/sysadmin_dashboard.html -msgid "Delete course from site" -msgstr "从网站中删除课程" - -#. Translators: A version number appears after this string -#: lms/templates/sysadmin_dashboard.html -msgid "Platform Version" -msgstr "平台版本" - -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "previous" -msgstr "上一项" - -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Page {current_page} of {total_pages}" -msgstr "第 {current_page} 页/ 共{total_pages}页" - -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "next" -msgstr "下一个" - -#. Translators: Git is a version-control system; see http://git-scm.com/about -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Recent git load activity for {course_id}" -msgstr "近期 {course_id}的git加载活动" - -#: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/ccx/schedule.html -msgid "Error" -msgstr "错误" - -#: lms/templates/sysadmin_dashboard_gitlogs.html -#: lms/templates/ccx/schedule.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Date" -msgstr "日期" - -#. Translators: Git is a version-control system; see http://git-scm.com/about -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "Git Action" -msgstr "Git动作" - -#. Translators: git is a version-control system; see http://git-scm.com/about -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "No git import logs have been recorded." -msgstr "无记载git导入日志。" - -#. Translators: git is a version-control system; see http://git-scm.com/about -#: lms/templates/sysadmin_dashboard_gitlogs.html -msgid "No git import logs have been recorded for this course." -msgstr "此课程无记载git导入日志。" - -#: lms/templates/text-me-the-app.html -msgid "Text Me The App" -msgstr "把App信息发送给我" - -#: lms/templates/tracking_log.html -msgid "Tracking Log" -msgstr "追踪记录" - -#: lms/templates/tracking_log.html -msgid "datetime" -msgstr "日期时间" - -#: lms/templates/tracking_log.html -msgid "username" -msgstr "用户名" - -#: lms/templates/tracking_log.html -msgid "ipaddr" -msgstr "IP地址" - -#: lms/templates/tracking_log.html -msgid "source" -msgstr "源" - -#: lms/templates/tracking_log.html -msgid "type" -msgstr "类型" - -#: lms/templates/unsubscribe.html -msgid "Unsubscribe Successful!" -msgstr "取消订阅成功!" - -#: lms/templates/unsubscribe.html -msgid "" -"You will no longer receive forum notification emails from {platform_name}. " -"You may {dashboard_link_start}return to your dashboard{link_end}. If you did" -" not mean to do this, {undo_link_start}you can re-subscribe{link_end}." -msgstr "" -"您不将再接收到{platform_name}论坛邮件提醒,请单击{dashboard_link_start}此处{link_end}返回您的课程面板。如果您不是有意取消,请单击{undo_link_start}此处{link_end}重新订阅消息。" - -#: lms/templates/user_dropdown.html lms/templates/user_dropdown.html -#: lms/templates/user_dropdown.html lms/templates/header/user_dropdown.html -msgid "Dashboard for:" -msgstr "课程面板:" - -#: lms/templates/user_dropdown.html -msgid "More options" -msgstr "更多选项" - -#: lms/templates/user_dropdown.html lms/templates/header/header.html -#: lms/templates/header/user_dropdown.html -msgid "More Options" -msgstr "更多选项" - -#: lms/templates/using.html -msgid "Using the system" -msgstr "使用系统" - -#: lms/templates/using.html -msgid "" -"During video playback, use the subtitles and the scroll bar to navigate. " -"Clicking the subtitles is a fast way to skip forwards and backwards by small" -" amounts." -msgstr "在视频回放期间,您可以使用字幕或者滚动条来操纵视频播放。点击字幕可以便捷地实现向前或向后跳跃一小段。" - -#: lms/templates/using.html -msgid "" -"If you are on a low-resolution display, the left navigation bar can be " -"hidden by clicking on the set of three left arrows next to it." -msgstr "如果您使用的是低分辨率的显示器,可以通过点击旁边的三个左箭头来隐藏左边的滚动条。" - -#: lms/templates/using.html -msgid "" -"If you need bigger or smaller fonts, use your browsers settings to scale " -"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" -" ctrl-minus at the same time." -msgstr "" -"如果您需要改变字体大小,请使用浏览器设置实现缩放。以Google " -"Chrome浏览器为例,可以通过按键“Ctrl”和“+”,“Ctrl”和“-”来使用放大和缩小功能。" - -#: lms/templates/video.html -msgid "Loading video player" -msgstr "正在加载视频播放器" - -#: lms/templates/video.html -msgid "Play video" -msgstr "播放视频" - -#: lms/templates/video.html -msgid "No playable video sources found." -msgstr "未找到可播放的视频源。" - -#: lms/templates/video.html -msgid "" -"Your browser does not support this video format. Try using a different " -"browser." -msgstr "您的浏览器不支持此视频格式,请更换浏览器再尝试。" - -#: lms/templates/video.html -msgid "Downloads and transcripts" -msgstr "下载的文件及字幕" - -#: lms/templates/video.html -msgid "Video" -msgstr "视频" - -#: lms/templates/video.html -msgid "Download video file" -msgstr "下载视频文件" - -#: lms/templates/video.html -msgid "Transcripts" -msgstr "字幕" - -#: lms/templates/video.html -msgid "Download {file}" -msgstr "下载 {file}" - -#: lms/templates/video.html -msgid "Download transcript" -msgstr "下载字幕" - -#: lms/templates/video.html -msgid "Handouts" -msgstr "讲义" - -#: lms/templates/video.html -msgid "Download Handout" -msgstr "下载讲义" - -#: lms/templates/word_cloud.html -msgid "{num} of {total}" -msgstr "{num} / {total}" - -#: lms/templates/word_cloud.html -msgid "Your words were:" -msgstr "您的话是:" - -#: lms/templates/api_admin/api_access_request_form.html -msgid "API Access Request" -msgstr "API 访问请求" - -#: lms/templates/api_admin/api_access_request_form.html -#: lms/templates/api_admin/status.html -msgid "{platform_name} API Access Request" -msgstr "{platform_name} API 访问请求" - -#: lms/templates/api_admin/api_access_request_form.html -msgid "Request API Access" -msgstr "请求 API 访问" - -#: lms/templates/api_admin/status.html -msgid "API Access Request Status" -msgstr "API 访问请求状态" - -#. Translators: "platform_name" is the name of this Open edX installation. -#: lms/templates/api_admin/status.html -msgid "" -"Your request to access the {platform_name} Course Catalog API is being " -"processed. You will receive a message at the email address in your profile " -"when processing is complete. You can also return to this page to see the " -"status of your API access request." -msgstr "" -"正在处理您访问 {platform_name} 课程目录 API " -"的请求。处理完成后,您写在用户资料中的电子邮箱将收到一条信息。您也可以返回到此页面查看您的 API 访问申请的状态。" - -#. Translators: "platform_name" is the name of this Open edX installation. -#. "api_support_email_link" is HTML for a link to email the API support staff. -#: lms/templates/api_admin/status.html -msgid "" -"Your request to access the {platform_name} Course Catalog API has been " -"denied. If you think this is an error, or for other questions about using " -"this API, contact {api_support_email_link}." -msgstr "" -"您申请访问 {platform_name} 课程目录 API 的请求未通过。如果您认为这是一个错误或有关于使用此 API 的其他问题,请联系 " -"{api_support_email_link}。" - -#: lms/templates/api_admin/status.html -msgid "" -"Your request to access the {platform_name} Course Catalog API has been " -"approved." -msgstr "您申请访问 {platform_name} 课程目录 API 的请求已通过。" - -#: lms/templates/api_admin/status.html -msgid "Application Name" -msgstr "应用名称" - -#: lms/templates/api_admin/status.html -msgid "API Client ID" -msgstr "API 客户端 ID" - -#: lms/templates/api_admin/status.html -msgid "API Client Secret" -msgstr "API 客户端密码" - -#: lms/templates/api_admin/status.html -msgid "Redirect URLs" -msgstr "重新定向 URL" - -#: lms/templates/api_admin/status.html -msgid "" -"If you would like to regenerate your API client information, please use the " -"form below." -msgstr "如果您想要重新生成您的 API 客户端信息,请使用以下表格。" - -#: lms/templates/api_admin/status.html -msgid "Generate API client credentials" -msgstr "生成 API 客户端凭证" - -#. Translators: "platform_name" is the name of this Open edX installation. -#. "link_start" and "link_end" are the HTML for a link to the API -#. documentation. "api_support_email_link" is HTML for a link to email the API -#. support staff. -#: lms/templates/api_admin/status.html -msgid "" -"To learn more about the {platform_name} Course Catalog API, visit " -"{link_start}our API documentation page{link_end}. For questions about using " -"this API, contact {api_support_email_link}." -msgstr "" -"要了解更多关于 {platform_name} 课程目录 API 的信息,请访问{link_start}我们的 API " -"文档页面{link_end}。关于使用此 API 的问题,请联系 {api_support_email_link}。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "API Terms of Service" -msgstr "API 服务条款" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Terms of Service for {platform_name} APIs" -msgstr "{platform_name} API 的服务条款" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Effective Date: May 24th, 2018" -msgstr "生效日期:2018年5月24日" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"Welcome to {platform_name}. Thank you for using {platform_name}'s Course " -"Discovery API, Enterprise API and/or any additional APIs that we may offer " -"from time to time (collectively, the \"APIs\"). Please read these Terms of " -"Service prior to accessing or using the APIs. These Terms of Service, any " -"additional terms within accompanying API documentation, and any applicable " -"policies and guidelines that {platform_name} makes available and/or updates " -"from time to time are agreements (collectively, the \"Terms\") between you " -"and {platform_name}. These Terms are issued under the enterprise product " -"agreement, member participation agreement, or other direct agreement " -"governing the purchase of {platform_name} products, if any (the " -"\"Agreement\"), executed by you or the party on whose behalf you are " -"accessing or using the APIs and {platform_name}. In the event that you have" -" such an Agreement that applies to your use of the APIs, the Agreement will " -"control in the event of any conflict between it and these Terms. By " -"accessing or using the APIs, you accept and agree to be legally bound by the" -" Terms, whether or not you are a registered user. If you are accessing or " -"using the APIs on behalf of a company, organization or other legal entity, " -"you are agreeing to these Terms for that entity and representing and " -"warranting to {platform_name} that you have full authority to accept and " -"agree to these Terms for such entity, in which case the terms \"you,\" " -"\"your\" or related terms herein shall refer to such entity on whose behalf " -"you are accessing or using the APIs. If you do not have such authority or if" -" you do not understand or do not wish to be bound by the Terms, you should " -"not use the APIs." -msgstr "" -"欢迎来到{platform_name}。感谢您使用{platform_name}的课程Discovery " -"API、企业API和/或任何我们不时可能会提供的其他API(统称为“API”)。请在访问或使用API前阅读这些服务条款。由{platform_name}不时公开且/或更新的这些服务条款、在随附的API文档中的任何其他条款、和任何适用政策和准则都是您与{platform_name}之间所签订的协议(统称为“条款”)。这些条款根据企业产品协议、成员参与协议、或其他调控由您所进行的、或由您访问或使用API和{platform_name}而代表的主体所进行的{platform_name}产品购买行为的直接协议(如有,则称为“协议”)进行颁发。如果您有适用您对API使用的此类协议,则该协议将控制其与这些条件之间的任何冲突。访问或使用API则表示您接受并同意受此些条款的法律约束,不管您是否为注册用户。如果您是代表一家公司、组织、或其他法人实体访问或使用API,那么您即代表该法人实体同意这些条款,并向{platform_name}代表且担保您全权代表该法人实体接受并同意此些条款,其中此处的“您”、“您的”、或相关术语指的是您访问或使用API所代表的法人实体。如果您不具有代表权,或如果您不理解此些条款,或您不希望接受此些条款的约束,则建议您勿使用API。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "API Access" -msgstr "API 访问" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"To access the APIs, you will need to create an {platform_name} user account " -"for your application (not for personal use). This account will provide you " -"with access to our API request page at {request_url}. On that page, you must" -" complete the API request form including a description of your proposed uses" -" for the APIs. Any account and registration information that you provide to " -"{platform_name} must be accurate and up to date, and you agree to inform us " -"promptly of any changes. {platform_name_capitalized} will review your API " -"request form and, upon approval in {platform_name}'s sole discretion, will " -"provide you with instructions for obtaining your API shared secret and " -"client ID." -msgstr "" -"要访问API,您需要创建一个 {platform_name} " -"应用程序的用户账号(非个人使用)。您将通过这个账号获得访问我们的API请求页面{request_url}的权限。在该页上,您必须完成API请求表单,其中包括对API的计划用途的描述。您提供给{platform_name}的任何账号和注册信息必须准确及保证时效,并且您同意在做任何更改时及时通知我们。{platform_name_capitalized}将审查您的API请求表单,并在得到{platform_name}的全权批准后,为您提供获取API共享秘密和客户ID的说明。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Permissible Use" -msgstr "允许的用途" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"You agree to use the APIs solely for the purpose of delivering content that " -"is accessed through the APIs (the \"API Content\") to your own website, " -"mobile site, app, blog, email distribution list, or social media property " -"(\"Your Application\") or for another commercial use that you described in " -"your request for access and that {platform_name} has approved on a case-by-" -"case basis. {platform_name_capitalized} may monitor your use of the APIs for" -" compliance with the Terms and may deny your access or shut down your " -"integration if you attempt to go around or exceed the requirements and " -"limitations set by {platform_name}. Your Application or other approved use " -"of the API or the API Content must not prompt your end users to provide " -"their {platform_name} username, password or other {platform_name} user " -"credentials anywhere other than on the {platform_name} website at " -"{platform_url}." -msgstr "" -"您同意使用API只交付内容的目的是通过API访问(“API内容”)到您自己的网站,移动站点、应用,博客、电子邮件分发列表,或社交媒体属性(“您的应用程序”)或另一个商业用途,您描述的访问请求,{platform_name}在个案基础上批准。{platform_name_capitalized}可能会监视您对api的使用,以遵守条款,如果您试图绕过或超过{platform_name}设置的要求和限制,则可能会拒绝您的访问或关闭您的集成。除了在{platform_name}网站{platform_url}上,您的应用程序或其他已批准使用的API或API内容不得提示您的最终用户提供其{platform_name}用户名、密码或其他{platform_name}用户凭证。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Prohibited Uses and Activities" -msgstr "禁止的用途与活动" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"{platform_name_capitalized} shall have the sole right to determine whether " -"or not any given use of the APIs is acceptable, and {platform_name} reserves" -" the right to revoke API access for any use that {platform_name} determines " -"at any time, in its sole discretion, does not benefit or serve the best " -"interests of {platform_name}, its users and its partners." -msgstr "" -"{platform_name_capitalized}唯一有权决定是否任何API的使用都是可以被接受的,和{platform_name}有权决定撤销在{platform_name}上任何时间的API访问使用,全权决定,{platform_name}上没有益处或拥有最佳利益的服务,用户和合作伙伴。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"The following activities are not acceptable when using the APIs (this is not" -" an exhaustive list):" -msgstr "不接受以下使用 API 时的行为(这并非详尽无遗的清单):" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"collecting or storing the names, passwords, or other credentials of " -"{platform_name} users;" -msgstr "收集或储存 {platform_name} 用户的姓名、密码或其他凭证;" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"scraping or similar techniques to aggregate or otherwise create permanent " -"copies of API Content;" -msgstr "搜集或以类似技术聚集或另外创建 API Content 的永久副本;" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"violating, misappropriating or infringing any copyright, trademark rights, " -"rights of privacy or publicity, confidential information or any other right " -"of any third party;" -msgstr "侵犯、滥用或侵害任何版权、商标权利、隐私权或宣传材料、机密信息或其他第三方的任何权利;" - -#: lms/templates/api_admin/terms_of_service.html -msgid "altering or editing any content or graphics in the API Content;" -msgstr "更改或编辑 API Content 中的任何内容或图表;" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"altering or removing any trademark, copyright or other proprietary or legal " -"notices contained in, or appearing on, the APIs or any API Content;" -msgstr "变更或去除包含在或出现在 API 或任何 API Content 中的任何商标、版权或其他所有权或法律声明;" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"sublicensing, re-distributing, renting, selling or leasing access to the " -"APIs or your client secret to any third party;" -msgstr "对 API 访问权限或您的客户密码进行许可转让、再分发、出租、销售或租赁给任何第三方;" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"distributing any virus, Trojan horse, spyware, adware, malware, bot, time " -"bomb, worm, or other harmful or malicious component; or" -msgstr "发布任何病毒、特洛伊木马、间谍软件、广告软件、恶意软件、bot 病毒、定时炸弹、蠕虫或其他有害或恶意组件;或" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"using the APIs for any purpose which or might overburden, impair or disrupt " -"the {platform_name} platform, servers or networks." -msgstr "将 API 用于某种可能超负荷、危害或破坏 {platform_name} 平台、服务器或网络的用途。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Usage and Quotas" -msgstr "使用和限制" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"{platform_name_capitalized} reserves the right, in its discretion, to impose" -" reasonable restrictions and limitations on the number and frequency of " -"calls made by you or Your Application to the APIs. You must not attempt to " -"circumvent any restrictions or limitations imposed by {platform_name}." -msgstr "" -"基于其自行之考虑,{platform_name_capitalized}保留合理限制和管束由您或您的应用向API所发出呼叫数量和频率的权利。请勿试图避开{platform_name}的限制或管束。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Compliance" -msgstr "合规性" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"You agree to comply with all applicable laws, regulations, and third party " -"rights (including without limitation laws regarding the import or export of " -"data or software, privacy, copyright, and local laws). You will not use the " -"APIs to encourage or promote illegal activity or violation of third party " -"rights. You will not violate any other terms of service with " -"{platform_name}. You will only access (or attempt to access) an API by the " -"means described in the documentation of that API. You will not misrepresent " -"or mask either your identity or Your Application's identity when using the " -"APIs." -msgstr "" -"您同意遵守所有适用法律、法规、和第三方权利(包括但不限于数据的导出与导入法律、或软件法律、隐私法律、版权法律、或当地法律)。您不得使用API来鼓励或促进非法行为或侵犯第三方权利的行为。您不得侵犯{platform_name}的任何其他服务条款。您仅可以通过API文档中所说明的方式进行访问(或试图访问)该API。您不得在使用API时误传或隐瞒您的身份或您应用程序的身份。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Ownership" -msgstr "管理员权限" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"You acknowledge and agree that the APIs and all API Content contain valuable" -" intellectual property of {platform_name} and its partners. The APIs and all" -" API Content are protected by United States and foreign copyright, " -"trademark, and other laws. All rights in the APIs and the API Content, if " -"not expressly granted, are reserved. By using the APIs or any API Content, " -"you do not acquire ownership of any rights in the APIs or API Content. You " -"must not claim or attempt to claim ownership in the APIs or any API Content " -"or misrepresent yourself or your company or your Application as being the " -"source of any API Content. You may not modify, create derivative works of, " -"or attempt to use, license, or in any way exploit any API Content in whole " -"or in part on your own behalf or on behalf of any third party. You may not " -"distribute or modify the APIs or any API Content (including adaptation, " -"editing, excerpting, or creating derivative works)." -msgstr "" -"您确认并同意 API 和所有 API Content 都包含 {platform_name} 及其合作伙伴的有价值的知识产权。API 和所有 API " -"Content 均受美国和外国的版权、商标及其他法律的保护。如果未明确授权,则保留对 API 和 API Content 的所有权利。使用 API " -"或任何 API Content 并不意味着您拥有 API 或 API Content 的任何权利的所有权。您不得声称或试图声称您拥有 API 或任何 " -"API Content 的所有权,或误传您个人、您的公司或您的应用程序是来源于任何 API Content。您不得以您个人名义或以任何第三方的名义,对 " -"API Content 进行整体或部分修改、创作派生作品或尝试使用、注册或以任何方式利用。您不得分发或修改 API 或任何 API " -"Content(包括改编、编辑、引用或创作派生作品)。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"All names, logos and seals (\"Trademarks\") that appear in the APIs, API " -"Content, or on or through the services made available on or through the " -"APIs, if any, are the property of their respective owners. You may not " -"remove, alter, or obscure any copyright, Trademark, or other proprietary " -"rights notices incorporated in or accompanying the API Content. If any " -"{platform_name} Participant (as hereinafter defined) or other third party " -"revokes access to API Content owned or controlled by that {platform_name} " -"Participant or third party, including without limitation any Trademarks, you" -" must ensure that all API Content pertaining to that {platform_name} " -"Participant or third party is deleted from Your Application and your " -"networks, systems and servers as soon as reasonably possible. " -"\"{platform_name_capitalized} Participants\" means MIT, Harvard, and the " -"other entities providing information, API Content or services for the APIs, " -"the course instructors and their staffs." -msgstr "" -"所有出现在API、API内容或通过API提供的服务上的名称、标识和印章(“商标”)均为其各自所有者的财产。您不得删除、更改或模糊包含或伴随API内容的任何版权、商标或其他专有权利通知。如果任何{platform_name}参与者(如以下定义)或其他第三方撤销访问拥有者的API内容或控制{platform_name}参与者或第三方,包括但不限于任何商标,您必须确保从您的应用程序和您的网络、系统和服务器被删除的所有API内容属于{platform_name}参与者或第三方是合理可行的。“{platform_name_capitalized}参与者”是指麻省理工学院、哈佛大学以及其他为API、课程讲师及其工作人员提供信息、API内容或服务的实体。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"To the extent that you submit any content to {platform_name} in connection " -"with your use of the APIs or any API Content, you hereby grant to " -"{platform_name} a worldwide, non-exclusive, transferable, assignable, sub " -"licensable, fully paid-up, royalty-free, perpetual, irrevocable right and " -"license to host, transfer, display, perform, reproduce, modify, distribute, " -"re-distribute, relicense and otherwise use, make available and exploit such " -"content, in whole or in part, in any form and in any media formats and " -"through any media channels (now known or hereafter developed)." -msgstr "" -"针对您提交给 {platform_name} 的与您使用 API 或任何 API Content 有关的任何内容而言,可据此认为您授予 " -"{platform_name} " -"一个世界范围的、非独有、可转让、可分配、可转发许可、全部付讫、免版税、无期限、不可撤销的权力,并许可持有、转让、展示、执行、复制、修改、分配、再分配、再许可,以及以任何形式和用任何媒体格式并通过任何媒体渠道(现在已知的或今后开发的)使用、提供和利用此内容的部分或全部。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Privacy" -msgstr "隐私" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"You agree to comply with all applicable privacy laws and regulations and to " -"be transparent with respect to any collection and use of end user data. You " -"will provide and adhere to a privacy policy for Your Application that " -"clearly and accurately describes to your end users what user information you" -" collect and how you may use and share such information (including for " -"advertising) with {platform_name} and other third parties." -msgstr "" -"您同意遵守所有适用的隐私法律和法规,并在收集和使用最终用户数据方面保持透明。您将为您的应用程序提供并遵守一个隐私策略,该策略清楚而准确地向您的最终用户描述您收集了哪些用户信息,以及您如何与{platform_name}和其他第三方使用和共享这些信息(包括用于广告)。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Right to Charge" -msgstr "收费权" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"Certain access to the APIs may be provided free of charge, but " -"{platform_name} reserves the right to charge fees for future use or access " -"to the APIs." -msgstr "可以免费提供对api的某些访问,但是{platform_name}保留对将来使用或访问api收取费用的权利。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"{platform_name_capitalized} reserves the right to modify the Terms at any " -"time without advance notice. Any changes to the Terms will be effective " -"immediately upon posting on this page, with an updated effective date. By " -"accessing or using the APIs after any changes have been made, you signify " -"your agreement on a prospective basis to the modified Terms and all of the " -"changes. Be sure to return to this page periodically to ensure familiarity " -"with the most current version of the Terms." -msgstr "" -"{platform_name_capitalized}保留在不提前通知的情况下随时修改条款的权利。任何条款的变更将在本页面发布后立即生效,并更新生效日期。通过访问或使用在进行一些更改之后的api,您在预期的基础上表示您同意修改的条款和所有更改。请务必定期返回本页,以确保熟悉最新版本的术语。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"{platform_name_capitalized} may also update or modify the APIs from time to " -"time without advance notice. These changes may affect your use of the APIs " -"or the way your integration interacts with the API. If we make a change " -"that is unacceptable to you, you should stop using the APIs. Continued use " -"of the APIs means you accept the change." -msgstr "" -"{platform_name_capitalized}也可以随时更新或修改api,无需事先通知。这些更改可能会影响您对API的使用或您的集成与API交互的方式。如果我们做出了您无法接受的更改,您应该停止使用api。继续使用api意味着您接受更改。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Confidentiality" -msgstr "机密性" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"Your credentials (such as client secret and IDs) are intended to be used " -"solely by you. You will keep your credentials confidential and prevent and " -"discourage others from using your credentials. Your credentials may not be " -"embedded in open source projects." -msgstr "您的凭证(如客户机密和IDs)仅供您使用。您将保持您的证书保密,并防止和劝阻他人使用您的证书。您的凭证可能不会嵌入到开源项目中。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"In the event that {platform_name} provides you with access to information " -"specific to {platform_name} and/or the APIs that is either marked as " -"\"Confidential\" or which a reasonable person would assume to be " -"confidential or proprietary given the terms of its disclosure " -"(\"Confidential Information\"), you agree to use this information only to " -"use and build with the APIs. You may not disclose the Confidential " -"Information to anyone without {platform_name}'s prior written consent, and " -"you agree to protect the Confidential Information from unauthorized use and " -"disclosure in the same way that you would protect your own confidential " -"information. Confidential Information does not include information that you " -"independently developed, that was rightfully given to you by a third party " -"without any confidentiality obligation, or that becomes public through no " -"fault of your own. You may disclose Confidential Information when compelled " -"to do so by law if you provide {platform_name} with reasonable prior notice," -" unless a court orders that {platform_name} not receive notice." -msgstr "" -"如果{platform_name}为您提供信息获取特定于{platform_name}和/或api,标记为“机密”或一个会认为是机密或专有的条款披露(“机密信息”)合理的人,您同意使用这个信息仅仅使用和构建api。未经{platform_name}事先书面同意,您不得向任何人披露机密信息,并且您同意以与您保护自己的机密信息相同的方式保护机密信息不被未经授权的使用和披露。保密信息不包括您自行开发的、未经任何保密义务而由第三方合法提供给您的、或因您自身的过错而公开的信息。除非法院命令{platform_name}不接收通知,否则如果您向{platform_name}提供合理的事先通知,您可以依法强制披露机密信息。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Disclaimer of Warranty / Limitation of Liabilities" -msgstr "担保免责声明 / 责任限制" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"THE APIS AND ANY INFORMATION, API CONTENT OR SERVICES MADE AVAILABLE ON OR " -"THROUGH THE APIS ARE PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT " -"WARRANTY OF ANY KIND (EXPRESS, IMPLIED OR OTHERWISE), INCLUDING, WITHOUT " -"LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A " -"PARTICULAR PURPOSE AND NON-INFRINGEMENT, EXCEPT INSOFAR AS ANY SUCH IMPLIED " -"WARRANTIES MAY NOT BE DISCLAIMED UNDER APPLICABLE LAW." -msgstr "" -"在(或通过) API 提供的 API 及任何信息、API Content " -"或服务以\"现状\"和\"可用状态\"提供,无任何形式(明示、暗示或其他形式)的担保,包括但不限于所有适销性默示担保、特定用途适用性及非侵权性,除非根据适用法律规定不得拒绝承认任何此类默示担保。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"{platform_name} AND THE {platform_name} PARTICIPANTS DO NOT WARRANT THAT THE" -" APIS WILL OPERATE IN AN UNINTERRUPTED OR ERROR-FREE MANNER, THAT THE APIS " -"ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS, OR THAT THE APIS OR API " -"CONTENT PROVIDED WILL MEET YOUR NEEDS OR EXPECTATIONS. {platform_name} AND " -"THE {platform_name} PARTICIPANTS ALSO MAKE NO WARRANTY ABOUT THE ACCURACY, " -"COMPLETENESS, TIMELINESS, OR QUALITY OF THE APIS OR ANY API CONTENT, OR THAT" -" ANY PARTICULAR API CONTENT WILL CONTINUE TO BE MADE AVAILABLE." -msgstr "" -"{platform_name}和{platform_name}参与者不保证API将以不间断或无错误的方式运行,API没有病毒或其他有害组件,或者提供的API或API内容将满足您的需求或期望。{platform_name}和{platform_name}参与者也不保证API或任何API内容的准确性、完整性、及时性或质量,或任何特定API内容将继续提供。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"USE OF THE APIS, AND THE API CONTENT AND ANY SERVICES OBTAINED FROM OR " -"THROUGH THE APIS, IS AT YOUR OWN RISK. YOUR ACCESS TO OR DOWNLOAD OF " -"INFORMATION, MATERIALS OR DATA THROUGH THE APIS IS AT YOUR OWN DISCRETION " -"AND RISK, AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY" -" (INCLUDING YOUR COMPUTER SYSTEM) OR LOSS OF DATA THAT RESULTS FROM THE " -"DOWNLOAD OR USE OF SUCH INFORMATION, MATERIALS OR DATA, UNLESS OTHERWISE " -"EXPRESSLY PROVIDED FOR IN THE {platform_name} PRIVACY POLICY." -msgstr "" -"使用API、API内容和从API获得或通过API获得的任何服务都由您自己承担风险。访问或下载信息、材料或数据通过api在自己的判断力和风险,并且您将单独负责任何损害您的财数据产(包括您的电脑系统)或损失的数据结果下载或使用这些信息,资料或数据,除非另有明确规定{platform_name}隐私政策。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, YOU AGREE THAT NEITHER " -"{platform_name} NOR ANY OF THE {platform_name} PARTICIPANTS WILL BE LIABLE " -"TO YOU FOR ANY LOSS OR DAMAGES, EITHER ACTUAL OR CONSEQUENTIAL, ARISING OUT " -"OF OR RELATING TO THE TERMS, OR YOUR (OR ANY THIRD PARTY'S) USE OF OR " -"INABILITY TO USE THE APIS OR ANY API CONTENT, OR YOUR RELIANCE UPON " -"INFORMATION OBTAINED FROM OR THROUGH THE APIS, WHETHER YOUR CLAIM IS BASED " -"IN CONTRACT, TORT, STATUTORY OR OTHER LAW." -msgstr "" -"适用法律允许的最大程度,您同意{platform_name}和{platform_name}的参与者将会承担您的任何损失或损害赔偿,实际或间接引起的或有关条款,或您(或任何第三方的)使用或无法使用API或任何API的内容,或者您的依赖来自或通过API的信息,您的要求是否在合同,侵权,法定或其他法律。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"IN PARTICULAR, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, NEITHER " -"{platform_name} NOR ANY OF THE {platform_name} PARTICIPANTS WILL HAVE ANY " -"LIABILITY FOR ANY CONSEQUENTIAL, INDIRECT, PUNITIVE, SPECIAL, EXEMPLARY OR " -"INCIDENTAL DAMAGES, WHETHER FORESEEABLE OR UNFORESEEABLE AND WHETHER OR NOT " -"{platform_name} OR ANY OF THE {platform_name} PARTICIPANTS HAS BEEN " -"NEGLIGENT OR OTHERWISE AT FAULT (INCLUDING, BUT NOT LIMITED TO, CLAIMS FOR " -"DEFAMATION, ERRORS, LOSS OF PROFITS, LOSS OF DATA OR INTERRUPTION IN " -"AVAILABILITY OF DATA)." -msgstr "" -"特别地,在适用法律允许的最大范围内,无论是 {platform_name} 或任何 {platform_name} " -"参与者均不对任何继起的、间接的、惩罚性的、专门的、代表性的或附带的损害赔偿承担责任,无论这些损害是可预见或不可预见的,也无论 " -"{platform_name} 或任何 {platform_name} " -"参与者是否有过失或其他形式的过错(包括但不限于就诽谤、错误、利润损失、数据丢失或数据可用性中断提出索赔)。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"CERTAIN STATE LAWS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE " -"EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME" -" OR ALL OF THE ABOVE DISCLAIMERS, EXCLUSIONS, OR LIMITATIONS MAY NOT APPLY " -"TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS." -msgstr "" -"某些州级法律不允许限制默示担保或不允许排除或限制某些损害赔偿。如果这些法律对您适用,部分或全部上诉免责声明、除外条款或限制可能对您不适用,因此您可能拥有额外权利。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"The APIs and API Content may include hyperlinks to sites maintained or " -"controlled by others and not affiliated with or under the control of " -"{platform_name}. {platform_name_capitalized} and the {platform_name} " -"Participants are not responsible for and do not routinely screen, approve, " -"review or endorse the contents of or use of any of the products or services " -"that may be offered at these third-party sites. If you decide to access " -"linked third-party websites, you do so at your own risk." -msgstr "" -"API和API内容可能包括到其他站点的超链接,这些站点由其他站点维护或控制,不隶属于{platform_name}或受其控制。{platform_name_capitalized}和{platform_name}参与者不负责,也不例行审查、批准、审查或批准在这些第三方网站上可能提供的任何产品或服务的内容或使用。如果您决定访问链接的第三方网站,您将承担风险。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"To the maximum extent permitted by applicable law, you agree to defend, hold" -" harmless and indemnify {platform_name} and the {platform_name} " -"Participants, and their respective subsidiaries, affiliates, officers, " -"faculty, students, fellows, governing board members, agents and employees " -"from and against any third-party claims, actions or demands arising out of, " -"resulting from or in any way related to your use of the APIs and any API " -"Content, including any liability or expense arising from any and all claims," -" losses, damages (actual and consequential), suits, judgments, litigation " -"costs and attorneys' fees, of every kind and nature. In such a case, " -"{platform_name} or one of the {platform_name} Participants will provide you " -"with written notice of such claim, action or demand." -msgstr "" -"在适用法律所允许的最大程度上,您同意保护,免责和赔偿{platform_name}和{platform_name}参与者,和各自的子公司,子公司、官员、教师、学生、同伴、董事会成员、代理和员工从和反对任何第三方索赔、行动或要求引起的,产生的或以任何方式与您使用API和任何API的内容,包括任何类型和性质的任何和所有索赔、损失、损害赔偿(实际的和相应的)、诉讼、判决、诉讼费用和律师费所产生的任何责任或费用。在这种情况下,{platform_name}或{platform_name}参与者之一将向您提供此类索赔、行动或要求的书面通知。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "General Legal Terms" -msgstr "一般性法律条款" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"The Terms constitute the entire agreement between you and {platform_name} " -"with respect to your use of the APIs and API Content, superseding any prior " -"agreements between you and {platform_name} regarding your use of the APIs " -"and API Content. The failure of {platform_name} to exercise or enforce any " -"right or provision of the Terms shall not constitute a waiver of such right " -"or provision. If any provision of the Terms is found by a court of competent" -" jurisdiction to be invalid, the parties nevertheless agree that the court " -"should endeavor to give effect to the parties' intentions as reflected in " -"the provision and the other provisions of the Terms shall remain in full " -"force and effect. The Terms do not create any third party beneficiary rights" -" or any agency, partnership, or joint venture. For any notice provided to " -"you by {platform_name} under these Terms, {platform_name} may notify you via" -" the email address associated with your {platform_name} account." -msgstr "" -"此条款构成您和 {platform_name} 之间与您使用 API 和 API Content 有关的完整协议,取代您和 " -"{platform_name} 之间与您使用 API 和 API Content 有关的所有事先协议。{platform_name} " -"未能行使或执行此条款的任何权利或规定并不得构成对此类权利或规定的弃权。如果具有合法管辖权的法院发现此条款的任何规定无效,但是各方一致同意法院应按照该条规定尽量让相关方的意愿生效,且此条款的其他规定仍然全面有效和生效。此条款不影响任何第三方受益权或任何代理、合作伙伴或合资企业。根据这些条款由" -" {platform_name} 为您提供的任何通知,{platform_name} 均可通过与您的 {platform_name} " -"账号关联的电子邮箱地址通知您。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"You agree that the Terms, the APIs, and any claim or dispute arising out of " -"or relating to the Terms or the APIs will be governed by the laws of the " -"Commonwealth of Massachusetts, excluding its conflicts of law provisions. " -"You agree that all such claims and disputes will be heard and resolved " -"exclusively in the federal or state courts located in and serving Cambridge," -" Massachusetts, U.S.A. You consent to the personal jurisdiction of those " -"courts over you for this purpose, and you waive and agree not to assert any " -"objection to such proceedings in those courts (including any defense or " -"objection of lack of proper jurisdiction or venue or inconvenience of " -"forum). Notwithstanding the foregoing, you agree that {platform_name} shall " -"still be allowed to apply for injunctive remedies (or an equivalent type of " -"urgent legal relief) in any jurisdiction." -msgstr "" -"您同意,条款、api以及因条款或api而产生的或与之相关的任何索赔或争议将受马萨诸塞州法律管辖,不包括其法律条款冲突。您同意所有此类索赔和纠纷将会听到和解决只在联邦和州法院位于剑桥,马萨诸塞州,美国。为此目的,您同意上述法院对您的个人管辖权,并且您放弃并同意不对这些法院的此类诉讼提出任何异议(包括对缺乏适当管辖权、地点或论坛不便的任何辩护或异议)。尽管有上述规定,您同意{platform_name}仍可在任何司法管辖区申请禁令救济(或同等类型的紧急法律救济)。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "Termination" -msgstr "终止" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"You may stop using the APIs at any time. You agree that {platform_name}, in " -"its sole discretion and at any time, may terminate your use of the APIs or " -"any API Content for any reason or no reason, without prior notice or " -"liability." -msgstr "" -"您可以在任何时候停止使用api。您同意{platform_name}在其全权酌情决定并在任何时候,可以终止您对API或任何API内容的使用,而无需事先通知或承担任何责任。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"{platform_name_capitalized} and the {platform_name} Participants reserve the" -" right at any time in their sole discretion to cancel, delay, reschedule or " -"alter the format of any API or API Content offered through {platform_name}, " -"or to cease providing any part or all of the APIs or API Content or related " -"services, and you agree that neither {platform_name} nor any of the " -"{platform_name} Participants will have any liability to you for such an " -"action." -msgstr "" -"{platform_name_capitalized}和{platform_name}参与者保留权利在任何时候决定取消,延迟,重新安排或通过{platform_name}改变任何API或API的格式内容提供,或停止提供API或API的任何部分或全部内容或相关服务,您同意{platform_name}和{platform_name}的参与者将有责任对您采取这样的行动。" - -#: lms/templates/api_admin/terms_of_service.html -msgid "" -"Upon any termination of the Terms or discontinuation of your access to an " -"API for any reason, your right to use any API and API Content will " -"immediately cease. You will immediately stop using the APIs and delete any " -"cached or stored API Content from Your Application and your networks, " -"systems and servers as soon as reasonably possible. All provisions of the " -"Terms that by their nature should survive termination shall survive " -"termination, including, without limitation, ownership provisions, warranty " -"disclaimers, and limitations of liability. Termination of your access to and" -" use of the APIs and API Content shall not relieve you of any obligations " -"arising or accruing prior to such termination or limit any liability that " -"you otherwise may have to {platform_name}, including without limitation any " -"indemnification obligations contained herein." -msgstr "" -"在任何条款终止或以任何理由停止访问API时,您使用任何API和API内容的权利将立即终止。您将立即停止使用API,并尽快从您的应用程序和您的网络、系统和服务器中删除任何缓存或存储的API内容。条款的所有条款在终止后仍然有效,包括但不限于所有权条款、保证免责条款和责任限制。您对API和API内容的访问和使用的终止不应免除您在终止之前产生或产生的任何义务,也不应限制您对{platform_name}可能承担的任何责任,包括但不限于本协议中包含的任何赔偿义务。" - -#: lms/templates/api_admin/catalogs/edit.html -msgid "Edit {catalog_name}" -msgstr "编辑 {catalog_name}" - -#: lms/templates/api_admin/catalogs/edit.html -#: lms/templates/api_admin/catalogs/list.html -msgid "Download CSV" -msgstr "下载CSV文档" - -#: lms/templates/api_admin/catalogs/edit.html -msgid "Delete this catalog" -msgstr "删除此列表。" - -#: lms/templates/api_admin/catalogs/edit.html -msgid "Update Catalog" -msgstr "更新列表。" - -#: lms/templates/api_admin/catalogs/list.html -#: lms/templates/api_admin/catalogs/list.html -msgid "Catalogs for {username}" -msgstr "{username}的列表" - -#: lms/templates/api_admin/catalogs/list.html -msgid "Create new catalog:" -msgstr "创建新的劣币哦啊:" - -#: lms/templates/api_admin/catalogs/list.html -msgid "Create Catalog" -msgstr "创建列表" - -#: lms/templates/api_admin/catalogs/search.html -msgid "Catalog search" -msgstr "列表搜索" - -#: lms/templates/api_admin/catalogs/search.html -msgid "Catalog Search" -msgstr "列表搜索" - -#: lms/templates/api_admin/catalogs/search.html -msgid "Enter a username to view catalogs belonging to that user." -msgstr "输入用户名查看该用户的列表。" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Open Calculator" -msgstr "开启计算器" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Enter equation" -msgstr "输入等式" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Calculator Input Field" -msgstr "计算器输入项" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Hints" -msgstr "提示" - -#: lms/templates/calculator/toggle_calculator.html -msgid "" -"Use the arrow keys to navigate the tips or use the tab key to return to the " -"calculator" -msgstr "使用方向键在提示中导航或者使用tab键返回到计算器" - -#: lms/templates/calculator/toggle_calculator.html -msgid "" -"For detailed information, see {math_link_start}Entering Mathematical and " -"Scientific Expressions{math_link_end} in the {guide_link_start}edX Guide for" -" Students{guide_link_end}." -msgstr "" -"更多详细信息, 请访问{guide_link_start}学生使用指南{guide_link_end} " -"里的{math_link_start}输入数学和科学表达式{math_link_end} 。" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Tips" -msgstr "提示" - -#: lms/templates/calculator/toggle_calculator.html -msgid "" -"Use parentheses () to make expressions clear. You can use parentheses inside" -" other parentheses." -msgstr "使用括号()来明确表达式。您可以在括号内使用括号。" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Do not use spaces in expressions." -msgstr "不要在表达式中使用空格。" - -#: lms/templates/calculator/toggle_calculator.html -msgid "For constants, indicate multiplication explicitly (example: 5*c)." -msgstr "对于常数,表明乘法明确(例如:5*c)。" - -#: lms/templates/calculator/toggle_calculator.html -msgid "For affixes, type the number and affix without a space (example: 5c)." -msgstr "对于词缀,输入数字和词组,不带空格(例:5c)。" - -#: lms/templates/calculator/toggle_calculator.html -msgid "" -"For functions, type the name of the function, then the expression in " -"parentheses." -msgstr "对于函数,输入函数的名字,然后在括号中输入表达式。" - -#: lms/templates/calculator/toggle_calculator.html -msgid "To Use" -msgstr "来使用" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Type" -msgstr "类型" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Examples" -msgstr "例子" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Numbers" -msgstr "数字" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Integers" -msgstr "整数" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Fractions" -msgstr "分数" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Decimals" -msgstr "小数" - -#. Translators: This refers to mathematical operators such as `plus`, `minus`, -#. `division` and others. -#: lms/templates/calculator/toggle_calculator.html -msgid "Operators" -msgstr "操作" - -#: lms/templates/calculator/toggle_calculator.html -msgid "+ - * / (add, subtract, multiply, divide)" -msgstr "+ - * / (加,减,乘,除)" - -#. Translators: Please do not translate mathematical symbols. -#: lms/templates/calculator/toggle_calculator.html -msgid "^ (raise to a power)" -msgstr "^ (自乘)" - -#. Translators: Please do not translate mathematical symbols. -#: lms/templates/calculator/toggle_calculator.html -msgid "|| (parallel resistors)" -msgstr "|| (或运算)" - -#. Translators: This refers to symbols that are mathematical constants, such -#. as -#. "i" (square root of -1) -#: lms/templates/calculator/toggle_calculator.html -msgid "Constants" -msgstr "常量" - -#. Translators: This refers to symbols that appear at the end of a number, -#. such -#. as the percent sign (%) and metric affixes -#: lms/templates/calculator/toggle_calculator.html -msgid "Affixes" -msgstr "词缀" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Percent sign (%) and metric affixes (d, c, m, u, n, p, k, M, G, T)" -msgstr "百分比符号(%)和公制词缀(d,c,m,u,n,p,k,M,G,T)" - -#. Translators: This refers to basic mathematical functions such as "square -#. root" -#: lms/templates/calculator/toggle_calculator.html -msgid "Basic functions" -msgstr "基本功能" - -#. Translators: This refers to mathematical Sine, Cosine and Tan -#: lms/templates/calculator/toggle_calculator.html -msgid "Trigonometric functions" -msgstr "三角函数" - -#. Translators: Please see http://en.wikipedia.org/wiki/Scientific_notation -#: lms/templates/calculator/toggle_calculator.html -msgid "Scientific notation" -msgstr "科学记数法" - -#. Translators: 10^ is a mathematical symbol. Please do not translate. -#: lms/templates/calculator/toggle_calculator.html -msgid "10^ and the exponent" -msgstr "10^和指数" - -#. Translators: this is part of scientific notation. Please see -#. http://en.wikipedia.org/wiki/Scientific_notation#E_notation -#: lms/templates/calculator/toggle_calculator.html -msgid "e notation" -msgstr "e符号" - -#. Translators: 1e is a mathematical symbol. Please do not translate. -#: lms/templates/calculator/toggle_calculator.html -msgid "1e and the exponent" -msgstr "1e和指数" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Calculate" -msgstr "计算" - -#: lms/templates/calculator/toggle_calculator.html -msgid "Result" -msgstr "结果" - -#: lms/templates/ccx/coach_dashboard.html -#: lms/templates/ccx/coach_dashboard.html -msgid "CCX Coach Dashboard" -msgstr "CCX指导仪表盘" - -#: lms/templates/ccx/coach_dashboard.html -#: lms/templates/ccx/coach_dashboard.html -msgid "Name your CCX" -msgstr "为您的CCX命名" - -#: lms/templates/ccx/coach_dashboard.html -msgid "Create a new Custom Course for edX" -msgstr "创建一个新的 edX 自定义课程" - -#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/enrollment.html -#: lms/templates/support/enrollment.html -msgid "Enrollment" -msgstr "选课" - -#: lms/templates/ccx/coach_dashboard.html -#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/schedule.html -msgid "Schedule" -msgstr "时间表" - -#: lms/templates/ccx/coach_dashboard.html -msgid "Student Admin" -msgstr "学生管理" - -#: lms/templates/ccx/coach_dashboard.html -#: lms/templates/ccx/coach_dashboard.html -#: lms/templates/ccx/grading_policy.html -#: lms/templates/courseware/writable_gradebook.html -msgid "Grading Policy" -msgstr "评分标准" - -#: lms/templates/ccx/coach_dashboard.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Enrollment" -msgstr "批量选课" - -#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/student_admin.html -msgid "Student Grades" -msgstr "学生评分" - -#: lms/templates/ccx/coach_dashboard.html -msgid "Please enter a valid CCX name." -msgstr "请输入一个有效的 CCX 名称。" - -#: lms/templates/ccx/enrollment.html lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Email Addresses/Usernames" -msgstr "电子邮箱地址/用户名" - -#: lms/templates/ccx/enrollment.html -msgid "" -"Enter one or more email addresses or usernames separated by new lines or " -"commas." -msgstr "请输入一个或多个邮箱地址或用户名,用逗号隔开或新起一行。" - -#: lms/templates/ccx/enrollment.html -msgid "" -"Make sure you enter the information carefully. You will not receive " -"notification for invalid usernames or email addresses." -msgstr "请仔细输入您的信息,如果用户名或邮箱地址无效,那么您无法收到通知。" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Auto Enroll" -msgstr "自动选修" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"If this option is {em_start}checked{em_end}, users who have not yet " -"registered for {platform_name} will be automatically enrolled." -msgstr "如果此选项{em_start}已选{em_end},尚未注册 {platform_name} 的用户将自动入选此课。" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"If this option is left {em_start}unchecked{em_end}, users who have not yet " -"registered for {platform_name} will not be enrolled, but will be allowed to " -"enroll once they make an account." -msgstr "" -"如果此选项{em_start}未选{em_end},尚未注册 {platform_name} 的用户将不能入选,但只要他们注册了账号即可入选。" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Checking this box has no effect if 'Unenroll' is selected." -msgstr "如果选择了'放弃选修',本项选择将不会生效。" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Notify users by email" -msgstr "通过邮件通知用户" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"If this option is {em_start}checked{em_end}, users will receive an email " -"notification." -msgstr "如果此选项{em_start}已选{em_end},用户将收到一封电子邮件通知。" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgctxt "someone" -msgid "Enroll" -msgstr "选修" - -#: lms/templates/ccx/enrollment.html -msgid "Student List Management" -msgstr "学生列表管理" - -#: lms/templates/ccx/enrollment.html -msgid "CCX student list management response message" -msgstr "CCX学生列表管理响应消息" - -#: lms/templates/ccx/enrollment.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Email" -msgstr "电子邮件" - -#: lms/templates/ccx/enrollment.html lms/templates/ccx/enrollment.html -msgid "Revoke access" -msgstr "取消授权" - -#: lms/templates/ccx/grading_policy.html -msgid "WARNING" -msgstr "警告" - -#: lms/templates/ccx/grading_policy.html -msgid "" -"For advanced users only. Errors in the grading policy can lead to the course" -" failing to display. This form does not check the validity of the policy " -"before saving." -msgstr "仅供高级用户。分级政策中的错误会导致未能显示。这种形式不储蓄之前检查政策的有效性。" - -#: lms/templates/ccx/grading_policy.html -msgid "Most coaches should not need to make changes to the grading policy." -msgstr "大多数教师不应该更改评分标准。" - -#: lms/templates/ccx/grading_policy.html -msgid "Save Grading Policy" -msgstr "保存评分标准" - -#. Translators: This explains to people using a screen reader how to interpret -#. the format of YYYY-MM-DD -#: lms/templates/ccx/schedule.html -msgid "Date format four digit year dash two digit month dash two digit day" -msgstr "日期格式为四位年数两位月数和两位日数" - -#. Translators: This explains to people using a screen reader how to interpret -#. the format of HH:MM -#: lms/templates/ccx/schedule.html -msgid "Time format two digit hours colon two digit minutes" -msgstr "时间格式是两位时数和两位分钟数" - -#: lms/templates/ccx/schedule.html -msgid "Time" -msgstr "时间" - -#: lms/templates/ccx/schedule.html -msgid "Set date" -msgstr "设置日期" - -#: lms/templates/ccx/schedule.html lms/templates/ccx/schedule.html -msgid "Save changes" -msgstr "保存修改" - -#: lms/templates/ccx/schedule.html -msgid "You have unsaved changes." -msgstr "您还有未保存的更改。" - -#: lms/templates/ccx/schedule.html -msgid "There was an error saving changes." -msgstr "保存更改时发生了错误。" - -#: lms/templates/ccx/schedule.html -msgid "Schedule a Unit" -msgstr "排定一个单元" - -#: lms/templates/ccx/schedule.html -msgid "Subsection" -msgstr "节" - -#: lms/templates/ccx/schedule.html -msgid "Unit" -msgstr "单元" - -#: lms/templates/ccx/schedule.html -msgid "Start Date" -msgstr "开始日期" - -#. Translators: This explains to people using a screen reader how to interpret -#. the format of YYYY-MM-DD -#: lms/templates/ccx/schedule.html lms/templates/ccx/schedule.html -msgid "format four digit year dash two digit month dash two digit day" -msgstr "格式为四位年数两位月数和两位日数" - -#: lms/templates/ccx/schedule.html lms/templates/ccx/schedule.html -msgid "yyyy-mm-dd" -msgstr "yyyy-mm-dd" - -#. Translators: This explains to people using a screen reader how to interpret -#. the format of HH:MM -#: lms/templates/ccx/schedule.html -msgid "Start time format two digit hours colon two digit minutes" -msgstr "开始时间的格式是两位时数和两位分钟数" - -#: lms/templates/ccx/schedule.html lms/templates/ccx/schedule.html -msgid "time" -msgstr "时间" - -#: lms/templates/ccx/schedule.html -msgid "Due Date" -msgstr "截止日期" - -#: lms/templates/ccx/schedule.html -msgid "(Optional)" -msgstr "(可选的)" - -#. Translators: This explains to people using a screen reader how to interpret -#. the format of HH:MM -#: lms/templates/ccx/schedule.html -msgid "Due Time format two digit hours colon two digit minutes" -msgstr "截止时间格式是两位时数和两位分钟数" - -#: lms/templates/ccx/schedule.html -msgid "Add Unit" -msgstr "添加单元" - -#: lms/templates/ccx/schedule.html -msgid "Add All Units" -msgstr "添加所有单元" - -#: lms/templates/ccx/schedule.html -msgid "All units have been added." -msgstr "所有单元已经添加。" - -#: lms/templates/ccx/student_admin.html -msgid "View gradebook" -msgstr "查看记分册" - -#: lms/templates/ccx/student_admin.html -msgid "Download student grades" -msgstr "下载学生评分" - -#: lms/templates/certificates/_accomplishment-banner.html -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Print or share your certificate:" -msgstr "打印或分享您的证书:" - -#: lms/templates/certificates/_accomplishment-banner.html -msgid "Click the link to see my certificate." -msgstr "点击链接查看我的证书。" - -#: lms/templates/certificates/_accomplishment-banner.html -msgid "Post on Facebook" -msgstr "发布到Facebook" - -#: lms/templates/certificates/_accomplishment-banner.html -#: lms/templates/certificates/_accomplishment-banner.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Share on Twitter" -msgstr "分享到Twitter" - -#: lms/templates/certificates/_accomplishment-banner.html -msgid "Tweet this Accomplishment. Pop up window." -msgstr "推特该项成就。弹出窗口。" - -#: lms/templates/certificates/_accomplishment-banner.html -#: lms/templates/certificates/_accomplishment-banner.html -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Add to LinkedIn Profile" -msgstr "添加到LinkedIn的个人资料" - -#: lms/templates/certificates/_accomplishment-banner.html -msgid "Add to Mozilla Backpack" -msgstr "添加到Mozilla Backpack" - -#: lms/templates/certificates/_accomplishment-banner.html -#: themes/normal-theme/lms/templates/certificates/_accomplishment-banner.html -msgid "Print Certificate" -msgstr "打印证书" - -#: lms/templates/certificates/_accomplishment-header.html -msgid "{platform_name} Home" -msgstr "{platform_name} 主页" - -#: lms/templates/certificates/_accomplishment-rendering.html -msgid "Noted by" -msgstr "被标记" - -#: lms/templates/certificates/_accomplishment-rendering.html -msgid "Supported by the following organizations" -msgstr "被以下的组织支持" - -#: lms/templates/certificates/_accomplishment-rendering.html -msgid "Awarded to:" -msgstr "授予:" - -#: lms/templates/certificates/_edx-accomplishment-print-help.html -msgid "" -"For tips and tricks on printing your certificate, view the {link_start}Web " -"Certificates help documentation{link_end}." -msgstr "想要打印证书的建议技巧的话, 查看 {link_start} 网络证书帮助文档 {link_end}." - -#: lms/templates/certificates/invalid.html -msgid "Cannot Find Certificate" -msgstr "不能找到证书" - -#: lms/templates/certificates/invalid.html -msgid "" -"We cannot find a certificate with this URL or ID number. If you are trying " -"to validate a certificate, make sure that the URL or ID number is correct. " -"If you are sure that the URL or ID number is correct, contact support." -msgstr "" -"我们无法找到此 URL 或 ID 号码的证书。如果您尝试验证证书,请确认 URL 或 ID 号码是否正确。如果您确认 URL 或 ID " -"号码正确,请联系支持部门。" - -#: lms/templates/certificates/invalid.html -msgid "About {platform_name} Certificates" -msgstr "关于 {platform_name} 认证证书" - -#: lms/templates/certificates/server-error.html -msgid "Invalid Certificate Configuration." -msgstr "无效证书配置。" - -#: lms/templates/certificates/server-error.html -msgid "There is a problem with this certificate." -msgstr "这个证书存在问题。" - -#: lms/templates/certificates/server-error.html -msgid "" -"To resolve the problem, your partner manager should verify that the " -"following information is correct." -msgstr "要解决此问题,您的合作伙伴经理应核实以下信息是否正确。" - -#: lms/templates/certificates/server-error.html -msgid "The institution's logo." -msgstr "机构LOGO。" - -#: lms/templates/certificates/server-error.html -msgid "The institution that is linked to the course." -msgstr "与课程相关联的机构。" - -#: lms/templates/certificates/server-error.html -msgid "The course information in the Course Administration tool." -msgstr "课程管理工具中的课程信息。" - -#: lms/templates/certificates/server-error.html -msgid "" -"If all of the information is correct and the problem persists, contact " -"technical support." -msgstr "如果所有信息正确但问题仍然存在,请联系技术支持团队。" - -#: lms/templates/certificates/valid.html -msgid "About EliteMBA Certificates" -msgstr "关于EliteMBA证书" - -#: lms/templates/certificates/verify.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "EliteMBA" -msgstr "英荔商学院" - -#: lms/templates/certificates/verify.html -msgid "Trustworthy Certificate" -msgstr "该证书真实有效" - -#: lms/templates/certificates/verify.html -msgid "Certificated Learner" -msgstr "持证学员" - -#: lms/templates/certificates/verify.html -msgid "Certificate No." -msgstr "证书编号" - -#: lms/templates/certificates/verify.html -msgid "Affiliation" -msgstr "所属机构" - -#: lms/templates/certificates/verify.html -msgid "Learning Time" -msgstr "学习时间" - -#: lms/templates/certificates/verify.html -msgid "Learning Type" -msgstr "学习类型" - -#: lms/templates/certificates/verify.html -msgid "Certificate Issuing Date" -msgstr "发证时间" - -#: lms/templates/certificates/verify.html -msgid "Electronic Certificate" -msgstr "电子证书" - -#: lms/templates/certificates/verify.html -msgctxt "Certificate" -msgid "View" -msgstr "点击查看" - -#: lms/templates/commerce/checkout_cancel.html -#: lms/templates/commerce/checkout_cancel.html -msgid "Checkout Cancelled" -msgstr "付款已取消" - -#: lms/templates/commerce/checkout_cancel.html -msgid "" -"Your transaction has been cancelled. If you feel an error has occurred, " -"contact {email}." -msgstr "您的交易已被取消。如果您觉得发生了错误,请联系 {email} 。" - -#: lms/templates/commerce/checkout_error.html -#: lms/templates/commerce/checkout_error.html -msgid "Checkout Error" -msgstr "付款出错" - -#: lms/templates/commerce/checkout_error.html -msgid "" -"An error has occurred with your payment. You have not been charged. " -"Please try to submit your payment again. If this problem persists, contact " -"{email}." -msgstr "您的付款出现一个错误。您尚未付款。请重试再次付款。如果此问题仍然存在,请联系 {email}。" - -#: lms/templates/commerce/checkout_receipt.html -msgid "Loading Order Data..." -msgstr "加载订单信息..." - -#: lms/templates/commerce/checkout_receipt.html -msgid "Please wait while we retrieve your order details." -msgstr "请稍候,我们正在获取您的订单详情。" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Enroll In {course_name} | Choose Your Track" -msgstr "选择 {course_name} | 选择您的方向" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Sorry, there was an error when trying to enroll you" -msgstr "抱歉,在录取您时发生了错误" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue Academic Credit with the Verified Track" -msgstr "在已经过身份认证的的轨道上追求学术学分" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue Academic Credit with a Verified Certificate" -msgstr "选择认证证书并获取专业学分。" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"Become eligible for academic credit and highlight your new skills and " -"knowledge with a verified certificate. Use this valuable credential to " -"qualify for academic credit, advance your career, or strengthen your school " -"applications." -msgstr "使用验证证书,让您有资格获得学分并突显您的新技能和新知识。使用这件有价值的凭证,帮助您获得学分、促进您的职业发展或增强您的学校申请竞争力。" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Benefits of the Verified Track" -msgstr "已经过身份认证的轨道的好处" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Eligible for credit:{b_end} Receive academic credit after " -"successfully completing the course" -msgstr "{b_start}获取学分资格:{b_end} 成功完成课程后获取学分" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Unlimited Course Access: {b_end}Learn at your own pace, and access " -"materials anytime to brush up on what you've learned." -msgstr "{b_start}无限制的课程访问:{b_end}按照您自己的进度学习,并随时访问材料,以复习您所学到的内容。" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Graded Assignments: {b_end}Build your skills through graded " -"assignments and projects." -msgstr "{b_start}分级作业:{b_end}通过分级作业和项目建立您的技能。" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Easily Sharable: {b_end}Add the certificate to your CV or resume, " -"or post it directly on LinkedIn." -msgstr "{b_start}轻松分享:{b_end} 在您的简历中添加这份证书,或者直接将它传至领英Linkedln。" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Benefits of a Verified Certificate" -msgstr "认证证书的优势" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Official:{b_end} Receive an instructor-signed certificate with the " -"institution's logo" -msgstr "{b_start}官方:{b_end} 获取带有机构徽章和导师签名的证书" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Easily shareable:{b_end} Add the certificate to your CV or resume, " -"or post it directly on LinkedIn" -msgstr "{b_start}轻松分享:{b_end} 在您的简历中加入这份证书,或者直接将它传至领英Linkedln" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue a Verified Certificate" -msgstr "选择认证证书" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Pursue the Verified Track" -msgstr "跟踪已经过身份认证的的轨迹" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"Highlight your new knowledge and skills with a verified certificate. Use " -"this valuable credential to improve your job prospects and advance your " -"career, or highlight your certificate in school applications." -msgstr "用您的认证证书突出您的新知识和技能。使用这件有价值的凭证来改善您的就业前景,推进您的职业发展,或者在申请学校时突出您的证书。" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Official: {b_end}Receive an instructor-signed certificate with the " -"institution's logo" -msgstr "{b_start}官方:{b_end} 获取带有机构徽章和导师签名的证书" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Easily shareable: {b_end}Add the certificate to your CV or resume, " -"or post it directly on LinkedIn" -msgstr "{b_start}轻松分享:{b_end} 在您的简历中加入这份证书,或者直接将它传至领英Linkedln" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Motivating: {b_end}Give yourself an additional incentive to " -"complete the course" -msgstr "{b_start}激励: {b_end}给自己额外的动力去完成课程" - -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Audit This Course" -msgstr "旁听这门课程" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"Audit this course for free and have complete access to all the course " -"material, activities, tests, and forums." -msgstr "免费旁听此课程并获得访问所有课程资料、活动、测试及论坛的所有权限。" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "Audit This Course (No Certificate)" -msgstr "旁听此课程(无证书)" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"Audit this course for free and have access to course materials and " -"discussions forums. {b_start}This track does not include graded assignments," -" or unlimited course access.{b_end}" -msgstr "免费旁听本课程,并可访问课程资料和讨论论坛。{b_start}此轨道不包括分级作业或无限制的课程访问.{b_end}。" - -#: lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"Audit this course for free and have complete access to all the course " -"material, activities, tests, and forums. {b_start}Please note that this " -"track does not offer a certificate for learners who earn a passing " -"grade.{b_end}" -msgstr "" -"免费旁听此课程并获得访问所有课程资料、活动、测试及论坛的所有权限。{b_start}请注意,此方向不为通过课程的学生颁发证书。{b_end}" - -#: lms/templates/courseware/accordion.html -msgid "{chapter} current chapter" -msgstr "{chapter} 当前章节" - -#: lms/templates/courseware/accordion.html -msgid "{span_start}current section{span_end}" -msgstr "{span_start}当前部分{span_end}" - -#: lms/templates/courseware/accordion.html -#: lms/templates/courseware/progress.html -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "due {date}" -msgstr "截止日期{date}" - -#: lms/templates/courseware/accordion.html -msgid "{section_format} due {{date}}" -msgstr "{section_format} 截止{{date}} " - -#: lms/templates/courseware/accordion.html -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "This content is graded" -msgstr "该内容计入总分。" - -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "An error occurred. Please try again later." -msgstr "出现错误,请稍后再试。" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "" -"The currently logged-in user account does not have permission to enroll in " -"this course. You may need to {start_logout_tag}log out{end_tag} then try the" -" enroll button again. Please visit the {start_help_tag}help page{end_tag} " -"for a possible solution." -msgstr "" -"当前登录用户账号无权限入选此课程。您可能需要在{start_logout_tag}退出登录{end_tag}后重试选课按钮。请访问{start_help_tag}帮助页面{end_tag}了解可能的解决方案。" - -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Enroll {price}" -msgstr "选修此课程 {price}" - -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgctxt "Free Enroll Course" -msgid "Enroll" -msgstr "选修此课程" - -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "You are enrolled in this course" -msgstr "您选修了本课程" - -#: lms/templates/courseware/course_about.html -#: lms/templates/courseware/course_about.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/shoppingcart/registration_code_receipt.html -#: openedx/features/journals/templates/journals/bundle_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "View Course" -msgstr "查看课程" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "This course is in your cart." -msgstr "这个课程已经进入您的 购物车。" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Course is full" -msgstr "该课程已满" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Enrollment in this course is by invitation only" -msgstr "该课程只能通过邀请选修" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Enrollment is Closed" -msgstr "选课已关闭" - -#: lms/templates/courseware/course_about.html -msgid "Add {course_name} to Cart ({price} {currency_code})" -msgstr "{course_name} 添加购物车({price} {currency_code})" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Free Enrollment for VIP" -msgstr "VIP会员免费选修此课程" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "View About Page in studio" -msgstr "在职员界面查看课程简介页面" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Classes Start" -msgstr "课程开始" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Classes End" -msgstr "课程结束" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Estimated Effort" -msgstr "预计课时" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Price" -msgstr "价格" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Prerequisites" -msgstr "预备知识" - -#: lms/templates/courseware/course_about.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "" -"You must successfully complete {link_start}{prc_display}{link_end} before " -"you begin this course." -msgstr "您必须先完成{link_start}{prc_display}{link_end}才能开始此课程。" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Additional Resources" -msgstr "额外资源" - -#: lms/templates/courseware/course_about.html -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgctxt "self" -msgid "enroll" -msgstr "选课" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html -msgid "Share with friends and family!" -msgstr "与亲朋好友分享!" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "I just enrolled in {number} {title} through {account}: {url}" -msgstr "我刚通过 {account}:{url} 选修了 {number} {title}" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "" -"A wonderful course is rare to find and must be shared! I'm taking {title} on" -" EliteMBA. Check it out! {url}" -msgstr "难得的优质好课绝不能独享,我正在学习英荔商学院的{title},您也看看吧!{url}" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "Take a course with {platform} online" -msgstr "在 {platform} 上在线学习课程" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "I just enrolled in {number} {title} through {platform} {url}" -msgstr "我刚通过 {platform} {url} 选修了 {number} {title}" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html -msgid "Tweet that you've enrolled in this course" -msgstr "在 Tweet 发布您已登记此课程的消息" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "Post a Facebook message to say you've enrolled in this course" -msgstr "在 Facebook 发布您已选修此课程的消息" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html -msgid "Email someone to say you've enrolled in this course" -msgstr "通过邮件告诉其他人您已选修此课程" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "weibo" -msgstr "微博" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "weixin" -msgstr "微信" - -#: lms/templates/courseware/course_about_sidebar_header.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "qq" -msgstr "QQ" - -#: lms/templates/courseware/course_navigation.html -msgid "current location" -msgstr "当前位置" - -#. Translators: 'needs attention' is an alternative string for the -#. notification image that indicates the tab "needs attention". -#: lms/templates/courseware/course_navigation.html -#: lms/templates/courseware/tabs.html -msgid "needs attention" -msgstr "需要注意" - -#: lms/templates/courseware/course_navigation.html -msgid "Course Material" -msgstr "课程资料" - -#: lms/templates/courseware/course_updates.html -#: lms/templates/courseware/course_updates.html -msgid "Hide" -msgstr "隐藏" - -#: lms/templates/courseware/course_updates.html -#: lms/templates/courseware/course_updates.html -msgid "Show" -msgstr "显示" - -#: lms/templates/courseware/course_updates.html -msgid "Show Earlier Course Updates" -msgstr "显示更早的课程更新" - -#: lms/templates/courseware/courses.html lms/templates/courseware/courses.html -msgid "Refine Your Search" -msgstr "使您的搜索更精确" - -#: lms/templates/courseware/courseware-chromeless.html -#: lms/templates/courseware/courseware.html -#: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "{course_number} Courseware" -msgstr "{course_number} 课程页面" - -#: lms/templates/courseware/courseware-chromeless.html -#: lms/templates/courseware/courseware.html -msgid "Course Utilities" -msgstr "课程工具" - -#: lms/templates/courseware/courseware-error.html -msgid "Courseware" -msgstr "课程页面" - -#: lms/templates/courseware/courseware.html -#: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -#: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html -msgid "Bookmarks" -msgstr "书签" - -#: lms/templates/courseware/courseware.html -msgid "Course Search" -msgstr "搜索课程" - -#: lms/templates/courseware/courseware.html -msgid "No content has been added to this course" -msgstr "本课程未添加新内容" - -#: lms/templates/courseware/courseware.html -#, python-format -msgid "" -"To access course materials, you must score {required_score}% or higher on " -"this exam. Your current score is {current_score}%." -msgstr "如需访问课程材料,您此门考试的分数必须为{required_score}%或以上。您当前分数为{current_score}%。" - -#: lms/templates/courseware/courseware.html -msgid "Your score is {current_score}%. You have passed the entrance exam." -msgstr "您的分数为 {current_score}%,通过了入门测试" - -#: lms/templates/courseware/gradebook.html -#: lms/templates/courseware/writable_gradebook.html -msgid "Gradebook" -msgstr "成绩簿" - -#: lms/templates/courseware/gradebook.html -msgid "Search students" -msgstr "搜索学生" - -#: lms/templates/courseware/gradebook.html -#: lms/templates/courseware/gradebook.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/receipt.html -msgid "Total" -msgstr "总计" - -#: lms/templates/courseware/gradebook.html -msgid "previous page" -msgstr "上一页" - -#: lms/templates/courseware/gradebook.html -msgid "of" -msgstr "的" - -#: lms/templates/courseware/gradebook.html -msgid "next page" -msgstr "下一页" - -#: lms/templates/courseware/info.html -msgid "{course_number} Course Info" -msgstr "{course_number} 课程信息" - -#: lms/templates/courseware/info.html -msgid "You are not enrolled yet" -msgstr "您尚未选修" - -#: lms/templates/courseware/info.html -msgid "" -"You are not currently enrolled in this course. {link_start}Enroll " -"now!{link_end}" -msgstr "您现在未选这门课程。 {link_start}立刻选课!{link_end}" - -#: lms/templates/courseware/info.html -msgid "Welcome to {org}'s {course_title}!" -msgstr "欢迎来到{org}的{course_title}!" - -#: lms/templates/courseware/info.html -msgid "Welcome to {course_title}!" -msgstr "欢迎来到{course_title}!" - -#: lms/templates/courseware/info.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Resume Course" -msgstr "继续课程" - -#: lms/templates/courseware/info.html -msgid "View Updates in Studio" -msgstr "在Studio中查看更新" - -#: lms/templates/courseware/info.html lms/templates/courseware/info.html -msgid "Course Updates and News" -msgstr "课程更新与新消息" - -#: lms/templates/courseware/info.html lms/templates/courseware/info.html -msgid "Handout Navigation" -msgstr "讲义导航" - -#: lms/templates/courseware/info.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Course Tools" -msgstr "课程工具" - -#: lms/templates/courseware/info.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Course Handouts" -msgstr "课程讲义" - -#: lms/templates/courseware/news.html -msgid "News - MITx 6.002x" -msgstr "新闻 - MITx 6.002x" - -#: lms/templates/courseware/news.html -msgid "Updates to Discussion Posts You Follow" -msgstr "您关注的讨论帖的更新情况" - -#: lms/templates/courseware/program_marketing.html -msgid "Purchase the Program (" -msgstr "选购计划 (" - -#: lms/templates/courseware/program_marketing.html -#: lms/templates/courseware/program_marketing.html -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "Original Price" -msgstr "原价" - -#: lms/templates/courseware/program_marketing.html -msgid "${oldPrice}" -msgstr "${oldPrice}" - -#: lms/templates/courseware/program_marketing.html -#: lms/templates/courseware/program_marketing.html -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "Discounted Price" -msgstr "折扣价" - -#: lms/templates/courseware/program_marketing.html -msgid "${newPrice}" -msgstr "${newPrice}" - -#: lms/templates/courseware/program_marketing.html -msgid "{currency})" -msgstr "{currency})" - -#: lms/templates/courseware/program_marketing.html -msgid "Start Learning" -msgstr "开始学习" - -#: lms/templates/courseware/program_marketing.html -msgid "Play" -msgstr "播放" - -#: lms/templates/courseware/program_marketing.html -msgid "YouTube Video" -msgstr "YouTube 视频" - -#: lms/templates/courseware/program_marketing.html -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "View Courses" -msgstr "查看课程" - -#: lms/templates/courseware/program_marketing.html -msgid "Meet the Instructors" -msgstr "会面导师" - -#: lms/templates/courseware/program_marketing.html -#: lms/templates/courseware/program_marketing.html -msgid "Frequently Asked Questions" -msgstr "常见问题" - -#: lms/templates/courseware/program_marketing.html -msgid "Job Outlook" -msgstr "工作展望" - -#: lms/templates/courseware/program_marketing.html -msgid "Real Career Impact" -msgstr "职场冲击" - -#: lms/templates/courseware/program_marketing.html -msgid "What You'll Learn" -msgstr "您将学到" - -#: lms/templates/courseware/program_marketing.html -msgid "Average Length" -msgstr "平均长度" - -#: lms/templates/courseware/program_marketing.html -msgid "{weeks_to_complete} weeks per course" -msgstr "{weeks_to_complete} 周/课" - -#: lms/templates/courseware/program_marketing.html -msgid "Effort" -msgstr "课时" - -#: lms/templates/courseware/program_marketing.html -msgid "" -"{min_hours_effort_per_week}-{max_hours_effort_per_week} hours per week, per " -"course" -msgstr "{min_hours_effort_per_week}-{max_hours_effort_per_week} 小时 / 周 / 课" - -#: lms/templates/courseware/program_marketing.html -msgid "Number of Courses" -msgstr "课程数量" - -#: lms/templates/courseware/program_marketing.html -msgid "{number_of_courses} courses in program" -msgstr "{number_of_courses} 专项课" - -#: lms/templates/courseware/program_marketing.html -msgid "Price ({currencyCode})" -msgstr "价格 ({currencyCode})" - -#: lms/templates/courseware/program_marketing.html -msgid "{currencySymbol}{oldPrice}" -msgstr "{currencySymbol}{oldPrice}" - -#: lms/templates/courseware/program_marketing.html -msgid "{newPrice}{htmlEnd} for entire program" -msgstr "整个项目{newPrice}{htmlEnd} " - -#: lms/templates/courseware/program_marketing.html -msgid "You save " -msgstr "保存" - -#: lms/templates/courseware/program_marketing.html -msgid "{discount_value} {currency}" -msgstr "{discount_value} {currency}" - -#: lms/templates/courseware/program_marketing.html -msgid "{full_program_price} for entire program" -msgstr "整个项目{full_program_price} " - -#: lms/templates/courseware/program_marketing.html -msgid "Courses in the {}" -msgstr "{} 的课程" - -#: lms/templates/courseware/program_marketing.html -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "Starts on {}" -msgstr "开始 {}" - -#: lms/templates/courseware/progress.html -msgid "{course_number} Progress" -msgstr "{course_number}课程进展" - -#: lms/templates/courseware/progress.html -msgid "View Grading in studio" -msgstr "在Studio中查看评分情况" - -#: lms/templates/courseware/progress.html -msgid "Course Progress for Student '{username}' ({email})" -msgstr "学生'{username}' ({email})的学习进度" - -#: lms/templates/courseware/progress.html -msgid "View Certificate" -msgstr "查看证书" - -#: lms/templates/courseware/progress.html -#: lms/templates/courseware/progress.html -msgid "Opens in a new browser window" -msgstr "打开一个新的浏览器窗口" - -#: lms/templates/courseware/progress.html -msgid "Download Your Certificate" -msgstr "下载您的证书" - -#: lms/templates/courseware/progress.html -msgid "Request Certificate" -msgstr "申请证书" - -#: lms/templates/courseware/progress.html -msgid "Requirements for Course Credit" -msgstr "课程学分要求" - -#: lms/templates/courseware/progress.html -msgid "{student_name}, you are no longer eligible for credit in this course." -msgstr "{student_name},您已失去获得该课程学分的资格。" - -#: lms/templates/courseware/progress.html -msgid "" -"{student_name}, you have met the requirements for credit in this course. " -"{a_start}Go to your dashboard{a_end} to purchase course credit." -msgstr "{student_name},您已达到本课程的学分要求。{a_start}前往课程面板{a_end} 支付这门课程的学分费用。" - -#: lms/templates/courseware/progress.html -msgid "{student_name}, you have not yet met the requirements for credit." -msgstr "{student_name},您还未达到学分要求。" - -#: lms/templates/courseware/progress.html -msgid "Information about course credit requirements" -msgstr "课程的学分要求信息" - -#: lms/templates/courseware/progress.html -msgid "display_name" -msgstr "显示的名称" - -#: lms/templates/courseware/progress.html -msgid "Verification Submitted" -msgstr "验证已提交" - -#: lms/templates/courseware/progress.html -msgid "Verification Failed" -msgstr "认证失败" - -#: lms/templates/courseware/progress.html -msgid "Verification Declined" -msgstr "未通过验证" - -#: lms/templates/courseware/progress.html -msgid "Completed by {date}" -msgstr "在{date}之前完成" - -#: lms/templates/courseware/progress.html -msgid "Upcoming" -msgstr "即将到来" - -#: lms/templates/courseware/progress.html -msgid "Less" -msgstr "收起" - -#: lms/templates/courseware/progress.html -msgid "Details for each chapter" -msgstr "每章的详细信息" - -#: lms/templates/courseware/progress.html -msgid "{earned} of {total} possible points" -msgstr "从可能的总分{total} 中获得{earned} " - -#: lms/templates/courseware/progress.html -msgid "" -"Suspicious activity detected during proctored exam review. Exam score 0." -msgstr "监测到监考模式考试中可疑作弊行为,考试分数为0。" - -#: lms/templates/courseware/progress.html -msgid "Section grade has been overridden." -msgstr "章成绩已被覆盖。" - -#: lms/templates/courseware/progress.html -msgid "Problem Scores: " -msgstr "问题得分:" - -#: lms/templates/courseware/progress.html -msgid "Practice Scores: " -msgstr "练习得分:" - -#: lms/templates/courseware/progress.html -msgid "Problem scores are hidden until the due date." -msgstr "截止日期前不显示题目分数。" - -#: lms/templates/courseware/progress.html -msgid "Practice scores are hidden until the due date." -msgstr "在截止日期前不显示模拟考成绩。" - -#: lms/templates/courseware/progress.html -msgid "Problem scores are hidden." -msgstr "不显示题目分数。" - -#: lms/templates/courseware/progress.html -msgid "Practice scores are hidden." -msgstr "不显示联系成绩。" - -#: lms/templates/courseware/progress.html -msgid "No problem scores in this section" -msgstr "这部分中没有问题得分" - -#: lms/templates/courseware/syllabus.html -msgid "{course.display_number_with_default} Course Info" -msgstr "{course.display_number_with_default}课程信息" - -#: lms/templates/courseware/syllabus.html -msgid "Syllabus" -msgstr "教学大纲" - -#: lms/templates/courseware/welcome-back.html -msgid "" -"You were most recently in {section_link}. If you're done with that, choose " -"another section on the left." -msgstr "您最近在{section_link}。如果您已经完成此章节,请选择左侧的另一个章节。" - -#: lms/templates/courseware/writable_gradebook.html -msgid "Score View:" -msgstr "查看得分" - -#: lms/templates/courseware/writable_gradebook.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Percent" -msgstr "百分比" - -#: lms/templates/courseware/writable_gradebook.html -msgid "Absolute" -msgstr "绝对" - -#: lms/templates/courseware/writable_gradebook.html -msgid "Download Grade Report" -msgstr "下载成绩单" - -#: lms/templates/courseware/writable_gradebook.html -msgid "Fetching gradebook data" -msgstr "获取成绩单数据" - -#: lms/templates/courseware/writable_gradebook.html -msgid "No matching records found" -msgstr "无匹配文件" - -#: lms/templates/courseware/writable_gradebook.html -msgid "There are no students enrolled in this course." -msgstr "本课程无学生选课" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -#: lms/templates/emails/activation_email.txt -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "Hi {name}," -msgstr "{name} 您好," - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "Hi," -msgstr "您好," - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"Congratulations! You are now eligible to receive course credit from " -"{providers} for successfully completing your {platform_name} course! " -"{link_start}Purchase credit now.{link_end}" -msgstr "" -"恭喜!您已完成{platform_name}课程,已获得从{providers}获取课程学分的资格!{link_start}马上购买学分{link_end}" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"Congratulations! You are now eligible to receive course credit for " -"successfully completing your {platform_name} course! {link_start}Purchase " -"credit now.{link_end}" -msgstr "恭喜您!您已完成 {platform_name} 课程,已获得资格获得课程学分!{link_start}马上购买学分{link_end}" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"Course credit can help you get a jump start on your university degree, " -"finish a degree already started, or fulfill requirements at a different " -"academic institution." -msgstr "课程学分可以极大地帮助您申请大学,完成您的大学学位,或者满足另外一个学术机构的要求。" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "There are 2 steps to getting course credit." -msgstr "2步获取学分。" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"Purchase credit by going to your {link_start}{platform_name} " -"dashboard{link_end} and clicking the {bold_start}Get Credit{bold_end} button" -" below the course title." -msgstr "" -"前往 " -"{link_start}{platform_name}面板{link_end}并点击课程标题下方的{bold_start}获取学分{bold_end}按钮以购买学分。" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"When your payment is complete, return to the dashboard and click the " -"{bold_start}Request Credit{bold_end} button under the course title to " -"request an official academic transcript at the institution that granted the " -"credit." -msgstr "" -"当完成支付后,返回面板并点击课程标题下方的{bold_start}请求学分{bold_end}按钮来请求一份官方学术成绩单,由赋予学分的机构发放。" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"We hope you enjoyed the course, and we hope to see you in future " -"{platform_name} courses!" -msgstr "我们希望您享受这门课程,我们希望在{platform_name}的新课程中见到您。" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -#: lms/templates/emails/activation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "The {platform_name} Team" -msgstr "{platform_name} 团队" - -#: lms/templates/credit_notifications/credit_eligibility_email.html -msgid "" -"{link_start}Click here for more information on credit at " -"{platform_name}{link_end}." -msgstr "{link_start}点击这里了解更多 {platform_name}平台上的学分信息{link_end}." - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Your certificate will be available on or before {date}" -msgstr "您可申请证书的日期为或早于{date}" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Your final grade:" -msgstr "您的最终成绩:" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Grade required for a {cert_name_short}:" -msgstr "评定{cert_name_short}所需要的成绩:" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Grade required to pass this course:" -msgstr "通过这门课程的成绩:" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Your verified {cert_name_long} is being held pending confirmation that the " -"issuance of your {cert_name_short} is in compliance with strict U.S. " -"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " -"mistakenly identified you as being connected with one of those countries, " -"please let us know by contacting {email}. If you would like a refund on your" -" {cert_name_long}, please contact our billing address {billing_email}" -msgstr "" -"由于向您颁发{cert_name_short}需要遵从美国对伊朗、古巴、叙利亚和苏丹的官方禁令政策,您的已认证的{cert_name_long}正处在等待确认状态。如果您认为我们的系统错误地将您与上述国家相关联,请通过{email}联系我们。如果您希望为{cert_name_long}获取退款,请通过{billing_email}联系我们。" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Your {cert_name_long} is being held pending confirmation that the issuance " -"of your {cert_name_short} is in compliance with strict U.S. embargoes on " -"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " -"identified you as being connected with one of those countries, please let us" -" know by contacting {email}." -msgstr "" -"由于向您颁发您的{cert_name_short}需要遵从美国对伊朗、古巴、叙利亚和苏丹的严格禁运政策,您的已认证的{cert_name_long}正处在等待确认状态。如果您认为我们的系统错误地将您与上述国家相关联,请联系{email}让我们了解相关情况。" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Your certificate was not issued because you do not have a current verified " -"identity with {platform_name}. " -msgstr "我们未向您颁发证书,是因为您未在当前的{platform_name}平台上验证您的身份。" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Verify your identity now." -msgstr "立刻验证您的身份。" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Your {cert_name_short} is Generating" -msgstr "您的{cert_name_short}生成中" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "This link will open the certificate web view" -msgstr "该链接将打开证书的网络版式视图" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "View {cert_name_short}" -msgstr "查看{cert_name_short}" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "This link will open/download a PDF document" -msgstr "点击此链接打开或下载PDF文件" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Download {cert_name_short} (PDF)" -msgstr "下载 {cert_name_short} (PDF)" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Download Your {cert_name_short} (PDF)" -msgstr "下载认证{cert_name_short}(PDF)" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"This link will open/download a PDF document of your verified " -"{cert_name_long}." -msgstr "此链接会以PDF格式打开或下载您验证过的{cert_name_long}证书。" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Download Your ID Verified {cert_name_short} (PDF)" -msgstr "下载您的已认证的 {cert_name_short} (PDF)" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Complete our course feedback survey" -msgstr "填写课程反馈问卷" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Add Certificate to LinkedIn Profile" -msgstr "将证书添加到LinkedIn的个人资料" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "Share on LinkedIn" -msgstr "分享到领英" - -#: lms/templates/dashboard/_dashboard_certificate_information.html -msgid "" -"Since we did not have a valid set of verification photos from you when your " -"{cert_name_long} was generated, we could not grant you a verified " -"{cert_name_short}. An honor code {cert_name_short} has been granted instead." -msgstr "" -"由于在生成您的{cert_name_long}时我们没有一套您的有效的身份认证照片,因此无法授予您认证的{cert_name_short};我们已授予您标有诚信准则的{cert_name_short}" -" 。" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Course details" -msgstr "课程详细信息" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "{course_number} {course_name} Home Page" -msgstr "{course_number} {course_name} 主页" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "{course_number} {course_name} Cover Image" -msgstr "{course_number} {course_name} 封面图片" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Enrolled as: " -msgstr "选修为:" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: themes/normal-theme/lms/templates/static_templates/help.html -msgid "Coming Soon" -msgstr "即将上线" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Ended - {date}" -msgstr "已经结课 - {date}" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Started - {date}" -msgstr "已经开课 - {date}" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Starts - {date}" -msgstr "开课日期 - {date}" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "for {course_display_name}" -msgstr "为了{course_display_name}" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You must select a session by {expiration_date} to access the course." -msgstr "您必须在{expiration_date}前选择会话来访问课程。" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You must select a session to access the course." -msgstr "必须选择一个学期才能访问课程。" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Change or Leave Session" -msgstr "更改或离开会话" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You can no longer change sessions." -msgstr "您已无法更改会话。" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You can change sessions until {entitlement_expiration_date}." -msgstr "您可在{entitlement_expiration_date}前更改会话。" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "View Archived Course" -msgstr "查看存档的课程" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Subscription Due" -msgstr "订阅期满" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "I'm taking {course_name} online with {facebook_brand}. Check it out!" -msgstr "我正在{facebook_brand}学习网络课程{course_name},了解一下!" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Share {course_name} on Facebook" -msgstr "分享{course_name}至Facebook" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Share on Facebook" -msgstr "分享到Facebook" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "I'm taking {course_name} online with {twitter_brand}. Check it out!" -msgstr "我正在{twitter_brand}学习网络课程{course_name},了解一下!" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Share {course_name} on Twitter" -msgstr "分享{course_name}至Twitter" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Course options for" -msgstr "课程选项,关于" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_entitlement_actions.html -msgid "Available Actions" -msgstr "可用的操作" - -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_course_listing.html -#: lms/templates/dashboard/_dashboard_entitlement_actions.html -msgid "Email Settings" -msgstr "电子邮件设置" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Related Programs" -msgstr "相关课程" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can contact the account holder to request payment, or you can " -"unenroll from this course" -msgstr "由于未收到支付款,您无法访问此课程。您可以联系账号持有者来请求支付,或退出此门课程。" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You can no longer access this course because payment has not yet been " -"received. You can {contact_link_start}contact the account " -"holder{contact_link_end} to request payment, or you can " -"{unenroll_link_start}unenroll{unenroll_link_end} from this course" -msgstr "" -"由于尚未收到您的付款,您将无法访问该课程。您可以{contact_link_start}联系账号持有人{contact_link_end}请求付款,也可以{unenroll_link_start}放弃选修{unenroll_link_end}该课程" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Verification not yet complete." -msgstr "认证尚不完整" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You only have {days} day left to verify for this course." -msgid_plural "You only have {days} days left to verify for this course." -msgstr[0] "您还有 {days} 天时间认证此课程。" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Almost there!" -msgstr "马上就好了!" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You still need to verify for this course." -msgstr "您仍需为此课程进行认证" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Verify Now" -msgstr "认证" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "You have submitted your verification information." -msgstr "您已提交认证信息。" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You will see a message on your dashboard when the verification process is " -"complete (usually within 1-2 days)." -msgstr "当认证过程结束后,您会在您的课程面板中看到一条消息(通常在1-2天内)。" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Your current verification will expire soon!" -msgstr "您的现时验证将马上过期!" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"You have submitted your reverification information. You will see a message " -"on your dashboard when the verification process is complete (usually within " -"1-2 days)." -msgstr "您已提交重新认证信息,认证完成后将会在您面板中显示一条消息(一般1-2天内完成)。" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "EliteMBA has verified your identity!" -msgstr "英荔已经成功验证了您的身份!" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Your current verification is effective until {date}." -msgstr "在{date}之前您的验证状态都有效" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Your current verification will expire soon." -msgstr "您的现时验证将马上过期" - -#. Translators: start_link and end_link will be replaced with HTML tags; -#. please do not translate these. -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"Your current verification will expire in {days} days. {start_link}Re-verify " -"your identity now{end_link} using a webcam and a government-issued photo ID." -msgstr "您当前认证会在{days}天后过期,立即使用网络摄像头和政府发行的图片ID来{start_link}重新认证身份{end_link}。" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"Pursue a {cert_name_long} to highlight the knowledge and skills you gain in " -"this course." -msgstr "获取一个 {cert_name_long} 来突显您在此课程中获得的知识和技能。" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "" -"It's official. It's easily shareable. It's a proven motivator to complete " -"the course. {line_break}{link_start}Learn more about the verified " -"{cert_name_long}{link_end}." -msgstr "" -"证书由官方正式颁发,易于分享,已证明能激励学生完成课程。{line_break}{link_start}了解更多关于认证{cert_name_long}的信息{link_end}。" - -#: lms/templates/dashboard/_dashboard_course_listing.html -msgid "Upgrade to Verified" -msgstr "升级到验证" - -#. Translators: provider_name is the name of a credit provider or university -#. (e.g. State University) -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "" -"You have completed this course and are eligible to purchase course credit. " -"Select Get Credit to get started." -msgstr "您已完成此课程并有资格购买课程学分。选择获得学分开始。" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "You are now eligible for credit from {provider}. Congratulations!" -msgstr "现在,您有资格从 {provider} 获得学分。恭喜您!" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "Get Credit" -msgstr "获得学分" - -#. Translators: link_to_provider_site is a link to an external webpage. The -#. text of the link will be the name of a credit provider, such as 'State -#. University' or 'Happy Fun Company'. -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "" -"Thank you for your payment. To receive course credit, you must now request " -"credit at the {link_to_provider_site} website. Select Request Credit " -"to get started." -msgstr "感谢您的付款。要获得课程学分,您现在必须在 {link_to_provider_site} 网站申请学分。选择申请学分开始。" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "Request Credit" -msgstr "申请学分" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "" -"{provider_name} has received your course credit request. We will update you " -"when credit processing is complete." -msgstr "{provider_name} 已收到您的课程学分申请。完成学分处理后我们将通知您。" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "View Details" -msgstr "查看详情" - -#. Translators: link_to_provider_site is a link to an external webpage. The -#. text of the link will be the name of a credit provider, such as 'State -#. University' or 'Happy Fun Company'. provider_name is the name of credit -#. provider. -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "" -"Congratulations! {provider_name} has approved your request for course" -" credit. To see your course credit, visit the {link_to_provider_site} " -"website." -msgstr "" -"恭喜您! {provider_name} 已批准您的课程学分申请。要查看您的课程学分,请访问 " -"{link_to_provider_site} 网站。" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "View Credit" -msgstr "查看认证" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "" -"{provider_name} did not approve your request for course credit. For more " -"information, contact {link_to_provider_site} directly." -msgstr "{provider_name} 未批准您的课程学分申请。欲了解更多信息,请直接联系 {link_to_provider_site}。" - -#: lms/templates/dashboard/_dashboard_credit_info.html -msgid "" -"An error occurred with this transaction. For help, contact {support_email}." -msgstr "本次交易出错了。联系{support_email}寻求帮助。" - -#: lms/templates/dashboard/_dashboard_entitlement_actions.html -msgid "Course options for {courseName}" -msgstr "{courseName}的课程选项" - -#: lms/templates/dashboard/_dashboard_show_consent.html -msgid "Consent to share your data" -msgstr "批准分享您的数据" - -#: lms/templates/dashboard/_dashboard_show_consent.html -msgid "" -"To access this course, you must first consent to share your learning " -"achievements with {enterprise_customer_name}." -msgstr "您必须允许与{enterprise_customer_name}分享您的学习成就,才能访问此课程" - -#: lms/templates/dashboard/_dashboard_show_consent.html -msgid "View Consent" -msgstr "查看批准" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "Current Verification Status: Approved" -msgstr "当前认证状态:已批准" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "" -"Your EliteMBA verification has been approved. Your verification is effective" -" for one year after submission." -msgstr "您的EliteMBA认证已通过,提交后一年内有效。" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "Current Verification Status: Pending" -msgstr "当前认证状态:待处理" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "" -"Your EliteMBA ID verification is pending. Your verification information has " -"been submitted and will be reviewed shortly." -msgstr "您的身份认证正在进行中,您的认证信息已提交,我们会尽快审查您的认证。" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "Current Verification Status: Denied" -msgstr "当前认证状态:未通过" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "" -"Your verification submission was not accepted. To receive a verified " -"certificate, you must submit a new photo of yourself and your government-" -"issued photo ID before the verification deadline for your course." -msgstr "您的认证提交未被接受。您必须在您课程认证的截止日期前提交一张新照片和政府签发的身份证件,才可以收到认证证书。" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "Your verification was denied for the following reasons:" -msgstr "您认证未通过的理由如下:" - -#: lms/templates/dashboard/_dashboard_status_verification.html -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "Resubmit Verification" -msgstr "重新提交认证" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "Current Verification Status: Expired" -msgstr "当前认证状态:已过期" - -#: lms/templates/dashboard/_dashboard_status_verification.html -msgid "" -"Your verification has expired. To receive a verified certificate, you must " -"submit a new photo of yourself and your government-issued photo ID before " -"the verification deadline for your course." -msgstr "您的认证已过期,您必须在您课程的认证截止日期前提交新照片和政府发行的身份证明,才可以获取认证证书。" - -#: lms/templates/dashboard/_dashboard_third_party_error.html -msgid "Could Not Link Accounts" -msgstr "无法关联账号" - -#. Translators: this message is displayed when a user tries to link their -#. account with a third-party authentication provider (for example, Google or -#. LinkedIn) with a given edX account, but their third-party account is -#. already -#. associated with another edX account. provider_name is the name of the -#. third-party authentication provider, and platform_name is the name of the -#. edX deployment. -#: lms/templates/dashboard/_dashboard_third_party_error.html -msgid "" -"The {provider_name} account you selected is already linked to another " -"{platform_name} account." -msgstr "您选择的 {provider_name}账号已经和{platform_name}账号相关联。" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "" -"We're sorry to see you go! Please share your main reason for unenrolling." -msgstr "很遗憾您要退选课程!希望您可以告诉我们退选课程的主要原因。" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "I just wanted to browse the material" -msgstr "我只想浏览材料" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "This won't help me reach my goals" -msgstr "此门课程无法帮助我达到学习目标" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "I don't have the time" -msgstr "没时间" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "I don't have the academic or language prerequisites" -msgstr "我不具备学术或语言先修条件" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "I don't have enough support" -msgstr "我不具备足够的支持条件" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "I am not happy with the quality of the content" -msgstr "我对内容质量不满意" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "The course material was too hard" -msgstr "课程材料太难" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "The course material was too easy" -msgstr "课程材料太简单" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Something was broken" -msgstr "出错了" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Other" -msgstr "其他" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Thank you for sharing your reasons for unenrolling." -msgstr "感谢您告知我们原因。" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "You are unenrolled from" -msgstr "您已退选" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Return To Dashboard" -msgstr "返回面板" - -#: lms/templates/dashboard/_entitlement_reason_survey.html -#: lms/templates/dashboard/_reason_survey.html -msgid "Browse Courses" -msgstr "浏览课程" - -#: lms/templates/debug/run_python_form.html -msgid "Results:" -msgstr "结果:" - -#: lms/templates/discussion/_discussion_inline.html -msgid "Topic:" -msgstr "主题:" - -#: lms/templates/discussion/_discussion_inline.html -msgid "Show Discussion" -msgstr "显示讨论" - -#: lms/templates/discussion/_discussion_inline_studio.html -msgid "To view live discussions, click Preview or View Live in Unit Settings." -msgstr "要查看现场讨论,请在单元设置中点击“预览”或“现场查看”" - -#: lms/templates/discussion/_discussion_inline_studio.html -msgid "Discussion ID: {discussion_id}" -msgstr "讨论区用户名:{discussion_id}" - -#: lms/templates/discussion/_filter_dropdown.html -msgid "Discussion topics list" -msgstr "讨论主题列表" - -#: lms/templates/discussion/_filter_dropdown.html -msgid "Filter Topics" -msgstr "过滤主题" - -#: lms/templates/discussion/_filter_dropdown.html -msgid "filter topics" -msgstr "过滤主题" - -#: lms/templates/discussion/_filter_dropdown.html -msgid "All Discussions" -msgstr "所有讨论" - -#: lms/templates/discussion/_filter_dropdown.html -msgid "Posts I'm Following" -msgstr "我关注的讨论帖" - -#. Translators: This labels a filter menu in forum navigation -#: lms/templates/discussion/_thread_list_template.html -msgid "Filter:" -msgstr "过滤器:" - -#. Translators: This is a menu option for showing all forum threads unfiltered -#: lms/templates/discussion/_thread_list_template.html -msgid "Show all posts" -msgstr "显示所有帖子" - -#. Translators: This is a menu option for showing only unread forum threads -#: lms/templates/discussion/_thread_list_template.html -msgid "Unread posts" -msgstr "未读讨论帖" - -#. Translators: This is a menu option for showing only unanswered forum -#. question threads -#: lms/templates/discussion/_thread_list_template.html -msgid "Unanswered posts" -msgstr "未答复的讨论帖" - -#. Translators: This is a menu option for showing only forum threads flagged -#. for abuse -#: lms/templates/discussion/_thread_list_template.html -msgid "Flagged" -msgstr "已标记" - -#. Translators: This labels a group menu in forum navigation -#: lms/templates/discussion/_thread_list_template.html -msgid "Group:" -msgstr "分组:" - -#: lms/templates/discussion/_thread_list_template.html -msgid "in all groups" -msgstr "在所有分组中" - -#. Translators: This labels a sort menu in forum navigation -#: lms/templates/discussion/_thread_list_template.html -msgid "Sort:" -msgstr "排序:" - -#. Translators: This is a menu option for sorting forum threads -#: lms/templates/discussion/_thread_list_template.html -msgid "by recent activity" -msgstr "近期活动" - -#. Translators: This is a menu option for sorting forum threads -#: lms/templates/discussion/_thread_list_template.html -msgid "by most activity" -msgstr "活跃度" - -#. Translators: This is a menu option for sorting forum threads -#: lms/templates/discussion/_thread_list_template.html -msgid "by most votes" -msgstr "最多票数" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Student Notes" -msgstr "学生笔记" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Notes" -msgstr "笔记" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Highlights and notes you've made in course content" -msgstr "您在课程内容里高亮和笔记的内容" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Search notes for:" -msgstr "搜索笔记:" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Search notes for..." -msgstr "搜索笔记..." - -#: lms/templates/edxnotes/edxnotes.html -msgid "View notes by:" -msgstr "浏览笔记:" - -#: lms/templates/edxnotes/edxnotes.html -msgid "" -"You have not made any notes in this course yet. Other students in this " -"course are using notes to:" -msgstr "您在本课中尚未做任何笔记。其他学生在本课程中使用笔记:" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Mark a passage or concept so that it's easy to find later." -msgstr "标记一段文章或一个概念,以便日后查找。" - -#: lms/templates/edxnotes/edxnotes.html -msgid "Record thoughts about a specific passage or concept." -msgstr "记录有关具体文章或概念的想法。" - -#: lms/templates/edxnotes/edxnotes.html -msgid "" -"Highlight important information to review later in the course or in future " -"courses." -msgstr "在此课或者未来的课程中突出重要信息以便日后回顾。" - -#: lms/templates/edxnotes/edxnotes.html -msgid "" -"Get started by making a note in something you just read, like " -"{section_link}." -msgstr "开始,在您刚读的东西,如{section_link}。" - -#: lms/templates/edxnotes/toggle_notes.html -msgid "Hide notes" -msgstr "隐藏注释" - -#: lms/templates/edxnotes/toggle_notes.html -msgid "Show notes" -msgstr "显示注释" - -#: lms/templates/elitemba/hmm.html -#: lms/templates/header/navbar-authenticated.html -msgid "Harvard Learning Camp" -msgstr "哈佛学习营" - -#: lms/templates/emails/activation_email.txt -msgid "" -"You're almost there! Use the link to activate your account to access " -"engaging, high-quality {platform_name} courses. Note that you will not be " -"able to log back into your account until you have activated it." -msgstr "注册差不多完成啦!点击链接激活您的账号,体验{platform_name}的精品课程。注意,您必须激活账号才可以登录。" - -#: lms/templates/emails/activation_email.txt -#: lms/templates/emails/confirm_email_change.txt -#: lms/templates/emails/failed_verification_email.txt -#: lms/templates/emails/order_confirmation_email.txt -#: lms/templates/emails/photo_submission_review.txt -#: lms/templates/emails/reverification_processed.txt -msgid "" -"(If the link is not clickable, try copying and pasting it into the address " -"bar of your web browser, and press \"Enter\" key to open the page)" -msgstr "(如链接点击无效,请手动复制链接并粘贴到浏览器地址栏中,然后按“回车”打开页面即可)" - -#: lms/templates/emails/activation_email.txt -msgid "Initial password:{third_party_auth_pw}" -msgstr "初始密码:{third_party_auth_pw}" - -#: lms/templates/emails/activation_email.txt -msgid "Enjoy learning with {platform_name}." -msgstr "享受您在{platform_name}上的学习之旅。" - -#: lms/templates/emails/activation_email.txt -msgid "" -"If you need help, please use our web form at {support_url} or email " -"{support_email}." -msgstr "如需帮助,请访问我们的网站{support_url} 或发邮件至{support_email} 。" - -#: lms/templates/emails/activation_email.txt -msgid "" -"This email message was automatically sent by {lms_url} because someone " -"attempted to create an account on {platform_name} using this email address." -msgstr "这是一封由{lms_url} 自动发送的邮件,通知您有人使用此邮箱地址注册{platform_name}账号。" - -#: lms/templates/emails/activation_email_subject.txt -msgid "Action Required: Activate your {platform_name} account" -msgstr "您必须激活您的{platform_name}账号" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Thank you for your purchase of " -msgstr "谢谢您购买" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Your payment was successful." -msgstr "您已成功付款。" - -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "" -"If you have billing questions, please read the FAQ ({faq_url}) or contact " -"{billing_email}." -msgstr "如果您对账单有疑问,请阅读FAQ({faq_url} )或给{billing_email} 发邮件。" - -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "If you have billing questions, please contact {billing_email}." -msgstr "如果您对账单有疑问,请给{billing_email}发邮件。" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"{order_placed_by} placed an order and mentioned your name as the " -"Organization contact." -msgstr "{order_placed_by}下了一个订单并将您添加为机构联系人。" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"{order_placed_by} placed an order and mentioned your name as the additional " -"receipt recipient." -msgstr "{order_placed_by}下了一个订单,并将您添加为额外的收据收件人 " - -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "The items in your order are:" -msgstr "您的订单细目为:" - -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "Quantity - Description - Price" -msgstr "数量 - 描述 - 价格" - -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" -msgstr "信用卡/借记卡总支付额为: {currency_symbol}{total_cost}" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Company Name:" -msgstr "公司名称:" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Purchase Order Number:" -msgstr "订单号" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Company Contact Name:" -msgstr "公司联系人姓名" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Company Contact Email:" -msgstr "公司联系邮箱" - -#. Translators: this will be the name of a person receiving an email -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Recipient Name:" -msgstr "收件人姓名" - -#. Translators: this will be the email address of a person receiving an email -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Recipient Email:" -msgstr "收件人邮箱" - -#: lms/templates/emails/business_order_confirmation_email.txt -#: lms/templates/emails/order_confirmation_email.txt -msgid "#:" -msgstr "#:" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Order Number: {order_number}" -msgstr "订单号: {order_number}" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"A CSV file of your registration URLs is attached. Please distribute " -"registration URLs to each student planning to enroll using the email " -"template below." -msgstr "包含您注册URL的CSV文件已附上。请使用以下邮件模板将注册URL分发给每个计划招收的学生。" - -#. Translators: This is followed by the instructor or course team name (so -#. could be singular or plural) -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Warm regards," -msgstr "诚挚的问候," - -#. Translators: The
    is a line break (empty line), please keep this html -#. in -#. the string after the sign off. -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Warm regards,
    The {platform_name} Team" -msgstr "诚挚的问候,
    {platform_name} 团队" - -#. Translators: please translate the text inside [[ ]]. This is meant as a -#. template for course teams to use. -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Dear [[Name]]" -msgstr "亲爱的[[名字]]" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"To enroll in {course_names} we have provided a registration URL for you. " -"Please follow the instructions below to claim your access." -msgstr "我们为您提供了一个注册URL来选修{course_names}。请按照以下说明来获得您的权限。" - -#. Translators: please translate the text inside [[ ]]. This is meant as a -#. template for course teams to use. -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "Your redeem url is: [[Enter Redeem URL here from the attached CSV]]" -msgstr "您的兑换URL是:[[在此输入从附件CSV中找到的兑换链接]]" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "(1) Register for an account at {site_name}" -msgstr "(1) 在 {site_name}注册一个账号" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"(2) Once registered, copy the redeem URL and paste it in your web browser." -msgstr "(2)注册完成后,复制兑换URL地址并且粘帖到您的web浏览器地址栏" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"(3) On the enrollment confirmation page, Click the 'Activate Enrollment " -"Code' button. This will show the enrollment confirmation." -msgstr "(3) 在选课确认页面,点击“激活选课码”按钮,您将看到选课确认信息。" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"(4) You should be able to click on 'view course' button or see your course " -"on your student dashboard at {url}" -msgstr "(4)您可以点击“查看课程”按钮或者通过{url} 处的学生课程面板查看您的课程。" - -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "" -"(5) Course materials will not be available until the course start date." -msgstr "(5) 课程开始后课程资料才可用。" - -#. Translators: please translate the text inside [[ ]]. This is meant as a -#. template for course teams to use. Please also keep the

    and

    HTML -#. tags in place. -#: lms/templates/emails/business_order_confirmation_email.txt -msgid "

    Sincerely,

    [[Your Signature]]

    " -msgstr "

    诚挚的,

    [[您的签名]]

    " - -#: lms/templates/emails/confirm_email_change.txt -msgid "" -"This is to confirm that you changed the e-mail associated with " -"{platform_name} from {old_email} to {new_email}. If you did not make this " -"request, please contact us immediately. Contact information is listed at:" -msgstr "" -"这封邮件是为了确认您和 {platform_name} 之间的电子邮件关联由 {old_email} 变更为 " -"{new_email}。如果您并没有发出该请求,请立即联系我们。联系信息已在以下页面中列出:" - -#: lms/templates/emails/confirm_email_change.txt -#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt -msgid "" -"We keep a log of old e-mails, so if this request was unintentional, we can " -"investigate." -msgstr "我们保存着旧电子邮件信息的日志,所以如果该请求并非是您有意发出的,我们可以对此进行调查。" - -#: lms/templates/emails/email_change_subject.txt -msgid "Request to change {platform_name} account e-mail" -msgstr "变更 {platform_name} 账号电子邮件的请求" - -#: lms/templates/emails/failed_verification_email.txt -msgid "" -"Sorry! The photos you submitted for ID verification were not accepted, for " -"the following reason(s):" -msgstr "对不起!您为ID验证提供的照片没有通过,原因(或多个)如下:" - -#: lms/templates/emails/failed_verification_email.txt -msgid "The photo(s) of you:" -msgstr "您的照片(多张):" - -#: lms/templates/emails/failed_verification_email.txt -msgid "Resubmit Verification: {reverify_url}" -msgstr "重新认证: {reverify_url}" - -#: lms/templates/emails/failed_verification_email.txt -#: lms/templates/emails/order_confirmation_email.txt -#: lms/templates/emails/passed_verification_email.txt -#: lms/templates/emails/photo_submission_confirmation.txt -#: lms/templates/emails/photo_submission_review.txt -msgid "Thank you," -msgstr "谢谢," - -#: lms/templates/emails/failed_verification_email.txt -#: lms/templates/emails/passed_verification_email.txt -#: lms/templates/emails/photo_submission_confirmation.txt -#: lms/templates/emails/photo_submission_review.txt -#: lms/templates/emails/reverification_processed.txt -msgid "The {platform_name} team" -msgstr "{platform_name}团队" - -#: lms/templates/emails/order_confirmation_email.txt -msgid "" -"Your payment was successful. You will see the charge below on your next " -"credit or debit card statement under the company name {merchant_name}." -msgstr "您已付款成功。您最近一期的信用卡或储蓄卡结单将会包括来自公司名{merchant_name}的扣款。" - -#: lms/templates/emails/order_confirmation_email.txt -msgid "Your order number is: {order_number}" -msgstr "您的订单号为:{order_number}" - -#: lms/templates/emails/passed_verification_email.txt -msgid "Hi {full_name}" -msgstr " {full_name} 您好" - -#: lms/templates/emails/passed_verification_email.txt -msgid "Congratulations! Your ID verification process was successful." -msgstr "恭喜您的身份ID认证成功。" - -#: lms/templates/emails/passed_verification_email.txt -msgid "" -"Your verification is effective for one year. It will expire on {expiry_date}" -msgstr "您的验证有效期为一年。它将在{expiry_date}过期" - -#: lms/templates/emails/photo_submission_confirmation.txt -msgid "Hi {full_name}," -msgstr "{full_name}您好," - -#: lms/templates/emails/photo_submission_confirmation.txt -msgid "Thanks for submitting your photos!" -msgstr "谢谢您的照片提交!" - -#: lms/templates/emails/photo_submission_confirmation.txt -msgid "" -"We've received your information and the ID verification process has " -"begun.Check for an email from us in the next few days to confirm whether " -"your verification was successful.You can also check the status of the " -"verification process on your dashboard." -msgstr "" -"我们已收到您的信息,并且身份认证流程已开始。请在接下来几天内查看我们给您发的一封邮件,以确认您认证是否成功。您也可以在面板中查看您的认证状态。" - -#: lms/templates/emails/photo_submission_review.txt -msgid "Review ID Verification Photos" -msgstr "查看身份证件照片" - -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "Thank you for purchasing enrollments in {course_name}." -msgstr "感谢您购买{course_name}。" - -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "" -"An invoice for {currency_symbol}{total_price} is attached. Payment is due " -"upon receipt. You can find information about payment methods on the invoice." -msgstr "{currency_symbol}{total_price}的发票已附上。您在收到发票后需立即付款。您可以在发票里找到付款方式。" - -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "" -"A .csv file that lists your enrollment codes is attached. You can use the " -"email template below to distribute enrollment codes to your students. Each " -"student must use a separate enrollment code." -msgstr "附件中是带有您的选课码的.csv文件。您可以使用下面的邮件模板将选课码分发给您的学生。每个学生必须使用一个单独的选课码。" - -#. Translators: This is the signature of an email. "\n" is a newline -#. character -#. and should be placed between the closing word and the signature. -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "" -"Thanks,\n" -"The {platform_name} Team" -msgstr "" -"谢谢,\n" -"{platform_name}团队" - -#. Translators: please translate the text inside [[ ]]. This is meant as a -#. template for course teams to use. -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "Dear [[Name]]:" -msgstr "亲爱的 [[Name]]:" - -#. Translators: please translate the text inside [[ ]]. This is meant as a -#. template for course teams to use. -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "" -"We have provided a course enrollment code for you in {course_name}. To " -"enroll in the course, click the following link:" -msgstr "我们为您提供了一个{course_name}选课码。参加该课程,请点击以下链接:" - -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "HTML link from the attached CSV file" -msgstr "附件CSV文件中的html链接" - -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "" -"After you enroll, you can see the course on your student dashboard. You can " -"see course materials after the course start date." -msgstr "在您选课之后,您可以在您的学生课程面板中看到该课程。在课程开始后,您就可以看到课程的相关资料。" - -#. Translators: please translate the text inside [[ ]]. This is meant as a -#. template for course teams to use. -#. This is the signature of an email. "\n" is a newline character -#. and should be placed between the closing word and the signature. -#: lms/templates/emails/registration_codes_sale_email.txt -msgid "" -"Sincerely,\n" -"[[Your Signature]]" -msgstr "" -"诚挚的,\n" -"[[您的签名]]" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "INVOICE" -msgstr "发票" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Date: {date}" -msgstr "日期: {date}" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Invoice No: {invoice_number}" -msgstr "发票号码: {invoice_number}" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Terms: Due Upon Receipt" -msgstr "条款:收到付款" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Due Date: {date}" -msgstr "截止日期: {date}" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Bill to:" -msgstr "付款给:" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Customer Reference Number: {reference_number}" -msgstr "客户参考编码: {reference_number}" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Balance Due: {currency_symbol}{sale_price}" -msgstr "应付金额: {currency_symbol}{sale_price}" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Course: {course_name}" -msgstr "课程名称: {course_name}" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "" -"Price: {currency_symbol}{course_price} Quantity: {quantity} " -"Sub-Total: {currency_symbol}{sub_total} Discount: " -"{currency_symbol}{discount}" -msgstr "" -"价格: {currency_symbol}{course_price} 数量: {quantity} 小计: " -"{currency_symbol}{sub_total} 折扣: {currency_symbol}{discount}" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Total: {currency_symbol}{sale_price}" -msgstr "总计: {currency_symbol}{sale_price}" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "Payment Instructions" -msgstr "支付说明" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "" -"If we do not receive payment, the learner enrollments that use these codes " -"will be canceled and learners will not be able to access course materials. " -"All purchases are final. For more information, see the {site_name} " -"cancellation policy." -msgstr "" -"如果我们没有收到付款,使用这些选课码的学生将被取消上课资格并无法访问课程资料。所有付款都无法退换。欲了解更多信息,请参见{site_name}取消政策。" - -#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt -msgid "For payment questions, contact {contact_email}" -msgstr "支付问题请联系{contact_email}" - -#: lms/templates/emails/reject_name_change.txt -msgid "" -"We are sorry. Our course staff did not approve your request to change your " -"name from {old_name} to {new_name}. If you need further assistance, please " -"e-mail the course staff at {email}." -msgstr "" -"我们很抱歉。我们的课程工作人员没有批准您的名字请求改变:从{old_name} " -"改变至{new_name}。如果您需要进一步的帮助,请给课程工作人员发邮件:{email}。" - -#: lms/templates/emails/reverification_processed.txt -msgid "" -"We have successfully verified your identity for the {assessment} assessment " -"in the {course_name} course." -msgstr "我们已经为您在课程{course_name}中的{assessment} 评估成功地验证了您的身份。" - -#: lms/templates/emails/reverification_processed.txt -msgid "" -"We could not verify your identity for the {assessment} assessment in the " -"{course_name} course. You have used {used_attempts} out of " -"{allowed_attempts} attempts to verify your identity." -msgstr "" -"我们无法为您在课程 " -"{course_name}中的评估{assessment}验证身份。您已经使用了{allowed_attempts}次允许的中的{used_attempts}" -" 试图验证您的身份。" - -#: lms/templates/emails/reverification_processed.txt -msgid "" -"You must verify your identity before the assessment closes on {due_date}." -msgstr "您必须核实您的身份在评估关闭{due_date}。" - -#: lms/templates/emails/reverification_processed.txt -msgid "To try to verify your identity again, select the following link:" -msgstr "尝试再次核实您的身份,选择下面的链接:" - -#: lms/templates/emails/reverification_processed.txt -msgid "" -"We could not verify your identity for the {assessment} assessment in the " -"{course_name} course. You have used {used_attempts} out of " -"{allowed_attempts} attempts to verify your identity, and verification is no " -"longer possible." -msgstr "" -"我们无法验证为您在课程{course_name}中的评估{assessment}验证身份。您已尝试了{used_attempts} " -"次,验证身份尝试次数最多为{allowed_attempts}次。" - -#: lms/templates/emails/reverification_processed.txt -msgid "To go to the courseware, select the following link:" -msgstr "去看课件,选择以下链接:" - -#: lms/templates/emails/reverification_processed.txt -msgid "" -"If you have any questions, you can contact student support at " -"{support_link}." -msgstr "如果您有任何问题,您可以联系学生支持团队{support_link}。" - -#: lms/templates/emails/reverification_processed.txt -msgid "Thanks," -msgstr "谢谢," - -#: lms/templates/embargo/default_courseware.html -#: lms/templates/embargo/default_enrollment.html -#: lms/templates/static_templates/embargo.html -#: themes/stanford-style/lms/templates/embargo/default_courseware.html -#: themes/stanford-style/lms/templates/embargo/default_enrollment.html -#: themes/stanford-style/lms/templates/static_templates/embargo.html -msgid "This Course Unavailable In Your Country" -msgstr "这门课程未在您的国家开设" - -#: lms/templates/embargo/default_courseware.html -msgid "" -"Our system indicates that you are trying to access this {platform_name} " -"course from a country or region in which it is not currently available." -msgstr "我们的系统显示您想选修的{platform_name}课程在您所在的国家或地区没有开设。" - -#: lms/templates/embargo/default_enrollment.html -msgid "" -"Our system indicates that you are trying to enroll in this {platform_name} " -"course from a country or region in which it is not currently available." -msgstr "我们的系统检测到您尝试注册{platform_name}的课程,它目前在您所在的国家或地区没有开设。" - -#: lms/templates/enrollment/course_enrollment_message.html -msgid "Enrollment Successful" -msgstr "选课成功" - -#: lms/templates/enrollment/course_enrollment_message.html -msgid "" -"Thank you for enrolling in {course_names}. We hope you enjoy the course." -msgstr "感谢您报名{course_names},希望您学习旅途愉快。" - -#: lms/templates/enrollment/course_enrollment_message.html -msgid "Thank you for enrolling in:" -msgstr "感谢您报名:" - -#: lms/templates/enrollment/course_enrollment_message.html -msgid "We hope you enjoy the course." -msgstr "祝您学习愉快。" - -#: lms/templates/enrollment/course_enrollment_message.html -msgid "" -"{platform_name} is a nonprofit bringing high-quality education to everyone, " -"everywhere. Your help allows us to continuously improve the learning " -"experience for millions and make a better future one learner at a time." -msgstr "" -"{platform_name}是一个非营利性组织,给任何地方的任何人带来高质量的教育。您的帮助使我们能够一步一个脚印、不断地为成千上万的学习者改善学习体验,创造美好的未来。" - -#: lms/templates/enrollment/course_enrollment_message.html -msgid "Donation Actions" -msgstr "捐赠行为" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "Financial Assistance Application" -msgstr "经济援助申请" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "A Note to Learners" -msgstr "学员须知" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "Dear EliteMBA Learner," -msgstr "亲爱的 EliteMBA 学员:" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "" -"EliteMBA Financial Assistance is a program we created to give learners in " -"all financial circumstances a chance to earn a Verified Certificate upon " -"successful completion of an EliteMBA course." -msgstr "EliteMBA 经济援助项目旨在让各种经济状况的学员都有一个在成功完成 EliteMBA 课程后获得验证证书的机会。" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "" -"If you are interested in working toward a Verified Certificate, but cannot " -"afford to pay the fee, please apply now. Please note that financial " -"assistance is limited and may not be awarded to all eligible candidates." -msgstr "如果您对获得验证证书感兴趣但无法承担费用,请现在就来提出申请。请注意,经济援助是有限的且可能无法授予所有符合条件的申请者。" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "" -"In order to be eligible for EliteMBA Financial Assistance, you must " -"demonstrate that paying the Verified Certificate fee would cause you " -"economic hardship. To apply, you will be asked to answer a few questions " -"about why you are applying and how the Verified Certificate will benefit " -"you." -msgstr "" -"要符合 EliteMBA " -"经济援助的资格条件,您必须证明支付验证证书费用会导致您经济困难。为了进行申请,您可能会被要求回答一些关于您为何申请验证证书以及验证证书会给您带来哪些好处的问题。" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "" -"If your application is approved, we'll give you instructions for verifying " -"your identity on EliteMBA.cn so you can start working toward completing your" -" EliteMBA course." -msgstr "" -"如果您的申请被批准,我们将为您提供在 EliteMBA.cn 上验证您的身份的相关说明,以便您可以开始着手完成您的 EliteMBA 课程。" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "" -"EliteMBA is committed to making it possible for you to take high quality " -"courses from leading institutions regardless of your financial situation, " -"earn a Verified Certificate, and share your success with others." -msgstr "无论您的经济状况如何,EliteMBA 都致力于让您从各领先机构获得高质量的课程,让您获得验证证书并与他人分享您的成功。" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "Sincerely, Anant" -msgstr "Anant 谨上" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "Back to Student FAQs" -msgstr "返回至学生常见问题解答" - -#: lms/templates/financial-assistance/financial-assistance.html -msgid "Apply for Financial Assistance" -msgstr "申请经济资助" - -#: lms/templates/header/brand.html -#: lms/templates/header/navbar-logo-header.html -#: lms/templates/navigation/navbar-logo-header.html -#: lms/templates/navigation/bootstrap/navbar-logo-header.html -msgid "{platform_name} Home Page" -msgstr "{platform_name} 主页" - -#: lms/templates/header/header.html lms/templates/header/user_dropdown.html -msgid "Options Menu" -msgstr "选项栏" - -#: lms/templates/header/header.html lms/templates/navigation/navigation.html -msgid "" -"{begin_strong}Warning:{end_strong} Your browser is not fully supported. We " -"strongly recommend using {chrome_link} or {ff_link}." -msgstr "" -"{begin_strong}警告:{end_strong}并不完全支持您的浏览器。我们强烈推荐使用 {chrome_link} 或 {ff_link}。" - -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/learner_dashboard/programs.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Programs" -msgstr "程式" - -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Journals" -msgstr "文章" - -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/header/user_dropdown.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Profile" -msgstr "用户资料" - -#: lms/templates/header/navbar-authenticated.html -msgid "Discover New" -msgstr "发现课程" - -#. Translators: This is short for "System administration". -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -msgid "Sysadmin" -msgstr "系统管理员" - -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/header/navbar-not-authenticated.html -msgid "Membership" -msgstr "会员" - -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/header/navbar-not-authenticated.html -msgid "Professor" -msgstr "教授" - -#: lms/templates/header/navbar-authenticated.html -msgid "Date of Expiry: " -msgstr "有效期至:" - -#: lms/templates/header/navbar-authenticated.html -#: lms/templates/navigation/navbar-authenticated.html -#: lms/templates/navigation/bootstrap/navbar-authenticated.html -#: lms/templates/shoppingcart/shopping_cart.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Shopping Cart" -msgstr "购物车" - -#: lms/templates/header/navbar-not-authenticated.html -msgid "Supplemental Links" -msgstr "补充内容链接" - -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "How it Works" -msgstr "运行机制" - -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -msgid "Schools" -msgstr "学校" - -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/header/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: lms/templates/navigation/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html -msgid "Sign in" -msgstr "登录" - -#: lms/templates/header/user_dropdown.html -msgid "Resume your last course" -msgstr "继续上门课程学习" - -#: lms/templates/header/user_dropdown.html -msgid "VIP Center" -msgstr "会员中心" - -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Add Coupon Code" -msgstr "添加优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -msgid "Enter information about the coupon code below." -msgstr "在下面输入优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Coupon Code" -msgstr "优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -msgid "Discount Percentage" -msgstr "折扣率" - -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Description" -msgstr "描述" - -#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html -msgid "Add expiration date" -msgstr "添加过期时间" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Example Certificates" -msgstr "示例证书" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Generate example certificates for the course." -msgstr "为课程生成示例证书。" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Generate Example Certificates" -msgstr "生成示例证书" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Status:" -msgstr "状态:" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Generating example {name} certificate" -msgstr "生成示例 {name} 证书" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Error generating example {name} certificate: {error}" -msgstr "生成证书{name}示例出错了:{error}" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "View {name} certificate" -msgstr "查看{name}证书" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Refresh Status" -msgstr "刷新状态" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Student-Generated Certificates" -msgstr "学生生成证书" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Disable Student-Generated Certificates" -msgstr "禁止学生生成证书" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Enable Student-Generated Certificates" -msgstr "允许学生发行的证书" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "" -"You must successfully generate example certificates before you enable " -"student-generated certificates." -msgstr "前您必须成功地生成示例证书使学生证书。" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Generate Certificates" -msgstr "生成证书" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "" -"Course certificate generation requires an activated web certificate " -"configuration." -msgstr "课程证书生成操作要求有一个已激活的网络证书配置。" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "" -"When you are ready to generate certificates for your course, click Generate " -"Certificates. You do not need to do this if you have set the certificate " -"mode to on-demand generation." -msgstr "当您准备好为您的课程生成证书时,请单击“生成证书”。如果您已将证书模式设置为按需生成,则无需进行此操作。" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Pending Tasks" -msgstr "待处理的任务" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "The status for any active tasks appears in a table below." -msgstr "下表显示所有活动任务的状态。" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Regenerate Certificates" -msgstr "重新生成证书" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "" -"To regenerate certificates for your course, choose the learners who will " -"receive regenerated certificates and click Regenerate Certificates." -msgstr "要重新生成您的课程证书,请选择将要接收重新生成证书的学员并单击“重新生成证书”。" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Choose learner types for regeneration" -msgstr "选择要学习者类型以进行重新生成" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "" -"Regenerate for learners who have already received certificates. ({count})" -msgstr "为已获得证书的学员重新生成。({count})" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Regenerate for learners who have not received certificates. ({count})" -msgstr "为未获得证书的学员重新生成。({count})" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Regenerate for learners with audit passing state. ({count})" -msgstr "给课程旁听及格的学员重新生成证书。({count})" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Regenerate for learners with audit not passing state. ({count})" -msgstr "给课程旁听不及格的学员重新生成证书。({count})" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Regenerate for learners in an error state. ({count})" -msgstr "为错误状态的学员重新生成。({count})" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Certificate Generation History" -msgstr "证书生成历史" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Task name" -msgstr "任务名称" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "SET CERTIFICATE EXCEPTIONS" -msgstr "设置证书特殊处理" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "" -"Set exceptions to generate certificates for learners who did not qualify for" -" a certificate but have been given an exception by the course team. After " -"you add learners to the exception list, click Generate Exception " -"Certificates below." -msgstr "为无资格获得证书但获得课程组例外批准的学员设置生成证书的特殊处理。在您将学员添加至特殊处理列表后,请单击以下“生成特例证书”。" - -#: lms/templates/instructor/instructor_dashboard_2/certificates.html -msgid "Invalidate Certificates" -msgstr "无效证书" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Enrollment Information" -msgstr "选课信息" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Number of enrollees (admins, staff, and students) by track" -msgstr "总参与人数(包括管理员、员工和学生)" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Verified" -msgstr "已认证" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Audit" -msgstr "旁听" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Honor" -msgstr "荣誉" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Professional" -msgstr "专业的" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Basic Course Information" -msgstr "基本课程信息" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Course Name:" -msgstr "课程名称:" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Course Start Date:" -msgstr "课程开始日期:" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Course End Date:" -msgstr "课程结束日期:" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "No end date set" -msgstr "未设置结束日期" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Has the course started?" -msgstr "课程开始了吗?" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Yes" -msgstr "是的" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "No" -msgstr "尚未" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Has the course ended?" -msgstr "课程结束了吗?" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Number of sections:" -msgstr "章节数量:" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Grade Cutoffs:" -msgstr "分数线:" - -#. Translators: git is a version-control system; see http://git-scm.com/about -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "" -"View detailed Git import logs for this course {link_start}by clicking " -"here{link_end}." -msgstr "查看本课程的详细Git导入日志,请点击{link_start}这里{link_end}。" - -#: lms/templates/instructor/instructor_dashboard_2/course_info.html -msgid "Course Warnings" -msgstr "课程警告" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Click to display the grading configuration for the course. The grading " -"configuration is the breakdown of graded subsections of the course (such as " -"exams and problem sets), and can be changed on the 'Grading' page (under " -"'Settings') in Studio." -msgstr "" -"点击显示该课程的评分配置。所谓评分配置是指对课程评分子项的分解(可以分解为考试和回答问题两类),评分配置可以在职员界面的‘设置’项下个‘评分’进行调整。" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Grading Configuration" -msgstr "评分标准设置" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Click to download a CSV of anonymized student IDs:" -msgstr "点击下载匿名学生的CSV(逗号分隔值的文本)编号清单:" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Get Student Anonymized IDs CSV" -msgstr "获取学生匿名ID CSV文件" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Reports" -msgstr "报告" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"For large courses, generating some reports can take several hours. When " -"report generation is complete, a link that includes the date and time of " -"generation appears in the table below. These reports are generated in the " -"background, meaning it is OK to navigate away from this page while your " -"report is generating." -msgstr "" -"对于大型课程,生成报告可能需要几个小时。当报告生成完成后,在下面的表格里会出现一个包含生成日期和时间的链接。这些报告会在后台生成,也就是说在生成报告的时候您可以离开当前页面。" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Please be patient and do not click these buttons multiple times. Clicking " -"these buttons multiple times will significantly slow the generation process." -msgstr "请耐心等待,不要多次单击这些按钮。多次点击这些按钮将大大减缓生成过程。" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Click to generate a CSV file of all students enrolled in this course, along " -"with profile information such as email address and username:" -msgstr "点击来生成一个CSV文件,里面包含所有选此课的学生的用户信息,比如电子邮件及用户名:" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download profile information as a CSV" -msgstr "以CSV格式下载用户资料" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Click to generate a CSV file that lists learners who can enroll in the " -"course but have not yet done so." -msgstr "点击生成一个CSV文件,列出有资格选修此课但还未选修的学生。" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of learners who can enroll" -msgstr "下载一个列出有资格选修的学生名单的CSV文件" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Click to generate a CSV file of all proctored exam results in this course." -msgstr "点击导出包含这门课程所有考试结果的CSV格式的文件" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Generate Proctored Exam Results Report" -msgstr "生成监考考试成绩报告" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Click to generate a CSV file of survey results for this course." -msgstr "点击导出包含这门课程所有调查结果的 CSV 文件" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Generate Survey Results Report" -msgstr "生成调查结果报告" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Select a problem to generate a CSV file that lists all student answers to " -"the problem. You also select a section or chapter to include results of all " -"problems in that section or chapter." -msgstr "生成列有所有学员对某个题目的作答的CSV文件,您也可以选择章节以将所有题目作答结果包含在文件内。" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "NOTE" -msgstr "注意" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"The generated report is limited to {max_entries} responses. If you expect " -"more than {max_entries} responses, try generating the report on a chapter-" -"by-chapter, or problem-by-problem basis, or contact your site administrator " -"to increase the limit." -msgstr "" -"生成的报告包含不得超过{max_entries}个回答。如果您希望包含超过{max_entries}个回答,请以章或问题为单位来生成报告,或者联系您的网站管理员来修改限制数量。" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download a CSV of problem responses" -msgstr "下载包含问题答案的CSV文件" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Click to list certificates that are issued for this course:" -msgstr "单击列出为此课程颁发的证书:" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "View Certificates Issued" -msgstr "查看已颁发证书" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Download CSV of Certificates Issued" -msgstr "下载已颁发证书的 CSV" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"For smaller courses, click to list profile information for enrolled students" -" directly on this page:" -msgstr "对于学员规模较小的课程,可以直接在此页面点击查看选课学生的用户资料信息:" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "List enrolled students' profile information" -msgstr "列出选课学生个人资料信息" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"Click to generate a CSV grade report for all currently enrolled students." -msgstr "点击导出包含当前所有选修学生的成绩报告的CSV文件。" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Generate Grade Report" -msgstr "生成成绩报告" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Generate Problem Grade Report" -msgstr "生成问题得分报告" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Generate ORA Data Report" -msgstr "生成 ORA 数据报告" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "Reports Available for Download" -msgstr "报告已可供下载" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"The reports listed below are available for download. A link to every report " -"remains available on this page, identified by the UTC date and time of " -"generation. Reports are not deleted, so you will always be able to access " -"previously generated reports from this page." -msgstr "" -"您可以下载以下列出的报告。每一份报告由生成的UTC日期和时间来标识,它们的链接将保留在本页面。报告不会被删除,所以您总是可以从本页访问以前生成的报告。" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"The answer distribution report listed below is generated periodically by an " -"automated background process. The report is cumulative, so answers submitted" -" after the process starts are included in a subsequent report. The report is" -" generated several times per day." -msgstr "下面所列的作答分布报告由后台程序定期自动生成。报告是累计式的,后台处理程序启动后提交的作答将在后续的报告中体现。报告每天生成多次。" - -#: lms/templates/instructor/instructor_dashboard_2/data_download.html -msgid "" -"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" -" or email these links for direct access. Copies of links expire within 5 " -"minutes." -msgstr "" -"{strong_start}注{strong_end}:为了确保学生数据的安全性,您无法保存或者用邮件发送这些有直接访问权的链接。复制的链接将在5分钟后失效。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enrollment Codes" -msgstr "选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create one or more pre-paid course enrollment codes. Students can use these " -"codes to enroll in the course." -msgstr "创建一个或者多个课程的预付费选课码。学生可以使用这些选课码选修该课程。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Create Enrollment Codes" -msgstr "生成选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel, restore, or mark an enrollment code as unused." -msgstr "取消、恢复或将一个选课码标记为未使用。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Change Enrollment Code Status" -msgstr "改变选课码状态" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all enrollment codes for this course." -msgstr "下载一个包含本课所有选课码的.csv文件" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Enrollment Codes" -msgstr "下载所有选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all unused enrollment codes for this course." -msgstr "下载一个包含本课中所有未使用选课码的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Unused Enrollment Codes" -msgstr "下载未使用的选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all used enrollment codes for this course." -msgstr "下载一个包含本课中所有使用过的选课码的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Used Enrollment Codes" -msgstr "下载使用过的选课码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Course Price" -msgstr "课程价格" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course price per seat: " -msgstr "每位学生需付的课程价格:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Edit Price" -msgstr "编辑价格" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Course Seat Purchases" -msgstr "购买课程" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Total Credit Card Purchases: " -msgstr "所有的信用卡订单:" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Download a .csv file for all credit card purchases or for all invoices, " -"regardless of status." -msgstr "下载一个包含所有信用卡消费记录或所有收据的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Invoices" -msgstr "下载所有收据" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download All Credit Card Purchases" -msgstr "下载所有信用卡消费记录" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "To cancel or resubmit an invoice, enter the invoice number below." -msgstr "要取消或者重新提交一张收据,请在下面输入收据号码。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Invoice Number" -msgstr "收据单号" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Cancel Invoice" -msgstr "取消收据" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Resubmit Invoice" -msgstr "重新提交收据" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create a .csv file that contains enrollment information for your course." -msgstr "创建一个包含您的课程的选修信息的.csv文件" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Enrollment Report" -msgstr "生成选课报告" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Create an HTML file that contains an executive summary for this course." -msgstr "创建一个包含这门课程执行摘要的HTML文件" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Create Executive Summary" -msgstr "创建执行摘要" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Available Reports" -msgstr "可用报告" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"The following reports are available for download. Reports are not deleted. A" -" link to every report remains available on this page, identified by the date" -" and time (in UTC) that the report was generated." -msgstr "您可以下载以下列出的报告。每一份报告由生成的日期和时间(UTC)来标识,它们的链接将保留在本页面。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"{strong_start}Note{strong_end}: To help protect learner data, links to these" -" reports that you save outside of this page or that you send or receive in " -"email expire after five minutes." -msgstr "" -"{strong_start}注{strong_end}:为了确保学生数据的安全性,您在本页外保存的报告链接或者您通过电子邮件发送或收到的报告链接将在5分钟后失效。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Code List" -msgstr "优惠券代码列表" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download a .csv file of all coupon codes for this course." -msgstr "下载一个包含所有这门课的优惠券代码的.csv文件。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Download Coupon Codes" -msgstr "下载优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon Codes" -msgstr "优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Expiration Date" -msgstr "过期日期" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Coupon (%)" -msgstr "优惠券(%)" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Number Redeemed" -msgstr "兑换数量" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{code}" -msgstr "{code}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{description}" -msgstr "{description}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "{discount}" -msgstr "{discount}" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The Invoice Number field cannot be empty." -msgstr "发票号码字段不能为空。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "No Expiration Date" -msgstr "无截止日期" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company name." -msgstr "输入公司名字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company name cannot be a number." -msgstr "公司名不能为数字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the company contact name." -msgstr "输入公司联系人名字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The company contact name cannot be a number." -msgstr "公司联系人名字不能为数字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the email address for the company contact." -msgstr "输入公司联系人的电子邮件地址。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a valid email address." -msgstr "输入一个有效的电子邮件地址" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient name." -msgstr "输入收件人名字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The recipient name cannot be a number." -msgstr "收件人名字不能为数字" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the recipient email address." -msgstr "输入收件人电子邮件地址" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the billing address." -msgstr "输入账单地址" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the price per course seat." -msgstr "输入每个学位的价格" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the price per course seat. Do not include currency" -" symbols." -msgstr "为每一个课程座席价格输入一个数值。请不要输入货币符号。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter the number of enrollment codes." -msgstr "输入选课码的数量" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a numeric value for the number of enrollment codes." -msgstr "输入选课码的数量值。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Select a currency." -msgstr "选择一种货币。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "Enter a coupon code." -msgstr "输入一个优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "The discount percentage must be less than or equal to 100." -msgstr "折扣百分比必须小于或等于100。" - -#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html -msgid "" -"Enter a numeric value for the discount amount. Do not include the percent " -"sign." -msgstr "输入一个折扣的数量值。请不要输入百分符号。" - -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Edit Coupon Code" -msgstr "编辑优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Edit Coupon Code Information" -msgstr "编辑优惠券代码信息" - -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Code" -msgstr "代码" - -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "example: A123DS" -msgstr "例如: A123DS" - -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Percentage Discount" -msgstr "折扣率" - -#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html -msgid "Update Coupon Code" -msgstr "更新优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Executive Summary for {display_name}" -msgstr " {display_name} 执行摘要" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Report Creation Date" -msgstr "报告创建日期" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Seats" -msgstr "座席数量" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollments" -msgstr "选课人数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue" -msgstr "总收入" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Collected" -msgstr "进账总收入" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Gross Revenue Pending" -msgstr "待处理总收入" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of Enrollment Refunds" -msgstr "课程退款数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Amount Refunded" -msgstr "退还金额" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Average Price per Seat" -msgstr "每个座席的平均价格" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Frequently Used Coupon Codes" -msgstr "经常使用的优惠券代码" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased using coupon codes" -msgstr "使用优惠券代码购买的座席数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Rank" -msgstr "排名" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percent Discount" -msgstr "折扣率" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Times Used" -msgstr "已用时间" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Bulk and Single Seat Purchases" -msgstr "大批和单座采购" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased individually" -msgstr "单独购买的座位数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased in bulk" -msgstr "批量购买的座位数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Number of seats purchased with invoices" -msgstr "带发票的购买座位数" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Unused bulk purchase seats (revenue at risk)" -msgstr "未使用批量购买席位(收入有风险)" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased individually" -msgstr "单座购买数量所占比例" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased in bulk" -msgstr "批量购买座位数目所占比例" - -#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html -msgid "Percentage of seats purchased with invoices" -msgstr "带发票购买座位数目所占比例" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Individual due date extensions" -msgstr "延长个别截止日期" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "" -"In this section, you have the ability to grant extensions on specific units " -"to individual students. Please note that the latest date is always taken; " -"you cannot use this tool to make an assignment due earlier for a particular " -"student." -msgstr "在这个部分,您可以在特定单元里给特定的学生延长截止日期。请注意,您不能选择最近的一日;您不能使用这个工具让某个学生的作业截止日期提早。" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "" -"Specify the {platform_name} email address or username of a student here:" -msgstr "在这可以查看{platform_name}的邮件地址以及学生的用户名:" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Student Email or Username" -msgstr "学生e-mail或者用户名" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Choose the graded unit:" -msgstr "请选择评分单元" - -#. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the -#. format the system requires. -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "" -"Specify the extension due date and time (in UTC; please specify " -"{format_string})." -msgstr "请输入新的截止日期和时间(UTC 时间,请以 {format_string} 格式输入)。" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Change due date for student" -msgstr "修改学生的截止日期" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Viewing granted extensions" -msgstr "查看已授权的宽限期" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "" -"Here you can see what extensions have been granted on particular units or " -"for a particular student." -msgstr "这里您可以查看已经授权给特别学生或者特殊单元的宽限期" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "" -"Choose a graded unit and click the button to obtain a list of all students " -"who have extensions for the given unit." -msgstr "请选择一个评分单元,单击获得当前单元中获得宽限期的学生列表" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "List all students with due date extensions" -msgstr "列出所有获得宽限期的学生" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Specify a student to see all of that student's extensions." -msgstr "指定一个学生来查看该学生获得的所有宽限期。" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "List date extensions for student" -msgstr "为学生列出宽限期" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Resetting extensions" -msgstr "重设宽限期" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "" -"Resetting a problem's due date rescinds a due date extension for a student " -"on a particular unit. This will revert the due date for the student back to " -"the problem's original due date." -msgstr "重设一个问题的截止日期,将取消学生在指定单元上的宽限期,使学生的截止日期还原为问题的原始截止日期。" - -#: lms/templates/instructor/instructor_dashboard_2/extensions.html -msgid "Reset due date for student" -msgstr "重置学生的截止日期" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Generate Registration Code Modal" -msgstr "生成形态上的注册码" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "* Required Information" -msgstr "* 必填信息" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Organization Name" -msgstr "机构名称" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "The organization that purchased enrollments in the course" -msgstr "购买了本课程的机构" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -#: lms/templates/shoppingcart/billing_details.html -msgid "Organization Contact" -msgstr "机构联系人" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Organization Contact Name" -msgstr "机构联系人姓名" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "The primary contact at the organization" -msgstr "机构中的主要联系人" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Invoice Recipient" -msgstr "收据接受者" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "The contact who should receive the invoice" -msgstr "接收收据的联系人信息" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Organization Billing Address" -msgstr "机构账单地址" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Address Line 1" -msgstr "地址行1" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Address Line 2" -msgstr "地址行2" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Address Line 3" -msgstr "地址行3" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "State/Province" -msgstr "州/省" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Zip" -msgstr "邮编" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Unit Price" -msgstr "单价" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "The price per enrollment purchased" -msgstr "单人选课价格" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Number of Enrollment Codes" -msgstr "选课码数量" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "The total number of enrollment codes to create" -msgstr "待创建的选课码总数" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Course Team Internal Reference" -msgstr "课程团队内部参考" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Internal reference information for the sale" -msgstr "内部销售参考信息" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Customer Reference" -msgstr "客户参考" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Customer's purchase order or other reference information" -msgstr "客户的订单或其他参考信息" - -#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html -msgid "Send me a copy of the invoice" -msgstr "请给我一张收据复印件" - -#: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html -msgid "" -"For analytics about your course, go to " -"{link_start}{analytics_dashboard_name}{link_end}." -msgstr "关于您的课程的分析数据,请进入 {link_start}{analytics_dashboard_name}{link_end}。" - -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "Instructor Dashboard" -msgstr "教师面板" - -#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html -msgid "View Course in Studio" -msgstr "在Studio中查看课程" - -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -msgid "Enrollment Code Status" -msgstr "选课码状态" - -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -msgid "Change the status of an enrollment code." -msgstr "改变选课码的状态" - -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -#: lms/templates/shoppingcart/receipt.html -msgid "Enrollment Code" -msgstr "选课码" - -#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html -msgid "Find Enrollment Code" -msgstr "搜索选课码" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Enter email addresses and/or usernames separated by new lines or commas." -msgstr "输入电子邮箱地址与/或 用户名,以逗号分割或重启一行。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"You will not get notification for emails that bounce, so please double-check" -" spelling." -msgstr "对该类问题您不会受到提示邮件,因此请仔细检查,确保拼写无误。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Role of the users being enrolled." -msgstr "用户报名的角色。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Enter the reason why the students are to be manually enrolled or unenrolled." -msgstr "输入学生需被手动加入选课或手动取消选课的原因。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"This cannot be left blank and will be recorded and presented in Enrollment " -"Reports." -msgstr "此处不能为空,将被记录并呈现在选课报告中。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Therefore, please give enough detail to account for this action." -msgstr "因此,请提供足够的信息来解释这个操作。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Reason" -msgstr "原因" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Register/Enroll Students" -msgstr "注册/录取学生" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"To register and enroll a list of users in this course, choose a CSV file " -"that contains the following columns in this exact order: email, username, " -"name, and country. Please include one student per row and do not include any" -" headers, footers, or blank lines." -msgstr "" -"如果想在这门课程中批量注册并录取学生,请选择一个CSV文件,包含E-" -"mail、用户名、姓名和国家(严格按照此顺序)。每行包含一个学生,请不要添加任何页眉、页脚以及空行。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Upload a CSV for bulk enrollment" -msgstr "为批量注册上传一个CSV文件" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Upload CSV" -msgstr "上传CSV" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Batch Beta Tester Addition" -msgstr "批量添加Beta测试员" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Note: Users must have an activated {platform_name} account before they can " -"be enrolled as beta testers." -msgstr "注:用户必须首先拥有已激活的{platform_name}账号方可成为Beta测试员。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"If this option is {em_start}checked{em_end}, users who have not enrolled in " -"your course will be automatically enrolled." -msgstr "如果{em_start}勾选{em_end}此项,那么已报名您课程的用户将会自动报名。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Checking this box has no effect if 'Remove beta testers' is selected." -msgstr "如果“删除Beta测试员”被选中,勾选本项并无效果。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add beta testers" -msgstr "添加beta测试人员" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Remove beta testers" -msgstr "删除beta测试人员" - -#. Translators: an "Administration List" is a list, such as Course Staff, that -#. users can be added to. -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Course Team Management" -msgstr "课程团队管理" - -#. Translators: an "Administrator Group" is a group, such as Course Staff, -#. that -#. users can be added to. -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Select a course team role:" -msgstr "选择一个课程团队角色:" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Getting available lists..." -msgstr "正在获取可用列表……" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Staff cannot modify these lists. To manage course team membership, a course " -"Admin must give you the Admin role to add Staff or Beta Testers, or the " -"Discussion Admin role to add discussion moderators and TAs." -msgstr "" -"工作人员无法修改这些列表。若想管理课程团队成员,课程管理员必须授予您管理员角色来添加工作人员和Beta测试员,或者给予您论坛管理员角色来添加讨论区版主和助教。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Course team members with the Staff role help you manage your course. Staff " -"can enroll and unenroll learners, as well as modify their grades and access " -"all course data. Staff also have access to your course in Studio and " -"Insights. You can only give course team roles to enrolled users." -msgstr "" -"拥有工作人员权限的课程团队成员帮助您管理您的课程。工作人员可以帮您录取或移除学生,修改成绩和访问所有课程数据。工作人员也可以在Studio和Insights中访问您的课程。您只能授予已选课的用户课程团队成员职责。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Staff" -msgstr "添加工作人员" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Admin" -msgstr "管理员" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Course team members with the Admin role help you manage your course. They " -"can do all of the tasks that Staff can do, and can also add and remove the " -"Staff and Admin roles, discussion moderation roles, and the beta tester role" -" to manage course team membership. You can only give course team roles to " -"enrolled users." -msgstr "" -"拥有管理员权限的课程团队成员帮助您管理您的课程。他们能做所有工作人员可以做的任务,并且添加和移除工作人员、管理员和论坛版主。您只能将课程团队成员职责授予已选课的用户。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Admin" -msgstr "添加管理员" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Beta Testers" -msgstr "Beta测试者" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Beta Testers can see course content before other learners. They can make " -"sure that the content works, but have no additional privileges. You can only" -" give course team roles to enrolled users." -msgstr "Beta测试者可以比其他学生先看到课程内容。他们可以确保内容正常运行,但没有额外特权。您只能将课程团队角色授予已选课的用户。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Beta Tester" -msgstr "添加beta测试人员" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Discussion Admins" -msgstr "论坛管理员" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Discussion Admins can edit or delete any post, clear misuse flags, close and" -" re-open threads, endorse responses, and see posts from all groups. Their " -"posts are marked as 'staff'. They can also add and remove the discussion " -"moderation roles to manage course team membership. Only enrolled users can " -"be added as Discussion Admins." -msgstr "" -"讨论区管理员可编辑或删除任何帖子、清除误用标记、关闭并重开帖子、赞同回复、并查看所有分组的帖子。他们的帖子带有“员工”标记,他们也可以添加并移除讨论区版主角色,以此管理课程团队的成员。仅已报名用户可被设置为讨论区管理员。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Discussion Admin" -msgstr "添加论坛管理员" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Discussion Moderators" -msgstr "版主" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Discussion Moderators can edit or delete any post, clear misuse flags, close" -" and re-open threads, endorse responses, and see posts from all groups. " -"Their posts are marked as 'staff'. They cannot manage course team membership" -" by adding or removing discussion moderation roles. Only enrolled users can " -"be added as Discussion Moderators." -msgstr "" -"讨论区版主可编辑或删除任何帖子、清除误用标记、关闭并重开帖子、赞同回复、并查看所有分组的帖子,他们的帖子都被标记为“工作人员”。他们不能够通过添加或删除讨论区版主角色来管理课程团队成员。仅已报名学员可被设置为讨论区版主。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Moderator" -msgstr "添加版主" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Group Community TA" -msgstr "分组社区助教" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Group Community TAs are members of the community who help course teams " -"moderate discussions. Group Community TAs see only posts by learners in " -"their assigned group. They can edit or delete posts, clear flags, close and " -"re-open threads, and endorse responses, but only for posts by learners in " -"their group. Their posts are marked as 'Community TA'. Only enrolled " -"learners can be added as Group Community TAs." -msgstr "" -"分组社区助教帮助社区中课程团队维护讨论。分组社区助教只能查看他们所分配组的学员的帖子。他们可对自己分组中学员所发的帖子,进行编辑或删除帖子、清除标记、关闭并重新打开主题、批准回复。他们的帖子被标记为“社区助教”,仅已报名学员可被设为分组社区助教。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Group Community TA" -msgstr "添加分组社区助教" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Community TA" -msgstr "社区助教" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"Community TAs are members of the community who help course teams moderate " -"discussions. They can see posts by learners in their assigned cohort or " -"enrollment track, and can edit or delete posts, clear flags, close or re-" -"open threads, and endorse responses. Their posts are marked as 'Community " -"TA'. Only enrolled learners can be added as Community TAs." -msgstr "" -"分组社区助教帮助社区中课程团队管理讨论。分组社区助教只能查看他们所分配组的学员的帖子。他们可对自己分组中学员所发的帖子,进行编辑或删除帖子、清除标记、关闭并重新打开主题、批准回复。他们的帖子被标记为“社区助教”,仅已报名学员可被设为分组社区助教。" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add Community TA" -msgstr "添加社区助教" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "CCX Coaches" -msgstr "CCX指导" - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "" -"CCX Coaches are able to create their own Custom Courses based on this " -"course, which they can use to provide personalized instruction to their own " -"students based in this course material." -msgstr "CCX指导可以根据本课程创建自己的定制课程,利用本课程的资料给自己的学生提供个性化指导。 " - -#: lms/templates/instructor/instructor_dashboard_2/membership.html -msgid "Add CCX Coach" -msgstr "增加CCX指导" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "There is no data available to display at this time." -msgstr "目前没有可用的数据" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Use Reload Graphs to refresh the graphs." -msgstr "使用重新加载图片来刷新" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Reload Graphs" -msgstr "重新载入图片" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Subsection Data" -msgstr "小节数据" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Each bar shows the number of students that opened the subsection." -msgstr "每个条形图显示了打开小节的学生数量" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "" -"You can click on any of the bars to list the students that opened the " -"subsection." -msgstr "您可以点击任一栏目去查看打开小节的学生名单" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "You can also download this data as a CSV file." -msgstr "您也可以以CSV文件下载这些数据" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Download Subsection Data for all Subsections as a CSV" -msgstr "所有的小节数据以CSV文件下载" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Grade Distribution Data" -msgstr "成绩分布数据" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Each bar shows the grade distribution for that problem." -msgstr "每个条形图显示该问题的成绩分布区间" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "" -"You can click on any of the bars to list the students that attempted the " -"problem, along with the grades they received." -msgstr "您可以点击任一每个条形图去查看所有尝试回答问题的学生名单以及他们获得的成绩" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Download Problem Data for all Problems as a CSV" -msgstr "以CSV文件下载所有问题数据" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Grade Distribution per Problem" -msgstr "每个问题的成绩分布" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Download Student Opened as a CSV" -msgstr "以CSV格式下载学生开放数据" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Download Student Grades as a CSV" -msgstr "以CSV格式下载被评分的学生信息" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "This is a partial list, to view all students download as a csv." -msgstr "这是一个部分列表,查看所有以CSV格式下载的学生信息" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "Grade" -msgstr "成绩" - -#: lms/templates/instructor/instructor_dashboard_2/metrics.html -msgid "There are no problems in this section." -msgstr "本章没有问题" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Send to:" -msgstr "发至:" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Myself" -msgstr "我自己" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Staff and Administrators" -msgstr "工作人员和管理员" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "All Learners" -msgstr "所有学习者" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Cohort: " -msgstr "群组:" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "(Learners not explicitly assigned to a cohort)" -msgstr "(没有被分到特定群组的学生)" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Learners in the {track_name} Track" -msgstr "在{track_name}里的学员跟踪" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Subject: " -msgstr "主题:" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "(Maximum 128 characters)" -msgstr "(最多128个字符)" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Message:" -msgstr "消息:" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "" -"We recommend sending learners no more than one email message per week. " -"Before you send your email, review the text carefully and send it to " -"yourself first, so that you can preview the formatting and make sure " -"embedded images and links work correctly." -msgstr "我们建议您给学生发送邮件不多于一周一封。在您发送之前,仔细地检查文本,并先发送给自己,预览邮件格式,确保嵌入的图片和链接显示或运行正常。" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "CAUTION!" -msgstr "注意!" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "" -"When you select Send Email, your email message is added to the queue for " -"sending, and cannot be cancelled." -msgstr "当您选择“发送邮件”,您的邮件将被加入发送队列,任务无法被取消。" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Send Email" -msgstr "发送邮件" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "" -"Email actions run in the background. The status for any active tasks - " -"including email tasks - appears in a table below." -msgstr "电子邮件操作在后台执行。任何当前正在执行的任务状态 - 包括电子邮件任务 - 都在下表中列出。" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Email Task History" -msgstr "邮件任务历史" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "To see the content of previously sent emails, click this button:" -msgstr "查看之前发送的邮件内容,点击这个按钮:" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Show Sent Email History" -msgstr "显示已发送邮件历史" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "To read a sent email message, click its subject." -msgstr "阅读已发送的邮件,点击它的主题。" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "" -"To see the status for all email tasks submitted for this course, click this " -"button:" -msgstr "查看这个课程中所有提交的邮件任务,点击这个按钮:" - -#: lms/templates/instructor/instructor_dashboard_2/send_email.html -msgid "Show Email Task History" -msgstr "显示邮件任务历史" - -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Set Course Mode Price" -msgstr "设置课程模式价格" - -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Please enter Course Mode detail below" -msgstr "请在下面输入课程模式详情" - -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Currency" -msgstr "货币" - -#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html -msgid "Set Price" -msgstr "设置价格" - -#: lms/templates/instructor/instructor_dashboard_2/special_exams.html -msgid "Allowance Section" -msgstr "默认章节" - -#: lms/templates/instructor/instructor_dashboard_2/special_exams.html -msgid "Student Special Exam Attempts" -msgstr "学生特殊考试尝试" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View gradebook for enrolled learners" -msgstr "查看注册学员成绩单" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"Note: This feature is available only to courses with a small number of " -"enrolled learners." -msgstr "注意:此功能仅在少学员报名的课程中可用。" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View Gradebook" -msgstr "查看成绩单" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View a specific learner's enrollment status" -msgstr "查看特定员的选课状态" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Learner's {platform_name} email address or username *" -msgstr "学员的{platform_name}邮箱地址或用户名*" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Learner email address or username" -msgstr "学员邮箱地址或用户名" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View Enrollment Status" -msgstr "查课选课状态" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View a specific learner's grades and progress" -msgstr "阅览个别学生的评分和进度" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Learner's {platform_name} email address or username" -msgstr "学员的{platform_name}邮箱地址或用户名" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "View Progress Page" -msgstr "阅览学生进度页面" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Adjust a learner's grade for a specific problem" -msgstr "调整学员在特定题目的得分" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Location of problem in course" -msgstr "题目在课程中的位置" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Example" -msgstr "例子" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Problem location" -msgstr "问题所在位置" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Attempts" -msgstr "尝试次数" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"Allow a learner who has used up all attempts to work on the problem again." -msgstr "允许使用完所有尝试次数的学员继续完成此题目。" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Reset Attempts to Zero" -msgstr "重置学生的尝试次数为零" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore" -msgstr "重新评分" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"For the specified problem, rescore the learner's responses. The 'Rescore " -"Only If Score Improves' option updates the learner's score only if it " -"improves in the learner's favor." -msgstr "调整学员在特定题目的得分,“以高分为准”选项只会在学员得分提高时更改成最高的得分。" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Score Override" -msgstr "覆盖分数" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "For the specified problem, override the learner's score." -msgstr "重新评分学员在某个题目的分数。" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"New score for problem, out of the total points available for the problem" -msgstr "题目的新分数,不可超过总分。" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Score" -msgstr "分数" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Override Learner's Score" -msgstr "覆盖学员分数" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Problem History" -msgstr "问题记录" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"For the specified problem, permanently and completely delete the learner's " -"answers and scores from the database." -msgstr "将学员某一问题的答案和得分从数据库中永久且完全地删除。" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Task Status" -msgstr "任务状态" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"Show the status for the rescoring tasks that you submitted for this learner " -"and problem." -msgstr "显示您提交的此学员和题目的调整分数任务状态。" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Show Task Status" -msgstr "显示任务状态" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Adjust a learner's entrance exam results" -msgstr "调整一位学员入学考试结果" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Allow the learner to take the exam again." -msgstr "允许学员重考。" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Allow Skip" -msgstr "允许跳过" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Waive the requirement for the learner to take the exam." -msgstr "移除学员考试的要求。" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Let Learner Skip Entrance Exam" -msgstr "允许学员跳过入学考试" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"Rescore any responses that have been submitted. The 'Rescore All Problems " -"Only If Score Improves' option updates the learner's scores only if it " -"improves in the learner's favor." -msgstr "调整所有已提交的回答。“调整至更高分”选项只会在学员得分提高时更改显示分数。" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore All Problems" -msgstr "为所有问题重新打分" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore All Problems Only If Score Improves" -msgstr "如果评分提高, 重新打分所有问题" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Entrance Exam History" -msgstr "入学考试历史记录" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"For the entire entrance exam, permanently and completely delete the " -"learner's answers and scores from the database." -msgstr "将学员整个入学考试从数据库中永久且完全地删除。" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"Show the status for the rescoring tasks that you submitted for this learner " -"and entrance exam." -msgstr "显示您提交的此学员和入学考试的调整分数任务状态。" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Adjust all enrolled learners' grades for a specific problem" -msgstr "调整所有已报名学员在特定题目的得分" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Allows all learners to work on the problem again." -msgstr "允许所有学生再次回答问题" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "" -"Rescore submitted responses. The 'Rescore Only If Scores Improve' option " -"updates a learner's score only if it improves in the learner's favor." -msgstr "调整已提交的题目回答得分,“调整至更高分”选项只会在学员得分提高时更改成最高的得分。" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore All Learners' Submissions" -msgstr "对所有学生的提交记录重新评分" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Rescore Only If Scores Improve" -msgstr "仅提高分数时重新评分" - -#: lms/templates/instructor/instructor_dashboard_2/student_admin.html -msgid "Show the status for the tasks that you submitted for this problem." -msgstr "显示此题目您已提交的任务状态。" - -#: lms/templates/learner_dashboard/_dashboard_navigation_courses.html -#: themes/edx.org/lms/templates/dashboard.html -msgid "My Courses" -msgstr "我的课程" - -#: lms/templates/learner_dashboard/_dashboard_navigation_journals.html -msgid "My Journals" -msgstr "我的文章" - -#: lms/templates/learner_dashboard/program_details.html -msgid "Program Details" -msgstr "项目详情" - -#: lms/templates/learner_dashboard/text-me-fragment.html -msgid "Get the {platform_name} Mobile App!" -msgstr "下载{platform_name}移动App! " - -#: lms/templates/learner_dashboard/text-me-fragment.html -msgid "We'll send you a one time SMS with a link to download the app." -msgstr "我们会给您发送短信,请点击短信中链接下载App。" - -#: lms/templates/learner_dashboard/text-me-fragment.html -msgid "Mobile phone number" -msgstr "电话号码" - -#: lms/templates/learner_dashboard/text-me-fragment.html -msgid "Send me a text with the link" -msgstr "发送带链接的短信给我" - -#: lms/templates/modal/_modal-settings-language.html -msgid "Change Preferred Language" -msgstr "更改常用语言" - -#: lms/templates/modal/_modal-settings-language.html -msgid "Please choose your preferred language" -msgstr "请选择您偏好的语言" - -#: lms/templates/modal/_modal-settings-language.html -msgid "Save Language Settings" -msgstr "保存语言设置" - -#: lms/templates/modal/_modal-settings-language.html -msgid "" -"Don't see your preferred language? {link_start}Volunteer to become a " -"translator!{link_end}" -msgstr "没找到您的常用语言?{link_start}欢迎成为一个翻译志愿者!{link_end}" - -#: lms/templates/navigation/navbar-not-authenticated.html -msgid "Explore Courses" -msgstr "发现课程" - -#: lms/templates/navigation/navigation.html -msgid "Global" -msgstr "全球" - -#: lms/templates/peer_grading/peer_grading.html -msgid "" -"\n" -"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" -"{ul_tag}\n" -"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" -"{li_tag}The course team needs to score the essays that are used to help you better understand the grading\n" -"criteria.{end_li_tag}\n" -"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" -"{end_ul_tag}\n" -"{end_p_tag}\n" -msgstr "" -"\n" -"{p_tag}您目前没有同伴互评要做。若要参与互评:\n" -"{ul_tag}\n" -"{li_tag}您需要回复一个同伴互评问题。{end_li_tag}\n" -"{li_tag}课程团队需要提供一些打分样本以帮助您更好的理解评分标准。{end_li_tag}\n" -"{li_tag}必须存在带评分的作业。{end_li_tag}\n" -"{end_ul_tag}\n" -"{end_p_tag}\n" - -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/peer_grading/peer_grading_closed.html -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Peer Grading" -msgstr "同伴互评" - -#: lms/templates/peer_grading/peer_grading.html -msgid "" -"Here is a list of problems that need to be peer graded for this course." -msgstr "这是本课程中需要同伴互评的问题列表" - -#: lms/templates/peer_grading/peer_grading.html -msgid "Problem Name" -msgstr "问题名称" - -#: lms/templates/peer_grading/peer_grading.html -msgid "Due date" -msgstr "截止日期" - -#: lms/templates/peer_grading/peer_grading.html -msgid "Graded" -msgstr "已评分" - -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/shoppingcart/receipt.html -msgid "Available" -msgstr "可评价" - -#: lms/templates/peer_grading/peer_grading.html -msgid "Required" -msgstr "必要的" - -#: lms/templates/peer_grading/peer_grading.html -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -msgid "Progress" -msgstr "进度" - -#: lms/templates/peer_grading/peer_grading.html -msgid "No due date" -msgstr "没有截止日期" - -#: lms/templates/peer_grading/peer_grading_closed.html -msgid "" -"The due date has passed, and peer grading for this problem is closed at this" -" time." -msgstr "截止日期已过,这个问题的同伴互评现已关闭。" - -#: lms/templates/peer_grading/peer_grading_closed.html -msgid "The due date has passed, and peer grading is closed at this time." -msgstr "截止日期已过,同伴互评现已关闭。" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Learning to Grade" -msgstr "学习如何评分" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Hide Question" -msgstr "隐藏问题" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Student Response" -msgstr "学生回复" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Written Feedback" -msgstr "书面反馈意见" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Please include some written feedback as well." -msgstr "请也给出一些书面反馈。" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "" -"This submission has explicit, offensive, or (I suspect) plagiarized content." -" " -msgstr "这个答复中包含淫秽的、有攻击性的或者(我猜测)抄袭的内容。" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "How did I do?" -msgstr "我应该怎么做?" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Continue" -msgstr "继续" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Ready to grade!" -msgstr "已经准备好进行评分!" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "" -"You have finished learning to grade, which means that you are now ready to " -"start grading." -msgstr "您已完成了评分学习,这意味着现在您可以开始评分了。" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Start Grading!" -msgstr "开始评分!" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Learning to grade" -msgstr "学习如何进行评分" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "You have not yet finished learning to grade this problem." -msgstr "您尚未完成学习如何对此问题进行评分。" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "" -"You will now be shown a series of instructor-scored essays, and will be " -"asked to score them yourself." -msgstr "一系列由导师打分的文章将展示给您,您将被要求自行给它们打分。" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "" -"Once you can score the essays similarly to an instructor, you will be ready " -"to grade your peers." -msgstr "一旦您对这些文章的判分尺度接近主讲教师的水准,您就可以给同学评分了。" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Start learning to grade" -msgstr "开始学习如何进行评分" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Are you sure that you want to flag this submission?" -msgstr "您确定要标记这部分提交的内容吗?" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "" -"You are about to flag a submission. You should only flag a submission that " -"contains explicit, offensive, or (suspected) plagiarized content. If the " -"submission is not addressed to the question or is incorrect, you should give" -" it a score of zero and accompanying feedback instead of flagging it." -msgstr "" -"您即将标记一个意见。只有您发现内容中包括了淫秽的、有攻击性的或者(您猜测)抄袭的内容才标记一个意见。如果答案与问题不合或者不正确,您应该判为零分并给出反馈意见,而不是标记它。" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Remove Flag" -msgstr "取消举报" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Keep Flag" -msgstr "维持举报" - -#: lms/templates/peer_grading/peer_grading_problem.html -msgid "Go Back" -msgstr "返回" - -#: lms/templates/professors/detail.html -msgid "Professor details" -msgstr "教授详情" - -#: lms/templates/professors/index.html -msgid "Professors List" -msgstr "教授列表" - -#: lms/templates/professors/index.html -msgid "Purpose of Education" -msgstr "教育的目的" - -#: lms/templates/professors/index.html -msgid "" -"Education is not a hard-won knowledge instillation, but an inspiration for " -"the free development potential of learners. Wisdom is the ability to use " -"knowledge. Elite Education not only spreads knowledge, but also focuses on " -"the cultivation of wisdom." -msgstr "教育不是生搬硬套的知识灌输,而是对学习者自由发展潜力的启发。 智慧是运用知识的能力。英荔教育不仅传播知识,更注重智慧的培养。" - -#: lms/templates/professors/index.html -msgid "" -"We hope to pass on the successful business management experience and wisdom " -"at home and abroad to more people who are not satisfited with the status quo" -" and actively seek change." -msgstr "我们希望把国内外成功的商业管理经验和智慧传授给更多不安于现状且积极求变的弄潮儿。" - -#: lms/templates/professors/index.html -msgid "" -"We sincerely invite all elite professors, scholars and experts who have been" -" deeply involved in business management disciplines to develop more " -"outstanding business talents by transforming intangible wisdom into a " -"collectible course." -msgstr "我们诚挚地向所有深耕于商业管理学科的精英教授、学者和专家发出邀请,让我们共同将无形的智慧实化为可典藏的课程,以此培养更多杰出的商业人才。" - -#: lms/templates/provider/authorize.html -msgid "" -"{start_strong}{application_name}{end_strong} would like to access your data " -"with the following permissions:" -msgstr "{start_strong}{application_name}{end_strong} 想要凭借以下权限访问您的数据:" - -#: lms/templates/provider/authorize.html -msgid "Read your user ID" -msgstr "查看您的用户ID" - -#: lms/templates/provider/authorize.html -msgid "Read your user profile" -msgstr "查看您的用户资料" - -#: lms/templates/provider/authorize.html -msgid "Read your email address" -msgstr "查看您的邮箱地址" - -#: lms/templates/provider/authorize.html -msgid "Read the list of courses in which you are a staff member." -msgstr "查看您是工作人员的课程列表" - -#: lms/templates/provider/authorize.html -msgid "Read the list of courses in which you are an instructor." -msgstr "查看您是教师的课程列表" - -#: lms/templates/provider/authorize.html -msgid "To see if you are a global staff user" -msgstr "查看您是否是全球工作人员" - -#: lms/templates/provider/authorize.html -msgid "Manage your data: {permission}" -msgstr "管理您的数据:{permission}" - -#: lms/templates/registration/account_activation_sidebar_notice.html -msgid "Account Activation Info" -msgstr "账号激活信息" - -#: lms/templates/registration/password_reset_complete.html -msgid "Your Password Reset is Complete" -msgstr "您的密码重置已完成" - -#: lms/templates/registration/password_reset_complete.html -msgid "Password Reset Complete" -msgstr "密码重置已完成" - -#: lms/templates/registration/password_reset_complete.html -msgid "" -"Your password has been reset. {start_link}Sign-in to your account.{end_link}" -msgstr "您的密码已重置。{start_link}登录您的账号{end_link}。" - -#: lms/templates/registration/password_reset_confirm.html -msgid "Reset Your {platform_name} Password" -msgstr "重置您的 {platform_name} 密码" - -#: lms/templates/registration/password_reset_confirm.html -msgid "Invalid Password Reset Link" -msgstr "无效的密码重置链接" - -#: lms/templates/registration/password_reset_confirm.html -msgid "" -"This password reset link is invalid. It may have been used already. To reset" -" your password, go to the {start_link}sign-in{end_link} page and select " -"{start_strong}Forgot password{end_strong}." -msgstr "" -"密码重置链接无效。此链接可能已被使用。如需重置您的密码,请进入{start_link}登录页面{end_link} " -"并点击{start_strong}忘记密码{end_strong}。" - -#: lms/templates/registration/password_reset_done.html -msgid "Password reset successful" -msgstr "密码重设成功" - -#: lms/templates/registration/password_reset_done.html -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "我们已经给您的邮箱发送邮件,您应该能够很快收到,请按照邮件里的指示设置密码。" - -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Billing Details" -msgstr "账单详情" - -#: lms/templates/shoppingcart/billing_details.html -msgid "" -"You can proceed to payment at any point in time. Any additional information " -"you provide will be included in your receipt." -msgstr "您可以在任何时间前往支付页面。您提供的任何额外信息将收录在您的收据里。" - -#: lms/templates/shoppingcart/billing_details.html -msgid "Purchasing Organizational Details" -msgstr "采购机构的详细信息" - -#: lms/templates/shoppingcart/billing_details.html -msgid "Purchasing organization" -msgstr "采购机构" - -#: lms/templates/shoppingcart/billing_details.html -msgid "Purchase order number (if any)" -msgstr "订单号(如果存在)" - -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html -msgid "Email Address" -msgstr "电子邮件地址" - -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/billing_details.html -msgid "email@example.com" -msgstr "email@example.com" - -#: lms/templates/shoppingcart/billing_details.html -msgid "Additional Receipt Recipient" -msgstr "额外收据收件人" - -#: lms/templates/shoppingcart/billing_details.html -msgid "" -"If no additional billing details are populated the payment confirmation will" -" be sent to the user making the purchase." -msgstr "如果没有额外的账单信息,支付确认信息将发送给下订单的用户。 " - -#: lms/templates/shoppingcart/billing_details.html -msgid "Payment processing occurs on a separate secure site." -msgstr "支付过程在另一个安全的网站上完成。" - -#: lms/templates/shoppingcart/billing_details.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Your Shopping cart is currently empty." -msgstr "您的购物车目前是空的。" - -#: lms/templates/shoppingcart/cybersource_form.html -#: lms/templates/shoppingcart/shopping_cart_flow.html -msgid "Payment" -msgstr "付款" - -#: lms/templates/shoppingcart/download_report.html -msgid "Download CSV Reports" -msgstr "下载CSV报告" - -#: lms/templates/shoppingcart/download_report.html -msgid "Download CSV Data" -msgstr "下载CSV数据" - -#: lms/templates/shoppingcart/download_report.html -msgid "" -"There was an error in your date input. It should be formatted as YYYY-MM-DD" -msgstr "您输入的日期有误。其格式应为YYYY-MM-DD" - -#: lms/templates/shoppingcart/download_report.html -msgid "These reports are delimited by start and end dates." -msgstr "这些报告按开始和结束日期分隔。" - -#: lms/templates/shoppingcart/download_report.html -msgid "Start Date: " -msgstr "开始日期:" - -#: lms/templates/shoppingcart/download_report.html -msgid "End Date: " -msgstr "结束日期:" - -#: lms/templates/shoppingcart/download_report.html -msgid "" -"These reports are delimited alphabetically by university name. i.e., " -"generating a report with 'Start Letter' A and 'End Letter' C will generate " -"reports for all universities starting with A, B, and C." -msgstr "" -"这些报告是根据大学名字的字母划分的。例如,要生成一份“开始字母”为 A、“结束字母”为 C 的报告,就会生成包括所有名字以 A、B、C " -"开头的大学的报告。" - -#: lms/templates/shoppingcart/download_report.html -msgid "Start Letter: " -msgstr "开始字母:" - -#: lms/templates/shoppingcart/download_report.html -msgid "End Letter: " -msgstr "结束字母:" - -#: lms/templates/shoppingcart/error.html -msgid "Payment Error" -msgstr "支付错误" - -#: lms/templates/shoppingcart/error.html -msgid "There was an error processing your order!" -msgstr "处理您的订单时出现了一个错误!" - -#: lms/templates/shoppingcart/receipt.html -msgid "Thank you for your purchase!" -msgstr "感谢惠顾!" - -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "View Dashboard" -msgstr "查看课程面板" - -#: lms/templates/shoppingcart/receipt.html -msgid "" -"You have successfully been enrolled for {course_names}. The following " -"receipt has been emailed to {receipient_emails}" -msgstr "您已经成功注册了{course_names}。以下发票已电邮给{receipient_emails}" - -#: lms/templates/shoppingcart/receipt.html -msgid "" -"You have successfully purchased {number} course registration code for" -" {course_names}." -msgid_plural "" -"You have successfully purchased {number} course registration codes " -"for {course_names}." -msgstr[0] "您已成功购买了 {course_names} 的 {number} 个选课码。" - -#: lms/templates/shoppingcart/receipt.html -msgid "The following receipt has been emailed to {receipient_emails}" -msgstr "以下收据已通过电子邮件发送至{receipient_emails}。" - -#: lms/templates/shoppingcart/receipt.html -msgid "" -"Please send each professional one of these unique registration codes to " -"enroll into the course. The confirmation/receipt email you will receive has " -"an example email template with directions for the individuals enrolling." -msgstr "请将每个专业的其中一个独特的注册码注册到课程。确认/收据邮件您会收到一个电子邮件模板示例说明个人报名。" - -#: lms/templates/shoppingcart/receipt.html -msgid "Enrollment Link" -msgstr "选课链接" - -#: lms/templates/shoppingcart/receipt.html -msgid "Status" -msgstr "状态" - -#: lms/templates/shoppingcart/receipt.html -msgid "Used" -msgstr "已使用" - -#: lms/templates/shoppingcart/receipt.html -msgid "Invalid" -msgstr "无效的" - -#: lms/templates/shoppingcart/receipt.html -msgid "Invoice" -msgstr "收据" - -#: lms/templates/shoppingcart/receipt.html -msgid "Date of purchase" -msgstr "购买日期" - -#: lms/templates/shoppingcart/receipt.html -msgid "Print Receipt" -msgstr "打印单据" - -#: lms/templates/shoppingcart/receipt.html -msgid "Billed To Details" -msgstr "账单详情" - -#: lms/templates/shoppingcart/receipt.html -msgid "Company Name" -msgstr "公司名称" - -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -msgid "N/A" -msgstr "不适用" - -#: lms/templates/shoppingcart/receipt.html -msgid "Purchase Order Number" -msgstr "订单号" - -#: lms/templates/shoppingcart/receipt.html -msgid "Company Contact Name" -msgstr "公司联系人姓名" - -#: lms/templates/shoppingcart/receipt.html -msgid "Company Contact Email" -msgstr "公司联系邮箱" - -#: lms/templates/shoppingcart/receipt.html -msgid "Recipient Name" -msgstr "收件人姓名" - -#: lms/templates/shoppingcart/receipt.html -msgid "Recipient Email" -msgstr "收件人邮箱" - -#: lms/templates/shoppingcart/receipt.html -msgid "Card Type" -msgstr "卡类型" - -#: lms/templates/shoppingcart/receipt.html -msgid "Credit Card Number" -msgstr "信用卡号" - -#: lms/templates/shoppingcart/receipt.html -msgid "Address 1" -msgstr "地址1" - -#: lms/templates/shoppingcart/receipt.html -msgid "Address 2" -msgstr "地址2" - -#: lms/templates/shoppingcart/receipt.html -msgid "State" -msgstr "状态" - -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Registration for:" -msgstr "注册:" - -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Price per student:" -msgstr "每位学生的费用:" - -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Discount Applied:" -msgstr "已使用的折扣:" - -#: lms/templates/shoppingcart/receipt.html -#: lms/templates/shoppingcart/receipt.html -msgid "Students" -msgstr "学生" - -#. Translators: Please keep the "" and "" tags around your -#. translation of the word "this" in your translation. -#: lms/templates/shoppingcart/receipt.html -msgid "Note: items with strikethough like this have been refunded." -msgstr "提示:带删除线的项目如this 已经退款" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "Confirm Enrollment" -msgstr "确认选课" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "{site_name} - Confirm Enrollment" -msgstr "{site_name}—确认选课" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "{course_number} {course_title} Cover Image" -msgstr "{course_number} {course_title}封面图片" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "Confirm your enrollment for: {span_start}course dates{span_end}" -msgstr "确认您的选课:{span_start}课程日期{span_end}" - -#: lms/templates/shoppingcart/registration_code_receipt.html -msgid "{course_name}" -msgstr "{course_name}" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "" -"You've clicked a link for an enrollment code that has already been used. " -"Check your {link_start}course dashboard{link_end} to see if you're enrolled " -"in the course, or contact your company's administrator." -msgstr "" -"您点击的这个选课码的链接已经使用过了。检查您的{link_start}课程面板{link_end}查看您是否已经注册了这们课程,或者联系您公司的管理员。" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "" -"You have successfully enrolled in {course_name}. This course has now been " -"added to your dashboard." -msgstr "您已经成功的选修了 {course_name},这门课程现已添加到您的课程面板中。" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "" -"You're already enrolled for this course. Visit your " -"{link_start}dashboard{link_end} to see the course." -msgstr "您已经选修了这门课程,请前往您的{link_start}课程面板{link_end}查看该课程。" - -#: lms/templates/shoppingcart/registration_code_receipt.html -msgid "The course you are enrolling for is full." -msgstr "您登记的课程人数已满" - -#: lms/templates/shoppingcart/registration_code_receipt.html -msgid "The course you are enrolling for is closed." -msgstr "您登记的课程已关闭" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "There was an error processing your redeem code." -msgstr "处理您的兑换码时出现了一个错误。" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "" -"You're about to activate an enrollment code for {course_name} by " -"{site_name}. This code can only be used one time, so you should only " -"activate this code if you're its intended recipient." -msgstr "您要激活一个 {site_name}上的{course_name}的选课码。这个选课码只能使用一次,所以只有当您是它的既定接收人才激活它。" - -#: lms/templates/shoppingcart/registration_code_receipt.html -#: lms/templates/shoppingcart/registration_code_redemption.html -msgid "Activate Course Enrollment" -msgstr "激活选课" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "" -"{course_names} has been removed because the enrollment period has closed." -msgid_plural "" -"{course_names} have been removed because the enrollment period has closed." -msgstr[0] "因选课时限已关闭,{course_names} 已被移除。" - -#. Translators: currency_symbol is a symbol indicating type of currency, ex -#. "$". -#. This string would look like this when all variables are in: -#. "$500.00" -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "{currency_symbol}{price}" -msgstr "{currency_symbol}{price}" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Cover Image" -msgstr "封面图片" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Students:" -msgstr "学生:" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Input quantity and press enter." -msgstr "输入数量然后按回车" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Increase" -msgstr "增加" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Decrease" -msgstr "减少" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Remove" -msgstr "删除" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Discount or activation code" -msgstr "折扣或激活码" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "discount or activation code" -msgstr "折扣或激活码" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Apply" -msgstr "应用" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "code has been applied" -msgstr "代码已被应用" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "TOTAL:" -msgstr "总价:" - -#. Translators: currency_symbol is a symbol indicating type of currency, ex -#. "$". currency_abbr is -#. an abbreviation for the currency, ex "USD". This string would look like -#. this -#. when all variables are in: -#. "$500.00 USD" -#: lms/templates/shoppingcart/shopping_cart.html -msgid "{currency_symbol}{price} {currency_abbr}" -msgstr "{currency_symbol}{price} {currency_abbr}" - -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "" -"After this purchase is complete, a receipt is generated with relative " -"billing details and registration codes for students." -msgstr "付款完成后,我们会为学生们生成一张包含费用明细和注册码的收据。" - -#: lms/templates/shoppingcart/shopping_cart.html -#: lms/templates/shoppingcart/shopping_cart.html -msgid "" -"After this purchase is complete, {username} will be enrolled in this course." -msgstr "付款完成后,{username}的选课将会生效。" - -#: lms/templates/shoppingcart/shopping_cart.html -msgid "Empty Cart" -msgstr "清空购物车" - -#: lms/templates/shoppingcart/shopping_cart_flow.html -msgid "Shopping cart" -msgstr "购物车" - -#: lms/templates/shoppingcart/shopping_cart_flow.html -msgid "{platform_name} - Shopping Cart" -msgstr "{platform_name} - 购物车" - -#: lms/templates/shoppingcart/shopping_cart_flow.html -msgid "Confirmation" -msgstr "确认" - -#: lms/templates/static_templates/404.html -msgid "" -"The page that you were looking for was not found. Go back to the " -"{link_start}homepage{link_end} or let us know about any pages that may have " -"been moved at {email}." -msgstr "未能找到您查找的页面。返回到{link_start}主页{link_end}或发电子邮件至{email}告诉我们可能被移除的页面。" - -#: lms/templates/static_templates/about.html -#: lms/templates/static_templates/blog.html -#: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/disclaimer.html -#: lms/templates/static_templates/donate.html -#: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/help.html -#: lms/templates/static_templates/honor.html -#: lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/join_us.html -#: lms/templates/static_templates/manual.html -#: lms/templates/static_templates/media-kit.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html -#: lms/templates/static_templates/privacy.html -#: lms/templates/static_templates/privacy_policy.html -#: lms/templates/static_templates/tos.html -#: lms/templates/static_templates/user_agreement.html -msgid "This page left intentionally blank. Feel free to add your own content." -msgstr "这个页面是有意留空的。欢迎您添加自己的评论。" - -#: lms/templates/static_templates/blog.html -#: lms/templates/static_templates/blog.html -msgid "Blog" -msgstr "博客" - -#: lms/templates/static_templates/contact.html -#: lms/templates/static_templates/contact.html -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/about.html -msgid "Contact" -msgstr "联系我们" - -#: lms/templates/static_templates/disclaimer.html -#: lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "Disclaimer" -msgstr "免责声明" - -#: lms/templates/static_templates/donate.html -#: lms/templates/static_templates/donate.html -msgid "Donate" -msgstr "捐助" - -#: lms/templates/static_templates/embargo.html -msgid "" -"Our system indicates that you are trying to access this {platform_name} " -"course from a country or region currently subject to U.S. economic and trade" -" sanctions.Unfortunately, because {platform_name} is required to comply with" -" export controls,we cannot allow you to access this course at this time." -msgstr "" -"我们的系统表明您所在的国家或地区正在受到美国经济贸易制裁,非常抱歉,{platform_name}必须接受出口管制,所以我们暂时无法允许您访问此{platform_name}课程。" - -#: lms/templates/static_templates/faq.html -#: lms/templates/static_templates/faq.html -msgid "FAQ" -msgstr "常见问题" - -#: lms/templates/static_templates/honor.html -#: lms/templates/static_templates/honor.html -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Honor Code" -msgstr "诚信准则" - -#: lms/templates/static_templates/jobs.html -#: lms/templates/static_templates/jobs.html -msgid "Jobs" -msgstr "招才纳贤" - -#: lms/templates/static_templates/join_us.html -#: lms/templates/static_templates/join_us.html -#: themes/normal-theme/lms/templates/footer.html -msgid "Join Us" -msgstr "加入我们" - -#: lms/templates/static_templates/manual.html -#: lms/templates/static_templates/manual.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/manual.html -msgid "Manual" -msgstr "使用手册" - -#: lms/templates/static_templates/media-kit.html -#: lms/templates/static_templates/media-kit.html -msgid "Media Kit" -msgstr "多媒体工具箱" - -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/news.html -#: lms/templates/static_templates/press.html -#: lms/templates/static_templates/press.html -msgid "In the Press" -msgstr "新闻" - -#: lms/templates/static_templates/server-down.html -msgid "Currently the {platform_name} servers are down" -msgstr "目前{platform_name} 平台的服务器非正常运行" - -#: lms/templates/static_templates/server-down.html -#: lms/templates/static_templates/server-overloaded.html -msgid "" -"Our staff is currently working to get the site back up as soon as possible. " -"Please email us at {tech_support_email} to report any problems or downtime." -msgstr "" -"我们的工作人员正在努力尽快恢复网站的正常运行。要报告您发现的任何问题或遇到网站非正常运行,请发送邮件至{tech_support_email}。" - -#: lms/templates/static_templates/server-error.html -msgid "There has been a 500 error on the {platform_name} servers" -msgstr "{platform_name} 平台的服务器发生代码为500的错误" - -#: lms/templates/static_templates/server-error.html -msgid "" -"Please wait a few seconds and then reload the page. If the problem persists," -" please email us at {email}." -msgstr "请等待几秒钟后再刷新该页面。如果问题照旧,请向{email}发邮件。" - -#: lms/templates/static_templates/server-overloaded.html -msgid "Currently the {platform_name} servers are overloaded" -msgstr " 目前{platform_name}平台的服务器已经超负荷" - -#: lms/templates/static_templates/user_agreement.html -#: lms/templates/static_templates/user_agreement.html -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "User Agreement" -msgstr "用户协议" - -#: lms/templates/student_account/account_settings.html -msgid "Account Settings" -msgstr "账号设置" - -#: lms/templates/student_account/account_settings.html -msgid "Mobile" -msgstr "手机" - -#: lms/templates/student_account/account_settings.html -#: themes/normal-theme/lms/templates/footer.html -msgid "Bind Mobile" -msgstr "绑定手机" - -#: lms/templates/student_account/account_settings.html -msgid "Successfully Bound." -msgstr "已经绑定手机号" - -#: lms/templates/student_account/account_settings.html -msgid "Change Mobile No." -msgstr "修改手机号" - -#: lms/templates/student_account/account_settings.html -msgid "bind your EliteMBA account to your cellphone number" -msgstr "将您的手机号码与EliteMBA的账号绑定" - -#: lms/templates/student_account/finish_auth.html -msgid "Please Wait" -msgstr "请稍候" - -#: lms/templates/student_account/finish_auth.html -msgid "Please wait" -msgstr "请稍候" - -#: lms/templates/student_account/login_and_register.html -msgid "Sign in or Register" -msgstr "登录或注册" - -#: lms/templates/support/certificates.html lms/templates/support/index.html -#: lms/templates/support/index.html -msgid "Student Support" -msgstr "学生支持" - -#: lms/templates/support/certificates.html -msgid "Student Support: Certificates" -msgstr "学生支持:证书" - -#: lms/templates/support/contact_us.html -msgid "Contact {platform_name} Support" -msgstr "联系{platform_name}支持" - -#: lms/templates/support/enrollment.html -msgid "Student Support: Enrollment" -msgstr "学生支持:选课" - -#: lms/templates/support/entitlement.html -msgid "Entitlements" -msgstr "授权" - -#: lms/templates/support/manage_user.html -msgid "Manage User" -msgstr "管理用户" - -#: lms/templates/support/manage_user.html -msgid "Student Support: Manage User" -msgstr "学生支持:管理用户" - -#: lms/templates/support/refund.html -msgid "Manual Refund" -msgstr "人工退费" - -#: lms/templates/support/refund.html -msgid "About to refund this order:" -msgstr "准备就该订单退费" - -#: lms/templates/support/refund.html -msgid "Order Id:" -msgstr "订单标识:" - -#: lms/templates/support/refund.html -msgid "Enrollment:" -msgstr "选课:" - -#: lms/templates/support/refund.html -msgid "enrolled" -msgstr "已选修" - -#: lms/templates/support/refund.html -msgid "unenrolled" -msgstr "已弃选" - -#: lms/templates/support/refund.html -msgid "Cost:" -msgstr "费用:" - -#: lms/templates/support/refund.html -msgid "CertificateItem Status:" -msgstr "证书状态:" - -#: lms/templates/support/refund.html -msgid "Order Status:" -msgstr "订单状态:" - -#: lms/templates/support/refund.html -msgid "Fulfilled Time:" -msgstr "完成时间:" - -#: lms/templates/support/refund.html -msgid "Refund Request Time:" -msgstr "退费申请时间:" - -#: lms/templates/survey/survey.html -msgid "User Survey" -msgstr "用户调查" - -#: lms/templates/survey/survey.html -msgid "Pre-Course Survey" -msgstr "课前调查" - -#: lms/templates/survey/survey.html -msgid "" -"You can begin your course as soon as you complete the following form. " -"Required fields are marked with an asterisk (*). This information is for the" -" use of {platform_name} only. It will not be linked to your public profile " -"in any way." -msgstr "" -"您完成下表后可立刻开始您的课程。必填的字段标有星号(*)。此信息仅用于{platform_name}的使用。它将不以任何形式与您的公开用户资料相关联。" - -#: lms/templates/survey/survey.html -msgid "You are missing the following required fields:" -msgstr "您遗漏了以下必填字段:" - -#: lms/templates/survey/survey.html -msgid "Cancel and Return to Dashboard" -msgstr "取消并返回到课程面板" - -#: lms/templates/survey/survey.html -msgid "Why do I need to complete this information?" -msgstr "我为什么要完成填写这些信息?" - -#: lms/templates/survey/survey.html -msgid "" -"We use the information you provide to improve our course for both current " -"and future students. The more we know about your specific needs, the better " -"we can make your course experience." -msgstr "我们使用您提供的信息来改善当前和未来的学生的课程学习体验。我们越了解您的具体需求,我们可以为您提供更好的课程体验。" - -#: lms/templates/survey/survey.html -msgid "Who can I contact if I have questions?" -msgstr "如果我碰到问题可以联系谁?" - -#: lms/templates/survey/survey.html -msgid "" -"If you have any questions about this course or this form, you can contact " -"{link_start}{mail_to_link}{link_end}." -msgstr "如果您对此门课程或此表格有任何问题,请联系{link_start}{mail_to_link}{link_end}。" - -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -msgid "Wiki" -msgstr "维基百科" - -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -msgid "Skeleton Page" -msgstr "框架页面" - -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -#: openedx/features/course_search/templates/course_search/course-search-fragment.html -#: openedx/features/course_search/templates/course_search/course-search-fragment.html -msgid "Search the course" -msgstr "搜索课程" - -#: lms/templates/ux/reference/bootstrap/course-skeleton.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Start Course" -msgstr "开始学习课程" - -#: lms/templates/verify_student/_verification_help.html -msgid "Have questions?" -msgstr "有疑问?" - -#: lms/templates/verify_student/_verification_help.html -msgid "" -"Please read {a_start}our FAQs to view common questions about our " -"certificates{a_end}." -msgstr "请阅读{a_start}我们的 FAQ 中关于证书的常见问题{a_end}。" - -#: lms/templates/verify_student/incourse_reverify.html -msgid "Re-Verify for {course_name}" -msgstr "请重新验证{course_name}" - -#: lms/templates/verify_student/missed_deadline.html -msgid "Verification Deadline Has Passed" -msgstr "认证期限已过" - -#: lms/templates/verify_student/missed_deadline.html -msgid "Upgrade Deadline Has Passed" -msgstr "升级截止日期已过" - -#: lms/templates/verify_student/missed_deadline.html -msgid "" -"The verification deadline for {course_name} was {{date}}. Verification is no" -" longer available." -msgstr "已超过{course_name}的认证截止日期 {{date}}。" - -#: lms/templates/verify_student/missed_deadline.html -msgid "" -"The deadline to upgrade to a verified certificate for this course has " -"passed." -msgstr "这门课程申请认证证书的截止日期已经过了。" - -#: lms/templates/verify_student/pay_and_verify.html -msgid "Upgrade Your Enrollment For {course_name}." -msgstr "为{course_name}更新您的选课信息。" - -#: lms/templates/verify_student/pay_and_verify.html -msgid "Receipt For {course_name}" -msgstr "{course_name}的收据" - -#: lms/templates/verify_student/pay_and_verify.html -msgid "Verify For {course_name}" -msgstr "为{course_name}认证" - -#: lms/templates/verify_student/pay_and_verify.html -msgid "Enroll In {course_name}" -msgstr "选修{course_name}" - -#: lms/templates/verify_student/pay_and_verify.html -msgid "Technical Requirements" -msgstr "技术要求" - -#: lms/templates/verify_student/pay_and_verify.html -msgid "" -"Please make sure your browser is updated to the {strong_start}{a_start}most " -"recent version possible{a_end}{strong_end}. Also, please make sure your " -"{strong_start}webcam is plugged in, turned on, and allowed to function in " -"your web browser (commonly adjustable in your browser settings).{strong_end}" -msgstr "" -"请确认您的浏览器已更新至{strong_start}{a_start}最新的可用版本{a_end}{strong_end}。同时,请确保您的{strong_start}网络摄像头已插好、已开启且在您的网络浏览器(通常可在您的浏览器设置中进行调节)中可正常使用。{strong_end}" - -#: lms/templates/verify_student/reverify.html -msgid "Re-Verification" -msgstr "重新认证" - -#: lms/templates/verify_student/reverify_not_allowed.html -#: lms/templates/verify_student/reverify_not_allowed.html -msgid "Identity Verification" -msgstr "身份验证" - -#: lms/templates/verify_student/reverify_not_allowed.html -msgid "" -"You have already submitted your verification information. You will see a " -"message on your dashboard when the verification process is complete (usually" -" within 1-2 days)." -msgstr "您已提交了认证信息。当认证过程结束后,您会在您的课程面板中看到一条消息(通常在1-2天内)。" - -#: lms/templates/verify_student/reverify_not_allowed.html -msgid "You cannot verify your identity at this time." -msgstr "您不能在此时验证您的身份。" - -#: lms/templates/verify_student/reverify_not_allowed.html -msgid "Return to Your Dashboard" -msgstr "返回您的课程面板" - -#: lms/templates/widgets/cookie-consent.html -msgid "" -"This website uses cookies to ensure you get the best experience on our " -"website. If you continue browsing this site, we understand that you accept " -"the use of cookies." -msgstr "本站使用cookie给您提供最佳体验,如果您继续浏览本站,那么我们将认为您同意使用cookie。" - -#: lms/templates/widgets/cookie-consent.html -msgid "Got it!" -msgstr "成功了!" - -#: lms/templates/widgets/cookie-consent.html -msgid "Learn more" -msgstr "了解更多" - -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -#: lms/templates/wiki/includes/article_menu.html -msgid "{span_start}(active){span_end}" -msgstr "{span_start}(激活){span_end}" - -#: lms/templates/wiki/includes/article_menu.html -msgid "Changes" -msgstr "变更" - -#: lms/templates/wiki/includes/article_menu.html -msgid "{span_start}active{span_end}" -msgstr "{span_start}激活{span_end}" - -#: lms/templates/wiki/includes/breadcrumbs.html -msgid "Course Wiki" -msgstr "课程百科" - -#: lms/templates/wiki/includes/breadcrumbs.html -msgid "Add article" -msgstr "添加文章" - -#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html -msgid "Preview Language Setting" -msgstr "预览语言设置" - -#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html -msgid "Language Code" -msgstr "语言代码" - -#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html -msgid "e.g. en for English" -msgstr "例如:en即英语" - -#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html -msgid "Theming Administration" -msgstr "网站主题管理" - -#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html -msgid "Preview Theme" -msgstr "预览主题" - -#: openedx/core/lib/license/templates/license.html -msgid "All Rights Reserved" -msgstr "保留所有权利" - -#: openedx/core/lib/license/templates/license.html -msgid "Attribution" -msgstr "署名" - -#: openedx/core/lib/license/templates/license.html -msgid "Noncommercial" -msgstr "非商业的" - -#: openedx/core/lib/license/templates/license.html -msgid "No Derivatives" -msgstr "无相关派生" - -#: openedx/core/lib/license/templates/license.html -msgid "Share Alike" -msgstr "相同方式共享" - -#: openedx/core/lib/license/templates/license.html -msgid "Creative Commons licensed content, with terms as follow:" -msgstr "知识共享许可内容,条款如下:" - -#: openedx/core/lib/license/templates/license.html -msgid "Some Rights Reserved" -msgstr "保留部分权利" - -#: openedx/features/course_experience/templates/course_experience/course-dates-fragment.html -msgid "Important Course Dates" -msgstr "重要课程日期" - -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Goal: " -msgstr "学习目标:" - -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Edit your course goal:" -msgstr "编辑您的课程目标:" - -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Pursue a verified certificate" -msgstr "考取认证证书" - -#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html -msgid "Upgrade ({price})" -msgstr "升级({price})" - -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "Expand All" -msgstr "展开全部" - -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "Prerequisite: " -msgstr "先修条件:" - -#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html -msgid "{subsection_format} due {{date}}" -msgstr "{subsection_format} 截止{{date}}" - -#: openedx/features/course_experience/templates/course_experience/course-reviews-fragment.html -#: openedx/features/course_experience/templates/course_experience/course-reviews-fragment.html -msgid "Reviews" -msgstr "评论" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Learn About Verified Certificates" -msgstr "认证证书是什么?" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "{platform_name} Verified Certificate" -msgstr "{platform_name}认证证书" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Why upgrade?" -msgstr "为什么要升级?" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Official proof of completion" -msgstr "已完成的官方证明" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Easily shareable certificate" -msgstr "易于分享的证书" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Proven motivator to complete the course" -msgstr "完成课程的有效激励因素" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "" -"Certificate purchases help {platform_name} continue to offer free courses" -msgstr "您对证书的购买,是{platform_name}持续推出免费课程的动力" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "How it works" -msgstr "具体流程" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Pay the Verified Certificate upgrade fee" -msgstr "支付认证证书升级奋勇" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Verify your identity with a webcam and government-issued ID" -msgstr "使用网络摄像头和政府签发的身份证来认证您的身份" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Study hard and pass the course" -msgstr "努力学习课程不挂科" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Share your certificate with friends, employers, and others" -msgstr "分享您的证书给朋友、同事、所有人" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "edX Learner Stories" -msgstr "edX学员故事" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "" -"My certificate has helped me showcase my knowledge on my" -" resume - I feel like this certificate could " -"really help me land my dream job!" -msgstr "证书在我的简历上添了一笔 - 努力的收获让我离梦想的事业更近一部!" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "{learner_name}, EliteMBA Learner" -msgstr "{learner_name},EliteMBA学员" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "" -"I wanted to include a verified certificate on my resume and my profile to" -" illustrate that I am working towards this goal " -"I have and that I have achieved something while " -"I was unemployed." -msgstr "我想要在简历和资料上添上一份认证证书,表明我有学习目标,并且不在职期间也收益颇丰。" - -#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html -msgid "Upgrade ({course_price})" -msgstr "升级({course_price})" - -#: openedx/features/course_experience/templates/course_experience/course-updates-fragment.html -msgid "This course does not have any updates." -msgstr "此门课程没有任何更新。" - -#: openedx/features/course_experience/templates/course_experience/dates-summary.html -msgid "Today is {date}" -msgstr "今天是 {date}" - -#: openedx/features/course_experience/templates/course_experience/latest-update-fragment.html -msgid "Latest Update" -msgstr "最近更新" - -#: openedx/features/course_search/templates/course_search/course-search-fragment.html -#: openedx/features/course_search/templates/course_search/course-search-fragment.html -msgid "Search Results" -msgstr "搜索结果" - -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "Purchase the Bundle (" -msgstr "购买套餐(" - -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "Courses included" -msgstr "所包含课程" - -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "Journals included" -msgstr "所包含文章" - -#: openedx/features/journals/templates/journals/bundle_about.html -msgid "{access_length} Day Access" -msgstr "访问{access_length}天" - -#: openedx/features/journals/templates/journals/bundle_about.html -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "View Journal" -msgstr "查看文章" - -#: openedx/features/journals/templates/journals/bundle_card.html -msgid "Bundle" -msgstr "套餐" - -#: openedx/features/journals/templates/journals/journal_card.html -msgid "Journal" -msgstr "文章" - -#: openedx/features/journals/templates/journals/journal_card.html -msgid "{num_months} month" -msgid_plural "{num_months} months" -msgstr[0] "{num_months}个月" - -#: openedx/features/journals/templates/journals/journal_card.html -msgid "unlimited" -msgstr "无限" - -#: openedx/features/journals/templates/journals/journal_card.html -#: openedx/features/journals/templates/journals/journal_card.html -msgid "Access Length" -msgstr "访问时长" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "Journal Dashboard" -msgstr "文章面板" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "{journal_title} Cover Image" -msgstr "{journal_title}封面图片" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "Access Expired: {date}" -msgstr "访问于{date}已过期" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "Access Expires: {date}" -msgstr "访问将于{date}过期" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "Renew Access" -msgstr "续访" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "You have not purchased access to any journals yet." -msgstr "您尚未购买此文章的访问权。" - -#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html -msgid "Explore journals and courses" -msgstr "探索文章和课程" - -#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html -msgid "My Stats (Beta)" -msgstr "我的统计数据(Beta)" - -#. Translators: this section lists all the third-party authentication -#. providers -#. (for example, Google and LinkedIn) the user can link with or unlink from -#. their edX account. -#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html -msgid "Connected Accounts" -msgstr "已关联的账号" - -#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html -msgid "Linked" -msgstr "已关联" - -#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html -msgid "Not Linked" -msgstr "未关联" - -#. Translators: clicking on this removes the link between a user's edX account -#. and their account with an external authentication provider (like Google or -#. LinkedIn). -#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html -msgid "Unlink" -msgstr "取消关联" - -#. Translators: clicking on this creates a link between a user's edX account -#. and their account with an external authentication provider (like Google or -#. LinkedIn). -#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html -msgid "Link" -msgstr "关联" - -#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html -msgid "Completed {completion_date_html}" -msgstr "已完成{completion_date_html}" - -#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html -#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html -msgid "{course_mode} certificate" -msgstr "{course_mode}证书" - -#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html -msgid "You haven't earned any certificates yet." -msgstr "您尚未获得证书。" - -#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html -#: themes/edx.org/lms/templates/dashboard.html -msgid "Explore New Courses" -msgstr "探索新课程" - -#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html -msgid "Learner Profile" -msgstr "学生用户资料" - -#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html -msgid "View My Records" -msgstr "查看我的记录" - -#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html -msgid "My Profile" -msgstr "我的用户资料" - -#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html -msgid "" -"Build out your profile to personalize your identity on {platform_name}." -msgstr "自定义您的{platform_name}身份。" - -#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html -msgid "An error occurred. Try loading the page again." -msgstr "出现一个错误。尝试重试加载页面。" - -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "" -"Access Course Staff Support on the Partner Portal to submit or review " -"support tickets" -msgstr "在合作伙伴网站上访问“课程人员支持”来提交或查看支持工作单" - -#: themes/edx.org/cms/templates/widgets/sock.html -msgid "edX Partner Portal" -msgstr "edX 合作伙伴网站" - -#: themes/edx.org/lms/templates/dashboard.html -msgid "" -"Browse recently launched courses and see what's new in your favorite " -"subjects." -msgstr "浏览最新开办的课程,看看您最喜欢的科目中有了什么新内容" - -#: themes/edx.org/lms/templates/footer.html -msgid "Page Footer" -msgstr "页脚" - -#: themes/edx.org/lms/templates/footer.html -msgid "edX Home Page" -msgstr "edX首页" - -#: themes/edx.org/lms/templates/footer.html -msgid "© 2012–{year} edX Inc. " -msgstr "© 2012–{year} edX股份有限公司 " - -#: themes/edx.org/lms/templates/footer.html -msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " -msgstr "EdX、Open edX以及MicroMaster是edX股份有限公司的商标。" - -#: themes/edx.org/lms/templates/certificates/_about-accomplishments.html -msgid "About edX Verified Certificates" -msgstr "关于edX认证证书" - -#: themes/edx.org/lms/templates/certificates/_about-accomplishments.html -msgid "" -"An edX Verified Certificate signifies that the learner has agreed to abide " -"by the edX honor code and completed all of the required tasks of this course" -" under its guidelines, as well as having their photo ID checked to verify " -"their identity." -msgstr "edX认证证书可证明学员已同意遵守edX荣誉准则,并已按照准则完成所有所需任务、已通过提交身份证明至审查完成了认证身份。" - -#: themes/edx.org/lms/templates/certificates/_about-edx.html -msgid "About edX" -msgstr "关于 edX" - -#: themes/edx.org/lms/templates/certificates/_about-edx.html -msgid "" -"{link_start}edX{link_end} offers interactive online classes and MOOCs from " -"the world's best universities, including MIT, Harvard, Berkeley, University " -"of Texas, and many others. edX is a non-profit online initiative created by " -"founding partners Harvard and MIT." -msgstr "" -"{link_start}edX{link_end}提供互动式在线课堂和来自世界顶级大学的MOOC,包括麻省理工、哈佛大学、伯克利大学、 " -"德克萨斯大学等;edX是由创始合伙人哈佛大学和麻省理工创办的非营利性在线教育先驱。" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Congratulations, {user_name}!" -msgstr "恭喜,{user_name}!" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "" -"You worked hard to earn your certificate from " -"{accomplishment_copy_course_org} {dash} share it with colleagues, friends, " -"and family to get the word out about what you mastered in " -"{accomplishment_course_title}." -msgstr "" -"您刻苦学习考取了{accomplishment_copy_course_org}的证书 {dash} " -"与同事、朋友、家人分享吧,告诉大家您学习了{accomplishment_course_title}。" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Share this certificate on Facebook (opens a new tab/window)" -msgstr "分享此证书至Facebook(打开新标签页/窗口)" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Tweet this certificate (opens a new tab/window)" -msgstr "在Twitter上分享此证书(打开新标签页/窗口)" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Add this certificate to your LinkedIn profile (opens a new tab/window)" -msgstr "添加此证书至您的LinkedIn资料(打开新标签页/窗口)" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Print" -msgstr "打印" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html -msgid "Print this certificate" -msgstr "打印此证书" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html -msgid "Terms of Service & Honor Code" -msgstr "服务条款 & 荣誉准则" - -#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html -msgid "edX Inc." -msgstr "edX Inc." - -#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html -msgid "" -"All rights reserved except where noted. edX, Open edX and the edX and Open " -"edX logos are registered trademarks or trademarks of edX Inc." -msgstr "" -"© edX Inc. 保留所有权利(特别标注除外)。EdX、Open edX、edX 和 Open EdX 标识均为注册商标或 edX Inc. " -"的商标。" - -#: themes/edx.org/lms/templates/course_modes/choose.html -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Support our Mission: {b_end}EdX, a non-profit, relies on verified " -"certificates to help fund affordable education to everyone globally." -msgstr "{b_start}支持我们的使命:{b_end} EdX 是一个非营利组织,依靠已经过身份认证的证书来来资助人人可享的全球免费教育" - -#: themes/edx.org/lms/templates/course_modes/choose.html -msgid "" -"{b_start}Support our Mission: {b_end} EdX, a non-profit, relies on verified " -"certificates to help fund free education for everyone globally" -msgstr "{b_start}支持我们的使命:{b_end} EdX 是一个非营利组织,依靠认证证书来来资助人人可享的全球免费教育" - -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Find Courses" -msgstr "查找课程" - -#: themes/edx.org/lms/templates/header/navbar-authenticated.html -msgid "Schools & Partners" -msgstr "学校 & 伙伴" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Learn to Change·Change to Progress" -msgstr "学则变 · 变则进" - -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "About Us" -msgstr "关于我们" - -#: themes/normal-theme/lms/templates/footer.html -msgid "About Platform" -msgstr "关于平台" - -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/static_templates/help.html -msgid "Help and Complaint" -msgstr "帮助与投诉" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Terms Description" -msgstr "条款说明" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Partners" -msgstr "合作机构" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Cloud classroom of Netease" -msgstr "网易云课堂" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Tencent Classroom" -msgstr "腾讯课堂" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Elite MBA" -msgstr "英荔商学院" - -#: themes/normal-theme/lms/templates/footer.html -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "WeChat Scan Code" -msgstr "微信扫一扫" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Scan via Wechat to Follow Course Updates" -msgstr "关注名师开课动态" - -#: themes/normal-theme/lms/templates/footer.html -msgid "" -"Guangdong Elite International Education & Technology Co., Ltd. All Rights" -" Reserved" -msgstr "广东英荔国际教育科技有限公司  版权所有" - -#: themes/normal-theme/lms/templates/footer.html -msgid "bind your account to your cellphone number" -msgstr "绑定手机号" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Please enter the phone number" -msgstr "请输入手机号码" - -#: themes/normal-theme/lms/templates/footer.html -msgid "get verification code" -msgstr "获取验证码" - -#: themes/normal-theme/lms/templates/footer.html -msgid "incorrect cellphone number format" -msgstr "手机号码格式不正确" - -#: themes/normal-theme/lms/templates/footer.html -msgid "Reminder" -msgstr "提示" - -#: themes/normal-theme/lms/templates/footer.html -msgid "" -"To meet the requirements of national policies and regulations of using a " -"real legal name,please bind your account to your cellphone number before " -"proceeding." -msgstr "应国家法规对于账号实名的要求,请您在进行下一步操作前,先完成手机绑定。" - -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: themes/normal-theme/lms/templates/index_overlay.html -msgid "Learn to Change · Change to Improve —— EliteMBA" -msgstr "学则变 · 变则进 —— 英荔商学院" - -#. Translators: 'Open edX' is a registered trademark, please keep this -#. untranslated. See http://open.edx.org for more information. -#: themes/normal-theme/lms/templates/index_overlay.html -msgid "Enjoy high-value MBA curriculum with ¥99.84 monthly payment!" -msgstr "月均99.84元,畅学高价值MBA课程!" - -#: themes/normal-theme/lms/templates/certificates/_accomplishment-banner.html -msgid "Download Certificate" -msgstr "下载证书" - -#: themes/normal-theme/lms/templates/certificates/_accomplishment-rendering.html -#: themes/normal-theme/lms/templates/certificates/_accomplishment-rendering.html -msgid ":" -msgstr ":" - -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Add {course_name} to Cart ({price} USD)" -msgstr "添加{course_name}到购物({price} USD)" - -#: themes/normal-theme/lms/templates/courseware/course_about.html -msgid "Course Instructor" -msgstr "授课老师" - -#: themes/normal-theme/lms/templates/courseware/course_about_sidebar_header.html -msgid "" -"Share your experience by clicking the button on the above right corner of " -"the screen" -msgstr "点击屏幕右上角分享按钮" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "" -"EliteMBA (www.EliteMBA.cn) is a sub-brand of Guangdong Elite International " -"Education & Technology Co., Ltd. focusing on the development of MBA online " -"classroom." -msgstr "英荔商学院(www.EliteMBA.cn)是广东英荔国际教育科技有限公司旗下的商业管理类互联网课堂。" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "" -"EliteMBA teams up with senior professors and experts in business management " -"academics at home and abroad to design and produce high quality and " -"knowledgeable systematic online courses. At the same time, we select and " -"introduce high-quality foreign educational content to provide learners with " -"a localized learning experience created by EliteMBA." -msgstr "" -"英荔与国内外商业管理学术界资深的教授和专家联手,精心设计并制作高质量且极具知识价值的体系化在线课程。同时,筛选并引进国外优质教育内容,向学习者提供经英荔团队打造后的本土化版本。" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "" -"It is the common pursuit of educators to transfer knowledge to more learners" -" as much as possible. EliteMBA expects to provide educators with more " -"effective means of transmission and increase the reach of knowledge. Here, " -"we would like to offer sincere invitations to experts and professors, and " -"look forward to creating and introducing more high-quality curriculum " -"resources, so that knowledge can generate more value in a diverse world. " -msgstr "" -"尽己所能地向更多学习者传递知识是教育者们的共同追求。英荔期望为教育者提供更有效的传递途径,增加知识的触及范围。在此,向各位专家、教授发出诚挚的开课邀请,期待创造、引入更多优质的课程资源,让知识在多元的世界产生更多元的价值。" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "For course cooperation, please contact: " -msgstr "课程合作请联系:" - -#: themes/normal-theme/lms/templates/static_templates/about.html -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "." -msgstr "。" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "Education should guide society, not chase society" -msgstr "教育应指导社会,而不是追逐社会" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "" -"Mr. Cai Yuanpei said that education should guide the society, rather than " -"pursue it. Elite Education abandons the ideas of upholding the pursuit of " -"society, and advocates learners' self-achievement and their ambition in " -"leading the society. EliteMBA courses advocate, instead of the rote of " -"knowledge input, the motivation for pursuing wisdom and solving practical " -"problems." -msgstr "" -"教育家蔡元培先生说:“教育应指导社会,而不是追逐社会。”英荔摒弃追逐社会的模式,倡导学习者自我实现和引领社会的精神。英荔课堂没有生搬硬套的知识灌输,只有寻求智慧和解决实际问题的动力。" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "Our Mission" -msgstr "我们的使命" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "" -"Providing individuals, organizations with the knowledge, technology and " -"platform for lifelong learning." -msgstr "为个人和组织提供终身学习的知识、技术与平台。" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "Our Vision" -msgstr "我们的愿景" - -#: themes/normal-theme/lms/templates/static_templates/about.html -msgid "To become a reputable brand of digital education in China." -msgstr "成为中国享有声誉的数字化教育品牌。" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Elite Education" -msgstr "英荔教育" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "" -"Address: Room 1005, CITIC Plaza, No. 233 Tianhe North Road, Tianhe District," -" Guangzhou, China" -msgstr "地址:广州市天河区天河北路233号中信广场写字楼1005室" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Telephone: 400-931-8118 (Monday to Friday at 9:00-18:00)" -msgstr "电话:400-931-8118(周一至周五9:00 - 18:00)" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Course Cooperation" -msgstr "课程合作" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Contact: Mr. Chen" -msgstr "联系人:陈先生" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Human Resources and Recruitment" -msgstr "人力资源及招聘" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Feedback and Technical Support" -msgstr "建议及技术支持" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Media Communication" -msgstr "媒体交流" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Business Cooperation" -msgstr "商务合作" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Enterprise Procurement" -msgstr "企业采购" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "Contact: Ms. Liao" -msgstr "联系人:廖小姐" - -#: themes/normal-theme/lms/templates/static_templates/contact.html -msgid "System Bugs" -msgstr "系统漏洞" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "General Terms" -msgstr "总则" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -msgid "" -"The products and services of Elite Education (www.elitemba.cn) are provided " -"by Guangdong Yingli International Education & Technology Co., Ltd. " -"(hereinafter referred to as 'EliteMBA' or 'We'). This Disclaimer " -"Statement(hereinafter referred to as 'Disclaimer') applies to EliteMBA " -"website, other applications used on computers, mobile phones/tablets or " -"other devices and other products and services. EliteMBA User (hereinafter " -"referred to as 'User') must carefully read these terms and agree to this " -"statement before accepting EliteMBA service." -msgstr "" -"英荔商学院(www.EliteMBA.cn)的产品及服务由广东英荔国际教育科技有限公司(以下简称“英荔”或“我们”)提供。本免责声明(以下简称“本声明”)适用于英荔的网站、在计算机/手机/平板电脑或其他设备上使用的英荔的应用程序和其他产品及服务。英荔用户(以下简称“用户”)在接受英荔服务之前,请务必仔细阅读本条款并同意本声明" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"User who directly or (such as off-site API references, etc.) indirectly uses" -" EliteMBA services and data through various means will be regarded as having" -" unconditionally accepted all the contents involved in this Disclaimer; if " -"user objects any of the terms in this Disclaimer, please stop using all " -"services provided by EliteMBA. " -msgstr "" -"用户直接或通过各类方式(如站外API引用等)间接使用英荔服务和数据的行为,都将被视作已无条件接受本声明所涉全部内容;若用户对本声明的任何条款有异议,请停止使用英荔所提供的全部服务。" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"This disclaimer may be amended or changed at any time by EliteMBA. The " -"EliteMBA will announce and updated the effective date. The updated " -"disclaimer will effectively replace the original statement once it is " -"published. By continuing to use EliteMBA service, the user agrees to and " -"accepts this statement and any updated versions thereof." -msgstr "" -"本免责声明可由英荔随时修正或更改,英荔将公布并更新生效日期。更新后的免责声明一旦公布即有效代替原来的声明,用户继续使用英荔服务即表示用户同意并接受本声明及其任何更新版本。" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "Article 1" -msgstr "第一条" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"Users may not use EliteMBA to directly or indirectly engage in breaches of " -"EliteMBA services and data (including but not limited to publication, " -"promotion, reprint, browsing, and use of EliteMBA or its users) in various " -"ways. Laws and regulations of the People's Republic of China, as well as the" -" behavior of social morality. Users should abide by the following " -"commitments:" -msgstr "" -"用户以各种方式使用英荔服务和数据(包括但不限于发表、宣传介绍、转载、浏览及利用英荔或其用户发布内容)的过程中,不得以任何方式利用英荔直接或间接从事违反中华人民共和国法律法规,以及社会公德的行为。用户应当恪守下述承诺:" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"1. Content published, reprinted or provided should comply with Chinese laws " -"and regulations and social morality;" -msgstr "1.  发布、转载或提供的内容符合中国法律法规、社会公德;" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"2. Cannot interfere with, damage or violate the various legal rights and " -"interests of Elite Education;" -msgstr "2.  不得干扰、损害和侵犯英荔的各种合法权利与利益;" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"3.   Shall not interfere with, damage and infringe upon the various legal " -"rights and interests of other EliteMBA users;" -msgstr "3.  不得干扰、损害和侵犯其他英荔用户的各种合法权利与利益;" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"4. Compliance with the rules and guidelines, management rules, etc. of Elite" -" Education website and other network related services;" -msgstr "4.  遵守英荔以及与之相关的网络服务的协议、指导原则、管理细则等;" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"5. Elite Education has the right to remove content that violates the above " -"commitments." -msgstr "5.  英荔有权对违反上述承诺的内容予以删除。" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "Article 2" -msgstr "第二条" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"1. EliteMBA only provides storage space for content posted by users. " -"EliteMBA does not provide any form of guarantee for the content posted or " -"reprinted by the User: there is no guarantee that the content will meet the " -"requirements of users, and there is no guarantee that the services of " -"EliteMBA will not be interrupted. EliteMBA does not assume any legal " -"responsibility for any reason that the user cannot use the website due to " -"any conditions such as network conditions, communication lines, third-party " -"websites or management requirements." -msgstr "" -"1.  " -"英荔仅为用户发布的内容提供存储空间,英荔不对用户发表、转载的内容提供任何形式的保证:不保证内容满足用户的要求,不保证英荔的服务不会中断。因网络状况、通讯线路、第三方网站或管理部门的要求等任何原因而导致用户不能正常使用本网站,英荔不承担任何法律责任。" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"2. The content published by Elite User (including but not limited to the " -"contents of the current product features of Elite) only indicates their " -"personal position and views, and does not represent the position or opinion " -"of Elite. As the content publisher, it is the responsibility of the content " -"to be published. All the disputes arising from the published content shall " -"be the legal and joint responsibility of the publisher of the content. " -"EliteMBA does not assume any legal and joint responsibility. " -msgstr "" -"2.  " -"用户在英荔发表的内容(包含但不限于英荔目前各产品功能里的内容)仅表明其个人的立场和观点,并不代表英荔的立场或观点。作为内容的发表者,需自行对所发表内容负责,因所发表内容引发的一切纠纷,由该内容的发表者承担全部法律及连带责任。英荔不承担任何法律及连带责任。" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"3. if the user publishes content suspected of infringing on the intellectual" -" property rights or other legitimate rights and interests of others through " -"EliteMBA, after the relevant parties provide prima facie evidence, EliteMBA " -"has the right to delete it first and retain the right to transfer it to the " -"judicial authorities. Referring to the investigation results of the relevant" -" judicial authorities, EliteMBA has the final decision on the disposal of " -"the content posted on the website. " -msgstr "" -"3.  " -"用户在英荔发布涉嫌侵犯他人知识产权或其他合法权益的内容,经相关方提供初步证据,英荔有权先行予以删除,并保留移交司法机关查处的权利。参照相应司法机关的查处结果,英荔对于网站发布内容的处置具有最终决定权。" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"4. User should inform Elite when he/she discovers any violation of this " -"Service Agreement, the terms of service of any other individual service, and" -" various announcements made by Elite Education. " -msgstr "4.  个人或单位如认为英荔存在侵犯自身合法权益的内容,应准备好具有法律效应的证明材料,及时与英荔取得联系,以便英荔迅速做出处理。" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "Supplementary" -msgstr "附则" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"EliteMBA reserves the rights to interpret, modify and update the Disclaimer." -msgstr "对免责声明的解释、修改及更新权均属于英荔所有。" - -#: themes/normal-theme/lms/templates/static_templates/disclaimer.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Effective on Nov 30th, 2018" -msgstr "协议生效日期:2018年11月30日" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Ⅰ. Terms of Service" -msgstr "一、服务条款" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The products and services of Elite Education (www.elitemba.cn) are provided" -" by Guangdong Elite International Education & Technology Co., Ltd " -"(hereinafter referred to as 'EliteMBA' or 'we'). This User Agreement " -"(hereinafter referred to as Agreement) is applicable to EliteMBA websites, " -"EliteMBA applications and other related products and services on " -"computer/mobile phone/tablet or other devices. EliteMBA has the right to " -"modify the terms hereof at any time. Upon the occurrence of any modification" -" is applied, we would update the Agreement and modify effective date " -"accordingly and the old version of the Agreement will be invalid and the new" -" version will be in effect immediately upon its publishing on the page " -"herein. Users shall regularly review the terms of service and check for " -"upgrades. The action of continual usage of our services is an implied " -"agreement on any updated version of Agreement that is in effect. In " -"addition, when Users use other EliteMBA services (including but not limited " -"to periodical marketing services other than basic services provided the " -"website), the aforementioned user shall adhere to the guidelines and rules " -"published by EliteMBA related to those services. All of the aforementioned " -"guidelines and rules shall be considered as a part of this Agreement." -msgstr "" -"英荔商学院(www.EliteMBA.cn)的产品及服务由广东英荔国际教育科技有限公司(以下简称“英荔”或“我们”)提供。本使用协议(以下简称“使用协议”)适用于英荔的网站、在计算机/手机/平板电脑或其他设备上使用的英荔的应用程序和其他产品及服务。使用协议的内容可由英荔不定期修改、变更。一旦变动产生,我们将随即于使用协议上公布并更新生效日期。修改后的使用协议一旦公布即有效代替原来的使用协议。您应定期查看以了解更新后的服务条款,若您继续使用我们的服务即构成您对本服务条款及其任何更新版本的同意。此外,当英荔用户使用英荔特殊服务(包括但不限于除网站基本服务外的其他具时效性的市场活动服务)时,英荔用户应遵守英荔随时公布的与该服务相关的指引和规则。前述所有的指引和规则,均构成本使用协议的一部分。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"You should read this User Agreement carefully before using the services " -"provided by EliteMBA. If you do not agree to the User Agreement and/or " -"modify it at any time, please stop using all services provided by EliteMBA " -"immediately; once you use EliteMBA service, you are deemed to have " -"understood and fully agreed to the contents of this agreement, including any" -" changes made by EliteMBA to the User Agreement at any time, and become an " -"EliteMBA User (hereinafter referred to as ‘User’)." -msgstr "" -"您在使用英荔提供的各项服务之前,应仔细阅读本使用协议。如您不同意本使用协议及/或随时对其的修改,请立即停止使用英荔所提供的全部服务;您一旦使用英荔服务,即视为已了解并完全同意本使用协议各项内容,包括英荔对使用协议随时所做的任何修改,并成为英荔用户(以下简称“用户”)。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Ⅱ. Service Description" -msgstr "二、服务说明" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"EliteMBA currently offers users a range of course services (including but " -"not limited to course videos, test questions, exams, course materials, notes" -" and teaching assistant services). Except as otherwise explicitely expressed" -" in this Agreement, any new features of the Service that are added or " -"enhanced by EliteMBA, including new products introduced, are subject to the " -"terms of this Agreement. The User understands and agrees that the Service is" -" provided only in accordance with the current conditions and that EliteMBA " -"is not responsible for any user information or personalization settings, " -"such as timeliness, deletion, delivery errors, non-storage or any other " -"issues. EliteMBA reserves the right to suspend any part of the Service for " -"any maintenance, upgrade or other purpose without prior notice." -msgstr "" -"英荔目前向用户提供英荔自主制作的一系列课程服务(包括但不限于课程视频、测验题目、考试、课程资料、笔记以及助教服务)。除非本使用协议另有其他明示规定,英荔增加或强化此服务的任何新功能,包括所推出的新产品,均受到本使用协议之规范。用户了解并同意,本服务仅依其当前所呈现的状况提供,对于任何用户信息或个人化设定之失效、删除、传递错误、未予储存或其他任何问题,英荔均不承担任何责任。英荔保留不经事先通知因维修保养、升级或其他目的而暂停本服务任何部分的权利。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Ⅲ. Abidance by Law" -msgstr "三、遵守法律" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"The User agrees to abide by all the provisions of the relevant laws and " -"regulations of the People's Republic of China and assumes full " -"responsibility for any actions and results of the use of the Service by any " -"means and password. If the user's behavior violates any provisions of " -"national laws and regulations and may constitute a crime, he will be held " -"criminally liable and the user shall bear full legal responsibility." -msgstr "" -"用户同意遵守中华人民共和国相关法律法规的所有规定,并对以任何方式通过本人的账号和密码使用本服务的任何行为及其结果承担全部责任。如用户的行为违反国家法律和法规的任何规定,有可能构成犯罪的,将被追究刑事责任,并由用户承担全部法律责任。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"At the same time, if EliteMBA has the reason to believe that any of the " -"User's actions, including but not limited to any of the User's statements " -"and other acts violates or may violate any of the provisions of national " -"laws and regulations, EliteMBA may terminate to offer service to the User at" -" any time without prior notice. " -msgstr "" -"同时,如果英荔有理由认为用户的任何行为,包括但不限于用户的任何言论和其他行为违反或可能违反国家法律和法规的任何规定,英荔可在任何时候不经任何事先通知终止向用户提供服务。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Ⅳ. User Registration Obligation" -msgstr "四、用户的注册义务" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"In order to use the service, the User agrees to provide correct registered " -"account (email address and/or mobile phone number) and password according to" -" the service prompt, and ensure the validity and legality of the login " -"account, Avatar and other materials updated in the future. If the User " -"provides any material that is illegal, unethical, or that is deemed " -"unsuitable for display on this website, or that has reason to suspect that " -"the User's data is a program or malicious operation, EliteMBA has the right " -"to suspend or terminate the User's account and refuse the User to use all or" -" any part of the Service now and in the future. " -msgstr "" -"为了能使用本服务,用户同意以下事项:依本服务提示填写正确的注册账号(邮箱地址及/或手机号)、密码,并确保今后更新的登录账号、头像等资料的有效性和合法性。若用户提供任何违法、不道德或英荔认为不适合在本网站上展示的资料,或者英荔有理由怀疑用户的资料属于程序或恶意操作,英荔有权暂停或终止用户的账号,并拒绝用户于现在和未来使用本服务之全部或任何部分。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"EliteMBA is not responsible for any registration of any user, including but " -"not limited to the identification, verification of the authenticity, " -"correctness, completeness, suitability and/or responsibility of any " -"registration information." -msgstr "" -"英荔无须对任何用户的任何登记资料承担任何责任,包括但不限于鉴别、核实任何登记资料的真实性、正确性、完整性、适用性及/或是否为最新资料的责任。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "V. User Accounts, Passwords and Security" -msgstr "五、用户账号、密码及安全" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"After completing the registration process for this service and successfully " -"registered, the User can log in to the account of EliteMBA (hereinafter " -"referred to as the ‘account’) using their email address and/or mobile number" -" and password. Users are responsible for protecting the security of their " -"accounts." -msgstr "" -"完成本服务的注册程序并成功注册之后,用户可使用其邮箱地址及/或手机号码和密码,登录到用户在英荔的账号(以下简称“账号”)。用户须承担保障自己账号安全的责任。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The user is solely responsible for all passwords used and the activities of " -"the account. User agrees:" -msgstr "用户应对所有使用的密码及账号的活动负全部责任。用户同意:" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"1. Upon the occurrence of noticing any unauthorized account activity or " -"other security issue, User shall contact and notify E-ducation immediately. " -msgstr "1.  用户的英荔账号遭到未获授权的使用,或者发生其他任何安全问题时,用户将立即通知英荔;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"2. If the user does not keep his/her own account number and password, and " -"therefore any loss or damage caused by the User, EliteMBA cannot and will " -"not bear any responsibility;" -msgstr "2.  如果用户未保管好自己的账号和密码,因此而产生的任何损失或损害,英荔无法也不承担任何责任;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"3. User is solely responsible for all the activities and issues that occur " -"in their account. Upon the occurrence of any loss or damage to other Users, " -"Elite or any other third party due to the failure by the User in securing " -"their own Account and password, the aforementioned User shall take full " -"responsible." -msgstr "3.  每个用户都要对其账号中的所有行为和事件负全责。如果用户未保管好自己的账号和密码而对用户、英荔或第三方造成的损害,用户将负全部责任。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "VI. Privacy Policy of Elite Education " -msgstr "六、英荔隐私权政策" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The registration information provided by the User and certain other " -"information about the User retained by the company will be subject to the " -"laws of China's privacy and the company's Privacy Policy." -msgstr "用户提供的登记资料及英荔保留的有关用户的若干其他资料将受到中国有关隐私的法律和本公司《隐私政策》之规范。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "VII. Responsibility of the Provider/User" -msgstr "七、提供者之责任" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"In accordance with relevant laws and regulations, EliteMBA hereby notify all" -" Users solemnly that, the Provider of any content released or sent either " -"publicly or privately via Elite Education platform, including the publishing" -" or uploading of any text, information, data, picture, graphic, video or " -"other data (hereinafter referred to as ‘Content’), shall take full " -"responsibility for the Content they released or sent. EliteMBA only provides" -" storage space for Users, and cannot control the content transmitted through" -" the server, therefore we shall hold no responsibility for the validity, " -"integrity or quality of the Content. User shall be aware that there might be" -" unpleasant, inappropriate or disturbing Content upon the usage of the " -"service. In any case, EliteMBA shall hold no responsibility for any " -"aforementioned Content, and shall reserve the right to cease the " -"transmission of any of the aforementioned Content and take corresponding " -"actions by law, including but not limited to partially or entirely suspend " -"User from using this service, to keep relevant record and report to " -"authorities concerned." -msgstr "" -"根据有关法律法规,英荔在此郑重提醒用户注意,任何经由本服务而发布、上传的文字、资讯、资料、照片、图形、视讯、信息或其他资料(以下简称“内容”),无论系公开还是私下传送,均由内容提供者承担责任。英荔仅为用户提供内容存储空间,无法控制经由本服务传送之内容,因此不保证内容的正确性、完整性或品质。用户已预知使用本服务时,可能会接触到令人不快、不适当或令人厌恶之内容。在任何情况下,英荔均不为任何内容负责,但英荔有权依法停止传输任何前述内容并采取相应行动,包括但不限于暂停用户使用本服务的全部或部分,保存有关记录,并向有关机关报告。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "VIII. User Behavior" -msgstr "八、用户行为" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The User agrees that the Service will not be used for any illegal or " -"improper activities, including but not limited to the following:" -msgstr "用户同意将不会利用本服务进行任何违法或不正当的活动,包括但不限于下列行为:" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"1. Publish or otherwise transmit information that contains one of the " -"following:" -msgstr "1.  发布或以其他方式传送含有下列内容之一的信息:" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "Opposing to the basic principles established by the Constitution;" -msgstr "反对宪法所确定的基本原则的;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Endanger national security, disclose state secrets, subvert state power or " -"sabotage state unification; " -msgstr "危害国家安全,泄露国家秘密,颠覆国家政权,破坏国家统一的;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Damage to national honours and interests;" -msgstr "损害国家荣誉和利益的;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Inciting national hatred, ethnic discrimination, and undermining national " -"unity;" -msgstr "煽动民族仇恨、民族歧视、破坏民族团结的;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Destroy the national religious policy and promote cults and feudal " -"superstitions;" -msgstr "破坏国家宗教政策,宣扬邪教和封建迷信的;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Spread rumors, disrupting social order or endanger social stability;" -msgstr "散布谣言,扰乱社会秩序,破坏社会稳定的;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Spreading obscenity, eroticism, gambling, violence, murder and terrorism or " -"instigating others to commit crime;" -msgstr "散布淫秽、色情、赌博、暴力、凶杀、恐怖或者教唆犯罪的;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Insulting or slandering others, infringing on the legal rights of others;" -msgstr "侮辱或者诽谤他人,侵害他人合法权利的;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"Contains false, fraudulent, harmful, coercive, infringing on the privacy of " -"others, harassment, infringement, slander, vulgarity, jealousy, or other " -"morally offensive content;" -msgstr "含有虚假、诈骗、有害、胁迫、侵害他人隐私、骚扰、侵害、中伤、粗俗、猥亵、或其他道德上令人反感的内容;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Contains other content restricted or prohibited by Chinese laws, " -"regulations, rules, regulations, and any legally binding norm;" -msgstr "含有中国法律、法规、规章、条例以及任何具有法律效力之规范所限制或禁止的其他内容的;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"Content considered by EliteMBA to be unsuitable for display on EliteMBA " -"platforms;" -msgstr "含有英荔认为不适合在英荔展示的内容;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "2. Harm the legitimate rights and interests of others in any way;" -msgstr "2.  以任何方式危害他人的合法权益;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"3. Pretend to be any other person or institution, or to make a false " -"statement about or lied to any person or institution;" -msgstr "3.  冒充其他任何人或机构,或以虚伪不实的方式陈述或谎称与任何人或机构有关;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"4. Any content that is known but not authorized to be transmitted, sent by " -"e-mail or otherwise in accordance with any law or contract or legal " -"relationship. (e.g., due to employment relationships and internal " -"information, proprietary and confidential information known or disclosed " -"under a confidentiality contract)" -msgstr "" -"4.  " -"将依据任何法律或合约或法定关系(例如由于雇佣关系和依据保密合约所得知或揭露之内部资料、专属及机密资料)知悉但无权传送之任何内容加以发布、发送电子邮件或以其他方式传送;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"5. Publish or otherwise transmit the content of copyrights, patents, " -"trademarks, trade secrets, or other proprietary rights (hereinafter referred" -" to as ‘exclusive rights’) that infringe upon others;" -msgstr "5.  将侵害他人著作权、专利权、商标权、商业秘密、或其他专属权利(以下简称“专属权利”)之内容加以发布或以其他方式传送;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"6. Publish, send or otherwise transmit any advertising letter, promotional " -"material, 'spam', 'spamming', 'chain mail', 'direct sales' or any other form" -" of persuasive material;" -msgstr "" -"6.  将任何广告信函、促销资料、“垃圾邮件”、“滥发信件”、“连锁信件”、“直销”或其他任何形式的劝诱资料加以发布、发送或以其他方式传送;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"7. Publishing, sending or by any other means transmitting computer viruses " -"(hereinafter referred to as ‘Viruses’), including but not limited to Trojan " -"horses, worms, time bombs, Cancelbots, or other computer codes, files and " -"programs designed to interfere with, damage or limit the functionality of " -"any computer software, hardware or communication equipment;" -msgstr "" -"7.  " -"将设计目的在于干扰、破坏或限制任何计算机软件、硬件或通讯设备功能之计算机病毒(包括但不限于木马程序、蠕虫、定时炸弹、删除器“Cancelbot”,以下简称“病毒”)或其他计算机代码、档案和程序之任何资料,加以发布、发送或以其他方式传送;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"8. Interfere with or disrupt this service or server and network connected to" -" the Service, or violate any rules, procedures, policies or specifications " -"regarding the network connection service;" -msgstr "8.  干扰或破坏本服务或与本服务相连线之服务器和网络,或违反任何关于本服务连线网络之规定、程序、政策或规范;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "9. Tracking, cyber manhunting or harassing others in any other ways;" -msgstr "9.  跟踪、人肉搜索或以其他方式骚扰他人;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"10. Deliberate or unintentional violate any applicable local and/or national" -" law and any legally binding rules;" -msgstr "10.  故意或非故意地违反任何适用的当地、国家法律,以及任何具有法律效力的规则;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"11. Intercept, tamper with, collect, store or delete personal information, " -"on-site mail or other data without legal authorization, or use such " -"information for any illegal or improper purpose. " -msgstr "11.  未经合法授权而截获、篡改、收集、储存或删除他人个人信息、站内邮件或其他数据资料,或将获知的此类资料用于任何非法或不正当目的。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"The User has acknowledged that EliteMBA does not have full control over the " -"User's use. When the User uses any content, including relying on the " -"correctness, completeness or practicability of the foregoing content, the " -"User agrees to judge and assume all risks without relying on EliteMBA. " -"However, in its sole discretion, EliteMBA may refuse and remove any content " -"provided by the Service that violates these Terms or any other content that " -"is controversial to EliteMBA." -msgstr "" -"用户已认可英荔未对用户的使用行为进行全面控制,用户使用任何内容时,包括依赖前述内容之正确性、完整性或实用性时,用户同意将自行加以判断并承担所有风险,而不依赖于英荔。但英荔依其自行之考虑,可拒绝和删除经由本服务提供之违反本条款的或其他引起英荔异议的任何内容。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"User understands and agrees that EliteMBA might save or disclose contents in" -" adherence of the requirements of laws and regulations, integrity or the " -"following purposes:" -msgstr "用户了解并同意,英荔依据法律法规要求、基于诚信或出于以下目的,可能对部分内容加以保存或揭露:" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "1. Comply with legal procedures;" -msgstr "1.  遵守法律程序;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "3. Execute the implementation of this agreement;" -msgstr "2.  执行本使用协议;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "3. Respond to any claims made by third parties;" -msgstr "3.  回应任何第三人提出的权利主张;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"4. Protect the rights, property or personal safety of Elite Education, its " -"users and the public;" -msgstr "4.  保护英荔、其用户及公众之权利、财产或个人安全;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "5. Other conditions that EliteMBA deems necessary." -msgstr "5.  其他英荔认为有必要的情况。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "IX. Special Warning for International Use" -msgstr "九、国际使用之特别警告" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Users are aware of the borderless nature of the Internet and agree to abide " -"by all local laws and regulations regarding online conduct and content. The " -"User specifically agrees to comply with all applicable laws and regulations " -"regarding the transmission of information from China or the country in which" -" the user is located." -msgstr "" -"用户已了解国际互联网的无国界性,同意遵守当地所有关于网上行为及内容之法律法规。用户特别同意遵守有关从中国或用户所在国家或地区输出信息之传输的所有适用法律法规。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "X. Public information published on EliteMBA" -msgstr "十、在英荔发布的公开信息" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"1. In this User Agreement, 'the area in which the service is used publicly' " -"means the area that the general public can use;" -msgstr "1.  在本使用协议中,“本服务公开使用区域”系指一般公众可以使用的区域;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"2. For the content uploaded or published by the user in EliteMBA, the user " -"shall guarantee that he or she is the copyright owner or has obtained legal " -"authorization, and the content does not infringe the legal rights of any " -"third party, and the user agrees to grant all the aforementioned content to " -"EliteMBA for worldwide free, irrevocable, permanent, sublicensable or " -"transferable license use, under which license will have the right to use the" -" foregoing in a manner that is displayed, promoted and otherwise not " -"prohibited by our laws." -msgstr "" -"2.  " -"用户在英荔上传或发布的内容,用户应保证其为著作权人或已取得合法授权,并且该内容不会侵犯任何第三方的合法权益,用户同意授予英荔所有前述内容在全球范围内的免费、不可撤销的、永久的、可再许可或转让的独家使用权许可,据该许可英荔将有权以展示、推广及其他不为我国法律所禁止的方式使用前述内容。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XI. Compensation" -msgstr "十一、赔偿" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"Any third party’s claim or request, including a reasonable attorney fee, due" -" to the content provided, posted or transmitted by the User, the User’s " -"connection to the Service, the User’s breach of the User Agreement, or any " -"infringement of the User’s rights, the user agrees to indemnify EliteMBA and" -" its subsidiaries, affiliates, senior employees, agents, brand owners or " -"other partners and employees from damage and assume all legal liabilities " -"arising therefrom." -msgstr "" -"由于用户通过本服务提供、发布或传送之内容、用户与本服务连线、用户违反本使用协议、或用户侵害他人任何权利因而衍生或导致任何第三人提出任何索赔或请求,包括合理的律师费,用户同意赔偿英荔及其子公司、关联企业、高级职员、代理人、品牌共有人或其他合作伙伴及员工,并使其免受损害," -" 并承担由此引发的全部法律责任。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XII. About Use" -msgstr "十二、关于使用" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The User agrees not to copy, copy, sell, resell or use it for any other " -"commercial purpose for the use or acquisition of any part of the Service or " -"the Service." -msgstr "用户同意不对本服务任何部分或本服务之使用或获得,进行复制、拷贝、出售、转售或用于任何其他商业目的。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XIII. About Storage" -msgstr "十三、关于储存" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The User agrees that EliteMBA shall be liable for any information, " -"communication materials and other content posted or transmitted through the " -"Service, if it is deleted or not stored." -msgstr "通过本服务发布或传送之任何信息、通讯资料和其他内容,如被删除或未予储存,用户同意英荔毋须承担任何责任。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XIV. Modification of Service" -msgstr "十四、服务之修改" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"EliteMBA reserves the right to modify or terminate the Service (or any part " -"thereof) temporarily or permanently at any time, with or without notice. The" -" User agrees that the User shall not be liable to the User and any third " -"party for any modification, suspension or termination of the Service." -msgstr "" -"英荔有权于任何时间暂时或永久修改或终止本服务(或其任何部分),且无论通知与否。用户同意对于本服务所作的任何修改、暂停或终止,英荔对用户和任何第三人均无需承担任何责任。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XV. Termination of Service" -msgstr "十五、终止服务" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"User agrees that EliteMBA can, in its sole discretion, terminate the User " -"account or the use of this service (or any part thereof) for any reason " -"(including but not limited to long-term inactive account, or EliteMBA " -"believes that User has violated the letters and spirit of this User " -"Agreement), and remove and delete any content of the User within the " -"service. User agrees that the service provided under any term of this User " -"Agreement can be suspended or terminated without prior notification. User " -"acknowledges and agrees that EliteMBA can immediately close or delete User " -"account and all the related data and files, and/or prohibit continued use of" -" the above files or this service. In addition, User agrees that if the use " -"of this service is suspended or terminated, or the User’s account and " -"related data and files are closed or deleted, EliteMBA does not assume any " -"liability to the User or any third party." -msgstr "" -"用户同意英荔基于其自行之考虑,因任何理由(包含但不限于长期对账号无任何操作,或英荔认为用户已经违反本使用协议的文字及精神)终止用户的账号或本服务之使用(或服务之任何部分),并将用户在本服务内任何内容加以移除并删除。用户同意依本使用协议任何规定提供之本服务,无需进行事先通知即可中断或终止,用户承认并同意,英荔可立即关闭或删除用户的账号及用户账号中所有相关信息及文件,及/或禁止继续使用前述文件或本服务。此外,用户同意若本服务之使用被中断或终止或用户的账号及相关信息和文件被关闭或删除,英荔对用户或任何第三人均不承担任何责任。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XVI. Dealing with Advertisers and Other Third Parties" -msgstr "十六、与广告商及其他第三方进行交易" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Users engage in any form of communication or business dealings with " -"advertisers and other third parties through this website, or participate in " -"promotional activities, including payment and delivery of related goods or " -"services, and any other relevant terms, conditions, warranties or " -"representations reached, they are the fully behavior between users and " -"advertisers and other third parties. EliteMBA is not liable for any loss or " -"damage of any nature suffered by the user in connection with any of the " -"foregoing transactions or the aforementioned advertisers and other third " -"parties." -msgstr "" -"用户通过本网站与广告商及其他第三方进行任何形式的通讯或商业往来,或参与促销活动,包含相关商品或服务之付款及交付,以及达成的其他任何相关条款、条件、保证或声明,完全为用户与广告商及其他第三方之间之行为。用户因前述任何交易或前述广告商及其他第三方而遭受的任何性质的损失或损害,英荔对此不负任何法律责任。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XVII. Exclusive Rights of EliteMBA" -msgstr "十七、英荔之专属权利" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The User also understands and agrees that the content of the sponsored " -"advertisements or information presented to the User via the Service or the " -"Advertiser is also protected by copyright, trademark, service mark, patent " -"or other proprietary rights. Users may not modify, rent, lend, sell, " -"distribute any part or all of the Service or the Software, or create " -"derivative works, or use unauthorized software, including but not without " -"the express authorization of EliteMBA or the advertiser. Limited to the " -"purpose of using the Service for unauthorized purposes. EliteMBA only grants" -" the user personal, non-transferable and non-exclusive right to use, so that" -" the User can use the purpose code of the software on a stand-alone " -"computer, but the User may not (and must not allow any third person) to " -"copy, modify, create derivative works, perform restoration work, reverse " -"translation, or otherwise discover the source code, or sell, transfer, " -"sublicense or provide software to set a warranty, or otherwise transfer any " -"rights in the software. The User agrees to use the Service through the " -"interface provided by EliteMBA and not in any other way." -msgstr "" -"用户也了解并同意,经由本服务或广告商向用户呈现之赞助广告或信息所包含之内容,亦受到著作权、商标权、服务商标、专利权或其他专属权利之法律保护。未经英荔或广告商明示授权,用户不得修改、出租、出借、出售、散布本服务或软件之任何部份或全部,或据以制作衍生著作,或使用擅自修改后的软件,包括但不限于为了未经授权而使用本服务之目的。英荔仅授予用户个人、不可移转及非专属之使用权,使用户得于单机计算机使用其软件之目的码,但用户不得(并不得允许任何第三人)复制、修改、创作衍生著作、进行还原工程、反向组译,或以其他方式发现原始码,或出售、转让、再授权或提供软件设定担保,或以其他方式移转软件之任何权利。用户同意将通过由英荔所提供的界面而非任何其他途径使用本服务。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XVIII. Guarantee and Warranty" -msgstr "十八、担保与保证" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "The User clearly understands and agrees:" -msgstr "用户明确了解并同意∶" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"1. No provision of this agreement will relieve EliteMBA of any liability for" -" the User's personal injury or damage or property loss resulting from " -"intentional misconduct or gross negligence;" -msgstr "1.  本使用协议的任何规定不会免除英荔对造成用户人身伤害的、或因故意或重大过失造成用户财产损失的任何责任;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"2. The use of the Service is at the User's own risk. The Service is provided" -" on the basis of 'status quo' and 'existing'. EliteMBA does not provide any " -"warranty or guarantee, either express or implied, including but not limited " -"to commercial marketability, applicability for particular purpose and non-" -"infringement upon others' rights, etc.;" -msgstr "" -"2. " -"使用该服务是由用户自担风险。该服务是在“现状”和“现有”的基础上提供的。英荔不提供任何明示或暗示的担保或保证,包括但不限于商业适销性,针对特定用途的适用性和不侵犯他人权利等;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "3. Any statement or conduct by any third party in the Service;" -msgstr "3.  任何第三方在本服务中所作之声明或行为;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"4. Other matters related to the Service, except as explicitely provided in " -"this Agreement of Use;" -msgstr "4.  与本服务相关的其他事宜,但本使用协议有明确规定的除外;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"5. Elite Education does not accept any responsibility for the posting or " -"delivery of fraudulent information by any third party or for inducing users " -"to suffer financial losses." -msgstr "5.  第三方以任何方式发布或投递欺诈性信息,或诱导用户受到经济损失,英荔不承担任何责任。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "ⅩⅨ. EliteMBA Trademarks Information" -msgstr "十九、英荔商标信息" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"Elite Education, EliteMBA and other EliteMBA registered trademarks, logos " -"and products and service names are trademarks of EliteMBA (hereinafter " -"referred to as 'EliteMBA Mark'). The User agrees not to display or use or " -"otherwise process the EliteMBA Mark in any manner without the prior written " -"consent of EliteMBA, or to indicate that the User has the right to display, " -"use or otherwise process the EliteMBA Mark." -msgstr "" -"英荔教育、英荔商学院、英荔以及其他英荔注册商标、标志及产品、服务名称,均为英荔公司之商标(以下简称“英荔标记”)。未经英荔事先书面同意,用户同意不将英荔标记以任何方式展示或使用或作其他处理,或表示用户有权展示、使用或另行处理英荔标记。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XX. Exclusive User Rights" -msgstr "二十、用户专属权利" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Elite Education respects the intellectual property rights of others and " -"calls on users to respect intellectual property rights as well." -msgstr "英荔尊重他人知识产权,呼吁用户也要同样尊重知识产权。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The services and materials of EliteMBA are provided on an 'as is' basis and " -"expressly disclaims any express or implied warranties of 'service', " -"'material' or 'product', including but not limited to for commercial use or " -"fitness Guarantee for a specific purpose. EliteMBA is not responsible for " -"any direct, indirect, incidental or consequential damages arising out of the" -" Services, the materials or the products." -msgstr "" -"英荔之服务与资料是基于“现状”提供,而且英荔明确地表示拒绝对于“服务”、“资料”或“产品”给予任何明示或暗示之保证,包括但不限于,为商业使用或适合于特定目的之保证。英荔对于因“服务”、“资料”或“产品”所产生之任何直接、间接、附带的或因此而导致之衍生性损失概不负责。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"If the User infringes upon the intellectual property rights of others, " -"EliteMBA will, according to the provisions of the national laws and " -"regulations or under appropriate circumstances, delete specific contents or " -"even terminate the User's account according to Terms of Service or related " -"provisions." -msgstr "" -"如果用户对他人的知识产权造成了侵害,英荔将依国家法律法规的规定,或在适当的情形下,将依其服务条款或其相关规范性规定,删除特定内容或以至终止用户对账号的使用。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"EliteMBA respects any rights (including intellectual property rights) of " -"others and also requires our users to respect the rights of others. In the " -"appropriate circumstances, EliteMBA may, at its discretion, terminate the " -"account of the User who infringes or violates the rights of others." -msgstr "" -"英荔尊重他人的任何权利(包括知识产权),同时也要求我们的使用者也尊重他人之权利。英荔在适当情况下,可自行决定终止侵害或违反他人权利之使用者的账号。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"If the User believes that the copyright of his/her work has been infringed " -"or the User's intellectual property rights have been violated, according to " -"the Regulations on the Protection of Information Network Communication " -"Rights, users should contact EliteMBA and provide detailed evidence. Or " -"please go to the National Copyright Administration of the People's Republic " -"of China to download the 'Notice of Deleting or Disconnecting the Infringing" -" Web Content' (hereinafter referred to as the 'Delete Notice'). If the user " -"does not understand the content of the 'Delete Notice', please log in to the" -" National Copyright Administration of the People's Republic of China and " -"looks for the instructions for 'Notice to Remove or Disconnect the Content " -"of the Infringing Web Link'." -msgstr "" -"若用户认为自己的作品著作权遭到侵害或用户的知识产权被侵犯,根据《信息网络传播权保护条例》的规定,用户需及时向英荔联系并提供详实的举证材料。或请到中华人民共和国国家版权局下载《要求删除或断开链接侵权网络内容的通知》(下称“删除通知”)的示范格式,如果用户不明白“删除通知”的内容,请登录中华人民共和国国家版权局查看《要求删除或断开链接侵权网络内容的通知》填写说明。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "XXI. General Terms" -msgstr "二十一、一般条款" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"1. This User Agreement, Privacy Policy and Disclaimer constitute the entire " -"agreement between the User and EliteMBA, and regulate the User's use of the " -"Service. Additional terms and conditions apply when users use related " -"services and use content or software provided by third parties;" -msgstr "" -"1.  " -"本使用协议和隐私政策及免责声明构成用户与英荔之全部协议,并规范用户对于本服务之使用行为。在用户使用相关服务、使用第三方提供的内容或软件时,亦应遵从所适用之附加条款及条件;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"2. The User Agreement and the relationship between the User and EliteMBA are" -" governed by the laws of the People's Republic of China. The dispute between" -" the user and EliteMBA on the service, the Agreement or other related " -"matters shall be settled through negotiation first. If the negotiation " -"fails, it shall be submitted to the China International Economic and Trade " -"Arbitration Commission for arbitration. The arbitral award is final and " -"binding on both parties." -msgstr "" -"2.  " -"本使用协议及用户与英荔之关系,均受到中华人民共和国法律管辖。用户与英荔就本服务、本使用协议或其他有关事项发生的争议,应首先友好协商解决,协商不成时应提请中国国际经济贸易仲裁委员会仲裁,仲裁裁决是终局性的,对双方均有约束力;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"3. The failure of EliteMBA to exercise or enforce any rights or provisions " -"of this agreement shall not constitute the waiver of aforementioned rights;" -msgstr "3.  英荔未行使或执行本使用协议任何权利或规定,不构成对前述权利或权利之放弃;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"4. If any provision of this Terms of Use is ineffective due to conflicts " -"with the laws of the People's Republic of China, the User agrees that, in " -"accordance with the law, efforts shall be made to make the parties' " -"intentions reflected in the Regulations effectively, and that other " -"provisions of this User Agreement shall remain in full force;" -msgstr "" -"4.  " -"倘本使用协议之任何规定因与中华人民共和国法律抵触而无效,用户依然同意应依照法律,努力使该规定所反映之当事人意向具备效力,且本使用协议其他规定仍应具有完整的效力;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"5. The title of this User Agreement is for convenience only and does not " -"have any legal or contractual effect;" -msgstr "5.  本使用协议之标题仅供方便而设,不具任何法律或契约效果;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"6. Elite Education has the final interpretation of this User Agreement." -msgstr "6.  英荔对本使用协议享有最终解释权。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"Users are advised to notify EliteMBA of any violation of the Terms of " -"Service and/or any other announcements of EliteMBA." -msgstr "请用户在发现任何违反本服务协议以及其他任何单项服务的服务条款、英荔各类公告之情形时,通知英荔。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"The Products and services of EliteMBA(www.elitemba.cn)are provided by " -"Guangzhou Elite Education & Technology Co., Ltd (hereinafter referred to as " -"'we', 'Company' or 'Elite'). This User Agreement is applicable to E-ducation" -" websites, E-ducation applications and other related products and services " -"on computer/mobile phone/tablet or other devices. EliteMBA attaches great " -"importance to the protection of the privacy of EliteMBA Users (hereinafter " -"referred to as 'Users'). Sometimes we need certain information to provide " -"users with the requested services. This policy explains the data collection " -"and use under these circumstances." -msgstr "" -"英荔商学院(www.EliteMBA.cn)的产品及服务由广东英荔国际教育科技有限公司(以下简称“英荔”或“我们”)提供。本隐私政策(以下简称“本政策”)适用于英荔的网站、在计算机/手机/平板电脑或其他设备上使用的英荔的应用程序和其他产品及服务。英荔非常重视对英荔用户(以下简称“用户”)个人隐私的保护,有时候我们需要某些信息才能为用户提供请求的服务,本政策解释了这些情况下的数据收集和使用情况。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"This policy applies to all relevant services in EliteMBA. As the scope of " -"the EliteMBA services expands, the content of the policy may be amended or " -"changed at any time by EliteMBA. EliteMBA will publish and update the " -"effective date. Once the updated Privacy Policy is published, it effectively" -" replaces the original Privacy Policy. By continuing to use EliteMBA " -"Service, the User agrees to and accepts this Policy and any updated versions" -" thereof." -msgstr "" -"本政策适用于英荔的所有相关服务,随着英荔服务范围的扩大,政策的内容可由英荔随时修正或更改,英荔将公布并更新生效日期。更新后的隐私政策一旦公布即有效代替原来的隐私政策,用户继续使用英荔服务即表示用户同意并接受本政策及其任何更新版本。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "Ⅰ. The Information that We Collect" -msgstr "一、我们收集哪些信息" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"Normally, you can visit EliteMBA and browse the information anonymously. " -"When your Personally Identifiable Information or contact details are needed," -" we will ask for your prior consent. Information such as Name, E-mail " -"Address, Residence Address and Mobile Number might be collected when " -"registering on EliteMBA or applying for new features and your confirmation " -"is needed. " -msgstr "" -"通常,用户能在匿名的状态下访问英荔并获取信息。当我们需要能识别用户个人信息或者可以与用户联系的信息时,我们会征求用户的同意。通常,在用户注册英荔或申请开通新的功能时,我们可能收集这些信息:姓名、邮箱地址、住址和电话号码,并征求用户的确认。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "Ⅱ. About User's Personal Information" -msgstr "二、关于您的个人信息" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"EliteMBA strictly protects the security of Users' personal information. We " -"use a variety of security technologies and procedures to protect our " -"personal information from unauthorized access, use or disclosure." -msgstr "英荔严格保护用户个人信息的安全。我们使用各种安全技术和程序来保护用户的个人信息不被未经授权的访问、使用或泄漏。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"EliteMBA will not disclose the personal information of the User to third " -"parties without the User's permission. The following conditions are listed " -"in this statement: the legal requirements or the User's violation of the " -"relevant terms of service of EliteMBA, the software license agreement, or " -"EliteMBA has good reasons to believe that this must be done in order to:" -msgstr "" -"未经用户本人允许,英荔不会向第三方透露用户的个人信息,本声明列出的以下情况除外:法律要求或用户违反英荔的相关服务条款、软件许可使用协议约定,或者英荔有充分理由相信必须这样做才能:" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"(a) Meet the requirements of laws or administrative regulations that are " -"explicitely listed, or comply with applicable legal procedures to Elite " -"Education websites;" -msgstr "(a)满足法律或行政法规的明文规定,或者符合英荔网站适用的法律程序;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"(b) Comply with the terms of EliteMBA related service terms and software " -"license agreement;" -msgstr "(b)符合英荔相关服务条款、软件许可使用协议的约定;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "(c) Protection of the rights or property of EliteMBA" -msgstr "(c)保护英荔的权利或财产;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"(d) Under urgent emergencies, ensure the safety of EliteMBA employees, " -"product or service users, or the public." -msgstr "(d)在紧急情况下保护英荔员工、英荔产品或服务的用户或大众的个人安全。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"This information will not be shared with third parties by EliteMBA without " -"the user's permission, except as outlined above in this statement." -msgstr "英荔不会未经用户的允许将这些信息与第三方共享,本声明已经列出的上述情况除外。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "III.Use of Cookie" -msgstr "三、COOKIE 的使用" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"Using cookies helps users personalize their online experience. Users can " -"accept or reject cookies. Most web browsers automatically accept cookies, " -"but users can often modify their browser settings to reject cookies based on" -" their needs." -msgstr "" -"使用 Cookie 能帮助用户实现联机体验的个性化,用户可以接受或拒绝 Cookie,大多数 Web 浏览器会自动接受 " -"Cookie,但用户通常可根据自己的需要来修改浏览器的设置以拒绝 Cookie。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"EliteMBA will use cookies sometimes to capture the websites to learn which " -"websites are popular in order to provide better services to User when they " -"are visiting E-ducation." -msgstr "英荔有时会使用 Cookie 以便知道哪些网页受欢迎,使用户在访问英荔时能得到更好的服务。Cookie 不会跟踪个人信息。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"EliteMBA cookie is also used when the user registers for EliteMBA. In this " -"case, EliteMBA collects and stores useful information, and when the user " -"visits EliteMBA again, we can identify the user. Cookies from EliteMBA can " -"only be read by EliteMBA." -msgstr "" -"当用户注册英荔时,英荔亦会使用 Cookie。在这种情况下,英荔会收集并存储有用信息,当用户再次访问英荔时,我们可辨认用户的身份。来自英荔的 " -"Cookie 只能被英荔读取。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"If the User's browser is set to reject cookies, the User will still be able " -"to access most of the web pages of EliteMBA." -msgstr "如果用户的浏览器被设置为拒绝 Cookie,用户仍然能够访问英荔的大多数网页。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "IV. About Disclaimer" -msgstr "四、关于免责说明" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"EliteMBA does not assume any legal responsibility for the occurrence of the " -"following related matters:" -msgstr "就下列相关事宜的发生,英荔不承担任何法律责任:" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"1. The leakage of any personal information caused by the User's notification" -" of the User's password or sharing the registered account with others, or " -"the leakage of other personal information that is not caused by EliteMBA " -"reasons; " -msgstr "1.  由于用户将用户密码告知他人或与他人共享注册账号,由此导致的任何个人信息的泄漏,或其他非因英荔原因导致的个人信息的泄漏;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"2. According to the provisions of the law or relevant government policy " -"requirements, Elitemba providing User’s personal information;" -msgstr "2.  英荔根据法律规定或政府相关政策要求提供用户的个人信息;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"3. Disputes caused by any third party using User’s personal information " -"under various circumstances listed in the terms of service and the " -"Disclaimer of EliteMBA;" -msgstr "3.  任何第三方根据英荔各服务条款及声明中所列明的情况使用用户的个人信息,由此所产生的纠纷;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"4. Any temporary website closure due to hacking, computer virus intrusion or" -" government regulation;" -msgstr "4.  任何由于黑客攻击、电脑病毒侵入或政府管制而造成的暂时性网站关闭;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "5. Any consequences caused by force majeure;" -msgstr "5.  因不可抗力导致的任何后果;" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"6. Ways of use or disclaimer circumstances listed by EliteMBA in terms of " -"service and this Disclaimer." -msgstr "6.  英荔在各服务条款及声明中列明的使用方式或免责情形。" - -#: themes/normal-theme/lms/templates/static_templates/honor.html -msgid "" -"The products and services of Elite Education (www.elitemba.cn) are provided " -"by Guangdong Yingli International Education & Technology Co., Ltd. " -"(hereinafter referred to as 'EliteMBA' or 'We'). This Disclaimer " -"Statement(hereinafter referred to as ‘Disclaimer’) applies to EliteMBA " -"website, other applications used on computers, mobile phones/tablets or " -"other devices and other products and services. EliteMBA User (hereinafter " -"referred to as 'User') must carefully read these terms and agree to this " -"statement before accepting EliteMBA service." -msgstr "" -"英荔商学院(www.EliteMBA.cn)的产品及服务由广东英荔国际教育科技有限公司(以下简称“英荔”或“我们”)提供。本免责声明(以下简称“本声明”)适用于英荔的网站、在计算机/手机/平板电脑或其他设备上使用的英荔的应用程序和其他产品及服务。英荔用户(以下简称“用户”)在接受英荔服务之前,请务必仔细阅读本条款并同意本声明" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "Join us" -msgstr "加入我们" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "Let Yourself be More Valuable" -msgstr "成为更有价值的自己" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "" -"EliteMBA pays attention to employee development and attaches importance to " -"the power of communication. We continue to learn, inspire each other, and " -"constantly discover industry inspiration at work, and open our eyes as a " -"whole community. Here, work is an organic combination of enjoyment and hard " -"work." -msgstr "" -"英荔关注员工发展,重视交流的力量。作为一个整体,我们不断学习,相互启发,在工作中不断发现行业灵感,大开眼界。在这里,工作是享受与拼搏的有机结合。" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "" -"We will release job information as soon as possible, so stay tuned. Of " -"course, this does not mean that we want to miss any future members. Feel " -"free to contact us through email directly" -msgstr "职位信息整理中,我们将尽快发布,敬请期待。当然,这并不意味着我们愿意错过任何一位未来的成员,欢迎直接邮件联系" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "Become a Lecturer" -msgstr "成为英荔讲师" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "" -"Standing on the platform, educators can impart wisdom to learners. EliteMBA " -"completely breaks the geographical restrictions of teaching and learning and" -" provides a broader platform for educators. We sincerely invite all elite " -"professors, scholars and experts who have been deeply involved in business " -"management disciplines to develop more outstanding business talents by " -"transforming intangible wisdom into a collectible course." -msgstr "" -"站上讲台,教育者得以向学习者传授智慧。英荔彻底打破教与学的地理限制,为教育者提供更广阔的讲台。我们诚挚地向所有深耕于商业管理学科的精英教授、学者和专家发出邀请,让我们共同将无形的智慧实化为可典藏的课程,以此培养更多杰出的商业人才。" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "Please contact" -msgstr "请直接邮件联系" - -#: themes/normal-theme/lms/templates/static_templates/join_us.html -msgid "directly or call 400-931-8118." -msgstr "或致电400-931-8118。" - -#: themes/normal-theme/lms/templates/static_templates/privacy.html -#: themes/normal-theme/lms/templates/static_templates/privacy_policy.html -msgid "" -"(b) An agreement that complies with the relevant EliteMBA Terms of Service " -"and the Software License Agreement;" -msgstr "(b)符合英荔相关服务条款、软件许可使用协议的约定;" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"The User agrees to abide by all the provisions of the relevant laws and " -"regulations of the People's Republic of China and assumes full " -"responsibility for any actions and results of the use of the Service by any " -"means and password. If the User behavior violates any provisions of national" -" laws and regulations and may constitute a crime, he will be held criminally" -" liable and the user shall bear full legal responsibility." -msgstr "" -"用户同意遵守中华人民共和国相关法律法规的所有规定,并对以任何方式通过本人的账号和密码使用本服务的任何行为及其结果承担全部责任。如用户的行为违反国家法律和法规的任何规定,有可能构成犯罪的,将被追究刑事责任,并由用户承担全部法律责任。" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"At the same time, if EliteMBA has reason to believe that any of the user's " -"actions, including but not limited to any of the user's statements and other" -" acts, violates or may violate any of the provisions of national laws and " -"regulations, EliteMBA may terminate the offer to the User at any time " -"without prior notice service." -msgstr "" -"同时,如果英荔有理由认为用户的任何行为,包括但不限于用户的任何言论和其他行为违反或可能违反国家法律和法规的任何规定,英荔可在任何时候不经任何事先通知终止向用户提供服务。" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"EliteMBA is not responsible for any registration of any User, including but " -"not limited to the identification, verification of the authenticity, " -"correctness, completeness, suitability and/or responsibility of any " -"registration information." -msgstr "" -"英荔无须对任何用户的任何登记资料承担任何责任,包括但不限于鉴别、核实任何登记资料的真实性、正确性、完整性、适用性及/或是否为最新资料的责任。" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Oppose the basic principles established by the Constitution;" -msgstr "反对宪法所确定的基本原则的;" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Content containing false, fraudulent, harmful, coercive, infringing on the " -"privacy of others, harassment, infringement, slander, vulgarity, jealousy, " -"or other morally offensive content;" -msgstr "含有虚假、诈骗、有害、胁迫、侵害他人隐私、骚扰、侵害、中伤、粗俗、猥亵、或其他道德上令人反感的内容;" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "Contains content that is not suitable for display in EliteMBA;" -msgstr "含有英荔认为不适合在英荔展示的内容;" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "2. Harm the legal rights of others in any way; " -msgstr "2.  以任何方式危害他人的合法权益;" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"8. Interfere with or disrupt the server or network connected to the Service " -"or the Service, or violate any rules, procedures, policies or specifications" -" regarding the Service Connection Network; " -msgstr "8.  干扰或破坏本服务或与本服务相连线之服务器和网络,或违反任何关于本服务连线网络之规定、程序、政策或规范;" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Users are advised to notify the Company of any violation of the Terms of " -"Service and any other announcements in EliteMBA and other content that " -"contradicts EliteMBA's rights and interests. " -msgstr "" -"用户已认可英荔未对用户的使用行为进行全面控制,用户使用任何内容时,包括依赖前述内容之正确性、完整性或实用性时,用户同意将自行加以判断并承担所有风险,而不依赖于英荔。但英荔依其自行之考虑,可拒绝和删除经由本服务提供之违反本条款的或其他引起英荔异议的任何内容。" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "3. Respond to any claims made by third parties; " -msgstr "3.  回应任何第三人提出的权利主张;" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "5. Other situations that the EliteMBA considers necessary." -msgstr "5.  其他英荔认为有必要的情况。" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"1. In this User Agreement, “the area in which the service is used publicly” " -"means the area that the general public can use; " -msgstr "1.  在本使用协议中,“本服务公开使用区域”系指一般公众可以使用的区域;" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Any third party’s claim or request, including a reasonable attorney, due to " -"the content provided, posted or transmitted by the User, the User’s " -"connection to the Service, the User’s breach of this User Agreement, or any " -"infringement of the User’s rights. The user agrees to indemnify and protect " -"the company and its subsidiaries, affiliates, officers, agents, brand owners" -" or other partners and employees from damage and assume all legal " -"liabilities arising therefrom. " -msgstr "" -"由于用户通过本服务提供、发布或传送之内容、用户与本服务连线、用户违反本使用协议、或用户侵害他人任何权利因而衍生或导致任何第三人提出任何索赔或请求,包括合理的律师费,用户同意赔偿英荔及其子公司、关联企业、高级职员、代理人、品牌共有人或其他合作伙伴及员工,并使其免受损害," -" 并承担由此引发的全部法律责任。" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"EliteMBA, Elite Education and other Eliteu registered trademarks, logos and " -"products and service names are trademarks of Eliteu Company (hereinafter " -"referred to as “Elite Trademark”). The User agrees not to display or use or " -"otherwise process the Trademark in any manner without the prior written " -"consent of Elite, or to indicate that the User has the right to display, use" -" or otherwise process the Trademark." -msgstr "" -"英荔教育、英荔商学院、英荔以及其他英荔注册商标、标志及产品、服务名称,均为英荔公司之商标(以下简称“英荔标记”)。未经英荔事先书面同意,用户同意不将英荔标记以任何方式展示或使用或作其他处理,或表示用户有权展示、使用或另行处理英荔标记。" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"If the User believes that the copyright of his work has been infringed or " -"the User's intellectual property rights have been violated, according to the" -" Regulations on the Protection of Information Network Communication Rights, " -"Users should contact EliteMBA and provide detailed evidence. Or please go to" -" the National Copyright Administration of the People's Republic of China to " -"download the 'Notice of Deleting or Disconnecting the Infringing Web " -"Content' (hereinafter referred to as the 'Delete Notice'). If the user does " -"not understand the content of the 'Delete Notice', please log in to the " -"National Copyright Administration of the People's Republic of China to look " -"for the instructions in 'Notice to delete or disconnect the infringing web " -"content'." -msgstr "" -"若用户认为自己的作品著作权遭到侵害或用户的知识产权被侵犯,根据《信息网络传播权保护条例》的规定,用户需及时向英荔联系并提供详实的举证材料。或请到中华人民共和国国家版权局下载《要求删除或断开链接侵权网络内容的通知》(下称“删除通知”)的示范格式,如果用户不明白“删除通知”的内容,请登录中华人民共和国国家版权局查看《要求删除或断开链接侵权网络内容的通知》填写说明。" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"1. This User Agreement and the Privacy Policy and Disclaimer constitute the " -"entire agreement between the User and the Company and regof the Service. " -"Additional terms and conditions apply when users use related services and " -"use content or software provided by third parties; " -msgstr "" -"1.  " -"本使用协议和隐私政策及免责声明构成用户与英荔之全部协议,并规范用户对于本服务之使用行为。在用户使用相关服务、使用第三方提供的内容或软件时,亦应遵从所适用之附加条款及条件;" - -#: themes/normal-theme/lms/templates/static_templates/user_agreement.html -msgid "" -"Users are advised to notify the Company of any violation of the Terms of " -"Service and any other announcements in EliteMBA and other related notices. " -msgstr "请用户在发现任何违反本服务协议以及其他任何单项服务的服务条款、英荔各类公告之情形时,通知英荔。" - -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/about.html -#: themes/stanford-style/lms/templates/static_templates/about.html -msgid "Careers" -msgstr "招才纳贤" - -#: themes/stanford-style/lms/templates/footer.html -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Copyright" -msgstr "版权" - -#: themes/stanford-style/lms/templates/footer.html -msgid "Copyright {year}. All rights reserved." -msgstr "版权 {year}。保留所有权利。" - -#: themes/stanford-style/lms/templates/index.html -msgid "For anyone, anywhere, anytime" -msgstr "任何人,任何地点,任何时间" - -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "" -"You will receive an activation email. You must click on the activation link" -" to complete the process. Don't see the email? Check your spam folder and " -"mark emails from class.stanford.edu as 'not spam', since you'll want to be " -"able to receive email from your courses." -msgstr "" -"您会收到一封激活邮件。您必须点击激活链接才能完成注册。如果没有看见邮件,请检查垃圾邮件,并将来自class.stanford.edu的邮件标记为“非垃圾邮件”,因为您会希望收到来自您的课程的邮件。" - -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "Need help in registering with {platform_name}?" -msgstr "在注册{platform_name}时需要帮助?" - -#: themes/stanford-style/lms/templates/register-sidebar.html -msgid "" -"Once registered, most questions can be answered in the course specific " -"discussion forums or through the FAQs." -msgstr "注册成功后,大部分问题均可在具体课程讨论论坛或FAQ中得到解决。" - -#: themes/stanford-style/lms/templates/emails/activation_email.txt -msgid "Thank you for signing up for {platform_name}." -msgstr "感谢您注册 {platform_name} 。" - -#: themes/stanford-style/lms/templates/emails/activation_email.txt -msgid "" -"Change your life and start learning today by activating your {platform_name}" -" account. Click on the link below or copy and paste it into your browser's " -"address bar." -msgstr "激活您的{platform_name}账号,从今天起开始学习,并以此改变您的生活。点击下面的链接或复制并粘贴到您浏览器的地址栏。" - -#: themes/stanford-style/lms/templates/emails/activation_email.txt -#: themes/stanford-style/lms/templates/emails/email_change.txt -msgid "" -"If you didn't request this, you don't need to do anything; you won't receive" -" any more email from us. Please do not reply to this e-mail; if you require " -"assistance, check the about section of the {platform_name} Courses web site." -msgstr "" -"如果您没发出过该请求,您不需要做任何事情;您将不会收到其他任何电子邮件。请不要回复此电子邮件;如果您需要帮助,请访问 {platform_name} " -"课程网站。" - -#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt -msgid "" -"This is to confirm that you changed the e-mail associated with " -"{platform_name} from {old_email} to {new_email}. If you did not make this " -"request, please contact us at" -msgstr "" -"这封邮件是为了确认您和 {platform_name} 之间的电子邮件关联由 {old_email} 变更为 " -"{new_email}。如果您并没有发出该请求,请通过下列地址联系我们:" - -#: themes/stanford-style/lms/templates/emails/email_change.txt -msgid "" -"We received a request to change the e-mail associated with your " -"{platform_name} account from {old_email} to {new_email}. If this is correct," -" please confirm your new e-mail address by visiting:" -msgstr "" -"我们收到了您需要将 {platform_name} 账号的电子邮件关联由 {old_email} 变更为 {new_email} " -"的请求。如果该请求无误,请访问如下网页确认您的新电子邮件地址:" - -#: themes/stanford-style/lms/templates/emails/reject_name_change.txt -msgid "" -"We are sorry. Our course staff did not approve your request to change your " -"name from {old_name} to {new_name}. If you need further assistance, please " -"e-mail the tech support at {email}" -msgstr "" -"我们很抱歉。我们的员工没有批准您的请求改变您的名字从{old_name} " -"{new_name}。如果您需要进一步的协助,请电子邮件的技术支持{email}" - -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Put your Terms of Service here!" -msgstr "将您的服务条款置于此处!" - -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Put your Privacy Policy here!" -msgstr "将您的隐私政策置于此处!" - -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Put your Honor Code here!" -msgstr "将您的诚信准则置于此处!" - -#: themes/stanford-style/lms/templates/static_templates/tos.html -msgid "Put your Copyright Text here!" -msgstr "将您的版权文本置于此处!" diff --git a/conf/locale/zh_CN/LC_MESSAGES/membership-js.po b/conf/locale/zh_CN/LC_MESSAGES/membership-js.po deleted file mode 100644 index 520d8e5e08e3..000000000000 --- a/conf/locale/zh_CN/LC_MESSAGES/membership-js.po +++ /dev/null @@ -1,62 +0,0 @@ -# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). -# Copyright (C) 2019 EdX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -# Translators: -# li ying , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-01-15 19:13+0800\n" -"PO-Revision-Date: 2018-12-07 12:23+0000\n" -"Last-Translator: li ying , 2019\n" -"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: membership/static/membership/js/card.js -msgid "Open membership" -msgstr "开通" - -#: membership/static/membership/js/card.js -msgid "Become a VIP member and watch all EliteMBA courses for free" -msgstr "开通VIP会员,可免费观看英荔商学院全部课程。" - -#: membership/static/membership/js/card.js -msgid "YYYY-MM-DD" -msgstr "YYYY-MM-DD" - -#: membership/static/membership/js/card.js -msgid "Open date:" -msgstr "开通日期:" - -#: membership/static/membership/js/card.js -msgid "Expire:" -msgstr "到期日期:" - -#: membership/static/membership/js/card.js -msgid "Last open date:" -msgstr "上次开通日期:" - -#: membership/static/membership/js/card.js -msgid "Renew" -msgstr "续费" - -#: membership/static/membership/js/index.js -msgid "Average per month" -msgstr "月均" - -#: membership/static/membership/js/pay.js -msgid "Failed to pay the payment" -msgstr "调起支付失败" - -#: membership/static/membership/js/result.js -#, javascript-format -msgid "Return to EliteMBA in %s seconds" -msgstr "%s 秒后返回英荔商学院" diff --git a/conf/locale/zh_CN/LC_MESSAGES/membership.po b/conf/locale/zh_CN/LC_MESSAGES/membership.po deleted file mode 100644 index 7a907989353e..000000000000 --- a/conf/locale/zh_CN/LC_MESSAGES/membership.po +++ /dev/null @@ -1,532 +0,0 @@ -# #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# -# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). -# Copyright (C) 2019 EdX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -# #-#-#-#-# mako.po (0.1a) #-#-#-#-# -# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) -# Copyright (C) 2019 edX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -# Translators: -# 嘉杰 李 , 2018 -# 微 李 , 2018 -# li ying , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-01-18 17:45+0800\n" -"PO-Revision-Date: 2018-12-07 12:23+0000\n" -"Last-Translator: li ying , 2019\n" -"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" - -#: membership/models.py -msgid "Awaiting for payment" -msgstr "等待付款" - -#: membership/models.py -msgid "Paid" -msgstr "已付款" - -#: membership/models.py -msgid "Cancelled" -msgstr "已取消" - -#: membership/models.py -msgid "Refunded" -msgstr "已退款" - -#: membership/models.py -msgid "Balance" -msgstr "账号余额" - -#: membership/models.py -msgid "Offline" -msgstr "线下" - -#: membership/models.py membership/templates/membership/card.html -#: membership/templates/membership/result.html -#: membership/templates/membership/wechat_paying.html -msgid "WeChat" -msgstr "微信" - -#: membership/models.py membership/templates/membership/card.html -msgid "Alipay" -msgstr "支付宝" - -#: membership/models.py -msgid "Union pay" -msgstr "银联" - -#: membership/models.py -msgid "Apple Pay" -msgstr "Apple Pay" - -#: membership/models.py -msgid "Apple Inpurasing" -msgstr "苹果内购" - -#: membership/models.py -msgid "WeChat App" -msgstr "微信APP" - -#: membership/models.py -msgid "WeChat H5" -msgstr "微信H5" - -#: membership/models.py -msgid "Alipay App" -msgstr "支付宝" - -#: membership/models.py -msgid "subscribe normal" -msgstr "常规订阅" - -#: membership/models.py -msgid "subscribe pay" -msgstr "收费订阅" - -#: membership/templates/membership/card.html -msgid "VIP membership" -msgstr "VIP会员" - -#: membership/templates/membership/card.html -msgid "Elite Education" -msgstr "英荔教育" - -#: membership/templates/membership/card.html -msgid "Elite MBA VIP membership" -msgstr "英荔商学院VIP会员" - -#: membership/templates/membership/card.html -msgid "View Introduction" -msgstr "查看介绍" - -#: membership/templates/membership/card.html -msgid "Select a course" -msgstr "加入课程" - -#: membership/templates/membership/card.html -msgid "Choose a payment method" -msgstr "选择支付方式" - -#: membership/templates/membership/card.html -msgid "Membership Valid in " -msgstr "会员有效期:" - -#: membership/templates/membership/card.html -msgid "days" -msgstr "天" - -#: membership/templates/membership/card.html -msgid "Tuition:" -msgstr "学费:" - -#: membership/templates/membership/card.html -msgid "Go to payment" -msgstr "去支付" - -#: membership/templates/membership/card.html -msgid "Complete payment in a new page" -msgstr "请在新页面完成支付" - -#: membership/templates/membership/card.html -msgid "" -"{span_start}Please do not close the page {span_end}. Please click the button" -" below accordingly after completing the payment." -msgstr "{span_start}请不要关闭页面{span_end},完成支付后请根据情况点击下面按钮" - -#: membership/templates/membership/card.html -msgid "Choose another payment method" -msgstr "重选支付方式" - -#: membership/templates/membership/card.html -msgid "payment completed" -msgstr "支付完成" - -#: membership/templates/membership/card.html -msgid "Encounter a problem?" -msgstr "遇到问题?" - -#: membership/templates/membership/index.html -msgid "EliteMBA" -msgstr "英荔商学院" - -#: membership/templates/membership/index.html -msgid "Prestige EMBA courses in America" -msgstr "" - -#: membership/templates/membership/index.html -msgid "Six Course Specializations of Elite MBA School" -msgstr "英荔商学院六大课程方向" - -#: membership/templates/membership/index.html -msgid "Activate your all-round business gene, you alone are a team!" -msgstr "激活全能商业基因,您就是一个团队" - -#: membership/templates/membership/index.html -msgid "Business Administration" -msgstr "商业管理" - -#: membership/templates/membership/index.html -msgid "Innovation and Entrepreneurship" -msgstr "创新创业" - -#: membership/templates/membership/index.html -msgid "Statistic Analysis" -msgstr "统计分析" - -#: membership/templates/membership/index.html -msgid "Information Technology" -msgstr "信息技术" - -#: membership/templates/membership/index.html -msgid "Marketing and Sales" -msgstr "市场销售" - -#: membership/templates/membership/index.html -msgid "Retail Management" -msgstr "零售管理" - -#: membership/templates/membership/index.html -msgid "Explore Courses" -msgstr "发现课程" - -#: membership/templates/membership/index.html -msgid "More courses coming soon" -msgstr "更多重磅课程即将上线" - -#: membership/templates/membership/index.html -msgid "International Business Law" -msgstr "国际商法" - -#: membership/templates/membership/index.html -msgid "Dr. Ling Zhu" -msgstr "朱灵 博士" - -#: membership/templates/membership/index.html -msgid "PhD in Management Information Systems, the University of Arizona, USA" -msgstr "美国亚利桑那大学管理信息系统博士" - -#: membership/templates/membership/index.html -msgid "J.D., Fordham University" -msgstr "美国福特汉姆大学法律博士" - -#: membership/templates/membership/index.html -msgid "Marketing Management and Applications" -msgstr "营销管理与应用" - -#: membership/templates/membership/index.html -msgid "Dr. Tung-lung Steven Chang" -msgstr "张东隆 博士" - -#: membership/templates/membership/index.html -msgid "" -"PhD. in International Business/Marketing, the George Washington University, " -"USA" -msgstr "美国乔治·华盛顿大学国际商务/市场营销博士" - -#: membership/templates/membership/index.html -msgid "PhD. in Management, National Chengchi University, Taiwan" -msgstr "台湾政治大学管理学博士" - -#: membership/templates/membership/index.html -msgid "Macroeconomics" -msgstr "宏观经济学" - -#: membership/templates/membership/index.html -msgid "(Davidson College)" -msgstr "(美国戴维森学院)" - -#: membership/templates/membership/index.html -msgid "Dr. Clark Ross" -msgstr "克拉克·罗斯 博士" - -#: membership/templates/membership/index.html -msgid "PhD. in Economics, Boston College, USA" -msgstr "美国波士顿学院经济学博士" - -#: membership/templates/membership/index.html -msgid "" -"*All course updates reserved to EliteMBA and EliteMBA has the final " -"interpretation." -msgstr "*英荔商学院保留所有课程的更新和最终解释权。" - -#: membership/templates/membership/index.html -msgid "Best faculties ---- Elite Education" -msgstr "超强师资 —— 精英式教学" - -#: membership/templates/membership/index.html -msgid "Professor of American Famous Business Schools" -msgstr "美国名校商学院教授" - -#: membership/templates/membership/index.html -msgid "" -"To build the all-around business knowledge matrix, and systematic learning " -"from zero to one" -msgstr "构建全方位的商科知识矩阵,从0到1,系统学习" - -#: membership/templates/membership/index.html -msgid "Dr. Bochun Xiao" -msgstr "萧柏春 博士" - -#: membership/templates/membership/index.html -msgid "" -"Lifetime Professor and Dean of Management Major in School of Business, Long " -"Island University - C. W. Post, USA" -msgstr "美国长岛大学商学院管理系终身教授、系主任" - -#: membership/templates/membership/index.html -msgid "Dr. Lloyd E. Shefsky" -msgstr "谢洛德 博士" - -#: membership/templates/membership/index.html -msgid "" -"Clinical Professor, Founder and Co-director of the Center for Family " -"Enterprises in Kellogg School of Management at Northwestern University, USA" -msgstr "原美国西北大学凯洛格商学院创业专业教授" - -#: membership/templates/membership/index.html -msgid "Prof. Tim Smithe" -msgstr "蒂姆·塞米特 教授" - -#: membership/templates/membership/index.html -msgid "" -"Vice President & Chief Management Officer of International Finance Education" -" Association (IFEA)" -msgstr "国际金融教育协会副会长及首席营销官" - -#: membership/templates/membership/index.html -msgid "Dr. Wei Yang" -msgstr "杨威 博士" - -#: membership/templates/membership/index.html -msgid "" -"Lifetime Professor in School of Business, Long Island University - C. W. " -"Post, USA" -msgstr "美国长岛大学商学院终身教授" - -#: membership/templates/membership/index.html -msgid "Dr. Weichun Zhu" -msgstr "朱伟春 博士" - -#: membership/templates/membership/index.html -msgid "" -"Prior Assistant Professor of School of Labor and Employment Relations, Penn " -"State University Park, USA" -msgstr "原美国宾夕法尼亚州立大学劳动力研究与雇佣关系学院助理教授" - -#: membership/templates/membership/index.html -msgid "Dr. Jiamin Wang" -msgstr "汪嘉旻 博士" - -#: membership/templates/membership/index.html -msgid "" -"Lifetime Professor of Information Management & Technology, Long Island " -"University - C. W. Post, USA" -msgstr "美国长岛大学商学院管理系终身教授" - -#: membership/templates/membership/index.html -msgid "Dr. Tianning Li" -msgstr "李天宁 博士" - -#: membership/templates/membership/index.html -msgid "Associate Professor of Finance and Finance, Hood College, USA" -msgstr "美国胡德学院金融财务副教授" - -#: membership/templates/membership/index.html -msgid "Dr. Jianjun Shi" -msgstr "施建军 博士" - -#: membership/templates/membership/index.html -msgid "" -"Prior President and Professor of the University of International Business " -"and Economics {br}" -msgstr "原对外经济贸易大学校长、{br}教授" - -#: membership/templates/membership/index.html -msgid "Professor of Economics in Davidson College" -msgstr "美国戴维森学院经济学教授" - -#: membership/templates/membership/index.html -msgid "Dr. Elia Kacapyr" -msgstr "伊利亚·卡克皮尔 博士" - -#: membership/templates/membership/index.html -msgid "Professor of Economics, Ithaca College, USA" -msgstr "美国伊萨卡学院经济学教授" - -#: membership/templates/membership/index.html -msgid "Dr. Robert Graham" -msgstr "罗伯特·格雷厄姆 博士" - -#: membership/templates/membership/index.html -msgid "Professor of Economics, Hanover College, USA" -msgstr "美国汉诺威学院经济学教授" - -#: membership/templates/membership/index.html -msgid "" -"Prior President and Professor of the University of International Business " -"and Economics" -msgstr "原对外经济贸易大学校长、教授" - -#: membership/templates/membership/index.html -msgid "View More" -msgstr "查看更多" - -#: membership/templates/membership/index.html -msgid "Become EliteMBA Member" -msgstr "成为英荔商学院会员" - -#: membership/templates/membership/index.html -msgid "Choose appropriate learning duration according to your needs" -msgstr "根据您的需求选择合适的学习时长" - -#: membership/templates/membership/index.html -msgid "" -"Enjoy learning all courses in the EliteMBA MBA school during the study " -"period,You can join the new class online now!" -msgstr "学习期内享有英荔商学院所有课程的学习权益,新课上线亦可马上加入学习" - -#: membership/templates/membership/index.html -msgctxt "Membership" -msgid "Full Year" -msgstr "一年" - -#: membership/templates/membership/index.html -msgid "average per month" -msgstr "月均" - -#: membership/templates/membership/index.html -msgid "Full-stack workplace practice" -msgstr "全栈职场修炼" - -#: membership/templates/membership/index.html -msgctxt "Membership" -msgid "Half-Year" -msgstr "半年" - -#: membership/templates/membership/index.html -msgid "Improve Ability Efficiently" -msgstr "能力高效提升" - -#: membership/templates/membership/index.html -msgctxt "Membership" -msgid "Three-Month" -msgstr "三个月" - -#: membership/templates/membership/index.html -msgid "A series of courses for learning" -msgstr "系列课程畅学" - -#: membership/templates/membership/index.html -msgctxt "Membership" -msgid "One-Month" -msgstr "一个月" - -#: membership/templates/membership/index.html -msgid "Multiple-Course Experience" -msgstr "多门课程体验" - -#: membership/templates/membership/index.html -msgid "" -"*Now sign up to enjoy the above offers. Please go to the purchase page for " -"details." -msgstr "*现在报名可享以上优惠,具体详情请前往购买页。" - -#: membership/templates/membership/index.html -msgid "" -"Enjoy learning all courses in the EliteMBA MBA school during the study " -"period" -msgstr "学习期内享有英荔商学院所有课程的学习权益" - -#: membership/templates/membership/index.html -msgid "You can join the new class once online" -msgstr "新课上线亦可马上加入学习" - -#: membership/templates/membership/index.html -msgid "Learning Feature" -msgstr "学习特色" - -#: membership/templates/membership/index.html -msgid "Video Lesson" -msgstr "视频学习" - -#: membership/templates/membership/index.html -msgid "Interaction within Groups" -msgstr "群内互动" - -#: membership/templates/membership/index.html -msgid "Live Lecture" -msgstr "直播讲座" - -#: membership/templates/membership/index.html -msgid "Exercise Test" -msgstr "习题测试" - -#: membership/templates/membership/index.html -msgid "Certificate" -msgstr "结课证书" - -#: membership/templates/membership/index.html -msgid "Become a Member" -msgstr "加入会员" - -#: membership/templates/membership/index.html -msgid "" -"There is a gap called self-discipline outside of 8 hours. Start with the " -"EliteMBA and become a self-disciplined full-stack workplace!" -msgstr "有一种差距,叫8小时以外的自律,和英荔一起出发,成为自律的全栈职场人!" - -#: membership/templates/membership/index.html -msgid "EliteMBA Theory" -msgstr "英荔说" - -#: membership/templates/membership/result.html -#: membership/templates/membership/wechat_paying.html -msgid "EliteMBA school cashier" -msgstr "英荔商学院收银台" - -#: membership/templates/membership/result.html -msgid "EliteMBA school cashier payment success" -msgstr "英荔商学院收银台支付成功" - -#: membership/templates/membership/result.html -#: membership/templates/membership/wechat_paying.html -msgid "Return to EliteMBA school in 3 seconds" -msgstr "3秒后返回英荔商学院" - -#: membership/templates/membership/result.html -#: membership/templates/membership/wechat_paying.html -msgid "Return Now" -msgstr "立即返回" - -#: membership/templates/membership/wechat_paying.html -msgid "Amount paid: " -msgstr "实付金额:" - -#: membership/templates/membership/wechat_paying.html -msgid "Please complete the payment within 2 hours, or the purchase may fail" -msgstr "请在2小时内完成支付,否则可能导致购买失败" - -#: membership/templates/membership/wechat_paying.html -msgid "Scan QR code with WeChat" -msgstr "请使用微信扫描二维码" - -#: membership/templates/membership/wechat_paying.html -msgid "to complete payment" -msgstr "以完成支付" - -#: membership/templates/membership/wechat_paying.html -msgid "Payment Success" -msgstr "支付成功" diff --git a/conf/locale/zh_CN/LC_MESSAGES/underscore-studio.po b/conf/locale/zh_CN/LC_MESSAGES/underscore-studio.po deleted file mode 100644 index df2cc9b85ef8..000000000000 --- a/conf/locale/zh_CN/LC_MESSAGES/underscore-studio.po +++ /dev/null @@ -1,1746 +0,0 @@ -# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) -# Copyright (C) 2019 edX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -# Translators: -# li ying , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-11 02:17+0000\n" -"PO-Revision-Date: 2018-11-26 07:56+0000\n" -"Last-Translator: li ying , 2019\n" -"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" - -#: cms/templates/js/access-editor.underscore -msgid "Limit Access" -msgstr "访问限制" - -#: cms/templates/js/access-editor.underscore -msgid "" -"Select a prerequisite subsection and enter a minimum score percentage and " -"minimum completion percentage to limit access to this subsection. Allowed " -"values are 0-100" -msgstr "要想设置此节的报读门槛,请选择一个先修节,并输入一个最小分数百分比和最低完成率。可输入值:0-100" - -#: cms/templates/js/access-editor.underscore -msgid "Prerequisite:" -msgstr "预备知识" - -#: cms/templates/js/access-editor.underscore -msgid "No prerequisite" -msgstr "不需要预备知识" - -#: cms/templates/js/access-editor.underscore -msgid "Minimum Score:" -msgstr "最低分数:" - -#: cms/templates/js/access-editor.underscore -msgid "Minimum Completion:" -msgstr "最低完成率:" - -#: cms/templates/js/access-editor.underscore -msgid "The minimum score percentage must be a whole number between 0 and 100." -msgstr "分数百分比的最小值必须是在0到100之间的整数。" - -#: cms/templates/js/access-editor.underscore -msgid "" -"The minimum completion percentage must be a whole number between 0 and 100." -msgstr "最低完成率必须为0-100的整数。" - -#: cms/templates/js/access-editor.underscore -msgid "Use as a Prerequisite" -msgstr "作为先决条件" - -#: cms/templates/js/access-editor.underscore -msgid "Make this subsection available as a prerequisite to other content" -msgstr "这一部分是其他内容存在的前提条件" - -#: cms/templates/js/active-video-upload-list.underscore -msgid "Active Uploads" -msgstr "活跃的上载内容" - -#: cms/templates/js/active-video-upload.underscore -msgid "Read More" -msgstr "了解更多" - -#: cms/templates/js/active-video-upload.underscore -msgid "details about the failure" -msgstr "失败详细" - -#: cms/templates/js/add-xblock-component-button.underscore -msgid "Add Component:" -msgstr "添加组件:" - -#: cms/templates/js/add-xblock-component-menu-problem.underscore -#: cms/templates/js/add-xblock-component-menu.underscore -#, python-format -msgid "%(type)s Component Template Menu" -msgstr "%(type)s 组件模板菜单" - -#: cms/templates/js/add-xblock-component-menu-problem.underscore -msgid "Common Problem Types" -msgstr "常见问题类型" - -#: cms/templates/js/add-xblock-component-menu-problem.underscore -msgid "Advanced" -msgstr "高级" - -#: cms/templates/js/add-xblock-component-support-legend.underscore -msgid "Supported" -msgstr "支持" - -#: cms/templates/js/add-xblock-component-support-legend.underscore -msgid "Provisional" -msgstr "暂行" - -#: cms/templates/js/add-xblock-component-support-legend.underscore -#: cms/templates/js/add-xblock-component-support-level.underscore -msgid "Not Supported" -msgstr "没有支持" - -#: cms/templates/js/add-xblock-component-support-level.underscore -msgid "Fully Supported" -msgstr "全部支持" - -#: cms/templates/js/add-xblock-component-support-level.underscore -msgid "Provisionally Supported" -msgstr "暂行支持" - -#: cms/templates/js/add-xblock-component.underscore -msgid "Add New Component" -msgstr "添加新组件" - -#: cms/templates/js/advanced_entry.underscore -msgid "Deprecated" -msgstr "已过时的" - -#: cms/templates/js/asset-library.underscore -msgid "List of uploaded files and assets in this course" -msgstr "该课程中上传的文件和资源列表" - -#: cms/templates/js/asset-library.underscore -msgid "Preview" -msgstr "预览" - -#: cms/templates/js/asset-library.underscore -#: cms/templates/js/asset-library.underscore -msgid "- Sortable" -msgstr "—可排序的" - -#: cms/templates/js/asset-library.underscore -msgid "Show All" -msgstr "全部显示" - -#: cms/templates/js/asset-library.underscore -msgid "Other" -msgstr "其他" - -#: cms/templates/js/asset-library.underscore -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Date Added" -msgstr "添加日期" - -#: cms/templates/js/asset-library.underscore -msgid "URL" -msgstr "URL" - -#: cms/templates/js/asset-library.underscore -msgid "You haven't added any assets to this course yet." -msgstr "您尚未向该课程添加任何资源。" - -#: cms/templates/js/asset-library.underscore -msgid "Upload your first asset" -msgstr "上传第一个资源" - -#: cms/templates/js/asset-upload-modal.underscore -msgid "close" -msgstr "关闭" - -#: cms/templates/js/asset-upload-modal.underscore -msgid "Upload New File" -msgstr "上传新文件" - -#: cms/templates/js/asset-upload-modal.underscore -msgid "Choose File" -msgstr "选择文件" - -#: cms/templates/js/asset.underscore -msgid "No description available" -msgstr "没有可用的描述" - -#: cms/templates/js/asset.underscore -msgid "Open/download this file" -msgstr "打开/下载该文件" - -#: cms/templates/js/asset.underscore -msgid "Studio:" -msgstr "Studio:" - -#: cms/templates/js/asset.underscore -msgid "Web:" -msgstr "网页:" - -#: cms/templates/js/asset.underscore -msgid "Delete this asset" -msgstr "删除该资源" - -#: cms/templates/js/asset.underscore -msgid "Lock this asset" -msgstr "锁定该资源" - -#: cms/templates/js/asset.underscore -msgid "Lock/unlock file" -msgstr "锁定/解锁文件" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/partition-group-details.underscore -msgid "ID" -msgstr "ID" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "Certificate Details" -msgstr "认证细则" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "Course Title" -msgstr "课程标题" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "Course Title Override" -msgstr "课程标题覆写" - -#: cms/templates/js/certificate-details.underscore -msgid "Course Number" -msgstr "课程代码" - -#: cms/templates/js/certificate-details.underscore -msgid "Course Number Override" -msgstr "重写课程编号" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "Certificate Signatories" -msgstr "证书签名" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "" -"It is strongly recommended that you include four or fewer signatories. If " -"you include additional signatories, preview the certificate in Print View to" -" ensure the certificate will print correctly on one page." -msgstr "我们强烈建议您包含四个及更少的签署方。如果您包含了更多的签署方,请在打印预览界面确认您的证书是否能被正确地打印在一面纸上。" - -#: cms/templates/js/certificate-editor.underscore -msgid "Certificate Information" -msgstr "认证信息" - -#: cms/templates/js/certificate-editor.underscore -msgid "Certificate Name" -msgstr "认证名称" - -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "Name of the certificate" -msgstr "认证名称" - -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/certificate-editor.underscore -msgid "Description of the certificate" -msgstr "认证描述" - -#: cms/templates/js/certificate-editor.underscore -msgid "Course title" -msgstr "课程标题" - -#: cms/templates/js/certificate-editor.underscore -msgid "" -"Specify an alternative to the official course title to display on " -"certificates. Leave blank to use the official course title." -msgstr "设置证书上所显示的官方课程标题的别名。如果留空,则使用官方课程标题。" - -#: cms/templates/js/certificate-editor.underscore -msgid "Add Additional Signatory" -msgstr "添加额外签章" - -#: cms/templates/js/certificate-editor.underscore -msgid "(Add signatories for a certificate)" -msgstr "(添加证书中的签署方)" - -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/group-configuration-editor.underscore -msgid "Create" -msgstr "创建" - -#: cms/templates/js/certificate-web-preview.underscore -msgid "Choose mode" -msgstr "选择模式" - -#: cms/templates/js/certificate-web-preview.underscore -msgid "Preview Certificate" -msgstr "预览证书" - -#: cms/templates/js/certificate-web-preview.underscore -msgid "Activate" -msgstr "激活" - -#: cms/templates/js/certificate-web-preview.underscore -msgid "Deactivate" -msgstr "停用" - -#: cms/templates/js/container-access.underscore -msgid "unit" -msgstr "单元" - -#: cms/templates/js/container-access.underscore -msgid "component" -msgstr "组件" - -#: cms/templates/js/container-access.underscore -msgid "Access to this {blockType} is restricted to: {selectedGroupsLabel}" -msgstr "仅限{selectedGroupsLabel}可访问此{blockType}" - -#: cms/templates/js/container-access.underscore -msgid "" -"Access to some content in this {blockType} is restricted to specific groups " -"of learners." -msgstr "此{blockType}的某些内容仅限指定分组学员可访问。" - -#: cms/templates/js/container-message.underscore -msgid "" -"Caution: The last published version of this unit is live. By publishing " -"changes you will change the student experience." -msgstr "注意:该单元最新发布的版本已上线。通过发布更新将会改善学生体验。" - -#: cms/templates/js/content-group-editor.underscore -msgid "Content Group Name" -msgstr "内容组名字" - -#: cms/templates/js/content-group-editor.underscore -msgid "Content Group ID" -msgstr "内容组 ID" - -#: cms/templates/js/content-group-editor.underscore -msgid "This is the name of the group" -msgstr "这里输入组的名字" - -#: cms/templates/js/content-group-editor.underscore -msgid "This content group is used in one or more units." -msgstr "该内容组已经在一个或多个单元内使用。" - -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/partition-group-details.underscore -msgid "Cannot delete when in use by a unit" -msgstr "在单元中使用时不能被删除" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "Subsection Visibility" -msgstr "节可见性" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "Show entire subsection" -msgstr "显示整节" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "Learners see the published subsection and can access its content." -msgstr "学员可见已发布的节,并可访问其内容。" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "Hide content after course end date" -msgstr "课程结束后隐藏内容" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "Hide content after due date" -msgstr "截止日期后隐藏日期" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "" -"After the course\\'s end date has passed, learners can no longer access " -"subsection content. The subsection remains included in grade calculations." -msgstr "结课日期结束后,学员无法继续访问节内容。该节仍计入总分。" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "" -"After the subsection\\'s due date has passed, learners can no longer access " -"its content. The subsection remains included in grade calculations." -msgstr "该节截止日期结束后,学员无法继续访问节内容。该节仍计入总分。" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "Hide entire subsection" -msgstr "隐藏整节" - -#: cms/templates/js/content-visibility-editor.underscore -msgid "" -"Learners do not see the subsection in the course outline. The subsection is " -"not included in grade calculations." -msgstr "学员在课程大纲中无法看到该节,该节不计入总分。" - -#: cms/templates/js/content-visibility-editor.underscore -#, python-format -msgid "" -"If you select an option other than \"%(hide_label)s\", published units in " -"this subsection become available to learners unless they are explicitly " -"hidden." -msgstr "如果您不选择“%(hide_label)s”,那么学员可看到本节已发布单元,除非手动隐藏。" - -#: cms/templates/js/course-highlights-enable.underscore -msgid "Weekly Highlight Emails" -msgstr "每周亮点内容邮件" - -#: cms/templates/js/course-highlights-enable.underscore -msgid "Enabled" -msgstr "启用" - -#: cms/templates/js/course-highlights-enable.underscore -msgid "Enable Now" -msgstr "立即开启" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Instructor Name" -msgstr "讲师名称" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Please add the instructor's name" -msgstr "请添加讲师名称" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Instructor Title" -msgstr "导师头衔" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Please add the instructor's title" -msgstr "请添加导师头衔" - -#: cms/templates/js/course-instructor-details.underscore -#: cms/templates/js/signatory-details.underscore -msgid "Organization" -msgstr "机构" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Organization Name" -msgstr "机构名称" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Please add the institute where the instructor is associated" -msgstr "请输入授课老师所属机构" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Biography" -msgstr "简历" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Instructor Biography" -msgstr "讲师生平" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Please add the instructor's biography" -msgstr "请添加讲师生平简介" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Photo" -msgstr "照片" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Instructor Photo" -msgstr "讲师照片" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Instructor Photo URL" -msgstr "讲师照片地址" - -#: cms/templates/js/course-instructor-details.underscore -msgid "" -"Please add a photo of the instructor (Note: only JPEG or PNG format " -"supported)" -msgstr "请添加一张讲师的照片 (注意: 仅支持JPEG和PNG格式)" - -#: cms/templates/js/course-instructor-details.underscore -msgid "Upload Photo" -msgstr "上传照片" - -#: cms/templates/js/course-outline.underscore -#, python-format -msgid "Prerequisite: %(prereq_display_name)s" -msgstr "先决条件: %(prereq_display_name)s" - -#: cms/templates/js/course-outline.underscore -msgid "Contains staff only content" -msgstr "包含仅限工作人员可见的内容" - -#: cms/templates/js/course-outline.underscore -msgid "Unpublished changes to live content" -msgstr "对在线内容有未发布的更改" - -#: cms/templates/js/course-outline.underscore -msgid "Unpublished units will not be released" -msgstr "尚未发布的单元将不会被公开" - -#: cms/templates/js/course-outline.underscore -msgid "Unpublished changes to content that will release in the future" -msgstr "将在未来公开的、尚未发布的内容更新" - -#: cms/templates/js/course-outline.underscore -msgid "Access to this unit is restricted to: {selectedGroupsLabel}" -msgstr "仅限{selectedGroupsLabel}可访问该单元" - -#: cms/templates/js/course-outline.underscore -msgid "" -"Access to some content in this unit is restricted to specific groups of " -"learners" -msgstr "仅限指定分组学员可访问此单元的部分内容" - -#: cms/templates/js/course-outline.underscore -msgid "Ungraded" -msgstr "未分级" - -#: cms/templates/js/course-outline.underscore -msgid "Practice proctored Exam" -msgstr "模拟监考" - -#: cms/templates/js/course-outline.underscore -msgid "Proctored Exam" -msgstr "监考下的测试" - -#: cms/templates/js/course-outline.underscore -msgid "Timed Exam" -msgstr "计时测验" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#, python-format -msgid "Collapse/Expand this %(xblock_type)s" -msgstr "折叠/扩展该%(xblock_type)s" - -#: cms/templates/js/course-outline.underscore -msgid "Display Name" -msgstr "显示名称" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/publish-xblock.underscore -msgid "Publish" -msgstr "发布" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -msgid "Configure" -msgstr "配置" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -msgid "Duplicate" -msgstr "复制" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -msgid "Drag to reorder" -msgstr "拖动以重排序" - -#: cms/templates/js/course-outline.underscore -msgid "Release Status:" -msgstr "公开状态:" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/xblock-outline.underscore -msgid "Released:" -msgstr "已公开:" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/publish-xblock.underscore -msgid "Scheduled:" -msgstr "已定于:" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/highlights-editor.underscore -msgid "Section Highlights" -msgstr "章重点内容" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -msgid "Graded as:" -msgstr "评分方式:" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -msgid "Due:" -msgstr "截止时间:" - -#: cms/templates/js/course-outline.underscore -msgid "Subsection is hidden after course end date" -msgstr "结课日期过后隐藏节" - -#: cms/templates/js/course-outline.underscore -msgid "Subsection is hidden after due date" -msgstr "截止日期过后隐藏节" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/xblock-outline.underscore -msgid "You haven't added any content to this course yet." -msgstr "您尚未向该课程添加任何内容。" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#, python-format -msgid "Click to add a new %(xblock_type)s" -msgstr "点击添加一个新%(xblock_type)s" - -#: cms/templates/js/course-settings-learning-fields.underscore -msgid "Learning Outcome" -msgstr "学习成果" - -#: cms/templates/js/course-settings-learning-fields.underscore -msgid "Add a learning outcome here" -msgstr "在这里添加学习成果" - -#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore -#: cms/templates/js/course-video-settings-update-settings-footer.underscore -#: cms/templates/js/publish-xblock.underscore -msgid "Discard Changes" -msgstr "放弃更改" - -#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore -msgid "Press discard changes to discard your changes." -msgstr "点击“撤销更改”以撤销您作出的更改。" - -#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore -#: cms/templates/js/course-video-settings-update-settings-footer.underscore -msgid "Update Settings" -msgstr "更新设置" - -#: cms/templates/js/course-video-settings-update-org-credentials-footer.underscore -msgid "Press update settings to update the information for your organization." -msgstr "点击“更新设置”以更新您的组织信息。" - -#: cms/templates/js/course-video-settings-update-settings-footer.underscore -msgid "Press discard changes to discard changes." -msgstr "点击“撤销更改”以撤销作出的更改。" - -#: cms/templates/js/course-video-settings-update-settings-footer.underscore -msgid "Press update settings to update course video settings" -msgstr "点击“更新设置”以更新课程视频设置" - -#: cms/templates/js/course-video-settings-update-settings-footer.underscore -msgid "Last updated" -msgstr "最后更新" - -#: cms/templates/js/course-video-settings.underscore -msgid "Press close to hide course video settings" -msgstr "点击“关闭”以隐藏课程视频设置" - -#: cms/templates/js/course-video-settings.underscore -msgid "Course Video Settings" -msgstr "课程视频设置" - -#: cms/templates/js/course-video-transcript-preferences.underscore -msgid "Transcript Turnaround" -msgstr "字幕转换" - -#: cms/templates/js/course-video-transcript-preferences.underscore -msgid "Transcript Fidelity" -msgstr "字幕保真度" - -#: cms/templates/js/course-video-transcript-preferences.underscore -msgid "Video Source Language" -msgstr "视频源语言" - -#: cms/templates/js/course-video-transcript-preferences.underscore -msgid "Transcript Languages" -msgstr "字幕语言" - -#: cms/templates/js/course-video-transcript-preferences.underscore -#: cms/templates/js/metadata-dict-entry.underscore -#: cms/templates/js/metadata-list-entry.underscore -#: cms/templates/js/video/metadata-translations-entry.underscore -msgid "Add" -msgstr "添加" - -#: cms/templates/js/course-video-transcript-preferences.underscore -msgid "Press Add to language" -msgstr "点击“添加至语言”" - -#: cms/templates/js/course-video-transcript-provider-empty.underscore -msgid "Automated Transcripts" -msgstr "自动化字幕" - -#: cms/templates/js/course-video-transcript-provider-selected.underscore -msgid "Transcript Provider" -msgstr "字幕提供工具" - -#: cms/templates/js/course-video-transcript-provider-selected.underscore -msgid "Change" -msgstr "修改" - -#: cms/templates/js/course-video-transcript-provider-selected.underscore -msgid "Press change to change selected transcript provider." -msgstr "点击“更改”按钮来更改字幕提供工具。" - -#: cms/templates/js/course_grade_policy.underscore -msgid "Assignment Type Name" -msgstr "作业类型名称" - -#: cms/templates/js/course_grade_policy.underscore -msgid "" -"The general category for this type of assignment, for example, Homework or " -"Midterm Exam. This name is visible to learners." -msgstr "此类型作业的一般分类,如:家庭作业、期中考试。学员可见此名称。" - -#: cms/templates/js/course_grade_policy.underscore -msgid "Abbreviation" -msgstr "缩写" - -#: cms/templates/js/course_grade_policy.underscore -msgid "" -"This short name for the assignment type (for example, HW or Midterm) appears" -" next to assignments on a learner's Progress page." -msgstr "作业类型简称(比如:HW 或 Midterm),显示于学员学习进度页面的作业旁边。" - -#: cms/templates/js/course_grade_policy.underscore -msgid "Weight of Total Grade" -msgstr "在总评分中的权重" - -#: cms/templates/js/course_grade_policy.underscore -msgid "" -"The weight of all assignments of this type as a percentage of the total " -"grade, for example, 40. Do not include the percent symbol." -msgstr "此类型的所有作业占总分的百分比,如:40,请勿输入百分号。" - -#: cms/templates/js/course_grade_policy.underscore -msgid "Total Number" -msgstr "总数" - -#: cms/templates/js/course_grade_policy.underscore -msgid "" -"The number of subsections in the course that contain problems of this " -"assignment type." -msgstr "课程中所有包含此作业类型的节数。" - -#: cms/templates/js/course_grade_policy.underscore -msgid "Number of Droppable" -msgstr "可放弃的数量" - -#: cms/templates/js/course_grade_policy.underscore -msgid "" -"The number of assignments of this type that will be dropped. The lowest " -"scoring assignments are dropped first." -msgstr "此类型将会被弃用的作业数。最低分的作业会最先被弃用。" - -#: cms/templates/js/course_info_handouts.underscore -msgid "Course Handouts" -msgstr "课程讲义" - -#: cms/templates/js/course_info_handouts.underscore -msgid "You have no handouts defined" -msgstr "您尚未定义讲义" - -#: cms/templates/js/course_info_handouts.underscore -msgid "" -"There is invalid code in your content. Please check to make sure it is valid" -" HTML." -msgstr "您的内容中有无效的代码。请仔细检查以确保其是合法的HTML。" - -#: cms/templates/js/course_info_update.underscore -msgid "Send push notification to mobile apps" -msgstr "向移动 APP 发送推送通知" - -#: cms/templates/js/course_info_update.underscore -msgid "Send notification to mobile apps" -msgstr "向移动 APP 发送通知" - -#: cms/templates/js/course_info_update.underscore -msgid "Post" -msgstr "发布" - -#: cms/templates/js/due-date-editor.underscore -msgid "Due Date:" -msgstr "截止日期:" - -#: cms/templates/js/due-date-editor.underscore -msgid "Due Time in UTC:" -msgstr "截止时间(UTC):" - -#: cms/templates/js/due-date-editor.underscore -#: cms/templates/js/due-date-editor.underscore -msgid "Clear Grading Due Date" -msgstr "清除评分截止日期" - -#: cms/templates/js/edit-chapter.underscore -msgid "Chapter Name" -msgstr "章名称" - -#: cms/templates/js/edit-chapter.underscore -msgid "Chapter {order}" -msgstr "章 {order}" - -#: cms/templates/js/edit-chapter.underscore -msgid "provide the title/name of the chapter that will be used in navigating" -msgstr "提供将用在导航中的章标题/名称" - -#: cms/templates/js/edit-chapter.underscore -msgid "Chapter Asset" -msgstr "章资源" - -#: cms/templates/js/edit-chapter.underscore -msgid "path/to/introductionToCookieBaking-CH{order}.pdf" -msgstr "path/to/introductionToCookieBaking-CH{order}.pdf" - -#: cms/templates/js/edit-chapter.underscore -msgid "upload a PDF file or provide the path to a Studio asset file" -msgstr "上传 PDF 文件或提供指向 Studio 资源文件的路径" - -#: cms/templates/js/edit-chapter.underscore -msgid "Upload PDF" -msgstr "上传 PDF" - -#: cms/templates/js/edit-chapter.underscore -msgid "delete chapter" -msgstr "删除章" - -#: cms/templates/js/edit-textbook.underscore -msgid "Textbook information" -msgstr "课本信息" - -#: cms/templates/js/edit-textbook.underscore -msgid "Textbook Name" -msgstr "课本名称" - -#: cms/templates/js/edit-textbook.underscore -msgid "Introduction to Cookie Baking" -msgstr "曲奇烘焙简介" - -#: cms/templates/js/edit-textbook.underscore -msgid "" -"provide the title/name of the text book as you would like your students to " -"see it" -msgstr "提供您希望学生看到的课本标题/名称" - -#: cms/templates/js/edit-textbook.underscore -msgid "Chapter information" -msgstr "章信息" - -#: cms/templates/js/edit-textbook.underscore -msgid "Add a Chapter" -msgstr "添加一章" - -#: cms/templates/js/grading-editor.underscore -msgid "Grading" -msgstr "评分" - -#: cms/templates/js/grading-editor.underscore -msgid "Grade as:" -msgstr "评分方式:" - -#: cms/templates/js/grading-editor.underscore -msgid "Not Graded" -msgstr "尚未评分" - -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore -msgid "Cannot delete when in use by an experiment" -msgstr "当在实验中使用时不能被删除" - -#: cms/templates/js/group-configuration-details.underscore -msgid "This Group Configuration is used in:" -msgstr "此群组设定用于:" - -#: cms/templates/js/group-configuration-details.underscore -msgid "" -"This Group Configuration is not in use. Start by adding a content experiment" -" to any Unit via the {linkStart}Course Outline{linkEnd}." -msgstr "此分组设置未启用。您可在{linkStart}课程大纲{linkEnd}的单元中先添加一个内容实验。" - -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/partition-group-details.underscore -msgid "Course Outline" -msgstr "课程大纲" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Group Configuration information" -msgstr "组配置信息" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Group Configuration Name" -msgstr "组配置名称" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Group Configuration ID" -msgstr "组配置 ID" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "This is the Name of the Group Configuration" -msgstr "这是组配置的名称" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Name or short description of the configuration" -msgstr "该配置的名称或简短描述" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "This is the Description of the Group Configuration" -msgstr "这是组配置的描述" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Optional long description" -msgstr "可选的长描述" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Group information" -msgstr "组信息" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Groups" -msgstr "组" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "" -"Name of the groups that students will be assigned to, for example, Control, " -"Video, Problems. You must have two or more groups." -msgstr "要分配给学生的组的名称,例如:控制、视频、问题。组的数量必须为两个或更多。" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "Add another group" -msgstr "添加另一个组" - -#: cms/templates/js/group-configuration-editor.underscore -msgid "" -"This configuration is currently used in content experiments. If you make " -"changes to the groups, you may need to edit those experiments." -msgstr "此设定现在使用于内容实验。如果您对群组做变更,您或许需要编辑那些实验。" - -#: cms/templates/js/group-edit.underscore -msgid "delete group" -msgstr "删除组" - -#: cms/templates/js/highlights-editor.underscore -msgid "" -"This feature is currently in testing. Course teams can enter highlights, but" -" learners will not receive email messages." -msgstr "此功能目前仍在测试中,课程团队可输入重点内容,但学员无法接收到邮件。" - -#: cms/templates/js/highlights-editor.underscore -msgid "" -"Enter 3-5 highlights to include in the email message that learners receive " -"for this section (250 character limit)." -msgstr "输入本章3-5个重点,通过邮件发送给学员(限制250个字符)。" - -#: cms/templates/js/highlights-editor.underscore -#: cms/templates/js/highlights-editor.underscore -msgid "Highlight {highlight_index}" -msgstr "重点 {highlight_index}" - -#: cms/templates/js/highlights-editor.underscore -msgid "A highlight to look forward to this week." -msgstr "本周的一个期待重点。" - -#: cms/templates/js/license-selector.underscore -msgid "License Type" -msgstr "许可类型" - -#: cms/templates/js/license-selector.underscore -msgid "Learn more about {license_name}" -msgstr "了解更多关于 {license_name}" - -#: cms/templates/js/license-selector.underscore -msgid "Options for {license_name}" -msgstr " {license_name}选项" - -#: cms/templates/js/license-selector.underscore -msgid "The following options are available for the {license_name} license." -msgstr "以下为 {license_name}许可的可用选项" - -#: cms/templates/js/license-selector.underscore -msgid "License Display" -msgstr "显示许可内容" - -#: cms/templates/js/license-selector.underscore -msgid "" -"The following message will be displayed at the bottom of the courseware " -"pages within your course:" -msgstr "以下信息将会在您课程的课件页面底部显示:" - -#: cms/templates/js/license-selector.underscore -#: cms/templates/js/license-selector.underscore -msgid "All Rights Reserved" -msgstr "保留所有权利" - -#: cms/templates/js/license-selector.underscore -msgid "Creative Commons licensed content, with terms as follow:" -msgstr "知识共享许可内容,条款如下:" - -#: cms/templates/js/license-selector.underscore -msgid "Some Rights Reserved" -msgstr "保留部分权利" - -#: cms/templates/js/list.underscore -#, python-format -msgid "%(new_item_message)s" -msgstr "%(new_item_message)s" - -#: cms/templates/js/list.underscore -#, python-format -msgid "New %(item_type)s" -msgstr "新建%(item_type)s" - -#: cms/templates/js/metadata-dict-entry.underscore -#: cms/templates/js/metadata-file-uploader-entry.underscore -#: cms/templates/js/metadata-list-entry.underscore -#: cms/templates/js/metadata-number-entry.underscore -#: cms/templates/js/metadata-option-entry.underscore -#: cms/templates/js/metadata-string-entry.underscore -msgid "Clear" -msgstr "清除" - -#: cms/templates/js/metadata-dict-entry.underscore -#: cms/templates/js/metadata-file-uploader-entry.underscore -#: cms/templates/js/metadata-list-entry.underscore -#: cms/templates/js/metadata-number-entry.underscore -#: cms/templates/js/metadata-option-entry.underscore -#: cms/templates/js/metadata-string-entry.underscore -msgid "Clear Value" -msgstr "清除值" - -#: cms/templates/js/metadata-editor.underscore -msgid "Component Location ID" -msgstr "组件位置 ID" - -#: cms/templates/js/metadata-file-uploader-item.underscore -#: cms/templates/js/video-transcripts.underscore -#: cms/templates/js/video/metadata-translations-item.underscore -msgid "Replace" -msgstr "替换" - -#: cms/templates/js/metadata-file-uploader-item.underscore -#: cms/templates/js/video/metadata-translations-item.underscore -msgid "Upload" -msgstr "上传" - -#: cms/templates/js/metadata-file-uploader-item.underscore -#: cms/templates/js/video-transcripts.underscore -#: cms/templates/js/video/metadata-translations-item.underscore -msgid "Download" -msgstr "下载" - -#: cms/templates/js/move-xblock-list.underscore -msgid "{categoryText} in {parentDisplayname}" -msgstr " {parentDisplayname}的{categoryText} " - -#: cms/templates/js/move-xblock-list.underscore -msgid "Current location" -msgstr "当前位置" - -#: cms/templates/js/move-xblock-list.underscore -msgid "View child items" -msgstr "查看子类目" - -#: cms/templates/js/move-xblock-list.underscore -msgid "Currently selected" -msgstr "已选项" - -#: cms/templates/js/no-textbooks.underscore -msgid "You haven't added any textbooks to this course yet." -msgstr "您尚未向该课程添加任何课本。" - -#: cms/templates/js/no-textbooks.underscore -msgid "Add your first textbook" -msgstr "添加第一本课本" - -#: cms/templates/js/partition-group-details.underscore -msgid "This group controls access to:" -msgstr "此分组控制的访问内容为:" - -#: cms/templates/js/partition-group-details.underscore -msgid "" -"In the {linkStart}Course Outline{linkEnd}, use this group to control access " -"to a component." -msgstr "在{linkStart}课程大纲{linkEnd}中,使用此群组控制对一个组件的访问权" - -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Previous Uploads" -msgstr "过去上传的文件" - -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Download available encodings (.csv)" -msgstr "下载可用的编码方式(.csv)" - -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Thumbnail" -msgstr "缩略图" - -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Video ID" -msgstr "视频 ID" - -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Transcripts" -msgstr "字幕" - -#: cms/templates/js/previous-video-upload-list.underscore -msgid "Video Status" -msgstr "视频状态" - -#: cms/templates/js/previous-video-upload.underscore -msgid "Remove this video" -msgstr "移除此视频" - -#: cms/templates/js/previous-video-upload.underscore -msgid "Remove {video_name} video" -msgstr "移除{video_name}视频" - -#: cms/templates/js/publish-history.underscore -msgid "Never published" -msgstr "从未发布过" - -#: cms/templates/js/publish-history.underscore -#, python-format -msgid "Last published %(last_published_date)s by %(publish_username)s" -msgstr "最近由%(publish_username)s于%(last_published_date)s发布" - -#: cms/templates/js/publish-history.underscore -#: cms/templates/js/publish-xblock.underscore -msgid "Previously published" -msgstr "之前已发布" - -#: cms/templates/js/publish-xblock.underscore -msgid "Draft (Never published)" -msgstr "草稿(从未发布过)" - -#: cms/templates/js/publish-xblock.underscore -msgid "Visible to Staff Only" -msgstr "仅工作人员可见" - -#: cms/templates/js/publish-xblock.underscore -msgid "Published and Live" -msgstr "已发布并在线" - -#: cms/templates/js/publish-xblock.underscore -msgid "Published (not yet released)" -msgstr "已发布(尚未公开)" - -#: cms/templates/js/publish-xblock.underscore -msgid "Draft (Unpublished changes)" -msgstr "草稿(有尚未发布的变更)" - -#: cms/templates/js/publish-xblock.underscore -msgid "Release:" -msgstr "公开:" - -#: cms/templates/js/publish-xblock.underscore -msgid "Publishing Status" -msgstr "发布状态" - -#: cms/templates/js/publish-xblock.underscore -msgid "" -"Draft saved on {lastSavedStart}{editedOn}{lastSavedEnd} by " -"{editedByStart}{editedBy}{editedByEnd}" -msgstr "" -"由{editedByStart}{editedBy}{editedByEnd}于{lastSavedStart}{editedOn}{lastSavedEnd}保存了起稿。" - -#: cms/templates/js/publish-xblock.underscore -msgid "" -"Last published {lastPublishedStart}{publishedOn}{lastPublishedEnd} by " -"{publishedByStart}{publishedBy}{publishedByEnd}" -msgstr "" -"最近由{publishedByStart}{publishedBy}{publishedByEnd}于{lastPublishedStart}{publishedOn}{lastPublishedEnd}发布。" - -#: cms/templates/js/publish-xblock.underscore -#, python-format -msgid "with %(release_date_from)s" -msgstr "在%(release_date_from)s" - -#: cms/templates/js/publish-xblock.underscore -msgid "Is Visible To:" -msgstr "可见:" - -#: cms/templates/js/publish-xblock.underscore -msgid "Will Be Visible To:" -msgstr "将会可见:" - -#: cms/templates/js/publish-xblock.underscore -msgid "Staff Only" -msgstr "仅员工" - -#: cms/templates/js/publish-xblock.underscore -#, python-format -msgid "with %(section_or_subsection)s" -msgstr "与%(section_or_subsection)s" - -#: cms/templates/js/publish-xblock.underscore -msgid "Staff and Learners" -msgstr "员工与学员" - -#: cms/templates/js/publish-xblock.underscore -#: cms/templates/js/staff-lock-editor.underscore -msgid "Hide from learners" -msgstr "对学习这隐藏" - -#: cms/templates/js/publish-xblock.underscore -msgid "Note: Do not hide graded assignments after they have been released." -msgstr "注意:请勿在已发布后隐藏已评分作业。" - -#: cms/templates/js/release-date-editor.underscore -msgid "Release Date and Time" -msgstr "公开日期及时间" - -#: cms/templates/js/release-date-editor.underscore -msgid "Release Date:" -msgstr "公开日期:" - -#: cms/templates/js/release-date-editor.underscore -msgid "Release Time in UTC:" -msgstr "公开时间(UTC):" - -#: cms/templates/js/release-date-editor.underscore -#: cms/templates/js/release-date-editor.underscore -msgid "Clear Release Date/Time" -msgstr "清除公开日期/时间" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "Assessment Results Visibility" -msgstr "评估结果的可见人群" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "Always show assessment results" -msgstr "总是显示评估结果" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "" -"When learners submit an answer to an assessment, they immediately see " -"whether the answer is correct or incorrect, and the score received." -msgstr "当学员提交一份答案至评估时,他们可以立即查看答案是否正确和所得分数。" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "Never show assessment results" -msgstr "一直隐藏评分结果" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "" -"Learners never see whether their answers to assessments are correct or " -"incorrect, nor the score received." -msgstr "学员一直无法查看答案是否正确,也无法查看得分。" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "Show assessment results when subsection is past due" -msgstr "当节过期时,显示评分结果。" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "" -"Learners do not see whether their answers to assessments were correct or " -"incorrect, nor the score received, until after the course end date has " -"passed." -msgstr "学员只能在课程结束日期后才能查看答案是否正确和得分。" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "" -"If the course does not have an end date, learners always see their scores " -"when they submit answers to assessments." -msgstr "如果课程不设有结束日期,那么只要学员提交答案至评分,就可以查看自己的得分。" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "" -"Learners do not see whether their answers to assessments were correct or " -"incorrect, nor the score received, until after the due date for the " -"subsection has passed." -msgstr "学员只能在超过节的截止日期后才能查看答案是否正确和得分。" - -#: cms/templates/js/show-correctness-editor.underscore -msgid "" -"If the subsection does not have a due date, learners always see their scores" -" when they submit answers to assessments." -msgstr "如果节不设有截止日期,那么只要学员提交答案至评分,就可以查看自己的得分。" - -#: cms/templates/js/show-textbook.underscore -msgid "View Live" -msgstr "查看在线版" - -#: cms/templates/js/signatory-details.underscore -#: cms/templates/js/signatory-editor.underscore -msgid "Signatory" -msgstr "签名" - -#: cms/templates/js/signatory-details.underscore -#: cms/templates/js/signatory-editor.underscore -msgid "Signature Image" -msgstr "签名图片" - -#: cms/templates/js/signatory-editor.underscore -msgid "Certificate Signatory Configuration" -msgstr "证书签发者设置" - -#: cms/templates/js/signatory-editor.underscore -msgid "Name " -msgstr "姓名" - -#: cms/templates/js/signatory-editor.underscore -msgid "Name of the signatory" -msgstr "签发者姓名" - -#: cms/templates/js/signatory-editor.underscore -msgid "The name of this signatory as it should appear on certificates." -msgstr "签发者在证书上显示的名字" - -#: cms/templates/js/signatory-editor.underscore -msgid "Title " -msgstr "标题" - -#: cms/templates/js/signatory-editor.underscore -msgid "Title of the signatory" -msgstr "签发者称谓" - -#: cms/templates/js/signatory-editor.underscore -msgid "" -"Titles more than 100 characters may prevent students from printing their " -"certificate on a single page." -msgstr "如果标题字数超过100个字符,可能会导致纸质证书超过一页。" - -#: cms/templates/js/signatory-editor.underscore -msgid "Organization " -msgstr "机构" - -#: cms/templates/js/signatory-editor.underscore -msgid "Organization of the signatory" -msgstr "组织机构签章" - -#: cms/templates/js/signatory-editor.underscore -msgid "" -"The organization that this signatory belongs to, as it should appear on " -"certificates." -msgstr "此签署人所属的组织,应显示在证书上。" - -#: cms/templates/js/signatory-editor.underscore -msgid "Path to Signature Image" -msgstr "签名图片路径" - -#: cms/templates/js/signatory-editor.underscore -msgid "Image must be in PNG format" -msgstr "图像必须是PNG格式" - -#: cms/templates/js/signatory-editor.underscore -msgid "Upload Signature Image" -msgstr "上传签名图片" - -#: cms/templates/js/staff-lock-editor.underscore -msgid "Unit Visibility" -msgstr "单元开放人群" - -#: cms/templates/js/staff-lock-editor.underscore -msgid "Section Visibility" -msgstr "节可见人群" - -#: cms/templates/js/staff-lock-editor.underscore -msgid "" -"If the unit was previously published and released to learners, any changes " -"you made to the unit when it was hidden will now be visible to learners." -msgstr "如果此单元先前已被发布且向学生公开,任何在该单元处于隐藏时的改动都将对学生可见。" - -#: cms/templates/js/staff-lock-editor.underscore -#, python-format -msgid "" -"If you make this %(xblockType)s visible to learners, learners will be able " -"to see its content after the release date has passed and you have published " -"the unit. Only units that are explicitly hidden from learners will remain " -"hidden after you clear this option for the %(xblockType)s." -msgstr "" -"如果您设置此%(xblockType)s为学员可见,那么学员在您发布后该单元即可查看其内容。在您取消此%(xblockType)s选项后,只有手动设置为对学员隐藏的单元才会被隐藏。" - -#: cms/templates/js/team-member.underscore -msgid "Current Role:" -msgstr "当前角色:" - -#: cms/templates/js/team-member.underscore -msgid "You!" -msgstr "您!" - -#: cms/templates/js/team-member.underscore -msgid "send an email message to {email}" -msgstr "向{email}发送一封邮件信息" - -#: cms/templates/js/team-member.underscore -msgid "Promote another member to Admin to remove your admin rights" -msgstr "提升另一名成员为管理员以解除您自己的管理权限" - -#: cms/templates/js/team-member.underscore -msgid "Add {role} Access" -msgstr "添加{role}访问权限" - -#: cms/templates/js/team-member.underscore -msgid "Remove {role} Access" -msgstr "删除{role}访问权限" - -#: cms/templates/js/team-member.underscore -msgid "Delete the user, {username}" -msgstr "删除用户 {username}" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Set as a Special Exam" -msgstr "设置为特殊测验" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Exam Types" -msgstr "测试类别" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "None" -msgstr "无" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Timed" -msgstr "计时" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "" -"Use a timed exam to limit the time learners can spend on problems in this " -"subsection. Learners must submit answers before the time expires. You can " -"allow additional time for individual learners through the Instructor " -"Dashboard." -msgstr "用计时的测验以限制学生在这个小节中做题可用的时间。学生必须在限制时间内提交答案。您可以在讲师面板中为个别学生增加附加的做题时间。" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Proctored" -msgstr "监考" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "" -"Proctored exams are timed and they record video of each learner taking the " -"exam. The videos are then reviewed to ensure that learners follow all " -"examination rules." -msgstr "监考下的考试是计时的,并且每个学生的考试过程将被录像。录像将被审核以确保学生遵守了考试纪律。" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Practice Proctored" -msgstr "监考模式模拟考" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "" -"Use a practice proctored exam to introduce learners to the proctoring tools " -"and processes. Results of a practice exam do not affect a learner's grade." -msgstr "使用监考模式模拟考来给学员介绍监考模式工具和流程,模拟考结果不影响学员成绩。" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Time Allotted (HH:MM):" -msgstr "允许使用的时间 (HH:MM):" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "" -"Select a time allotment for the exam. If it is over 24 hours, type in the " -"amount of time. You can grant individual learners extra time to complete the" -" exam through the Instructor Dashboard." -msgstr "分配一个考试时间,如果超过24个小时,则输入时间。您可以通过教师面板操作,把额外的考试时间分配给学员。" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "Review Rules" -msgstr "审查规则" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "" -"Specify any rules or rule exceptions that the proctoring review team should " -"enforce when reviewing the videos. For example, you could specify that " -"calculators are allowed. These specified rules are visible to learners " -"before the learners start the exam, along with the {linkStart}general " -"proctored exam rules{linkEnd}." -msgstr "" -"设置规则或期望条例,方便监考审查团队在审查视频时注意某些问题。例如,您可以设置“允许使用计算器”。学员在考试前可看见这些设置的规则、{linkStart}一般监考模式考试规则{linkEnd}。" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "General Proctored Exam Rules" -msgstr "一般监考模式考试规则" - -#: cms/templates/js/timed-examination-preference-editor.underscore -msgid "" -"Specify any rules or rule exceptions that the proctoring review team should " -"enforce when reviewing the videos. For example, you could specify that " -"calculators are allowed. These specified rules are visible to learners " -"before the learners start the exam." -msgstr "设置规则或期望条例,方便监考审查团队在审查视频时注意某些问题。例如,您可以设置“允许使用计算器”。学员在考试前可看见这些设置的规则。" - -#: cms/templates/js/transcript-organization-credentials.underscore -msgid "Account" -msgstr "账号" - -#: cms/templates/js/transcript-organization-credentials.underscore -msgid "" -"This action updates the {provider} information for your entire organization." -msgstr "此操作会更新您整个组织的{provider}信息。" - -#: cms/templates/js/transcript-organization-credentials.underscore -msgid "Enter the account information for your organization." -msgstr "为您的组织输入账号信息。" - -#: cms/templates/js/transcript-organization-credentials.underscore -msgid "API Key" -msgstr "API Key" - -#: cms/templates/js/transcript-organization-credentials.underscore -msgid "API Secret" -msgstr "API Secret" - -#: cms/templates/js/unit-access-editor.underscore -msgid "Unit Access" -msgstr "对单元的访问" - -#: cms/templates/js/unit-access-editor.underscore -msgid "Restrict access to:" -msgstr "可访问人群;" - -#: cms/templates/js/unit-access-editor.underscore -msgid "Select a group type" -msgstr "选择分组类型" - -#: cms/templates/js/unit-access-editor.underscore -msgid "Select one or more groups:" -msgstr "选择一或者多个群组" - -#: cms/templates/js/unit-access-editor.underscore -msgid "Deleted Group" -msgstr "已删除组" - -#: cms/templates/js/unit-access-editor.underscore -msgid "" -"This group no longer exists. Choose another group or do not restrict access " -"to this unit." -msgstr "内容组已不存在,您可以选择另一组,或不限制对此单元的访问。" - -#: cms/templates/js/upload-dialog.underscore -msgid "File upload succeeded" -msgstr "文件上传成功" - -#: cms/templates/js/validation-error-modal.underscore -msgid "" -"Please check the following validation feedbacks and reflect them in your " -"course settings:" -msgstr "请检查以下验证反馈并结合这样反馈修改您的课程设置:" - -#: cms/templates/js/verification-access-editor.underscore -msgid "Verification Checkpoint" -msgstr "认证检验点" - -#: cms/templates/js/verification-access-editor.underscore -msgid "Must complete verification checkpoint" -msgstr "必须完成认证检查点" - -#: cms/templates/js/verification-access-editor.underscore -msgid "Verification checkpoint to be completed" -msgstr "需完成认证" - -#: cms/templates/js/verification-access-editor.underscore -msgid "" -"Learners who require verification must pass the selected checkpoint to see " -"the content in this unit. Learners who do not require verification see this " -"content by default." -msgstr "需要认证的学员必须通过认证才能查看此单元的内容,不需认证的学员默认可查看此内容。" - -#: cms/templates/js/video-thumbnail.underscore -msgid "" -"Recommended image resolution is {imageResolution}, maximum image file size " -"should be {maxFileSize} and format must be one of {supportedImageFormats}." -msgstr "" -"建议图片分辨率为{imageResolution},图片文件尺寸不得超过{maxFileSize},只支持以下格式{supportedImageFormats}。" - -#: cms/templates/js/video-transcript-upload-status.underscore -msgid "Read more" -msgstr "了解更多" - -#: cms/templates/js/video-transcripts.underscore -msgid "Show transcripts ({totalTranscripts})" -msgstr "显示字幕 ({totalTranscripts})" - -#: cms/templates/js/video-transcripts.underscore -msgid "No transcript uploaded." -msgstr "未上传字幕。" - -#: cms/templates/js/video-transcripts.underscore -msgid "{transcriptClientTitle}_{transcriptLanguageCode}.{fileExtension}" -msgstr "{transcriptClientTitle}_{transcriptLanguageCode}.{fileExtension}" - -#: cms/templates/js/xblock-access-editor.underscore -msgid "Set Access" -msgstr "设置限制" - -#: cms/templates/js/xblock-string-field-editor.underscore -#, python-format -msgid "Edit %(display_name)s (required)" -msgstr "编辑%(display_name)s(必填)" - -#: cms/templates/js/maintenance/force-published-course-response.underscore -msgid "" -"You have done a dry run of force publishing the course. Nothing has changed." -" Had you run it, the following course versions would have been change." -msgstr "您已完成一次强制发布课程DRU RUN。未作出更改,如果您已运行了一次,那么以下版本课程应发生改变。" - -#: cms/templates/js/maintenance/force-published-course-response.underscore -msgid "" -"The published branch version, {published}, was reset to the draft branch " -"version, {draft}." -msgstr "已发布分支版本{published}被重置为初稿分支版本{draft}。" - -#: cms/templates/js/video/transcripts/metadata-videolist-entry.underscore -msgid "Add URLs for additional versions" -msgstr "添加其他版本的URL" - -#: cms/templates/js/video/transcripts/metadata-videolist-entry.underscore -msgid "" -"To be sure all students can access the video, we recommend providing both an" -" .mp4 and a .webm version of your video. Click below to add a URL for " -"another version. These URLs cannot be YouTube URLs. The first listed video " -"that's compatible with the student's computer will play." -msgstr "" -"要确保所有学生都能看到视频,我们建议您同时提供.mp4版本和.webm版本的视频。点击下方按钮添加另一个版本的URL(请勿使用YouTube的URL),学生将会看到列表中第一个与其计算机兼容的视频。" - -#: cms/templates/js/video/transcripts/metadata-videolist-entry.underscore -msgid "Default Timed Transcript" -msgstr "默认字幕" - -#: cms/templates/js/video/transcripts/messages/transcripts-choose.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -msgid "Timed Transcript Conflict" -msgstr "字幕冲突" - -#: cms/templates/js/video/transcripts/messages/transcripts-choose.underscore -msgid "" -"The timed transcript for the first video file does not appear to be the same" -" as the timed transcript for the second video file." -msgstr "第一个视频文件的字幕似乎与第二个视频文件的字幕不同。" - -#: cms/templates/js/video/transcripts/messages/transcripts-choose.underscore -msgid "Which timed transcript would you like to use?" -msgstr "您想使用哪个字幕?" - -#: cms/templates/js/video/transcripts/messages/transcripts-choose.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -msgid "Error." -msgstr "错误。" - -#: cms/templates/js/video/transcripts/messages/transcripts-choose.underscore -#, python-format -msgid "Timed Transcript from %(filename)s" -msgstr "来自%(filename)s的字幕" - -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -msgid "Timed Transcript Found" -msgstr "找到字幕" - -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -msgid "" -"EdX has a timed transcript for this video. If you want to edit this " -"transcript, you can download, edit, and re-upload the existing transcript. " -"If you want to replace this transcript, upload a new .srt transcript file." -msgstr "EdX 有该视频的字幕。如果您希望编辑该字幕,可以下载编辑后重新上传。如果您想替换该字幕,请上传一个新的 .srt 字幕文件。" - -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -msgid "Upload New Transcript" -msgstr "上传新字幕" - -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -msgid "Upload New .srt Transcript" -msgstr "上传新的 .srt 字幕" - -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -msgid "Download Transcript for Editing" -msgstr "下载字幕进行编辑" - -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -msgid "No EdX Timed Transcript" -msgstr "没有 EdX 字幕" - -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -msgid "" -"EdX doesn't have a timed transcript for this video in Studio, but we found a" -" transcript on YouTube. You can import the YouTube transcript or upload your" -" own .srt transcript file." -msgstr "" -"EdX 在 Studio 中没有该视频的字幕,但是我们在 YouTube 中找到了一个字幕。您可以导入 YouTube 字幕或者上传您自己的 .srt " -"字幕文件。" - -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-import.underscore -msgid "Import YouTube Transcript" -msgstr "导入 YouTube 字幕" - -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -msgid "No Timed Transcript" -msgstr "没有字幕" - -#: cms/templates/js/video/transcripts/messages/transcripts-not-found.underscore -msgid "" -"EdX doesn\\'t have a timed transcript for this video. Please upload an .srt " -"file." -msgstr "EdX 没有该视频的字幕。请上传一个 .srt 文件。" - -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -msgid "" -"The timed transcript for this video on edX is out of date, but YouTube has a" -" current timed transcript for this video." -msgstr "EdX 上该视频的字幕已过时,但 YouTube 上有该视频字幕的当前版本。" - -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -msgid "Do you want to replace the edX transcript with the YouTube transcript?" -msgstr "您希望用 YouTube 字幕替换 edX 字幕吗?" - -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-replace.underscore -msgid "Yes, replace the edX transcript with the YouTube transcript" -msgstr "是的,用 YouTube 字幕替换 edX 字幕。" - -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -msgid "Timed Transcript Uploaded Successfully" -msgstr "字幕上传成功" - -#: cms/templates/js/video/transcripts/messages/transcripts-uploaded.underscore -msgid "" -"EdX has a timed transcript for this video. If you want to replace this " -"transcript, upload a new .srt transcript file. If you want to edit this " -"transcript, you can download, edit, and re-upload the existing transcript." -msgstr "EdX 有该视频的字幕。如果您希望替换该字幕,请上传一个新的 .srt 字幕文件。如果您希望编辑该字幕,可以下载编辑后重新上传。" - -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -msgid "Confirm Timed Transcript" -msgstr "确认字幕" - -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -msgid "" -"You changed a video URL, but did not change the timed transcript file. Do " -"you want to use the current timed transcript or upload a new .srt transcript" -" file?" -msgstr "您变更了视频的 URL,但没有变更字幕文件。您希望继续使用当前的字幕文件还是上传一个新的 .srt 字幕文件?" - -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -#: cms/templates/js/video/transcripts/messages/transcripts-use-existing.underscore -msgid "Use Current Transcript" -msgstr "使用当前字幕" diff --git a/conf/locale/zh_CN/LC_MESSAGES/underscore.po b/conf/locale/zh_CN/LC_MESSAGES/underscore.po deleted file mode 100644 index eb190577f108..000000000000 --- a/conf/locale/zh_CN/LC_MESSAGES/underscore.po +++ /dev/null @@ -1,2592 +0,0 @@ -# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) -# Copyright (C) 2019 edX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -# Translators: -# 微 李 , 2018 -# li ying , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-11 02:17+0000\n" -"PO-Revision-Date: 2018-11-26 07:56+0000\n" -"Last-Translator: li ying , 2019\n" -"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" - -#: cms/templates/js/add-xblock-component-menu-problem.underscore -#: cms/templates/js/add-xblock-component-menu.underscore -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/course_info_handouts.underscore -#: cms/templates/js/course_info_update.underscore -#: cms/templates/js/edit-textbook.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: cms/templates/js/section-name-edit.underscore -#: cms/templates/js/signatory-actions.underscore -#: cms/templates/js/xblock-string-field-editor.underscore -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/response-comment-edit.underscore -#: common/static/common/templates/discussion/thread-edit.underscore -#: common/static/common/templates/discussion/thread-response-edit.underscore -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -#: lms/templates/learner_dashboard/verification_popover.underscore -msgid "Cancel" -msgstr "取消" - -#: cms/templates/js/asset-library.underscore -#: cms/templates/js/course-instructor-details.underscore -#: cms/templates/js/previous-video-upload-list.underscore -#: cms/templates/js/signatory-details.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Name" -msgstr "姓名" - -#: cms/templates/js/asset-library.underscore -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Type" -msgstr "类型" - -#: cms/templates/js/asset-library.underscore -#: cms/templates/js/basic-modal.underscore -#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -msgid "Actions" -msgstr "操作" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/course_info_handouts.underscore -#: cms/templates/js/course_info_update.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/partition-group-details.underscore -#: cms/templates/js/show-textbook.underscore -#: cms/templates/js/signatory-details.underscore -#: cms/templates/js/xblock-string-field-editor.underscore -#: common/static/common/templates/discussion/forum-action-edit.underscore -msgid "Edit" -msgstr "编辑" - -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-details.underscore -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/course-instructor-details.underscore -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/course-settings-learning-fields.underscore -#: cms/templates/js/course_grade_policy.underscore -#: cms/templates/js/course_info_update.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-details.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: cms/templates/js/partition-group-details.underscore -#: cms/templates/js/partition-group-details.underscore -#: cms/templates/js/partition-group-details.underscore -#: cms/templates/js/show-textbook.underscore -#: cms/templates/js/signatory-editor.underscore -#: cms/templates/js/video-transcripts.underscore -#: cms/templates/js/xblock-outline.underscore -#: cms/templates/js/xblock-outline.underscore -#: common/static/common/templates/discussion/forum-action-delete.underscore -msgid "Delete" -msgstr "删除" - -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Description" -msgstr "描述" - -#: cms/templates/js/certificate-editor.underscore -#: cms/templates/js/content-group-editor.underscore -#: cms/templates/js/course_info_handouts.underscore -#: cms/templates/js/edit-textbook.underscore -#: cms/templates/js/group-configuration-editor.underscore -#: cms/templates/js/section-name-edit.underscore -#: cms/templates/js/signatory-actions.underscore -#: cms/templates/js/xblock-string-field-editor.underscore -#: lms/templates/fields/field_dropdown.underscore -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-course-wide.underscore -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore -msgid "Save" -msgstr "保存" - -#: cms/templates/js/course-instructor-details.underscore -#: cms/templates/js/signatory-details.underscore -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/thread-edit.underscore -msgid "Title" -msgstr "标题" - -#: cms/templates/js/course-outline.underscore -#: cms/templates/js/publish-xblock.underscore -#: lms/templates/ccx/schedule.underscore lms/templates/ccx/schedule.underscore -msgid "Unscheduled" -msgstr "尚未计划" - -#: cms/templates/js/course-video-settings.underscore -#: common/static/common/templates/image-modal.underscore -#: common/static/common/templates/discussion/alert-popup.underscore -#: common/static/common/templates/discussion/forum-action-close.underscore -#: common/static/common/templates/discussion/forum-action-close.underscore -#: common/static/common/templates/discussion/search-alert.underscore -#: openedx/features/learner_profile/static/learner_profile/templates/share_modal.underscore -msgid "Close" -msgstr "关闭" - -#: cms/templates/js/course_info_update.underscore -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Date" -msgstr "日期" - -#: cms/templates/js/move-xblock-modal.underscore -#: openedx/features/course_search/static/course_search/templates/search_loading.underscore -msgid "Loading" -msgstr "正在加载" - -#: cms/templates/js/paging-header.underscore -#: common/static/common/templates/components/paging-footer.underscore -#: common/static/common/templates/discussion/pagination.underscore -msgid "Previous" -msgstr "上一步" - -#: cms/templates/js/paging-header.underscore -#: common/static/common/templates/components/paging-footer.underscore -#: common/static/common/templates/discussion/pagination.underscore -msgid "Next" -msgstr "下一步" - -#: cms/templates/js/previous-video-upload-list.underscore -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Action" -msgstr "操作" - -#: cms/templates/js/transcript-organization-credentials.underscore -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "Username" -msgstr "用户名" - -#: cms/templates/js/video/metadata-translations-item.underscore -#: lms/djangoapps/teams/static/teams/templates/edit-team-member.underscore -msgid "Remove" -msgstr "删除" - -#: common/static/common/templates/image-modal.underscore -msgid "Fullscreen" -msgstr "全屏" - -#: common/static/common/templates/image-modal.underscore -msgid "Large" -msgstr "大" - -#: common/static/common/templates/image-modal.underscore -msgid "Zoom In" -msgstr "放大" - -#: common/static/common/templates/image-modal.underscore -msgid "Zoom Out" -msgstr "缩小" - -#: common/static/common/templates/components/paging-footer.underscore -#, python-format -msgid "Page number out of %(total_pages)s" -msgstr "页码(共 %(total_pages)s 页)" - -#: common/static/common/templates/components/paging-footer.underscore -msgid "Enter the page number you'd like to quickly navigate to." -msgstr "输入您需要快速前往的页码。" - -#: common/static/common/templates/components/paging-header.underscore -msgid "Sorted by" -msgstr "排列" - -#: common/static/common/templates/components/search-field.underscore -msgid "Clear search" -msgstr "清空搜索结果" - -#: common/static/common/templates/components/search-field.underscore -#: common/static/common/templates/components/search-field.underscore -#: lms/djangoapps/discussion/static/discussion/templates/search.underscore -#: lms/djangoapps/support/static/support/templates/certificates.underscore -#: lms/djangoapps/support/static/support/templates/certificates.underscore -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -msgid "Search" -msgstr "搜索" - -#: common/static/common/templates/discussion/alert-popup.underscore -#: lms/templates/learner_dashboard/verification_popover.underscore -msgid "OK" -msgstr "是的" - -#: common/static/common/templates/discussion/forum-action-answer.underscore -#: common/static/common/templates/discussion/forum-action-answer.underscore -msgid "Mark as Answer" -msgstr "标记作为答案" - -#: common/static/common/templates/discussion/forum-action-answer.underscore -msgid "Unmark as Answer" -msgstr "取消标记作为答案" - -#: common/static/common/templates/discussion/forum-action-close.underscore -msgid "Open" -msgstr "打开" - -#: common/static/common/templates/discussion/forum-action-endorse.underscore -#: common/static/common/templates/discussion/forum-action-endorse.underscore -msgid "Endorse" -msgstr "支持" - -#: common/static/common/templates/discussion/forum-action-endorse.underscore -msgid "Unendorse" -msgstr "取消支持" - -#: common/static/common/templates/discussion/forum-action-follow.underscore -#: common/static/common/templates/discussion/forum-action-follow.underscore -msgid "Follow" -msgstr "关注" - -#: common/static/common/templates/discussion/forum-action-follow.underscore -msgid "Unfollow" -msgstr "取消关注" - -#: common/static/common/templates/discussion/forum-action-pin.underscore -#: common/static/common/templates/discussion/forum-action-pin.underscore -msgid "Pin" -msgstr "处理" - -#: common/static/common/templates/discussion/forum-action-pin.underscore -msgid "Unpin" -msgstr "不做处理" - -#: common/static/common/templates/discussion/forum-action-report.underscore -msgid "Report abuse" -msgstr "报告辱骂" - -#: common/static/common/templates/discussion/forum-action-report.underscore -msgid "Report" -msgstr "报告" - -#: common/static/common/templates/discussion/forum-action-report.underscore -msgid "Unreport" -msgstr "取消报告" - -#: common/static/common/templates/discussion/forum-action-vote.underscore -msgid "Vote for this post," -msgstr "为该帖投票" - -#: common/static/common/templates/discussion/forum-actions.underscore -#: common/static/common/templates/discussion/forum-actions.underscore -#: lms/templates/discovery/facet.underscore -#: lms/templates/edxnotes/note-item.underscore -msgid "More" -msgstr "更多" - -#: common/static/common/templates/discussion/nav-load-more-link.underscore -msgid "Load more" -msgstr "载入更多" - -#: common/static/common/templates/discussion/new-post-alert.underscore -msgid "Error posting your message." -msgstr "提交您的讯息时发生错误" - -#: common/static/common/templates/discussion/new-post-visibility.underscore -#, python-format -msgid "This post will be visible only to %(group_name)s." -msgstr "此帖子仅%(group_name)s可见。" - -#: common/static/common/templates/discussion/new-post-visibility.underscore -msgid "This post will be visible to everyone." -msgstr "所有人皆可见此帖子。" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "Add a Post" -msgstr "添加一个讨论帖" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "Visible to" -msgstr "对其可见" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "" -"Discussion admins, moderators, and TAs can make their posts visible to all " -"students or specify a single group." -msgstr "论坛管理员、版主和助教可设置他们的帖子为所有人可见或仅特定分组可见。" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "All Groups" -msgstr "所有分组" - -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/thread-edit.underscore -msgid "" -"Add a clear and descriptive title to encourage participation. (Required)" -msgstr "添加一个清晰并且具有描述性的标题来鼓励参与 (必填项)" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "Your question or idea (required)" -msgstr "您的问题或意见 (必填项)" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "follow this post" -msgstr "关注这个帖子" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "post anonymously" -msgstr "匿名发帖" - -#: common/static/common/templates/discussion/new-post.underscore -msgid "post anonymously to classmates" -msgstr "向同学匿名发帖" - -#: common/static/common/templates/discussion/new-post.underscore -#: common/static/common/templates/discussion/thread-response.underscore -#: common/static/common/templates/discussion/thread.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Submit" -msgstr "提交" - -#: common/static/common/templates/discussion/pagination.underscore -#: common/static/common/templates/discussion/pagination.underscore -msgid "…" -msgstr "…" - -#: common/static/common/templates/discussion/post-user-display.underscore -msgid "(Community TA)" -msgstr "(社区助教)" - -#: common/static/common/templates/discussion/post-user-display.underscore -msgid "(Staff)" -msgstr "(教员)" - -#: common/static/common/templates/discussion/post-user-display.underscore -#: common/static/common/templates/discussion/profile-thread.underscore -msgid "anonymous" -msgstr "匿名" - -#: common/static/common/templates/discussion/profile-thread.underscore -#: common/static/common/templates/discussion/thread.underscore -msgid "This thread is closed." -msgstr "这个帖子已经关闭。" - -#: common/static/common/templates/discussion/profile-thread.underscore -msgid "View discussion" -msgstr "查看讨论" - -#: common/static/common/templates/discussion/response-comment-edit.underscore -msgid "Editing comment" -msgstr "编辑评论" - -#: common/static/common/templates/discussion/response-comment-edit.underscore -msgid "Update comment" -msgstr "更新评论" - -#: common/static/common/templates/discussion/response-comment-show.underscore -#, python-format -msgid "posted %(time_ago)s by %(author)s" -msgstr "%(author)s在%(time_ago)s前发表" - -#: common/static/common/templates/discussion/response-comment-show.underscore -#: common/static/common/templates/discussion/thread-response-show.underscore -#: common/static/common/templates/discussion/thread-show.underscore -msgid "Reported" -msgstr "已报告" - -#: common/static/common/templates/discussion/thread-edit.underscore -msgid "Editing post" -msgstr "编辑讨论帖" - -#: common/static/common/templates/discussion/thread-edit.underscore -msgid "Edit your post below." -msgstr "编辑讨论帖" - -#: common/static/common/templates/discussion/thread-edit.underscore -msgid "Update post" -msgstr "更新讨论帖" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "discussion" -msgstr "讨论" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "answered question" -msgstr "已回复的问题" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "unanswered question" -msgstr "待回复的问题" - -#: common/static/common/templates/discussion/thread-list-item.underscore -#: common/static/common/templates/discussion/thread-show.underscore -msgid "Pinned" -msgstr "已固定" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "Following" -msgstr "关注" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "Staff" -msgstr "工作人员" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "Community TA" -msgstr "社区助教" - -#: common/static/common/templates/discussion/thread-list-item.underscore -msgid "{unread_comments_count} new" -msgstr "{unread_comments_count} 新评论" - -#: common/static/common/templates/discussion/thread-list-item.underscore -#, python-format -msgid "" -"%(comments_count)s %(span_sr_open)scomments (%(unread_comments_count)s " -"unread comments)%(span_close)s" -msgstr "" -"%(comments_count)s %(span_sr_open)s评论 (%(unread_comments_count)s " -"未读评论)%(span_close)s" - -#: common/static/common/templates/discussion/thread-list-item.underscore -#, python-format -msgid "%(comments_count)s %(span_sr_open)scomments %(span_close)s" -msgstr "%(comments_count)s %(span_sr_open)s评论 %(span_close)s" - -#: common/static/common/templates/discussion/thread-response-edit.underscore -msgid "Editing response" -msgstr "编辑回复" - -#: common/static/common/templates/discussion/thread-response-edit.underscore -msgid "Update response" -msgstr "更新回复" - -#: common/static/common/templates/discussion/thread-response-show.underscore -#, python-format -msgid "marked as answer %(time_ago)s by %(user)s" -msgstr "%(time_ago)s 前被%(user)s标记为答案" - -#: common/static/common/templates/discussion/thread-response-show.underscore -#, python-format -msgid "marked as answer %(time_ago)s" -msgstr "%(time_ago)s前被标记为答案 " - -#: common/static/common/templates/discussion/thread-response-show.underscore -#, python-format -msgid "endorsed %(time_ago)s by %(user)s" -msgstr "%(time_ago)s前获得%(user)s的支持" - -#: common/static/common/templates/discussion/thread-response-show.underscore -#, python-format -msgid "endorsed %(time_ago)s" -msgstr "%(time_ago)s前获得支持" - -#: common/static/common/templates/discussion/thread-response.underscore -#, python-format -msgid "Show Comment (%(num_comments)s)" -msgid_plural "Show Comments (%(num_comments)s)" -msgstr[0] "显示评论 (%(num_comments)s)" - -#: common/static/common/templates/discussion/thread-response.underscore -#: common/static/common/templates/discussion/thread-response.underscore -msgid "Add a comment" -msgstr "添加评论" - -#: common/static/common/templates/discussion/thread-show.underscore -#, python-format -msgid "discussion posted %(time_ago)s by %(author)s" -msgstr "由%(author)s于%(time_ago)s发布此讨论帖子" - -#: common/static/common/templates/discussion/thread-show.underscore -#, python-format -msgid "question posted %(time_ago)s by %(author)s" -msgstr "由%(author)s于%(time_ago)s发布此问题" - -#: common/static/common/templates/discussion/thread-show.underscore -msgid "Closed" -msgstr "已关闭" - -#: common/static/common/templates/discussion/thread-show.underscore -#, python-format -msgid "Related to: %(courseware_title_linked)s" -msgstr "与%(courseware_title_linked)s相关" - -#: common/static/common/templates/discussion/thread-show.underscore -#, python-format -msgid "This post is visible only to %(group_name)s." -msgstr "此帖只对%(group_name)s组可见。" - -#: common/static/common/templates/discussion/thread-show.underscore -msgid "This post is visible to everyone." -msgstr "此帖对所有人可见。" - -#: common/static/common/templates/discussion/thread-type.underscore -msgid "Post type" -msgstr "帖子类型" - -#: common/static/common/templates/discussion/thread-type.underscore -msgid "" -"Questions raise issues that need answers. Discussions share ideas and start " -"conversations. (Required)" -msgstr "“问题”指需要回答的问题。“讨论”指分享想法并开始交流。(必填项)" - -#: common/static/common/templates/discussion/thread-type.underscore -msgid "Question" -msgstr "问题" - -#: common/static/common/templates/discussion/thread-type.underscore -msgid "Discussion" -msgstr "讨论" - -#: common/static/common/templates/discussion/thread.underscore -msgid "Add a Response" -msgstr "添加回复" - -#: common/static/common/templates/discussion/thread.underscore -msgid "Add a response:" -msgstr "添加一条回复:" - -#: common/static/common/templates/discussion/topic.underscore -msgid "Topic area" -msgstr "主题范围" - -#: common/static/common/templates/discussion/topic.underscore -msgid "Add your post to a relevant topic to help others find it. (Required)" -msgstr "把您的帖子发布到相应的主题以帮助别人找到它 (必填项)" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Discussion Home" -msgstr "讨论区" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -#, python-format -msgid "How to use %(platform_name)s discussions" -msgstr "如何使用 %(platform_name)s 讨论" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Find discussions" -msgstr "搜索讨论帖" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Use the All Topics menu to find specific topics." -msgstr "使用“所有主题”菜单找到特定话题" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -#: lms/djangoapps/discussion/static/discussion/templates/search.underscore -#: lms/djangoapps/discussion/static/discussion/templates/search.underscore -msgid "Search all posts" -msgstr "搜索所有帖子" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Filter and sort topics" -msgstr "过滤和整理话题" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Engage with posts" -msgstr "参与讨论" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Vote for good posts and responses" -msgstr "为出色的发帖和回复投票" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Report abuse, topics, and responses" -msgstr "举报滥用、话题和回复" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Follow or unfollow posts" -msgstr "关注或取消关注发帖" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Receive updates" -msgstr "接收更新" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "Toggle Notifications Setting" -msgstr "切换通知设置" - -#: lms/djangoapps/discussion/static/discussion/templates/discussion-home.underscore -msgid "" -"Check this box to receive an email digest once a day notifying you about " -"new, unread activity from posts you are following." -msgstr "勾选此项,每天接收一封邮件,通知您所关注的讨论帖的最新未读情况。" - -#: lms/djangoapps/discussion/static/discussion/templates/fake-breadcrumbs.underscore -msgid "All Topics" -msgstr "所有主题" - -#: lms/djangoapps/discussion/static/discussion/templates/user-profile.underscore -msgid "All Posts" -msgstr "所有帖子" - -#: lms/djangoapps/support/static/support/templates/certificates.underscore -msgid "username or email" -msgstr "用户名称/电子邮件" - -#: lms/djangoapps/support/static/support/templates/certificates.underscore -msgid "course id" -msgstr "课程ID" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "No results" -msgstr "没有结果" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Course Key" -msgstr "课程标识" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Status" -msgstr "状态" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Download URL" -msgstr "下载 URL" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Grade" -msgstr "成绩" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Last Updated" -msgstr "最近更新" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Download the user's certificate" -msgstr "下载用户证书" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Not available" -msgstr "操作条件不满足" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Regenerate" -msgstr "重新生成" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Regenerate the user's certificate" -msgstr "重新生成用户证书" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Generate" -msgstr "生成" - -#: lms/djangoapps/support/static/support/templates/certificates_results.underscore -msgid "Generate the user's certificate" -msgstr "生成用户证书" - -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -msgid "Current enrollment mode:" -msgstr "当前选课模式:" - -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -msgid "New enrollment mode:" -msgstr "新选课模式:" - -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -msgid "Reason for change:" -msgstr "变更原因:" - -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -msgid "Choose One" -msgstr "选择一个" - -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -msgid "Explain if other." -msgstr "如其他原因,请解释。" - -#: lms/djangoapps/support/static/support/templates/enrollment-modal.underscore -msgid "Submit enrollment change" -msgstr "提交选课变更" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Username or email address" -msgstr "用户名或电子邮箱地址" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Course ID" -msgstr "课程ID" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Course Start" -msgstr "课程开始" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Course End" -msgstr "课程结束" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Upgrade Deadline" -msgstr "升级的截止日期" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Verification Deadline" -msgstr "认证截止日期" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Enrollment Date" -msgstr "选课日期" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Enrollment Mode" -msgstr "选课模式" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Verified mode price" -msgstr "通过验证的模式价格" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Reason" -msgstr "原因" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Last modified by" -msgstr "最后修改人" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Active" -msgstr "活跃的" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -#: lms/templates/ccx/schedule.underscore -msgid "N/A" -msgstr "不适用" - -#: lms/djangoapps/support/static/support/templates/enrollment.underscore -msgid "Change Enrollment" -msgstr "更改选课" - -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -msgid "Email" -msgstr "电子邮件" - -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -msgid "Date Joined" -msgstr "加入日期" - -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -msgid "Password Status" -msgstr "密码状态" - -#: lms/djangoapps/support/static/support/templates/manage_user.underscore -msgid "Toggle Account Password (Usable/Unusable)" -msgstr "切换账号密码(可用/不可用)" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Your team could not be created." -msgstr "无法创建您的团队。" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Your team could not be updated." -msgstr "无法更新您的团队。" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "" -"Enter information to describe your team. You cannot change these details " -"after you create the team." -msgstr "输入描述您的团队的信息,一旦团队创建,这些信息无法更改。" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Optional Characteristics" -msgstr "可选特点" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "" -"Help other learners decide whether to join your team by specifying some " -"characteristics for your team. Choose carefully, because fewer people might " -"be interested in joining your team if it seems too restrictive." -msgstr "介绍您的团队的特点,帮助其他学员决定是否加入您的团队。请仔细选择,如果看起来限制太多,就会有较少的人愿意加入您的团队。" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Create team." -msgstr "创建团队。" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Update team." -msgstr "更新团队。" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Cancel team creating." -msgstr "取消创建团队。" - -#: lms/djangoapps/teams/static/teams/templates/edit-team.underscore -msgid "Cancel team updating." -msgstr "取消团队更新。" - -#: lms/djangoapps/teams/static/teams/templates/instructor-tools.underscore -msgid "Instructor tools" -msgstr "教师工具" - -#: lms/djangoapps/teams/static/teams/templates/instructor-tools.underscore -msgid "Delete Team" -msgstr "删除团队" - -#: lms/djangoapps/teams/static/teams/templates/instructor-tools.underscore -msgid "Edit Membership" -msgstr "编辑团队成员信息" - -#: lms/djangoapps/teams/static/teams/templates/team-actions.underscore -msgid "Are you having trouble finding a team to join?" -msgstr "您是否在找团队加入过程中遇到困难?" - -#: lms/djangoapps/teams/static/teams/templates/team-profile-header-actions.underscore -msgid "Join Team" -msgstr "加入团队" - -#: lms/djangoapps/teams/static/teams/templates/team-profile-header-actions.underscore -msgid "Edit Team" -msgstr "编辑团队" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "Team Details" -msgstr "团队详情" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "You are a member of this team." -msgstr "您是这个团队的一名成员。" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "Team member profiles" -msgstr "团队成员简介" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "Team capacity" -msgstr "团队容量" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "The country that team members primarily identify with." -msgstr "大多团队成员来自的国家" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "" -"The language that team members primarily use to communicate with each other." -msgstr "团队成员主要使用的交流语言。" - -#: lms/djangoapps/teams/static/teams/templates/team-profile.underscore -msgid "Leave Team" -msgstr "离开团队" - -#: lms/static/js/fixtures/donation.underscore -#: lms/templates/dashboard/donation.underscore -msgid "Donate" -msgstr "捐献" - -#: lms/templates/api_admin/catalog-error.underscore -msgid "" -"There was an error retrieving preview results for this catalog. Please check" -" that your query is correct and try again." -msgstr "在获取这个目录的预览结果时发生错误。请检查您的指令是否正确并重试。" - -#: lms/templates/api_admin/catalog-results.underscore -msgid "This catalog's courses:" -msgstr "此目录下的课程:" - -#: lms/templates/ccx/schedule.underscore -msgid "Expand All" -msgstr "展开全部" - -#: lms/templates/ccx/schedule.underscore -msgid "Collapse All" -msgstr "折叠全部" - -#: lms/templates/ccx/schedule.underscore lms/templates/ccx/schedule.underscore -msgid "Unit" -msgstr "单元" - -#: lms/templates/ccx/schedule.underscore -msgid "Start Date" -msgstr "开始日期" - -#: lms/templates/ccx/schedule.underscore -msgid "Due Date" -msgstr "截止日期" - -#: lms/templates/ccx/schedule.underscore -msgid "remove all" -msgstr "全部移除" - -#: lms/templates/ccx/schedule.underscore -#, python-format -msgid "toggle chapter %(displayName)s" -msgstr "切换%(displayName)s章节" - -#: lms/templates/ccx/schedule.underscore -msgid "Section" -msgstr "章" - -#: lms/templates/ccx/schedule.underscore lms/templates/ccx/schedule.underscore -#: lms/templates/ccx/schedule.underscore -msgid "Click to change" -msgstr "点击更改" - -#: lms/templates/ccx/schedule.underscore -#, python-format -msgid "Remove chapter %(chapterDisplayName)s" -msgstr "删除章节 %(chapterDisplayName)s" - -#: lms/templates/ccx/schedule.underscore lms/templates/ccx/schedule.underscore -#: lms/templates/ccx/schedule.underscore -msgid "remove" -msgstr "移除" - -#: lms/templates/ccx/schedule.underscore -#, python-format -msgid "toggle subsection %(displayName)s" -msgstr "切换%(displayName)s小节" - -#: lms/templates/ccx/schedule.underscore -msgid "Subsection" -msgstr "节" - -#: lms/templates/ccx/schedule.underscore -#, python-format -msgid "Remove subsection %(subsectionDisplayName)s" -msgstr "删除节 %(subsectionDisplayName)s" - -#: lms/templates/ccx/schedule.underscore -#, python-format -msgid "Remove unit %(unitName)s" -msgstr "删除单元 %(unitName)s" - -#: lms/templates/commerce/provider.underscore -#, python-format -msgid "" -"You still need to visit the %(display_name)s website to complete the credit " -"process." -msgstr "您仍然需要访问网站 %(display_name)s 以完成获取学分流程。" - -#: lms/templates/commerce/provider.underscore -#, python-format -msgid "" -"To finalize course credit, %(display_name)s requires %(platform_name)s " -"learners to submit a credit request." -msgstr "要完成课程学分,%(display_name)s 要求 %(platform_name)s 学员提交一份学分申请。" - -#: lms/templates/commerce/provider.underscore -msgid "Get Credit" -msgstr "获得学分" - -#: lms/templates/commerce/receipt.underscore -#, python-format -msgid "" -"Thank you %(full_name)s! We have received your payment for %(course_name)s." -msgstr "谢谢您,%(full_name)s!我们已经收到了您为%(course_name)s的付款。" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "" -"Please print this page for your records; it serves as your receipt. You will" -" also receive an email with the same information." -msgstr "请打印此页留作纪录,这就是您的收据;您也会收到一封有相同信息的电子邮件。" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Order No." -msgstr "订单号:" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Amount" -msgstr "金额" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Total" -msgstr "总计" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Please Note" -msgstr "请注意" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Crossed out items have been refunded." -msgstr "划掉的项目已退款。" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Billed to" -msgstr "账单寄给" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "No receipt available" -msgstr "没有可提供的收据。" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/financial-assistance/financial_assessment_submitted.underscore -msgid "Go to Dashboard" -msgstr "前往课程面板" - -#: lms/templates/commerce/receipt.underscore -msgid "" -"If you don't verify your identity now, you can still explore your course " -"from your dashboard. You will receive periodic reminders from {platformName}" -" to verify your identity." -msgstr "如果您现在不验证您的身份,您仍可以通过课程面板浏览课程。但您会定期从{platformName}收到身份验证提醒。" - -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Want to confirm your identity later?" -msgstr "希望稍后再验证您的身份?" - -#: lms/templates/commerce/receipt.underscore -msgid "Verify Now" -msgstr "现在认证" - -#: lms/templates/courseware/proctored-exam-controls.underscore -msgid "Mark Exam As Completed" -msgstr "标记考试完成" - -#: lms/templates/courseware/proctored-exam-status.underscore -msgid "timed" -msgstr "定时" - -#: lms/templates/courseware/proctored-exam-status.underscore -msgid "" -"To receive credit for problems, you must select \"Submit\" for each problem " -"before you select \"End My Exam\"." -msgstr "要获得某个问题的学分,在您选择“结束我的考试”之前,您必须单击它上面的\"检查\"或\"最终检查\"。" - -#: lms/templates/courseware/proctored-exam-status.underscore -msgid "End My Exam" -msgstr "结束我的考试" - -#: lms/templates/courseware/proctored-exam-status.underscore -msgid "Hide Timer" -msgstr "隐藏计时器" - -#: lms/templates/discovery/course_card.underscore -msgid "LEARN MORE" -msgstr "了解更多" - -#: lms/templates/discovery/course_card.underscore -#, python-format -msgid "Starts: %(start_date)s" -msgstr "开课日期:%(start_date)s" - -#: lms/templates/discovery/course_card.underscore -msgid "Starts" -msgstr "开始" - -#: lms/templates/discovery/facet.underscore -#: lms/templates/edxnotes/note-item.underscore -msgid "Less" -msgstr "收起" - -#: lms/templates/discovery/filter_bar.underscore -msgid "Clear All" -msgstr "清除所有" - -#: lms/templates/edxnotes/note-item.underscore -msgid "Highlighted text" -msgstr "高亮文本" - -#: lms/templates/edxnotes/note-item.underscore -msgid "Note" -msgstr "笔记" - -#: lms/templates/edxnotes/note-item.underscore -msgid "You commented..." -msgstr "您评论的…" - -#: lms/templates/edxnotes/note-item.underscore -msgid "Noted in:" -msgstr "标记于:" - -#: lms/templates/edxnotes/note-item.underscore -msgid "Last Edited:" -msgstr "最后修改:" - -#: lms/templates/edxnotes/note-item.underscore -msgid "Tags:" -msgstr "标签:" - -#: lms/templates/edxnotes/tab-item.underscore -msgid "Clear search results" -msgstr "清空搜索结果" - -#: lms/templates/fields/field_dropdown.underscore -#: lms/templates/fields/field_dropdown_account.underscore -#: lms/templates/fields/field_textarea.underscore -msgid "Click to edit" -msgstr "点击以编辑" - -#: lms/templates/fields/field_order_history.underscore -msgid "Order Number" -msgstr "订单号" - -#: lms/templates/fields/field_order_history.underscore -#: lms/templates/fields/field_order_history.underscore -msgid "Date Placed" -msgstr "已设置日期" - -#: lms/templates/fields/field_order_history.underscore -#: lms/templates/fields/field_order_history.underscore -msgid "Cost" -msgstr "价格" - -#: lms/templates/fields/field_order_history.underscore -msgid "Order Details" -msgstr "订单细节" - -#: lms/templates/fields/field_order_history.underscore -msgid "for" -msgstr "的" - -#: lms/templates/fields/field_order_history.underscore -msgid "Product Name" -msgstr "产品名称" - -#: lms/templates/fields/field_textarea.underscore -msgid "" -"{currentCountOpeningTag}{currentCharacterCount}{currentCountClosingTag} of " -"{maxCharacters}" -msgstr "" -"{currentCountOpeningTag}{currentCharacterCount}{currentCountClosingTag}/{maxCharacters}" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -#: lms/templates/financial-assistance/financial_assessment_submitted.underscore -msgid "Financial Assistance Application" -msgstr "经济援助申请" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "About You" -msgstr "关于您" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "" -"The following information is already a part of your {platform} profile. " -"We\\'ve included it here for your application." -msgstr "以下信息已经是您的 {platform} 简述的一部分。我们已将其列入您的申请中。" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "Email address" -msgstr "电子邮件" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "Legal name" -msgstr "法定姓名" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "Country of residence" -msgstr "居住国家" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "Back to {platform} FAQs" -msgstr "返回至 {platform} 常见问题解答" - -#: lms/templates/financial-assistance/financial_assessment_form.underscore -msgid "Submit Application" -msgstr "提交应用" - -#: lms/templates/financial-assistance/financial_assessment_submitted.underscore -msgid "" -"Thank you for submitting your financial assistance application for " -"{course_name}! You can expect a response in 2-4 business days." -msgstr "感谢您提交 {course_name} 的经济援助申请!您将在 2 至 4 个工作日内得到回复。" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-bulk-white-list.underscore -msgid "Bulk Exceptions" -msgstr "批量特殊处理" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-bulk-white-list.underscore -msgid "" -"Upload a comma separated values (.csv) file that contains the usernames or " -"email addresses of learners who have been given exceptions. Include the " -"username or email address in the first comma separated field. You can " -"include an optional note describing the reason for the exception in the " -"second comma separated field." -msgstr "" -"上传一个用逗号隔开的值 (.csv) " -"文件,文件要包含获得特例的学员的用户名或电子邮箱地址。将用户名或电子邮箱地址列入第一个逗号隔开的字段中。您可以在第二个用逗号隔开的字段中列入描述特殊处理原因的可选备注。" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-bulk-white-list.underscore -msgid "Upload a CSV file" -msgstr "上传用户访问文件" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-bulk-white-list.underscore -msgid "Browse" -msgstr "浏览" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-bulk-white-list.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -msgid "Add to Exception List" -msgstr "添加到特殊处理列表" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "" -"To invalidate a certificate for a particular learner, add the username or " -"email address below." -msgstr "要设定某个特定学员的证书无效,请在下面添加相应的用户名或电子邮箱地址。" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Add notes about this learner" -msgstr "添加关于此学员的备注" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Invalidate Certificate" -msgstr "无效证书" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Student" -msgstr "学生" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Invalidated By" -msgstr "无效设定人" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Invalidated" -msgstr "已设定为无效" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Notes" -msgstr "笔记" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore -msgid "Remove from Invalidation Table" -msgstr "从无效表格中删除" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -msgid "Individual Exceptions" -msgstr "个别特殊处理" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -msgid "" -"Enter the username or email address of each learner that you want to add as " -"an exception." -msgstr "输入您要添加为特殊处理的每一位学员的用户名或电子邮件。" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -msgid "Student email or username" -msgstr "学生邮箱或用户名" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list-editor.underscore -msgid "Free text notes" -msgstr "自由文本注释" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Generate Exception Certificates" -msgstr "生成特例证书" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "All users on the Exception list who do not yet have a certificate" -msgstr "特殊处理列表中尚未获得证书的所有用户" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "All users on the Exception list" -msgstr "特殊处理列表中的所有用户" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "User Email" -msgstr "用户电子邮件" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Exception Granted" -msgstr "特殊处理已批准" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Certificate Generated" -msgstr "证书已生成" - -#: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore -msgid "Remove from List" -msgstr "从列表中删除" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-discussions-subcategory.underscore -msgid "Divided" -msgstr "区分" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "Selected tab" -msgstr "选中的标签" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "Manage Learners" -msgstr "管理学员" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "Settings" -msgstr "设置" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "Add learners to this cohort" -msgstr "添加学员至此群组" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "" -"Note: Learners can be in only one cohort. Adding learners to this group " -"overrides any previous group assignment." -msgstr "注意:学员只可处在一个群组中,添加学员至此分组的操作将覆盖所有先前分组的作业。" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "" -"Enter email addresses and/or usernames, separated by new lines or commas, " -"for the learners you want to add. *" -msgstr "输入邮箱地址和/或用户名进行添加学员,换行或用逗号隔开。" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "(Required Field)" -msgstr "(必填字段)" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "e.g. johndoe@example.com, JaneDoe, joeydoe@example.com" -msgstr "例如:johndoe@example.com, JaneDoe, joeydoe@example.com" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "" -"You will not receive notification for emails that bounce, so double-check " -"your spelling." -msgstr "您不会收到邮件未送达的通知,因此请仔细检查以确保拼写无误。" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-editor.underscore -msgid "Add Learners" -msgstr "添加学员" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Add a New Cohort" -msgstr "添加新群组" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Enter the name of the cohort" -msgstr "请输入群组的名字" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Cohort Name" -msgstr "群组名" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Cohort Assignment Method" -msgstr "分配群组的方法" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Automatic" -msgstr "自动" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Manual" -msgstr "手动" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "" -"There must be one cohort to which students can automatically be assigned." -msgstr "必须存在一个学生可被自动分配进去的群组。" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Associated Content Group" -msgstr "已加入的内容组" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "No Content Group" -msgstr "没有内容组" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Select a Content Group" -msgstr "选择一个内容组" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Choose a content group to associate" -msgstr "选择一个内容组来关联" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Not selected" -msgstr "未选择" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Deleted Content Group" -msgstr "删除内容组" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "" -"{screen_reader_start}Warning:{screen_reader_end} The previously selected " -"content group was deleted. Select another content group." -msgstr "{screen_reader_start}警告:{screen_reader_end}之前选择的内容组已被删除。请选择另一个内容组。" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "" -"{screen_reader_start}Warning:{screen_reader_end} No content groups exist." -msgstr "{screen_reader_start}警告:{screen_reader_end}不存在内容组。" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Only the parent course staff of a CCX can create content groups." -msgstr "只有CCX课程的主教员才可创建内容组。" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-form.underscore -msgid "Create a content group" -msgstr "创建一个内容组" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-group-header.underscore -#, python-format -msgid "(contains %(student_count)s student)" -msgid_plural "(contains %(student_count)s students)" -msgstr[0] "(包括 %(student_count)s 个学生)" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-group-header.underscore -msgid "" -"Learners are added to this cohort only when you provide their email " -"addresses or usernames on this page." -msgstr "仅当您在此页面中提供学员的电子邮件或用户名时,方可将学员添加至这个组。" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-group-header.underscore -#: lms/templates/instructor/instructor_dashboard_2/cohort-group-header.underscore -msgid "What does this mean?" -msgstr "这是什么意思?" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-group-header.underscore -msgid "Learners are added to this cohort automatically." -msgstr "学员已自动添加至这个组。" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-selector.underscore -msgid "Select a cohort" -msgstr "选择一个群组" - -#: lms/templates/instructor/instructor_dashboard_2/cohort-selector.underscore -#, python-format -msgid "%(cohort_name)s (%(user_count)s)" -msgstr "%(cohort_name)s (%(user_count)s)" - -#: lms/templates/instructor/instructor_dashboard_2/cohorts.underscore -msgid "Enable Cohorts" -msgstr "启用群组" - -#: lms/templates/instructor/instructor_dashboard_2/cohorts.underscore -msgid "Select a cohort to manage" -msgstr "选择要管理的群组" - -#: lms/templates/instructor/instructor_dashboard_2/cohorts.underscore -msgid "View Cohort" -msgstr "查看群组" - -#: lms/templates/instructor/instructor_dashboard_2/cohorts.underscore -msgid "Add Cohort" -msgstr "添加群组" - -#: lms/templates/instructor/instructor_dashboard_2/cohorts.underscore -msgid "Assign learners to cohorts by uploading a CSV file" -msgstr "上传CSV文件来分配学员至群组" - -#: lms/templates/instructor/instructor_dashboard_2/cohorts.underscore -msgid "" -"To review learner cohort assignments or see the results of uploading a CSV " -"file, download course profile information or cohort results on the " -"{link_start}Data Download{link_end} page." -msgstr "" -"要审查学生群组任务或查看上传 CSV 文件的结果,请下载 {link_start} 数据下载{link_end}页面上的课程简述信息或群组结果。" - -#: lms/templates/instructor/instructor_dashboard_2/discussions.underscore -msgid "Specify whether discussion topics are divided" -msgstr "设置是否区分讨论主题" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-course-wide.underscore -msgid "Course-Wide Discussion Topics" -msgstr "全课程范围内的讨论话题" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-course-wide.underscore -msgid "Select the course-wide discussion topics that you want to divide." -msgstr "选择您想要区分的课程范围讨论主题。" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore -msgid "Content-Specific Discussion Topics" -msgstr "特定内容的讨论话题" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore -msgid "Specify whether content-specific discussion topics are divided." -msgstr "设置是否区分特定内容的讨论主题。" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore -msgid "Always divide content-specific discussion topics" -msgstr "总是将具体内容的讨论主题区分开" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore -msgid "Divide the selected content-specific discussion topics" -msgstr "将已挑选的具体内容讨论主题区分开来" - -#: lms/templates/instructor/instructor_dashboard_2/divided-discussions-inline.underscore -msgid "No content-specific discussion topics exist." -msgstr "无特定内容的讨论话题" - -#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -msgid "Code" -msgstr "代码" - -#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -msgid "Used" -msgstr "已使用" - -#: lms/templates/instructor/instructor_dashboard_2/enrollment-code-lookup-links.underscore -msgid "Valid" -msgstr "有效" - -#: lms/templates/learner_dashboard/certificate_status.underscore -#: lms/templates/learner_dashboard/upgrade_message.underscore -msgid "Certificate Status:" -msgstr "证书状态:" - -#: lms/templates/learner_dashboard/certificate_status.underscore -msgid "Certificate Purchased" -msgstr "已购买的证书" - -#: lms/templates/learner_dashboard/course_card.underscore -msgid "Change or Leave Session" -msgstr "更改或离开会话" - -#: lms/templates/learner_dashboard/course_card.underscore -msgid "You must select a session by {expiration_date} to access the course." -msgstr "您必须在{expiration_date}前选择会话来访问课程。" - -#: lms/templates/learner_dashboard/course_card.underscore -msgid "You can no longer change sessions." -msgstr "您已无法更改会话。" - -#: lms/templates/learner_dashboard/course_card.underscore -msgid "You can change sessions until {expiration_date}." -msgstr "您可在{expiration_date}前更改会话。" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "Final Grade" -msgstr "最终成绩" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "for {courseName}" -msgstr "{courseName}" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "View Archived Course" -msgstr "查看存档的课程" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "View Course" -msgstr "查看课程" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "Select a session:" -msgstr "挑选一个会话:" - -#: lms/templates/learner_dashboard/course_enroll.underscore -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "Enroll Now" -msgstr "现在选课" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "Coming Soon" -msgstr "即将上线" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "Enrollment Opens on" -msgstr "开放注测" - -#: lms/templates/learner_dashboard/course_enroll.underscore -msgid "Not Currently Available" -msgstr "当前不可用" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "More sessions coming soon." -msgstr "更多学期选项,敬请期待。" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Change to a different session or leave the current session." -msgstr "更改学期或离开当前学期。" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "To access the course, select a session." -msgstr "如需访问课程,请选择一个学期。" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Session Selection Dropdown for {courseName}" -msgstr "下拉框选择{courseName}的学期" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "{sessionDates} - Currently Selected" -msgstr "当前已选 - {sessionDates}" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "{sessionDates} (Open until {enrollmentEnd})" -msgstr "{sessionDates} (开放至{enrollmentEnd})" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "More sessions coming soon" -msgstr "更多学期选项,敬请期待。" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Leave the current session and decide later" -msgstr "离开当前学期,稍后继续" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Change Session" -msgstr "更改学期" - -#: lms/templates/learner_dashboard/course_entitlement.underscore -msgid "Select Session" -msgstr "选择学年" - -#: lms/templates/learner_dashboard/empty_programs_list.underscore -msgid "You are not enrolled in any programs yet." -msgstr "您尚未注册任何课程。" - -#: lms/templates/learner_dashboard/empty_programs_list.underscore -msgid "Explore Programs" -msgstr "发现课程" - -#: lms/templates/learner_dashboard/explore_new_programs.underscore -msgid "" -"Browse recently launched courses and see what\\'s new in your favorite " -"subjects" -msgstr "浏览最新上线的课程并查看您最喜爱科目的更新情况" - -#: lms/templates/learner_dashboard/explore_new_programs.underscore -msgid "Explore New Programs" -msgstr "探索新课程" - -#: lms/templates/learner_dashboard/program_card.underscore -#: lms/templates/learner_dashboard/program_card.underscore -#: lms/templates/learner_dashboard/program_card.underscore -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -msgid "Course" -msgid_plural "Courses" -msgstr[0] "课程" - -#: lms/templates/learner_dashboard/program_card.underscore -msgid "Completed" -msgstr "已经完成" - -#: lms/templates/learner_dashboard/program_card.underscore -msgid "In Progress" -msgstr "正在进行" - -#: lms/templates/learner_dashboard/program_card.underscore -msgid "Remaining" -msgstr "剩余" - -#: lms/templates/learner_dashboard/program_card.underscore -#, python-format -msgid "%(programName)s Home Page." -msgstr "%(programName)s主页" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "Your {program} Certificate" -msgstr "您的{program}证书" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -#, python-format -msgid "Open the certificate you earned for the %(title)s program." -msgstr "打开您已获得的%(title)s方案证书。" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "Program Record" -msgstr "项目记录" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "" -"Once you complete one of the program requirements you have a program record." -" This record is marked complete once you meet all program requirements. A " -"program record can be used to continue your learning journey and demonstrate" -" your learning to others." -msgstr "" -"一旦您完成了一个程序需求,您就有了一个程序记录。一旦您满足所有的程序要求,此记录将被标记为完整。一个程序记录可以用来继续您的学习旅程,并向别人展示您的学习。" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "View Program Record" -msgstr "查看课程方案历史记录" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "Additional Credit Opportunities" -msgstr "附加的信用机会" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "Learn More" -msgstr "了解更多" - -#: lms/templates/learner_dashboard/program_details_sidebar.underscore -msgid "Additional Professional Opportunities" -msgstr "附加的职业机会" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "Congratulations!" -msgstr "恭喜!" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "Your Program Journey" -msgstr "您的课程学习之旅" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "" -"To complete the program, you must earn a verified certificate for each " -"course." -msgstr "您必须每一门课程都获得一份证书,才可以完成此课程方案。" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "Upgrade All Remaining Courses (" -msgstr "升级所有剩余课程(" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "{listPrice}" -msgstr "{listPrice}" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid " {price} {currency} )" -msgstr "{price} {currency} )" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "COURSES IN PROGRESS" -msgstr "课程学习中" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "REMAINING COURSES" -msgstr "剩余课程" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "COMPLETED COURSES" -msgstr "已完成课程" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "As you complete courses, you will see them listed here." -msgstr "您已完成的课程将显示在这里。" - -#: lms/templates/learner_dashboard/program_details_view.underscore -msgid "" -"Complete courses on your schedule to ensure you stand out in your field!" -msgstr "准时完成课程学习,比别人先走一步。" - -#: lms/templates/learner_dashboard/program_header_view.underscore -msgid "{organization}\\'s logo" -msgstr "{organization}\\'s 的标识" - -#: lms/templates/learner_dashboard/upgrade_message.underscore -msgid "Needs verified certificate " -msgstr "需要已认证证书" - -#: lms/templates/learner_dashboard/upgrade_message.underscore -msgid "Upgrade to Verified" -msgstr "升级到验证" - -#: lms/templates/student_account/account.underscore -msgid "New Address" -msgstr "新地址" - -#: lms/templates/student_account/account.underscore -msgid "Password" -msgstr "密码" - -#: lms/templates/student_account/account.underscore -msgid "Change My Email Address" -msgstr "更改我的电子邮件" - -#: lms/templates/student_account/account.underscore -msgid "Reset Password" -msgstr "重设密码" - -#: lms/templates/student_account/account_settings.underscore -msgid "Account Settings" -msgstr "账号设置" - -#: lms/templates/student_account/account_settings_section.underscore -msgid "An error occurred. Please reload the page." -msgstr "发生了一个错误,请重新加载页面。" - -#: lms/templates/student_account/form_field.underscore -msgid "Forgot password?" -msgstr "忘记密码?" - -#: lms/templates/student_account/hinted_login.underscore -#: lms/templates/student_account/login.underscore -msgid "Sign in" -msgstr "登录" - -#: lms/templates/student_account/hinted_login.underscore -#, python-format -msgid "Would you like to sign in using your %(providerName)s credentials?" -msgstr "您是否想使用 %(providerName)s 登录?" - -#: lms/templates/student_account/hinted_login.underscore -#, python-format -msgid "Sign in using %(providerName)s" -msgstr "使用 %(providerName)s 登录" - -#: lms/templates/student_account/hinted_login.underscore -#: lms/templates/student_account/institution_login.underscore -#: lms/templates/student_account/institution_register.underscore -msgid "or" -msgstr "或者" - -#: lms/templates/student_account/hinted_login.underscore -msgid "Show me other ways to sign in or register" -msgstr "为我显示其他登录或注册方式" - -#: lms/templates/student_account/institution_login.underscore -msgid "Sign in with Institution/Campus Credentials" -msgstr "使用机构/校园账号登录" - -#: lms/templates/student_account/institution_login.underscore -#: lms/templates/student_account/institution_register.underscore -msgid "Choose your institution from the list below:" -msgstr "从以下列表中选择您的机构:" - -#: lms/templates/student_account/institution_login.underscore -msgid "Back to sign in" -msgstr "返回登录" - -#: lms/templates/student_account/institution_register.underscore -msgid "Register with Institution/Campus Credentials" -msgstr "使用机构/校园账号注册" - -#: lms/templates/student_account/institution_register.underscore -msgid "Register through edX" -msgstr "通过edX注册" - -#: lms/templates/student_account/login.underscore -msgid "First time here?" -msgstr "初次使用?" - -#: lms/templates/student_account/login.underscore -msgid "Create an Account." -msgstr "注册" - -#: lms/templates/student_account/login.underscore -msgid "Sign in to continue learning as {email}" -msgstr "使用{email}登录,继续学习" - -#: lms/templates/student_account/login.underscore -msgid "Sign in to continue learning" -msgstr "登录并继续学习" - -#: lms/templates/student_account/login.underscore -msgid "" -"You already have an EliteMBA account with your {enterprise_name} email " -"address." -msgstr "您已使用{enterprise_name}邮箱地址注册EliteMBA账号。" - -#: lms/templates/student_account/login.underscore -msgid "" -"Going forward, your account information will be updated and maintained by " -"{enterprise_name}." -msgstr "下一步,由{enterprise_name}更新并维护您的账号信息。" - -#: lms/templates/student_account/login.underscore -msgid "" -"You can view your information or unlink from {enterprise_name} anytime in " -"your Account Settings." -msgstr "您可在账号设置中,随时查看账号信息或与{enterprise_name}解绑。" - -#: lms/templates/student_account/login.underscore -msgid "To continue learning with this account, sign in below." -msgstr "如需继续使用此账号学习,请点击以下按钮登录。" - -#: lms/templates/student_account/login.underscore -msgid "Sign In" -msgstr "登录" - -#: lms/templates/student_account/login.underscore -msgid "" -"Sign in here using your email address and password, or use one of the " -"providers listed below." -msgstr "使用您的电子邮件和密码或使用以下列出的一个方式在此处登录。" - -#: lms/templates/student_account/login.underscore -msgid "Sign in here using your email address and password." -msgstr "在这里使用您的电子邮件和密码登录。" - -#: lms/templates/student_account/login.underscore -msgid "If you do not yet have an account, use the button below to register." -msgstr "如果您尚无账号,请使用以下按钮进行注册。" - -#: lms/templates/student_account/login.underscore -msgid "or sign in with" -msgstr "或者通过以下方式登录" - -#: lms/templates/student_account/login.underscore -#, python-format -msgid "Sign in with %(providerName)s" -msgstr "使用 %(providerName)s 登录" - -#: lms/templates/student_account/login.underscore -#: lms/templates/student_account/register.underscore -msgid "Use my institution/campus credentials" -msgstr "使用我的机构/校园账号" - -#: lms/templates/student_account/password_reset.underscore -msgid "Password assistance" -msgstr "密码帮助" - -#: lms/templates/student_account/password_reset.underscore -msgid "" -"Please enter your email address below and we will send you instructions for " -"setting a new password." -msgstr "请在下面输入您的电子邮件以便我们给您发送如何设置新密码的说明。" - -#: lms/templates/student_account/password_reset.underscore -msgid "Reset my password" -msgstr "重设我的密码" - -#: lms/templates/student_account/register.underscore -msgid "Already have an {platformName} account?" -msgstr "已注册{platformName}账号?" - -#: lms/templates/student_account/register.underscore -msgid "Sign in." -msgstr "登录" - -#: lms/templates/student_account/register.underscore -msgid "Create an account using" -msgstr "使用以下方式创建账号" - -#: lms/templates/student_account/register.underscore -#, python-format -msgid "Create account using %(providerName)s." -msgstr "使用 %(providerName)s 创建账号。" - -#: lms/templates/student_account/register.underscore -msgid "or create a new one here" -msgstr "或在此创建一个新账号" - -#: lms/templates/student_account/register.underscore -msgid "Create an Account" -msgstr "注册" - -#: lms/templates/student_account/register.underscore -msgid "Support education research by providing additional information" -msgstr "提供您的其他信息,以支持我们的教育研究调查" - -#: lms/templates/student_account/register.underscore -msgid "Create Account" -msgstr "创建账号" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -#, python-format -msgid "Congratulations! You are now verified on %(platformName)s!" -msgstr "恭喜!您在%(platformName)s上认证资料提交成功!" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -msgid "You are now enrolled as a verified student for:" -msgstr "您已经已认证学生的身份选择了课程:" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -msgid "A list of courses you have just enrolled in as a verified student" -msgstr "您以认证学生的身份选修的课程列表" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -msgid "Explore your course!" -msgstr "探索您的课程!" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -msgid "Go to your Dashboard" -msgstr "前往您的控制面板" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -msgid "Verified Status" -msgstr "验证状态" - -#: lms/templates/verify_student/enrollment_confirmation_step.underscore -#, python-format -msgid "" -"Thank you for submitting your photos. We will review them shortly. You can " -"now sign up for any %(platformName)s course that offers verified " -"certificates. Verification is good for one year. After one year, you must " -"submit photos for verification again." -msgstr "" -"感谢提交您的照片,我们将于稍后进行审核。您现在就可以注册%(platformName)s上任一提供认证证书的课程。认证有效期为一年。一年后,您必须要提交照片重新认证。" - -#: lms/templates/verify_student/error.underscore -msgid "Error:" -msgstr "错误:" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "What You Need for Verification" -msgstr "认证所需" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/intro_step.underscore -#: lms/templates/verify_student/make_payment_step.underscore -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Webcam" -msgstr "摄像头" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "" -"You need a computer that has a webcam. When you receive a browser prompt, " -"make sure that you allow access to the camera." -msgstr "您需要一个具有摄像头的电脑。当您收到浏览器弹窗时,确保它有权限使用摄像头。" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "Photo Identification" -msgstr "照片识别" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "" -"You need a driver's license, passport, or other government-issued ID that " -"has your name and photo." -msgstr "您需要驾照、护照或者其他由政府签发的带有您姓名和照片的身份证件。" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Take Your Photo" -msgstr "给自己拍照" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "" -"When your face is in position, use the camera button {icon} below to take " -"your photo." -msgstr "当您摆好脸部位置后,使用以下的摄像头按钮 {icon} 进行拍照。" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "To take a successful photo, make sure that:" -msgstr "为了照相成功,请确保:" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "Your face is well-lit." -msgstr "您的面部光照很好。" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "Your entire face fits inside the frame." -msgstr "您的整张脸都在框内。" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "The photo of your face matches the photo on your ID." -msgstr "您的面部照片与您身份证件上的照片相符。" - -#: lms/templates/verify_student/face_photo_step.underscore -msgid "" -"To use the current photo, select the camera button {icon}. To take another " -"photo, select the retake button {icon}." -msgstr "要使用当前照片,请选择摄像头按钮 {icon}。要拍摄另一张照片,请选择重拍按钮 {icon}。" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Frequently Asked Questions" -msgstr "常见问题" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -#, python-format -msgid "Why does %(platformName)s need my photo?" -msgstr "为什么%(platformName)s需要我的照片?" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "" -"As part of the verification process, you take a photo of both your face and " -"a government-issued photo ID. Our authorization service confirms your " -"identity by comparing the photo you take with the photo on your ID." -msgstr "" -"作为认证过程中一部分,您需要拍摄两张照片:您的面部以及您的身份证件(该证件须由政府签发且有您的照片)。我们的授权服务部将通过对比您的面部照片和您的证件上的照片来确认您的身份。" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -#, python-format -msgid "What does %(platformName)s do with this photo?" -msgstr "%(platformName)s用这张照片做什么?" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -#, python-format -msgid "" -"We use the highest levels of security available to encrypt your photo and " -"send it to our authorization service for review. Your photo and information " -"are not saved or visible anywhere on %(platformName)s after the verification" -" process is complete." -msgstr "" -"我们会采用最高级别的安全技术来加密您的照片并发送到我们的授权服务用于审核目的;一旦完成了认证过程,%(platformName)s不会继续保存这些照片和信息。" - -#: lms/templates/verify_student/face_photo_step.underscore -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/intro_step.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -#, python-format -msgid "Next: %(nextStepTitle)s" -msgstr "下一步:%(nextStepTitle)s" - -#: lms/templates/verify_student/id_photo_step.underscore -msgid "Take a Photo of Your ID" -msgstr "拍摄您的身份证件" - -#: lms/templates/verify_student/id_photo_step.underscore -msgid "" -"Use your webcam to take a photo of your ID. We will match this photo with " -"the photo of your face and the name on your account." -msgstr "请用摄像头拍摄一张您身份证件的照片,我们将查看该照片是否与您的面部照片及您在账号中填写的姓名匹配。" - -#: lms/templates/verify_student/id_photo_step.underscore -msgid "" -"You need an ID with your name and photo. A driver's license, passport, or " -"other government-issued IDs are all acceptable." -msgstr "您需要一份带有您姓名和照片的身份证件,我们可以接受驾照、护照以及其他由政府签发的身份证件。" - -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Tips on taking a successful photo" -msgstr "成功拍摄的小技巧" - -#: lms/templates/verify_student/id_photo_step.underscore -msgid "Ensure that you can see your photo and read your name" -msgstr "请确保您的照片和名字清晰可见" - -#: lms/templates/verify_student/id_photo_step.underscore -msgid "Make sure your ID is well-lit" -msgstr "请确保您的身份证件光线充足" - -#: lms/templates/verify_student/id_photo_step.underscore -msgid "Once in position, use the camera button {icon} to capture your ID" -msgstr "一旦就位,请使用摄像头按钮 {icon} 拍摄您的身份证件" - -#: lms/templates/verify_student/id_photo_step.underscore -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Use the retake photo button if you are not pleased with your photo" -msgstr "如果您对照片不满意,请使用重拍按钮重新拍一张照片" - -#: lms/templates/verify_student/image_input.underscore -msgid "Preview of uploaded image" -msgstr "预览已上传的图片" - -#: lms/templates/verify_student/image_input.underscore -msgid "Upload an image or capture one with your web or phone camera." -msgstr "上传照片或通过使用您的网络/手机摄像头拍照上传。" - -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "" -"Use your webcam to take a photo of your face. We will match this photo with " -"the photo on your ID." -msgstr "请用摄像头拍摄一张您的面部照片,我们将对比该照片与您身份证件上的照片。" - -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Make sure your face is well-lit" -msgstr "请确保您的面部光线充足" - -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Be sure your entire face is inside the frame" -msgstr "请确保您的整张脸都在框内" - -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Once in position, use the camera button {icon} to capture your photo" -msgstr "一旦就位,请使用摄像头按钮 {icon} 拍摄您的照片" - -#: lms/templates/verify_student/incourse_reverify.underscore -msgid "Can we match the photo you took with the one on your ID?" -msgstr "我们能否将您拍的照片与您身份证件上的照片进行比对?" - -#: lms/templates/verify_student/intro_step.underscore -msgid "Thanks for returning to verify your ID in: {courseName}" -msgstr "感谢您返回认证您在 {courseName} 中的 ID" - -#: lms/templates/verify_student/intro_step.underscore -msgid "" -"You need to activate your account before you can enroll in courses. Check " -"your inbox for an activation email. After you complete activation you can " -"return and refresh this page." -msgstr "在选课之前您需要先激活您的账号,请检查收件箱中的激活邮件。当您完成激活后,您可以返回并刷新本页面。" - -#: lms/templates/verify_student/intro_step.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Activate Your Account" -msgstr "激活您的账号" - -#: lms/templates/verify_student/intro_step.underscore -msgid "Check Your Email" -msgstr "检查您的电子邮件" - -#: lms/templates/verify_student/intro_step.underscore -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Photo ID" -msgstr "有照片的身份证件" - -#: lms/templates/verify_student/intro_step.underscore -msgid "" -"A driver's license, passport, or other government-issued ID with your name " -"and photo" -msgstr "驾照、护照或者其他由政府签发的带有您姓名和照片的身份证件" - -#: lms/templates/verify_student/make_payment_step.underscore -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "You are enrolling in: {courseName}" -msgstr "您正在选择:{courseName}" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "You are upgrading your enrollment for: {courseName}" -msgstr "您正在升级您的 {courseName} 选课状态" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"You can now enter your payment information and complete your enrollment." -msgstr "您可以现在就输入支付信息并完成选课。" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"You can pay now even if you don't have the following items available, but " -"you will need to have these by {date} to qualify to earn a Verified " -"Certificate." -msgstr "即使您没有满足下面这些要求,您也可以现在就付款;但是您只有在{date}之前满足这些要求才有资格获得认证证书。" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"An email has been sent to {userEmail} with a link for you to activate your " -"account." -msgstr "一封带有激活账号链接的邮件已发送至{userEmail}。" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "Why activate?" -msgstr "为什么要激活?" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"We ask you to activate your account to ensure it is really you creating the " -"account and to prevent fraud." -msgstr "我们要求您激活您的账号是为了确认真的是您创建了账号,防止欺诈。" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"You can pay now even if you don't have the following items available, but " -"you will need to have these to qualify to earn a Verified Certificate." -msgstr "即使您没有满足下面这些要求,您也可以现在就付款;但是您只有满足了这些要求才有资格获得认证证书。" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "Government-Issued Photo ID" -msgstr "政府签发的带有照片的身份证件" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"ID-Verification is not required for this Professional Education course." -msgstr "该专业教育课程不强制要求身份认证。" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "" -"All professional education courses are fee-based, and require payment to " -"complete the enrollment process." -msgstr "所有的专业教育课程都是收费的,必须成功交费才能完成选课过程。" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "You have already verified your ID!" -msgstr "您已经成功验证了您的身份证件!" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "Your verification status is good until {verificationGoodUntil}." -msgstr "在 {verificationGoodUntil} 之前,您的认证状态良好。" - -#: lms/templates/verify_student/make_payment_step.underscore -msgid "price" -msgstr "价格" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "Account Not Activated" -msgstr "账号未激活" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "Upgrade to a Verified Certificate for {courseName}" -msgstr "升级到 {courseName} 的验证证书" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "" -"Before you upgrade to a certificate track, you must activate your account." -msgstr "在您升级至证书路径之前,您必须激活您的账号。" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "Check your email for an activation message." -msgstr "检查您的电子邮箱是否收到激活消息。" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "Professional Certificate for {courseName}" -msgstr "{courseName} 的专业证书" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "Verified Certificate for {courseName}" -msgstr "{courseName} 的验证证书" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "" -"To receive a certificate, you must also verify your identity before {date}." -msgstr "要获得证书,您必须在 {date} 之前验证您的身份。" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "To receive a certificate, you must also verify your identity." -msgstr "要获得证书,您必须验证您的身份。" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "" -"To verify your identity, you need a webcam and a government-issued photo ID." -msgstr "要验证您的身份,您需要一个网络摄像头和一张政府签发的有照片的身份证件。" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "" -"Your ID must be a government-issued photo ID that clearly shows your face." -msgstr "您的身份证件必须是政府签发的有照片的身份证件,并可以清晰显示您的脸部。" - -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -msgid "" -"You will use your webcam to take a picture of your face and of your " -"government-issued photo ID." -msgstr "您将使用您的网络摄像头拍摄一张同时显示您的脸部和政府签发的有照片的身份证件的照片。" - -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Thank you! We have received your payment for {courseName}." -msgstr "谢谢!我们已经收到您的 {courseName} 付款。" - -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Next Step: Confirm your identity" -msgstr "下一步:确认您的身份" - -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Check your email" -msgstr "查收您的邮件" - -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "" -"You need to activate your account before you can enroll in courses. Check " -"your inbox for an activation email." -msgstr "在选课之前您需要先激活您的账号,请检查收件箱中的激活邮件。" - -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "" -"A driver's license, passport, or government-issued ID with your name and " -"photo." -msgstr "驾照、护照或者由政府签发的带有您姓名和照片的身份证件。" - -#: lms/templates/verify_student/payment_confirmation_step.underscore -#, python-format -msgid "" -"If you don't verify your identity now, you can still explore your course " -"from your dashboard. You will receive periodic reminders from " -"%(platformName)s to verify your identity." -msgstr "如果您现在不验证您的身份,您仍可以通过控制面板浏览课程。但您会定期从%(platformName)s收到身份验证提醒。" - -#: lms/templates/verify_student/reverify_success_step.underscore -msgid "Identity Verification In Progress" -msgstr "身份验证正在进行中" - -#: lms/templates/verify_student/reverify_success_step.underscore -msgid "" -"We have received your information and are verifying your identity. You will " -"see a message on your dashboard when the verification process is complete " -"(usually within 1-2 days). In the meantime, you can still access all " -"available course content." -msgstr "" -"我们已经收到您的信息并正在验证您的身份。验证流程结束后(一般在 1-2 " -"天内),您将在您的控制面板上收到一条消息。与此同时,您仍然可以访问所有的课程内容。" - -#: lms/templates/verify_student/reverify_success_step.underscore -msgid "Return to Your Dashboard" -msgstr "返回您的控制面板" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Review Your Photos" -msgstr "检查您的照片" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "" -"Make sure we can verify your identity with the photos and information you " -"have provided." -msgstr "请确保我们可以通过您提供的照片及信息来验证您的身份。" - -#: lms/templates/verify_student/review_photos_step.underscore -#, python-format -msgid "Photo of %(fullName)s" -msgstr "%(fullName)s的照片" - -#: lms/templates/verify_student/review_photos_step.underscore -#, python-format -msgid "Photo of %(fullName)s's ID" -msgstr "%(fullName)s的身份证件照片" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Photo requirements:" -msgstr "照片要求:" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Does the photo of you show your whole face?" -msgstr "这张照片中有您的整张脸吗?" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Does the photo of you match your ID photo?" -msgstr "这张照片和您身份证件上的照片相匹配吗?" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Is your name on your ID readable?" -msgstr "您身份证件上的名字是否清晰可见?" - -#: lms/templates/verify_student/review_photos_step.underscore -#, python-format -msgid "Does the name on your ID match your account name: %(fullName)s?" -msgstr "您身份证件上的姓名和您在账号中填写的姓名“%(fullName)s”相符吗?" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Edit Your Name" -msgstr "编辑您的名字" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "" -"Make sure that the full name on your account matches the name on your ID." -msgstr "请确保您在账号中填写的全名和您身份证件中的名字相一致。" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Photos don't meet the requirements?" -msgstr "照片不符合要求?" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Retake Your Photos" -msgstr "重拍您的照片" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Before proceeding, please confirm that your details match" -msgstr "在进行下一步之前,请确认您提供的信息之间相符" - -#: lms/templates/verify_student/review_photos_step.underscore -msgid "Confirm" -msgstr "确认" - -#: lms/templates/verify_student/webcam_photo.underscore -msgid "" -"Don't see your picture? Make sure to allow your browser to use your camera " -"when it asks for permission." -msgstr "没有看到您自己?请确认当浏览器请求使用摄像头权限的时候您选择了允许。" - -#: lms/templates/verify_student/webcam_photo.underscore -msgid "Live view of webcam" -msgstr "摄像头的实时画面" - -#: lms/templates/verify_student/webcam_photo.underscore -msgid "Retake Photo" -msgstr "重新拍照" - -#: lms/templates/verify_student/webcam_photo.underscore -msgid "Take Photo" -msgstr "拍照" - -#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore -msgid "Bookmarked on" -msgstr "标记书签" - -#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore -#: openedx/features/course_search/static/course_search/templates/course_search_item.underscore -#: openedx/features/course_search/static/course_search/templates/dashboard_search_item.underscore -msgid "View" -msgstr "视图" - -#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore -msgid "You have not bookmarked any courseware pages yet" -msgstr "您尚未收藏任何课件页面至书签中" - -#: openedx/features/course_bookmarks/static/course_bookmarks/templates/bookmarks-list.underscore -msgid "" -"Use bookmarks to help you easily return to courseware pages. To bookmark a " -"page, click \"Bookmark this page\" under the page title." -msgstr "使用书签功能来快速返回课件页面,如需收藏页面至书签,请点击页面标题下方的“添加至书签”按钮。" - -#: openedx/features/course_search/static/course_search/templates/course_search_results.underscore -#: openedx/features/course_search/static/course_search/templates/dashboard_search_results.underscore -msgid "Search Results" -msgstr "搜索结果" - -#: openedx/features/course_search/static/course_search/templates/course_search_results.underscore -#: openedx/features/course_search/static/course_search/templates/dashboard_search_results.underscore -msgid "Load next {num_items} result" -msgid_plural "Load next {num_items} results" -msgstr[0] "继续加载 {num_items}个结果" - -#: openedx/features/course_search/static/course_search/templates/course_search_results.underscore -#: openedx/features/course_search/static/course_search/templates/dashboard_search_results.underscore -msgid "Sorry, no results were found." -msgstr "对不起,未找到搜索结果。" - -#: openedx/features/course_search/static/course_search/templates/search_error.underscore -msgid "There was an error, try searching again." -msgstr "出错了,请尝试重新搜素。" - -#: openedx/features/learner_profile/static/learner_profile/templates/badge.underscore -#, python-format -msgid "Share your \"%(display_name)s\" award" -msgstr "分享您的 \"%(display_name)s\" 奖励" - -#: openedx/features/learner_profile/static/learner_profile/templates/badge.underscore -msgid "Share" -msgstr "分享" - -#: openedx/features/learner_profile/static/learner_profile/templates/badge.underscore -#, python-format -msgid "Earned %(created)s." -msgstr "已获得 %(created)s。" - -#: openedx/features/learner_profile/static/learner_profile/templates/badge_placeholder.underscore -msgid "What's Your Next Accomplishment?" -msgstr "您的下一个目标是什么?" - -#: openedx/features/learner_profile/static/learner_profile/templates/badge_placeholder.underscore -msgid "Start working toward your next learning goal." -msgstr "开始向您的下一个学习目标迈进。" - -#: openedx/features/learner_profile/static/learner_profile/templates/badge_placeholder.underscore -msgid "Find a course" -msgstr "找到一个课程" - -#: openedx/features/learner_profile/static/learner_profile/templates/section_two.underscore -msgid "You are currently sharing a limited profile." -msgstr "您当前公开部分个人信息。" - -#: openedx/features/learner_profile/static/learner_profile/templates/section_two.underscore -msgid "This learner is currently sharing a limited profile." -msgstr "该学生当前公开部分个人信息。" - -#: openedx/features/learner_profile/static/learner_profile/templates/share_modal.underscore -msgid "Share on Mozilla Backpack" -msgstr "分享到 Mozilla Backpack 上" - -#: openedx/features/learner_profile/static/learner_profile/templates/share_modal.underscore -msgid "" -"To share your certificate on Mozilla Backpack, you must first have a " -"Backpack account. Complete the following steps to add your certificate to " -"Backpack." -msgstr "" -"要在 Mozilla Backpack 上分享您的证书,您必须首先拥有一个 Backpack 账号。通过完成以下步骤将您的证书添加至 Backpack。" - -#: openedx/features/learner_profile/static/learner_profile/templates/share_modal.underscore -#, python-format -msgid "" -"Create a %(link_start)sMozilla Backpack%(link_end)s account, or log in to " -"your existing account" -msgstr "创建一个 %(link_start)sMozilla Backpack%(link_end)s 账号,或登录您已有的账号" - -#: openedx/features/learner_profile/static/learner_profile/templates/share_modal.underscore -#, python-format -msgid "" -"%(download_link_start)sDownload this image (right-click or option-click, " -"save as)%(link_end)s and then %(upload_link_start)supload%(link_end)s it to " -"your backpack." -msgstr "" -"%(download_link_start)s下载此图像(右击或单击选项,另存为)%(link_end)s,随后%(upload_link_start)s上传%(link_end)s至您的" -" backpack 中。" diff --git a/conf/locale/zh_CN/LC_MESSAGES/wiki.po b/conf/locale/zh_CN/LC_MESSAGES/wiki.po deleted file mode 100644 index 4f8f860ca12c..000000000000 --- a/conf/locale/zh_CN/LC_MESSAGES/wiki.po +++ /dev/null @@ -1,1436 +0,0 @@ -# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) -# Copyright (C) 2019 edX -# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. -# -# Translators: -# li ying , 2019 -# -msgid "" -msgstr "" -"Project-Id-Version: 0.1a\n" -"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-04-11 02:18+0000\n" -"PO-Revision-Date: 2018-11-26 07:56+0000\n" -"Last-Translator: li ying , 2019\n" -"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" -"Language: zh_CN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"Generated-By: Babel 1.3\n" - -#: wiki/admin.py wiki/models/article.py -msgid "created" -msgstr "已创建" - -#: wiki/apps.py -msgid "Wiki notifications" -msgstr "Wiki通知" - -#: wiki/apps.py -msgid "Wiki images" -msgstr "Wiki图片" - -#: wiki/apps.py -msgid "Wiki attachments" -msgstr "Wiki附件" - -#: wiki/forms.py -msgid "Only localhost... muahahaha" -msgstr "只有localhost……哇哈哈哈" - -#: wiki/forms.py wiki/forms.py wiki/forms.py wiki/templates/wiki/dir.html -msgid "Title" -msgstr "标题" - -#: wiki/forms.py -msgid "Initial title of the article. May be overridden with revision titles." -msgstr "文章的原始标题,可能会被修正版本的标题所覆盖。" - -#: wiki/forms.py -msgid "Type in some contents" -msgstr "请键入一些内容" - -#: wiki/forms.py -msgid "" -"This is just the initial contents of your article. After creating it, you " -"can use more complex features like adding plugins, meta data, related " -"articles etc..." -msgstr "这只是您文章的初稿。在创建了文章以后,您可以使用更复杂的特性,比如增加插件、元数据、相关文章,等等……" - -#: wiki/forms.py wiki/forms.py -msgid "Contents" -msgstr "内容" - -#: wiki/forms.py wiki/forms.py -msgid "Summary" -msgstr "概要" - -#: wiki/forms.py -msgid "" -"Give a short reason for your edit, which will be stated in the revision log." -msgstr "给出您编辑本文章的简短说明,它将会被写入修订日志中。" - -#: wiki/forms.py -msgid "" -"While you were editing, someone else changed the revision. Your contents " -"have been automatically merged with the new contents. Please review the text" -" below." -msgstr "当您在编辑时,别人进行了修改,您的内容已自动与其合并,请检查以下的文字。" - -#: wiki/forms.py -msgid "No changes made. Nothing to save." -msgstr "没有变更,不需要保存。" - -#: wiki/forms.py -msgid "Select an option" -msgstr "请选择" - -#: wiki/forms.py wiki/templates/wiki/dir.html -msgid "Slug" -msgstr "固定链接地址" - -#: wiki/forms.py -msgid "" -"This will be the address where your article can be found. Use only " -"alphanumeric characters and - or _. Note that you cannot change the slug " -"after creating the article." -msgstr "" -"这个地址将用于定位您的文档。请使用由数字、字母、-(减号)、_(下划线)组成的字符串。注意:一旦文档创建完毕将不能再对此固定链接地址进行修改。" - -#: wiki/forms.py -msgid "Write a brief message for the article's history log." -msgstr "为文章的历史记录写一个简短的报告" - -#: wiki/forms.py -msgid "A slug may not begin with an underscore." -msgstr "不能使用下划线作为固定链接地址的起始字符。" - -#: wiki/forms.py -#, python-format -msgid "A deleted article with slug \"%s\" already exists." -msgstr "已经存在一个固定链接地址为“%s”的已删除文档。" - -#: wiki/forms.py -#, python-format -msgid "A slug named \"%s\" already exists." -msgstr "以“%s”命名的固定链接地址已经存在。" - -#: wiki/forms.py -msgid "Yes, I am sure" -msgstr "是的,我确定" - -#: wiki/forms.py wiki/templates/wiki/deleted.html -msgid "Purge" -msgstr "清除" - -#: wiki/forms.py -msgid "" -"Purge the article: Completely remove it (and all its contents) with no undo." -" Purging is a good idea if you want to free the slug such that users can " -"create new articles in its place." -msgstr "清除文档:完全删除它(以及其中的内容)且无法恢复。当您需要释放该固定链接地址以便可以创建一个新文档继承使用该固定链接地址时选择清除操作。" - -#: wiki/forms.py wiki/plugins/attachments/forms.py -#: wiki/plugins/images/forms.py -msgid "You are not sure enough!" -msgstr "您还不够确定!" - -#: wiki/forms.py -msgid "While you tried to delete this article, it was modified. TAKE CARE!" -msgstr "在您试图删除该文章期间,它已经被修改。请特别注意!" - -#: wiki/forms.py -msgid "Lock article" -msgstr "锁定文章" - -#: wiki/forms.py -msgid "Deny all users access to edit this article." -msgstr "不允许其他用户编辑该文章。" - -#: wiki/forms.py -msgid "Permissions" -msgstr "权限" - -#: wiki/forms.py -msgid "Owner" -msgstr "所有者" - -#: wiki/forms.py -msgid "Enter the username of the owner." -msgstr "请输入所有者用户名。" - -#: wiki/forms.py -msgid "(none)" -msgstr "(空)" - -#: wiki/forms.py -msgid "Inherit permissions" -msgstr "继承权限" - -#: wiki/forms.py -msgid "" -"Check here to apply the above permissions recursively to articles under this" -" one." -msgstr "选择此项将使上述权限对以下的文档递归生效。" - -#: wiki/forms.py -msgid "Permission settings for the article were updated." -msgstr "文档的权限设置已更新。" - -#: wiki/forms.py -msgid "Your permission settings were unchanged, so nothing saved." -msgstr "您的权限设置没有变更,不需要保存。" - -#: wiki/forms.py -msgid "No user with that username" -msgstr "找不到此用户名所对应的用户" - -#: wiki/forms.py -msgid "Article locked for editing" -msgstr "文章在编辑中,已被锁定" - -#: wiki/forms.py -msgid "Article unlocked for editing" -msgstr "文章已解锁,可以编辑" - -#: wiki/forms.py -msgid "Filter" -msgstr "过滤" - -#: wiki/core/plugins/base.py -msgid "Settings for plugin" -msgstr "插件设置" - -#: wiki/models/article.py wiki/models/pluginbase.py -#: wiki/plugins/attachments/models.py -msgid "current revision" -msgstr "当前版本" - -#: wiki/models/article.py -msgid "" -"The revision being displayed for this article. If you need to do a roll-" -"back, simply change the value of this field." -msgstr "显示该文档的对应版本。如果您需要回滚到历史版本,请修改空格里的值。" - -#: wiki/models/article.py -msgid "modified" -msgstr "已修改" - -#: wiki/models/article.py -msgid "Article properties last modified" -msgstr "最后修改的文章属性" - -#: wiki/models/article.py -msgid "owner" -msgstr "所有者" - -#: wiki/models/article.py -msgid "" -"The owner of the article, usually the creator. The owner always has both " -"read and write access." -msgstr "文章的所有者,通常是创建者。所有者总是拥有读写权限。" - -#: wiki/models/article.py -msgid "group" -msgstr "分组" - -#: wiki/models/article.py -msgid "" -"Like in a UNIX file system, permissions can be given to a user according to " -"group membership. Groups are handled through the Django auth system." -msgstr "类似UNIX文件系统,权限可以根据用户的用户组授予。用户组通过Django的认证系统管理。" - -#: wiki/models/article.py -msgid "group read access" -msgstr "用户组读访问权限" - -#: wiki/models/article.py -msgid "group write access" -msgstr "用户组写访问权限" - -#: wiki/models/article.py -msgid "others read access" -msgstr "其他用户读访问权限" - -#: wiki/models/article.py -msgid "others write access" -msgstr "其他用户写访问权限" - -#: wiki/models/article.py -#, python-format -msgid "Article without content (%(id)d)" -msgstr "文档中没有内容(%(id)d)" - -#: wiki/models/article.py -msgid "content type" -msgstr "内容类型" - -#: wiki/models/article.py -msgid "object ID" -msgstr "对象ID" - -#: wiki/models/article.py -msgid "Article for object" -msgstr "对象的文档" - -#: wiki/models/article.py -msgid "Articles for object" -msgstr "对象的文档" - -#: wiki/models/article.py -msgid "revision number" -msgstr "版本修订号" - -#: wiki/models/article.py -msgid "IP address" -msgstr "IP地址" - -#: wiki/models/article.py -msgid "user" -msgstr "用户" - -#: wiki/models/article.py -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -#: wiki/templates/wiki/includes/revision_info.html -msgid "deleted" -msgstr "已删除" - -#: wiki/models/article.py wiki/templates/wiki/article.html -#: wiki/templates/wiki/includes/revision_info.html -msgid "locked" -msgstr "已锁定" - -#: wiki/models/article.py wiki/models/pluginbase.py -msgid "article" -msgstr "文档" - -#: wiki/models/article.py -msgid "article contents" -msgstr "文档内容" - -#: wiki/models/article.py -msgid "article title" -msgstr "文档标题" - -#: wiki/models/article.py -msgid "" -"Each revision contains a title field that must be filled out, even if the " -"title has not changed" -msgstr "每一次版本修订都必须包含有标题,即使标题本身并没有发生变化" - -#: wiki/models/pluginbase.py -msgid "original article" -msgstr "原始文档" - -#: wiki/models/pluginbase.py -msgid "Permissions are inherited from this article" -msgstr "从该文档继承的权限" - -#: wiki/models/pluginbase.py -msgid "A plugin was changed" -msgstr "一个插件被变更" - -#: wiki/models/pluginbase.py -msgid "" -"The revision being displayed for this plugin.If you need to do a roll-back, " -"simply change the value of this field." -msgstr "显示插件修订版本信息。如果您需要回滚到历史版本,请修改此处的值。" - -#: wiki/models/urlpath.py -msgid "Cache lookup value for articles" -msgstr "缓存文档的查找值" - -#: wiki/models/urlpath.py -msgid "slug" -msgstr "固定链接地址" - -#: wiki/models/urlpath.py -msgid "(root)" -msgstr "(root)" - -#: wiki/models/urlpath.py -msgid "URL path" -msgstr "URL路径" - -#: wiki/models/urlpath.py -msgid "URL paths" -msgstr "URL路径" - -#: wiki/models/urlpath.py -msgid "Sorry but you cannot have a root article with a slug." -msgstr "抱歉,您无法对根文档设置固定链接地址。" - -#: wiki/models/urlpath.py -msgid "A non-root note must always have a slug." -msgstr "非根节点必须有固定链接地址。" - -#: wiki/models/urlpath.py -#, python-format -msgid "There is already a root node on %s" -msgstr "在%s已经存在一个根节点" - -#: wiki/models/urlpath.py -msgid "" -"Articles who lost their parents\n" -"===============================\n" -"\n" -"The children of this article have had their parents deleted. You should probably find a new home for them." -msgstr "" -"丢失父链接的文档\n" -"===============================\n" -"\n" -"该子文档的父链接已经被删除。您可以可以重新为他们寻找一个新的链接点。" - -#: wiki/models/urlpath.py -msgid "Lost and found" -msgstr "失物招领" - -#: wiki/plugins/attachments/forms.py -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -msgid "Description" -msgstr "描述" - -#: wiki/plugins/attachments/forms.py -msgid "A short summary of what the file contains" -msgstr "该文档包含内容的简要说明" - -#: wiki/plugins/attachments/forms.py -msgid "Yes I am sure..." -msgstr "是的我很确定…" - -#: wiki/plugins/attachments/markdown_extensions.py -msgid "Click to download file" -msgstr "点击以下载文件" - -#: wiki/plugins/attachments/models.py -msgid "" -"The revision of this attachment currently in use (on all articles using the " -"attachment)" -msgstr "该附件的修订版本正在使用中(适用于所有使用该附件的文档)" - -#: wiki/plugins/attachments/models.py -msgid "original filename" -msgstr "原始文件名" - -#: wiki/plugins/attachments/models.py -msgid "attachment" -msgstr "附件" - -#: wiki/plugins/attachments/models.py -msgid "attachments" -msgstr "附件" - -#: wiki/plugins/attachments/models.py -msgid "file" -msgstr "文件" - -#: wiki/plugins/attachments/models.py -msgid "attachment revision" -msgstr "附件修订版本" - -#: wiki/plugins/attachments/models.py -msgid "attachment revisions" -msgstr "附件修订版本" - -#: wiki/plugins/attachments/views.py -#, python-format -msgid "%s was successfully added." -msgstr "%s已经成功添加。" - -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py -#, python-format -msgid "Your file could not be saved: %s" -msgstr "您的文件无法被保存:%s" - -#: wiki/plugins/attachments/views.py wiki/plugins/attachments/views.py -msgid "" -"Your file could not be saved, probably because of a permission error on the " -"web server." -msgstr "您的文件无法被保存,可能是由于或者Web服务器的权限异常。" - -#: wiki/plugins/attachments/views.py -#, python-format -msgid "%s uploaded and replaces old attachment." -msgstr "%s上传成功并覆盖原有附件。" - -#: wiki/plugins/attachments/views.py -msgid "" -"Your new file will automatically be renamed to match the file already " -"present. Files with different extensions are not allowed." -msgstr "您的新文件将被自动重命名以匹配已经存在的文件。不允许使用不同的文件扩展名。" - -#: wiki/plugins/attachments/views.py -#, python-format -msgid "Current revision changed for %s." -msgstr "对%s当前修订版本的变更。" - -#: wiki/plugins/attachments/views.py -#, python-format -msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." -msgstr "从“%(art)s”添加一个引用到“%(att)s”。" - -#: wiki/plugins/attachments/views.py -#, python-format -msgid "The file %s was deleted." -msgstr "文档%s被删除。" - -#: wiki/plugins/attachments/views.py -#, python-format -msgid "This article is no longer related to the file %s." -msgstr "该文档与文件%s不再关联。" - -#: wiki/plugins/attachments/wiki_plugin.py -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "Attachments" -msgstr "附件" - -#: wiki/plugins/attachments/wiki_plugin.py -#, python-format -msgid "A file was changed: %s" -msgstr "文件被修改:%s" - -#: wiki/plugins/attachments/wiki_plugin.py -#, python-format -msgid "A file was deleted: %s" -msgstr "文件被删除:%s" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/templates/wiki/delete.html -msgid "Delete" -msgstr "删除" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -msgid "" -"The file may be referenced on other articles. Deleting it means that they " -"will loose their references to this file. The following articles reference " -"this file:" -msgstr "该文件也许在其他文字内被引用。删除他意味着在文章内将无法引用该文件。以下文章引用了该文件:" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -#: wiki/plugins/images/templates/wiki/plugins/images/purge.html -#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html -#: wiki/templates/wiki/create.html wiki/templates/wiki/delete.html -#: wiki/templates/wiki/delete.html -msgid "Go back" -msgstr "返回" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -msgid "Delete it!" -msgstr "删除!" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -msgid "Remove" -msgstr "移除" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -msgid "" -"You can remove a reference to a file, but it will retain its references on " -"other articles." -msgstr "您可移除一个文件的引用,但其他文章仍保留此引用。" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html -msgid "Remove reference" -msgstr "移除引用" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -msgid "History of" -msgstr "历史" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Date" -msgstr "日期" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -msgid "User" -msgstr "用户" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "File" -msgstr "文件" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Size" -msgstr "大小" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Action" -msgstr "操作" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "No description" -msgstr "无描述" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Download" -msgstr "下载" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html -msgid "Use this!" -msgstr "使用!" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "" -"The following files are available for this article. Copy the markdown tag to" -" directly refer to a file from the article text." -msgstr "下列文件对这篇文章可用,请复制markdown标记到文本中,直接指向对应文件。" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Markdown tag" -msgstr "Markdown标记" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Uploaded by" -msgstr "上传者是" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "Replace" -msgstr "替换" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "Detach" -msgstr "分离" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -#: wiki/templates/wiki/deleted.html wiki/templates/wiki/deleted.html -msgid "Restore" -msgstr "恢复" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "File history" -msgstr "文件历史" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "revisions" -msgstr "修订版" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "There are no attachments for this article." -msgstr "这篇文章没有附件" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "Upload new file" -msgstr "上传新文件" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "Upload file" -msgstr "上传文件" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "Search and add file" -msgstr "搜索并添加文件" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "" -"You can reuse files from other articles. These files are subject to updates " -"on other articles which may or may not be a good thing." -msgstr "您可以从其他文章中重用一些文件。但是该文件的更新依赖于原始文章,请判断该引用关系是否恰当。" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html -msgid "Search" -msgstr "搜索" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -#, python-format -msgid "" -"Replacing an attachment means adding a new file that will be used in its " -"place. All references to the file will be replaced by the one you upload and" -" the file will be downloaded as %(filename)s. Please note " -"that this attachment is in use on other articles, you may distort contents. " -"However, do not hestitate to take advantage of this and make replacements " -"for the listed articles where necessary. This way of working is more " -"efficient...." -msgstr "" -"替换附件意味着将在其位置添加一个新文件。所有对该文件的引用将被您上传的文件所取代,该文件将以%(filename)s的形式下载。请注意,此附件在其他文章中使用,您可能会对其内容造成影响。不过我们鼓励您在必要时替换所列的文件。这种工作方式更高效...." - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -msgid "Articles using" -msgstr "文章使用" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -#, python-format -msgid "" -"Replacing an attachment means adding a new file that will be used in its " -"place. All references to the file will be replaced by the one you upload and" -" the file will be downloaded as %(filename)s." -msgstr "" -"替换附件意味着在其位置添加一个新文件。所有对该文件的引用将被您上传的文件所取代,该文件将以%(filename)s形式下载。" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html -#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html -msgid "Upload replacement" -msgstr "上传替换文件" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Add file to" -msgstr "添加文件至" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Add attachment from other article" -msgstr "添加来自其他文章的附件" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Search files and articles" -msgstr "搜索文件和文章" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Main article" -msgstr "主文章" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Add to article" -msgstr "添加至文章" - -#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html -msgid "Your search did not return any results" -msgstr "您的搜索没有结果" - -#: wiki/plugins/help/wiki_plugin.py -msgid "Help" -msgstr "帮助" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -msgid "Adding new articles" -msgstr "正在添加新文章" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -msgid "" -"To create a new wiki article, create a link to it. Clicking the link gives " -"you the creation page." -msgstr "若想创建一篇新文章,可以先创建一个指向它的链接。点击该链接转向自动创建页面。" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html -msgid "An external link" -msgstr "一个外部链接" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -msgid "Headers" -msgstr "标题" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -msgid "" -"Use these codes for headers and to automatically generate Tables of " -"Contents." -msgstr "在表头中使用这些码,并且自动生成目录。" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -msgid "Typography" -msgstr "排版" - -#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html -msgid "Lists" -msgstr "列表" - -#: wiki/plugins/images/forms.py -#, python-format -msgid "" -"New image %s was successfully uploaded. You can use it by selecting it from " -"the list of available images." -msgstr "新图片%s已经成功上传,您可以从图片库中选择使用它。" - -#: wiki/plugins/images/forms.py -msgid "Are you sure?" -msgstr "您确定?" - -#: wiki/plugins/images/models.py -msgid "image" -msgstr "图片" - -#: wiki/plugins/images/models.py -msgid "images" -msgstr "图片" - -#: wiki/plugins/images/models.py -#, python-format -msgid "Image: %s" -msgstr "图片:%s" - -#: wiki/plugins/images/models.py -msgid "Current revision not set!!" -msgstr "尚未设置当前的修订版本!!" - -#: wiki/plugins/images/models.py -msgid "image revision" -msgstr "图片修订版本" - -#: wiki/plugins/images/models.py -msgid "image revisions" -msgstr "图片修订版本" - -#: wiki/plugins/images/models.py -#, python-format -msgid "Image Revsion: %d" -msgstr "图片修订版本:%d" - -#: wiki/plugins/images/views.py -#, python-format -msgid "%s has been restored" -msgstr "%s已经被恢复" - -#: wiki/plugins/images/views.py -#, python-format -msgid "%s has been marked as deleted" -msgstr "%s已经被标注为已删除" - -#: wiki/plugins/images/views.py -#, python-format -msgid "%(file)s has been changed to revision #%(revision)d" -msgstr "%(file)s已经被变更到修订版本#%(revision)d" - -#: wiki/plugins/images/views.py -#, python-format -msgid "%(file)s has been saved." -msgstr "%(file)s已经被保存。" - -#: wiki/plugins/images/wiki_plugin.py -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Images" -msgstr "图片" - -#: wiki/plugins/images/wiki_plugin.py -#, python-format -msgid "An image was added: %s" -msgstr "已经添加图片:%s" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "" -"The following images are available for this article. Copy the markdown tag " -"to directly refer to an image from the article text." -msgstr "此文章可使用以下图片,复制标签直接引用文章文字中的图片。" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Back to edit page" -msgstr "返回编辑页面" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "No file" -msgstr "没有文件" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Upload new image" -msgstr "上传新图片" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Restore image" -msgstr "恢复图片" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Remove image" -msgstr "移除图片" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Completely delete" -msgstr "彻底删除" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -#: wiki/templates/wiki/history.html -msgid "History" -msgstr "历史记录" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "Revert to this version" -msgstr "恢复至此版本" - -#: wiki/plugins/images/templates/wiki/plugins/images/index.html -msgid "There are no images for this article." -msgstr "此文章没有图片。" - -#: wiki/plugins/images/templates/wiki/plugins/images/purge.html -#: wiki/templates/wiki/deleted.html -msgid "Purge deletion" -msgstr "清除" - -#: wiki/plugins/images/templates/wiki/plugins/images/purge.html -msgid "Purge image: Completely remove image file and all revisions." -msgstr "清除:彻底移除图片文件。" - -#: wiki/plugins/images/templates/wiki/plugins/images/purge.html -msgid "Remove it completely!" -msgstr "完全移除" - -#: wiki/plugins/images/templates/wiki/plugins/images/render.html -msgid "Image not found" -msgstr "未发现图片" - -#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html -msgid "Replace image" -msgstr "替换图片" - -#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html -msgid "Choose an image file to replace current image." -msgstr "选择一张图片来替换当前图片" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "Image id" -msgstr "图片编号" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html -msgid "Insert" -msgstr "插入" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "No images found for this article" -msgstr "这篇文章中未找到图片" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "Manage images" -msgstr "管理图片" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "Add new image" -msgstr "添加新的图片" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "Add image" -msgstr "添加图片" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "You do not have permissions to add images." -msgstr "您没有权限添加图片" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "How to use images" -msgstr "如何使用图片" - -#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html -msgid "" -"After uploading an image, it is attached to this particular artice and can " -"be used only here. Other users may replace the image, but older versions are" -" kept. You probably want to show the image with a nice caption. To achieve " -"this, press the Insert button and fill in the caption fields and possibly " -"choose to have you image floating right or left of the content. You can use " -"Markdown in the caption. The markdown code syntax for images looks like " -"this, possible values for align are left/center/right:" -msgstr "" -"上传一张图片后,图片会附属于此文章,并且仅供此文章使用。其他用户可替换此图片,但旧版本会保留。您可加字幕描述图片,步骤如下:点击嵌入按钮并输入字幕,然后可选择图片浮在内容的左方还是右方。您可在字幕中使用标签,图片的标签码语法像这样,对线可可以取值“left/center/right”。" - -#: wiki/plugins/links/wiki_plugin.py -msgid "Links" -msgstr "链接" - -#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html -msgid "Link to another wiki page" -msgstr "链接至另一个wiki页面" - -#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html -msgid "" -"Type in something from another wiki page's title and auto-complete will help" -" you create a tag for you wiki link. Tags for links look like this:" -msgstr "参考输入其他Wiki页面标题,自动完成功能会帮助您创建Wiki链接的标签。链接标签如下:" - -#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html -msgid "" -"You can link to another website simply by inserting an address example.com " -"or http://example.com or by using the markdown syntax:" -msgstr "插入example.com或http://example.com,或使用以下标记语法来轻松关联网站:" - -#: wiki/plugins/notifications/forms.py -msgid "Notifications" -msgstr "通知" - -#: wiki/plugins/notifications/forms.py -msgid "When this article is edited" -msgstr "当这篇文章被编辑" - -#: wiki/plugins/notifications/forms.py -msgid "Also receive emails about article edits" -msgstr "接收关于该文档编辑的电子邮件" - -#: wiki/plugins/notifications/forms.py -msgid "Your notification settings were updated." -msgstr "您的通知设置已经更新。" - -#: wiki/plugins/notifications/forms.py -msgid "Your notification settings were unchanged, so nothing saved." -msgstr "您的通知设置没有变更,因此无需保存。" - -#: wiki/plugins/notifications/models.py -#, python-format -msgid "%(user)s subscribing to %(article)s (%(type)s)" -msgstr "%(user)s订阅%(article)s(%(type)s)" - -#: wiki/plugins/notifications/models.py -#, python-format -msgid "Article deleted: %s" -msgstr "被删除的文档:%s" - -#: wiki/plugins/notifications/models.py -#, python-format -msgid "Article modified: %s" -msgstr "被修改文档:%s" - -#: wiki/plugins/notifications/models.py -#, python-format -msgid "New article created: %s" -msgstr "创建的新文档:%s" - -#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html -msgid "notifications" -msgstr "通知" - -#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html -msgid "No notifications" -msgstr "没有通知" - -#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html -msgid "Clear notifications list" -msgstr "清除通知列表" - -#: wiki/templates/wiki/article.html -msgid "This article was last modified:" -msgstr "这篇文章最后修改:" - -#: wiki/templates/wiki/base.html -msgid "Search..." -msgstr "搜索" - -#: wiki/templates/wiki/base.html -msgid "Log out" -msgstr "注销" - -#: wiki/templates/wiki/base.html wiki/templates/wiki/accounts/login.html -#: wiki/templates/wiki/accounts/signup.html -msgid "Log in" -msgstr "登录" - -#: wiki/templates/wiki/base.html wiki/templates/wiki/accounts/login.html -#: wiki/templates/wiki/accounts/signup.html -msgid "Sign up" -msgstr "注册" - -#: wiki/templates/wiki/create.html wiki/templates/wiki/create.html -msgid "Add new article" -msgstr "增加新文章" - -#: wiki/templates/wiki/create.html -msgid "Create article" -msgstr "创建文章" - -#: wiki/templates/wiki/delete.html wiki/templates/wiki/delete.html -#: wiki/templates/wiki/edit.html -msgid "Delete article" -msgstr "删除文章" - -#: wiki/templates/wiki/delete.html -msgid "You cannot delete a root article." -msgstr "根文章不可删除。" - -#: wiki/templates/wiki/delete.html -msgid "" -"You cannot delete this article because you do not have permission to delete " -"articles with children. Try to remove the children manually one-by-one." -msgstr "当文章带有子文章时您无权删除,请尝试手动逐一删除子文章。" - -#: wiki/templates/wiki/delete.html -msgid "" -"You are deleting an article. This means that its children will be deleted as" -" well. If you choose to purge, children will also be purged!" -msgstr "删除这篇文章将会导致相关子文章会同时被删除。如果您选择清除,子文章也将同时被清除。" - -#: wiki/templates/wiki/delete.html -msgid "Articles that will be deleted" -msgstr "将要被删除的文章" - -#: wiki/templates/wiki/delete.html -msgid "...and more!" -msgstr "……还有更多!" - -#: wiki/templates/wiki/delete.html -msgid "You are deleting an article. Please confirm." -msgstr "您正试图删除文章。请确认!" - -#: wiki/templates/wiki/deleted.html -msgid "Article deleted" -msgstr "文章已删除" - -#: wiki/templates/wiki/deleted.html -msgid "Article Deleted" -msgstr "文章已删除" - -#: wiki/templates/wiki/deleted.html -msgid "The article you were looking for has been deleted." -msgstr "您寻找的文章已被删除。" - -#: wiki/templates/wiki/deleted.html -msgid "You may restore this article and its children by clicking restore." -msgstr "您可点击恢复按钮来恢复此文章及其子项。" - -#: wiki/templates/wiki/deleted.html -msgid "" -"You may remove this article and any children permanently and free their " -"slugs by clicking the below button. This action cannot be undone." -msgstr "您可永久性移除此文章及其任何子项,并点击以下按钮来解绑其固定地址。操作无法撤销。" - -#: wiki/templates/wiki/dir.html -msgid "Listing articles in" -msgstr "文章清单" - -#: wiki/templates/wiki/dir.html -msgid "Up one level" -msgstr "返回上一级" - -#: wiki/templates/wiki/dir.html -msgid "Add article" -msgstr "添加文章" - -#: wiki/templates/wiki/dir.html -msgid "clear" -msgstr "清除" - -#: wiki/templates/wiki/dir.html wiki/templates/wiki/dir.html -msgid "article,articles" -msgstr "文章" - -#: wiki/templates/wiki/dir.html -msgid "matches,match" -msgstr "匹配,匹配" - -#: wiki/templates/wiki/dir.html -#, python-format -msgid "%(cnt)s %(articles_plur)s in this level %(match_plur)s your search." -msgstr "%(cnt)s%(articles_plur)s该等级中有%(match_plur)s符合您的搜索。" - -#: wiki/templates/wiki/dir.html -msgid "is,are" -msgstr "是,是" - -#: wiki/templates/wiki/dir.html -#, python-format -msgid "There %(articles_plur_verb)s %(cnt)s %(articles_plur)s in this level." -msgstr "此等级中共有%(articles_plur_verb)s%(cnt)s%(articles_plur)s篇文章" - -#: wiki/templates/wiki/dir.html -msgid "Last modified" -msgstr "上一次修改" - -#: wiki/templates/wiki/edit.html -#: wiki/templates/wiki/includes/article_menu.html -msgid "Edit" -msgstr "编辑" - -#: wiki/templates/wiki/edit.html -msgid "Preview" -msgstr "预览" - -#: wiki/templates/wiki/edit.html wiki/templates/wiki/edit.html -#: wiki/templates/wiki/settings.html -msgid "Save changes" -msgstr "保存修改" - -#: wiki/templates/wiki/edit.html -msgid "Back to editor" -msgstr "返回编辑器" - -#: wiki/templates/wiki/history.html -msgid "" -"Click each revision to see a list of edited lines. Click the Preview button " -"to see how the article looked at this stage. At the bottom of this page, you" -" can change to a particular revision or merge an old revision with the " -"current one." -msgstr "" -"点击每一个版本,您将会看到被编辑行的列表。点击预览按钮,您可以看到这篇文章目前的状态。在页面的底部,您可以切换到一个指定版本,或者合并两个现存的版本生成新版本。" - -#: wiki/templates/wiki/history.html -msgid "no log message" -msgstr "没有日志信息" - -#: wiki/templates/wiki/history.html wiki/templates/wiki/history.html -msgid "Preview this revision" -msgstr "预览本次修改" - -#: wiki/templates/wiki/history.html -msgid "Auto log:" -msgstr "自动日志" - -#: wiki/templates/wiki/history.html -msgid "Change" -msgstr "修改" - -#: wiki/templates/wiki/history.html -msgid "Merge selected with current..." -msgstr "合并选择项和当前项……" - -#: wiki/templates/wiki/history.html -msgid "Switch to selected version" -msgstr "转到选择的版本" - -#: wiki/templates/wiki/history.html wiki/templates/wiki/history.html -msgid "Back to history view" -msgstr "返回历史视图" - -#: wiki/templates/wiki/history.html wiki/templates/wiki/history.html -msgid "Switch to this version" -msgstr "切换到这个版本" - -#: wiki/templates/wiki/history.html -msgid "Merge with current" -msgstr "和当前版本合并" - -#: wiki/templates/wiki/history.html -msgid "" -"When you merge a revision with the current, all data will be retained from " -"both versions and merged at its approximate location from each revision." -msgstr "当您合并修订版本与当前版本时,所有的数据都会被保留。修改信息将会合并到系统择优选择的位置。" - -#: wiki/templates/wiki/history.html -msgid "After this, it's important to do a manual review." -msgstr "注意:请在操作完成后做一次人工检查。" - -#: wiki/templates/wiki/history.html wiki/templates/wiki/history.html -msgid "Create new merged version" -msgstr "创建新的合并版本" - -#: wiki/templates/wiki/permission_denied.html -msgid "Permission Denied" -msgstr "没有权限" - -#: wiki/templates/wiki/permission_denied.html -msgid "Sorry, you don't have permission to view this page." -msgstr "抱歉,您没有权限访问该页面" - -#: wiki/templates/wiki/preview_inline.html -msgid "Previewing revision" -msgstr "预览修改" - -#: wiki/templates/wiki/preview_inline.html -msgid "Previewing merge between" -msgstr "预览合并效果:" - -#: wiki/templates/wiki/preview_inline.html -msgid "and" -msgstr "和" - -#: wiki/templates/wiki/preview_inline.html -msgid "This revision has been deleted." -msgstr "该修订已被删除。" - -#: wiki/templates/wiki/preview_inline.html -msgid "Restoring to this revision will mark the article as deleted." -msgstr "恢复该修订将标记本文章为已删除状态。" - -#: wiki/templates/wiki/settings.html -#: wiki/templates/wiki/includes/article_menu.html -msgid "Settings" -msgstr "设置" - -#: wiki/templates/wiki/source.html -msgid "Source of" -msgstr "来源" - -#: wiki/templates/wiki/source.html -msgid "This article is currently locked for editing." -msgstr "此文章已锁定,暂时无法编辑。" - -#: wiki/templates/wiki/accounts/login.html -msgid "Please log in" -msgstr "请登录" - -#: wiki/templates/wiki/accounts/login.html -msgid "Log me in..." -msgstr "登录" - -#: wiki/templates/wiki/accounts/login.html -msgid "Don't have an account?" -msgstr "没有账号?" - -#: wiki/templates/wiki/accounts/signup.html -msgid "Sign me up..." -msgstr "注册" - -#: wiki/templates/wiki/article/create_root.html -msgid "Create root article" -msgstr "创建源文章" - -#: wiki/templates/wiki/article/create_root.html -msgid "Congratulations!" -msgstr "恭喜!" - -#: wiki/templates/wiki/article/create_root.html -msgid "" -"You have django-wiki installed... but there are no articles. So it's time to" -" create the first one, the root article. In the beginning, it will only be " -"editable by administrators, but you can define permissions after." -msgstr "您已安装django-wiki,但没有文章。建议您现在创建首篇源文章,刚开始仅管理员可编辑,但过后您也可以分配编辑权限给其他用户。" - -#: wiki/templates/wiki/article/create_root.html -msgid "Root article" -msgstr "源文章" - -#: wiki/templates/wiki/article/create_root.html -msgid "Create root" -msgstr "创建根目录" - -#: wiki/templates/wiki/includes/anonymous_blocked.html -#, python-format -msgid "" -"You need to log in or sign up to use this function." -msgstr "" -"您必须登录注册才能使用这项功能。" - -#: wiki/templates/wiki/includes/anonymous_blocked.html -msgid "You need to log in og sign up to use this function." -msgstr "如需使用此功能,请先登录或注册。" - -#: wiki/templates/wiki/includes/article_menu.html -msgid "Changes" -msgstr "变更" - -#: wiki/templates/wiki/includes/article_menu.html -msgid "View Source" -msgstr "查看文章源" - -#: wiki/templates/wiki/includes/article_menu.html -msgid "View" -msgstr "视图" - -#: wiki/templates/wiki/includes/breadcrumbs.html -#: wiki/templates/wiki/includes/breadcrumbs.html -msgid "Sub-articles for" -msgstr "子文章" - -#: wiki/templates/wiki/includes/breadcrumbs.html -msgid "No sub-articles" -msgstr "无子文章" - -#: wiki/templates/wiki/includes/breadcrumbs.html -msgid "...and more" -msgstr "...更多" - -#: wiki/templates/wiki/includes/breadcrumbs.html -msgid "Browse articles in this level" -msgstr "浏览此等级中的文章" - -#: wiki/templates/wiki/includes/breadcrumbs.html -msgid "New article next to" -msgstr "下一篇新的文章" - -#: wiki/templates/wiki/includes/breadcrumbs.html -msgid "New article below" -msgstr "下面的新文章" - -#: wiki/templates/wiki/includes/revision_info.html -msgid "by" -msgstr "由" - -#: wiki/templates/wiki/includes/revision_info.html -msgid "anonymous (IP logged)" -msgstr "匿名(IP已记录)" - -#: wiki/templates/wiki/includes/revision_info.html -msgid "restored" -msgstr "恢复" - -#: wiki/templates/wiki/includes/revision_info.html -msgid "unlocked" -msgstr "解锁" - -#: wiki/views/accounts.py -msgid "You are now sign up... and now you can sign in!" -msgstr "您正在注册……现在您可以登录了!" - -#: wiki/views/accounts.py -msgid "You are no longer logged in. Bye bye!" -msgstr "您已经退出。再见!" - -#: wiki/views/accounts.py -msgid "You are now logged in! Have fun!" -msgstr "您已经登录!好好体验吧!" - -#: wiki/views/article.py -#, python-format -msgid "New article '%s' created." -msgstr "新文章“%s”已经创建。" - -#: wiki/views/article.py -#, python-format -msgid "There was an error creating this article: %s" -msgstr "该文档创建过程中出错:%s" - -#: wiki/views/article.py -msgid "There was an error creating this article." -msgstr "在文档创建过程中出错了。" - -#: wiki/views/article.py -msgid "" -"This article cannot be deleted because it has children or is a root article." -msgstr "这篇文章不能被删除,因为它有子类或是根文章。" - -#: wiki/views/article.py -msgid "" -"This article together with all its contents are now completely gone! Thanks!" -msgstr "文档及其所有内容已经删除!谢谢!" - -#: wiki/views/article.py -#, python-format -msgid "" -"The article \"%s\" is now marked as deleted! Thanks for keeping the site " -"free from unwanted material!" -msgstr "文档“%s”现在已被标记为删除了!感谢您为网站清除不必要的材料!" - -#: wiki/views/article.py -msgid "Your changes were saved." -msgstr "您的更改已被保存。" - -#: wiki/views/article.py -msgid "A new revision of the article was successfully added." -msgstr "成功添加了这篇文章的新的版本" - -#: wiki/views/article.py -msgid "Restoring article" -msgstr "恢复文档" - -#: wiki/views/article.py -#, python-format -msgid "The article \"%s\" and its children are now restored." -msgstr "文档“%s”及其子链接已经被恢复。" - -#: wiki/views/article.py -#, python-format -msgid "" -"The article %(title)s is now set to display revision #%(revision_number)d" -msgstr "文章“%(title)s”当前已设置为显示修订版本 #%(revision_number)d" - -#: wiki/views/article.py -msgid "New title" -msgstr "新标题" - -#: wiki/views/article.py -#, python-format -msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" -msgstr "合并修订版本#%(r1)d与#%(r2)d" - -#: wiki/views/article.py -#, python-format -msgid "" -"A new revision was created: Merge between Revision #%(r1)d and Revision " -"#%(r2)d" -msgstr "产生新的修订版本:合并修订版本#%(r1)d与#%(r2)d" diff --git a/conf/locale/zh_HANS/LC_MESSAGES/django.mo b/conf/locale/zh_HANS/LC_MESSAGES/django.mo deleted file mode 100644 index 1a770c53d5bf..000000000000 Binary files a/conf/locale/zh_HANS/LC_MESSAGES/django.mo and /dev/null differ diff --git a/conf/locale/zh_HANS/LC_MESSAGES/django.po b/conf/locale/zh_HANS/LC_MESSAGES/django.po new file mode 100644 index 000000000000..6d84681f054f --- /dev/null +++ b/conf/locale/zh_HANS/LC_MESSAGES/django.po @@ -0,0 +1,27466 @@ +# #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). +# Copyright (C) 2020 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# fengri <173770922@qq.com>, 2019 +# Sushan Wu , 2019 +# 健超 张 , 2019 +# li ying , 2019 +# +# #-#-#-#-# django-studio.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). +# Copyright (C) 2020 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# li ying , 2019 +# Sushan Wu , 2019 +# +# #-#-#-#-# mako.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) +# Copyright (C) 2020 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# Sushan Wu , 2019 +# li ying , 2019 +# +# #-#-#-#-# mako-studio.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) +# Copyright (C) 2020 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# li ying , 2019 +# +# #-#-#-#-# wiki.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) +# Copyright (C) 2020 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# li ying , 2019 +# +# #-#-#-#-# membership.po (PROJECT VERSION) #-#-#-#-# +# #-#-#-#-# django-partial.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# #-#-#-#-# mako.po (PROJECT VERSION) #-#-#-#-# +# Translations template for PROJECT. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2019. +# +# Translators: +# li ying , 2019 +# +# #-#-#-#-# eliteu.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/en/). +# Copyright (C) 2019 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2019. +# +# Translators: +# li ying , 2019 +# li ying , 2019 +# +# #-#-#-#-# django-theme.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). +# Copyright (C) 2020 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# li ying , 2019 +# +# #-#-#-#-# mako-theme.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) +# Copyright (C) 2020 edX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# li ying , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: 0.1a\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2020-01-10 17:58+0800\n" +"PO-Revision-Date: 2019-06-19 06:25+0000\n" +"Last-Translator: li ying , 2020\n" +"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Generated-By: Babel 1.3\n" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: 'Discussion' refers to the tab in the courseware that leads to +#. the discussion forums +#: cms/djangoapps/contentstore/views/component.py +#: lms/djangoapps/courseware/tabs.py lms/djangoapps/discussion/plugins.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Discussion" +msgstr "讨论" + +#: cms/djangoapps/contentstore/views/component.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "Problem" +msgstr "问题" + +#: cms/djangoapps/contentstore/views/component.py +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "Advanced" +msgstr "高级" + +#: cms/djangoapps/contentstore/views/entrance_exam.py +#: lms/djangoapps/courseware/tabs.py cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Entrance Exam" +msgstr "入学考试" + +#: cms/djangoapps/contentstore/views/helpers.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: cms/templates/course_outline.html lms/templates/seq_module.html +#: lms/templates/ccx/schedule.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Section" +msgstr "章" + +#: cms/djangoapps/contentstore/views/helpers.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/templates/ccx/schedule.html +msgid "Subsection" +msgstr "节" + +#: cms/djangoapps/contentstore/views/helpers.py +#: lms/djangoapps/instructor/views/tools.py lms/templates/ccx/schedule.html +msgid "Unit" +msgstr "单元" + +#: cms/djangoapps/contentstore/views/helpers.py +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Empty" +msgstr "空白页" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +#, python-brace-format +msgid "The following parameters are required: {missing}." +msgstr "以下参数是必填的:{missing}。" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +#, python-brace-format +msgid "A transcript with the \"{language_code}\" language code already exists." +msgstr "已有\"{language_code}\"版字幕" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +msgid "A transcript file is required." +msgstr "字幕文件是必需的。" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +msgid "" +"There is a problem with this transcript file. Try to upload a different " +"file." +msgstr "该字幕文件有问题,尝试上传其他文件" + +#: cms/djangoapps/contentstore/views/videos.py +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/instructor/views/api.py lms/templates/help_modal.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/receipt.html +msgid "Name" +msgstr "名字" + +#: cms/djangoapps/contentstore/views/videos.py +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video ID" +msgstr "视频 ID" + +#: cms/djangoapps/contentstore/views/videos.py +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/shoppingcart/receipt.html +msgid "Status" +msgstr "状态" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This is listed as the duration for a video that has not +#. yet reached the point in its processing by the servers where its +#. duration is determined. +#: cms/djangoapps/contentstore/views/videos.py +#: openedx/core/djangoapps/api_admin/models.py cms/templates/index.html +msgid "Pending" +msgstr "挂起" + +#: cms/envs/bok_choy.py lms/envs/bok_choy.py lms/envs/test.py +msgid "édX" +msgstr "édX" + +#: cms/envs/bok_choy.py lms/envs/bok_choy.py lms/envs/test.py +msgid "Open édX Platform" +msgstr "Open édX Platform" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +msgid "Django site admin" +msgstr "Django网站管理员" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +msgid "Django administration" +msgstr "Django管理" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +msgid "View site" +msgstr "查看网站" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +msgid "Documentation" +msgstr "文档" + +#: cms/templates/admin/base_site.html lms/templates/admin/base_site.html +#: wiki/templates/wiki/base.html +msgid "Log out" +msgstr "注销" + +#: common/djangoapps/course_modes/admin.py +#: common/djangoapps/course_modes/models.py +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Mode" +msgstr "模式" + +#: common/djangoapps/course_modes/admin.py +#: lms/djangoapps/courseware/date_summary.py +msgid "Verification Deadline" +msgstr "认证截止日期" + +#: common/djangoapps/course_modes/admin.py +msgid "" +"OPTIONAL: After this date/time, users will no longer be able to submit " +"photos for verification. This appies ONLY to modes that require " +"verification." +msgstr "可选:这个日期/时间之后,用户将不能再提交照片验证。这只应用于需要验证的模式。" + +#: common/djangoapps/course_modes/helpers.py +msgid "Your verification is pending" +msgstr "您的验证正在挂起" + +#: common/djangoapps/course_modes/helpers.py +msgid "Verified: Pending Verification" +msgstr "已认证:等待验证" + +#: common/djangoapps/course_modes/helpers.py +msgid "ID verification pending" +msgstr "身份证件验证挂起" + +#: common/djangoapps/course_modes/helpers.py +msgid "You're enrolled as a verified student" +msgstr "您正作为已认证的学生选修" + +#: common/djangoapps/course_modes/helpers.py lms/envs/common.py +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Verified" +msgstr "已认证" + +#: common/djangoapps/course_modes/helpers.py +msgid "ID Verified Ribbon/Badge" +msgstr "身份证件已验证时的色带/徽章" + +#: common/djangoapps/course_modes/helpers.py +msgid "You're enrolled as an honor code student" +msgstr "您已作为诚信准则学员选修" + +#: common/djangoapps/course_modes/helpers.py lms/djangoapps/branding/api.py +#: openedx/core/djangoapps/user_api/api.py +#: lms/templates/static_templates/honor.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Honor Code" +msgstr "诚信准则" + +#: common/djangoapps/course_modes/helpers.py +msgid "You're enrolled as a professional education student" +msgstr "您已作为专业教育学生选修" + +#: common/djangoapps/course_modes/helpers.py +msgid "Professional Ed" +msgstr "专业教育" + +#: common/djangoapps/course_modes/models.py +#: common/lib/xmodule/xmodule/annotatable_module.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/conditional_module.py +#: common/lib/xmodule/xmodule/html_module.py +#: common/lib/xmodule/xmodule/library_content_module.py +#: common/lib/xmodule/xmodule/lti_module.py +#: common/lib/xmodule/xmodule/split_test_module.py +#: common/lib/xmodule/xmodule/word_cloud_module.py +#: common/lib/xmodule/xmodule/x_module.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +#: cms/templates/container.html cms/templates/library.html +msgid "Display Name" +msgstr "显示名称" + +#: common/djangoapps/course_modes/models.py +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Price" +msgstr "价格" + +#: common/djangoapps/course_modes/models.py +msgid "Upgrade Deadline" +msgstr "升级的截止日期" + +#: common/djangoapps/course_modes/models.py +msgid "" +"OPTIONAL: After this date/time, users will no longer be able to enroll in " +"this mode. Leave this blank if users can enroll in this mode until " +"enrollment closes for the course." +msgstr "可选:这个日期/时间之后,用户将不能选修该模式。如果用户在课程的选课关闭之间都可以选修该模式,则将此处留空。" + +#: common/djangoapps/course_modes/models.py +msgid "" +"OPTIONAL: This is the SKU (stock keeping unit) of this mode in the external " +"ecommerce service. Leave this blank if the course has not yet been migrated" +" to the ecommerce service." +msgstr "可选:这是外部电子商业服务中该模式的SKU(库存单元)。如果课程还未迁移到电子商业服务中,则将此处留空。" + +#: common/djangoapps/course_modes/models.py +msgid "" +"This is the bulk SKU (stock keeping unit) of this mode in the external " +"ecommerce service." +msgstr "这是此模式在外部电子商务服务中的批量库存单位(SKU)。" + +#: common/djangoapps/course_modes/models.py lms/envs/common.py +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Honor" +msgstr "荣誉" + +#: common/djangoapps/course_modes/models.py +msgid "" +"Professional education modes are not allowed to have expiration_datetime " +"set." +msgstr "专业的教育模式不允许有过期的日期时间设置。" + +#: common/djangoapps/course_modes/models.py +msgid "Verified modes cannot be free." +msgstr "已验证的模式要收取费用。" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This will look like '$50', where {currency_symbol} is a symbol +#. such as '$' and {price} is a +#. numerical amount in that currency. Adjust this display as needed for your +#. language. +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: currency_symbol is a symbol indicating type of currency, ex +#. "$". +#. This string would look like this when all variables are in: +#. "$500.00" +#: common/djangoapps/course_modes/models.py +#: lms/templates/shoppingcart/shopping_cart.html +#, python-brace-format +msgid "{currency_symbol}{price}" +msgstr "{currency_symbol}{price}" + +#. Translators: This refers to the cost of the course. In this case, the +#. course costs nothing so it is free. +#: common/djangoapps/course_modes/models.py +msgid "Free" +msgstr "免费" + +#: common/djangoapps/course_modes/models.py +msgid "" +"The time period before a course ends in which a course mode will expire" +msgstr "在课程结束前的时间段,其中一门课程模式将到期" + +#: common/djangoapps/course_modes/views.py +#, python-brace-format +msgid "Congratulations! You are now enrolled in {course_name}" +msgstr "恭喜!您已经选修了{course_name}" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment is closed" +msgstr "选课已关闭" + +#: common/djangoapps/course_modes/views.py +msgid "Enrollment mode not supported" +msgstr "不支持的选课模式" + +#: common/djangoapps/course_modes/views.py +msgid "Invalid amount selected." +msgstr "选择的数量无效。" + +#: common/djangoapps/course_modes/views.py +msgid "No selected price or selected price is too low." +msgstr "未选择价格或选择的价格过低。" + +#: common/djangoapps/django_comment_common/models.py +msgid "Administrator" +msgstr "管理员" + +#: common/djangoapps/django_comment_common/models.py +msgid "Moderator" +msgstr "版主" + +#: common/djangoapps/django_comment_common/models.py +msgid "Group Moderator" +msgstr "群主" + +#: common/djangoapps/django_comment_common/models.py +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Community TA" +msgstr "社区助教" + +#: common/djangoapps/django_comment_common/models.py +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Student" +msgstr "学生" + +#: common/djangoapps/student/admin.py +msgid "User profile" +msgstr "用户资料" + +#: common/djangoapps/student/admin.py +msgid "Account recovery" +msgstr "验证账户" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the login form +#. meant to hold the user's password. +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's password. +#: common/djangoapps/student/admin.py openedx/core/djangoapps/user_api/api.py +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/login.html lms/templates/provider_login.html +#: lms/templates/register-form.html lms/templates/signup_modal.html +#: lms/templates/sysadmin_dashboard.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Password" +msgstr "密码" + +#: common/djangoapps/student/admin.py +msgid "" +"Raw passwords are not stored, so there is no way to see this user's " +"password." +msgstr "未存储原始密码,因此无法查看此用户的密码。" + +#: common/djangoapps/student/forms.py +msgid "" +"That e-mail address doesn't have an associated user account. Are you sure " +"you've registered?" +msgstr "该电子邮件地址不具有相关联的用户帐户。您确定您已经注册?" + +#: common/djangoapps/student/forms.py +msgid "" +"The user account associated with this e-mail address cannot reset the " +"password." +msgstr "与此电子邮件地址关联的用户帐户不能重新设置密码。" + +#: common/djangoapps/student/forms.py +msgid "Full Name cannot contain the following characters: < >" +msgstr "全名中不能包含这些字符:< >" + +#: common/djangoapps/student/forms.py +msgid "A properly formatted e-mail is required" +msgstr "需要正确的邮件格式" + +#: common/djangoapps/student/forms.py +msgid "Your legal name must be a minimum of two characters long" +msgstr "您的合法名字必须至少包含两个字符的长度" + +#: common/djangoapps/student/forms.py +#, python-format +msgid "Email cannot be more than %(limit_value)s characters long" +msgstr "Email长度不能超过 %(limit_value)s 个字符" + +#: common/djangoapps/student/forms.py +msgid "You must accept the terms of service." +msgstr "您必须接受本服务条款。" + +#: common/djangoapps/student/forms.py +msgid "A level of education is required" +msgstr "需要以上学历" + +#: common/djangoapps/student/forms.py +msgid "Your gender is required" +msgstr "您的性别是必填项" + +#: common/djangoapps/student/forms.py +msgid "Your year of birth is required" +msgstr "您的出生年份是必填项" + +#: common/djangoapps/student/forms.py +msgid "Your mailing address is required" +msgstr "您的邮件地址是必填项" + +#: common/djangoapps/student/forms.py +msgid "A description of your goals is required" +msgstr "您的目标描述是必填项" + +#: common/djangoapps/student/forms.py +msgid "A city is required" +msgstr "城市是必填项" + +#: common/djangoapps/student/forms.py +msgid "A country is required" +msgstr "国家是必填项" + +#: common/djangoapps/student/forms.py +msgid "To enroll, you must follow the honor code." +msgstr "您必须遵循诚信准则才能选修。" + +#: common/djangoapps/student/forms.py +msgid "You are missing one or more required fields" +msgstr "您遗漏了一个或多个必须填写字段" + +#: common/djangoapps/student/forms.py +msgid "Unauthorized email address." +msgstr "未经授权的电子邮件地址" + +#: common/djangoapps/student/forms.py +#, python-brace-format +msgid "" +"It looks like {email} belongs to an existing account. Try again with a " +"different email address." +msgstr "看起来像现有的帐户 {email} 。使用不同的电子邮件地址再试一次。" + +#: common/djangoapps/student/helpers.py +#, python-brace-format +msgid "An account with the Public Username '{username}' already exists." +msgstr "公开用户名'{username}'对应的账号已存在。" + +#: common/djangoapps/student/helpers.py +#, python-brace-format +msgid "An account with the Email '{email}' already exists." +msgstr "电子邮件'{email}'对应的账号已存在。" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "Removed group: \"{}\"" +msgstr "已移除的组: \"{}\"" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "Did not find a group with name \"{}\" - skipping." +msgstr "没有找到\"{}\"的组 - 跳过。" + +#: common/djangoapps/student/management/commands/manage_group.py +#, python-brace-format +msgid "Invalid group name: \"{group_name}\". {messages}" +msgstr "无效的组名: \"{group_name}\". {messages}" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "Created new group: \"{}\"" +msgstr "创建新内容组: \"{}\"" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "Found existing group: \"{}\"" +msgstr "找到已存在的内容组: \"{}\"" + +#: common/djangoapps/student/management/commands/manage_group.py +#, python-brace-format +msgid "Adding {codenames} permissions to group \"{group}\"" +msgstr "添加群组{codenames}权限\"{group}\"" + +#: common/djangoapps/student/management/commands/manage_group.py +#, python-brace-format +msgid "Removing {codenames} permissions from group \"{group}\"" +msgstr "移除群组{codenames}权限\"{group}\"" + +#: common/djangoapps/student/management/commands/manage_group.py +msgid "" +"Invalid permission option: \"{}\". Please specify permissions using the " +"format: app_label:model_name:permission_codename." +msgstr "\"{}\"权限选项无效,请按照以下格式设置权限:app_label:model_name:permission_codename。" + +#: common/djangoapps/student/management/commands/manage_group.py +#, python-brace-format +msgid "" +"Invalid permission codename: \"{codename}\". No such permission exists for " +"the model {module}.{model_name}." +msgstr "\"{codename}\"权限代号无效,{module}.{model_name} model的此权限不存在。" + +#: common/djangoapps/student/management/commands/manage_user.py +#, python-brace-format +msgid "Setting {attribute} for user \"{username}\" to \"{new_value}\"" +msgstr "设置用户\"{username}\"的{attribute}值为\"{new_value}\"" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "" +"Skipping user \"{}\" because the specified and existing email addresses do " +"not match." +msgstr "设置的邮箱与现存邮箱地址不匹配,跳过用户\"{}\"。" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Did not find a user with username \"{}\" - skipping." +msgstr "没有找到用户名为\"{}\" - 跳过。" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Removing user: \"{}\"" +msgstr "移除用户: \"{}\"" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Created new user: \"{}\"" +msgstr "创建用户: \"{}\"" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Found existing user: \"{}\"" +msgstr "找到已存在的用户: \"{}\"" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Setting unusable password for user \"{}\"" +msgstr "设置用户\"{}\"的不可用密码" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Created new profile for user: \"{}\"" +msgstr "已创建新账号:\"{}\"" + +#: common/djangoapps/student/management/commands/manage_user.py +msgid "Could not find a group named \"{}\" - skipping." +msgstr "没有找到名为\"{}\"的组 - 跳过。" + +#: common/djangoapps/student/management/commands/manage_user.py +#, python-brace-format +msgid "Adding user \"{username}\" to groups {group_names}" +msgstr "正在添加用户\"{username}\"至{group_names}群组中" + +#: common/djangoapps/student/management/commands/manage_user.py +#, python-brace-format +msgid "Removing user \"{username}\" from groups {group_names}" +msgstr "把用户 \"{username}\" 从{group_names}组中移除" + +#: common/djangoapps/student/middleware.py +#, python-brace-format +msgid "" +"Your account has been disabled. If you believe this was done in error, " +"please contact us at {support_email}" +msgstr "您的账号已经被禁用。如果您有任何疑问请联系我们{support_email}" + +#: common/djangoapps/student/middleware.py +msgid "Disabled Account" +msgstr "已停用的账号" + +#: common/djangoapps/student/models.py +msgid "Male" +msgstr "男" + +#: common/djangoapps/student/models.py +msgid "Female" +msgstr "女" + +#. Translators: 'Other' refers to the student's gender +#: common/djangoapps/student/models.py +msgid "Other/Prefer Not to Say" +msgstr "其他/不想说" + +#: common/djangoapps/student/models.py +msgid "Doctorate" +msgstr "博士" + +#: common/djangoapps/student/models.py +msgid "Master's or professional degree" +msgstr "硕士" + +#: common/djangoapps/student/models.py +msgid "Bachelor's degree" +msgstr "学士" + +#: common/djangoapps/student/models.py +msgid "Associate degree" +msgstr "肄业证书" + +#: common/djangoapps/student/models.py +msgid "Secondary/high school" +msgstr "高中" + +#: common/djangoapps/student/models.py +msgid "Junior secondary/junior high/middle school" +msgstr "初中" + +#: common/djangoapps/student/models.py +msgid "Elementary/primary school" +msgstr "小学" + +#. Translators: 'None' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "No formal education" +msgstr "未受正规教育" + +#. Translators: 'Other' refers to the student's level of education +#: common/djangoapps/student/models.py +msgid "Other education" +msgstr "其他教育程度" + +#: common/djangoapps/student/models.py +#, python-brace-format +msgid "{platform_name} Honor Code Certificate for {course_name}" +msgstr "{platform_name}荣誉代码证书{course_name}" + +#: common/djangoapps/student/models.py +#, python-brace-format +msgid "{platform_name} Verified Certificate for {course_name}" +msgstr "{platform_name}经认证的证书{course_name}" + +#: common/djangoapps/student/models.py +#, python-brace-format +msgid "{platform_name} Professional Certificate for {course_name}" +msgstr "{platform_name}专业证书{course_name}" + +#: common/djangoapps/student/models.py +msgid "" +"The company identifier for the LinkedIn Add-to-Profile button e.g " +"0_0dPSPyS070e0HsE9HNz_13_d11_" +msgstr "LinkedIn“添加到配置文件”按钮的公司标识符,例如0_0dPSPyS070e0HsE9HNz_13_d11_" + +#: common/djangoapps/student/models.py +msgid "" +"Short identifier for the LinkedIn partner used in the tracking code. " +"(Example: 'edx') If no value is provided, tracking codes will not be sent " +"to LinkedIn." +msgstr "领英伙伴的短标识符被用在跟踪代码中。 (比如: 'edx') 如果没有提供任何值,跟踪代码不会发送到领英。" + +#: common/djangoapps/student/models.py +#, python-brace-format +msgid "{platform_name} Certificate for {course_name}" +msgstr "{platform_name} 证书 {course_name}" + +#: common/djangoapps/student/models.py +msgid "The ISO 639-1 language code for this language." +msgstr "该语言的 ISO 639-1 代码" + +#: common/djangoapps/student/models.py +msgid "Namespace of enrollment attribute" +msgstr "选课属性中的命名空间" + +#: common/djangoapps/student/models.py +msgid "Name of the enrollment attribute" +msgstr "选课属性中的名称" + +#: common/djangoapps/student/models.py +msgid "Value of the enrollment attribute" +msgstr "选课属性中的值" + +#: common/djangoapps/student/models.py +msgid "" +"The window of time after enrolling during which users can be granted a " +"refund, represented in microseconds. The default is 14 days." +msgstr "注册课程后用户可以退款的期限,以微秒表示。默认值是14天。" + +#: common/djangoapps/student/models.py +msgid "Name of the UTM cookie" +msgstr "UTM cookie名称" + +#: common/djangoapps/student/models.py +msgid "Name of the affiliate cookie" +msgstr "附属cookie名称" + +#: common/djangoapps/student/models.py +msgid "Name of this user attribute." +msgstr "用户属性名称。" + +#: common/djangoapps/student/models.py +msgid "Value of this user attribute." +msgstr "此用户属性值。" + +#: common/djangoapps/student/models.py +msgid "Secondary email address" +msgstr "备选邮箱" + +#: common/djangoapps/student/models.py +msgid "Secondary email address to recover linked account." +msgstr "用于恢复关联账号的备选邮箱。" + +#: common/djangoapps/student/views/dashboard.py +msgid " and " +msgstr "与" + +#: common/djangoapps/student/views/dashboard.py +msgid "Photos are mismatched" +msgstr "照片误匹配" + +#: common/djangoapps/student/views/dashboard.py +msgid "Name missing from ID photo" +msgstr "ID照片缺少名称" + +#: common/djangoapps/student/views/dashboard.py +msgid "ID photo not provided" +msgstr "未提供ID照片" + +#: common/djangoapps/student/views/dashboard.py +msgid "ID is invalid" +msgstr "无效ID" + +#: common/djangoapps/student/views/dashboard.py +msgid "Learner photo is blurry" +msgstr "学生照片模糊" + +#: common/djangoapps/student/views/dashboard.py +msgid "Name on ID does not match name on account" +msgstr "ID名称与账号名称不匹配" + +#: common/djangoapps/student/views/dashboard.py +msgid "Learner photo not provided" +msgstr "未提供学员图片" + +#: common/djangoapps/student/views/dashboard.py +msgid "ID photo is blurry" +msgstr "ID照片模糊" + +#: common/djangoapps/student/views/dashboard.py +#, python-brace-format +msgid "" +"Check your {email_start}{email}{email_end} inbox for an account activation " +"link from {platform_name}. If you need help, contact " +"{link_start}{platform_name} Support{link_end}." +msgstr "" +"去邮箱{email_start}{email}{email_end} " +"查看{platform_name}的账号激活链接。如需帮助,请联系{link_start}{platform_name}的技术支持{link_end}。" + +#: common/djangoapps/student/views/dashboard.py +#, python-brace-format +msgid "" +"Add a recovery email to retain access when single-sign on is not available. " +"Go to {link_start}your Account Settings{link_end}." +msgstr "添加验证电子邮件,以便在无法使用单点登录时保留访问权限。转到{link_start}您的账户设置{link_end}。" + +#: common/djangoapps/student/views/dashboard.py +msgid "" +"Recovery email is not activated yet. Kindly visit your email and follow the " +"instructions to activate it." +msgstr "验证邮件尚未激活。请访问您的电子邮件,并按照说明已激活它。" + +#: common/djangoapps/student/views/dashboard.py +#, python-brace-format +msgid "The course you are looking for does not start until {date}." +msgstr "您查找的课程将在{date}后开课。" + +#: common/djangoapps/student/views/dashboard.py +#, python-brace-format +msgid "The course you are looking for is closed for enrollment as of {date}." +msgstr "您搜索的课程登记关闭时间截止至 {date}。" + +#: common/djangoapps/student/views/management.py +msgid "No inactive user with this e-mail exists" +msgstr "无非激活用户与本邮件地址关联。" + +#: common/djangoapps/student/views/management.py +msgid "Unable to send reactivation email" +msgstr "无法发送重新激活的电子邮件" + +#: common/djangoapps/student/views/management.py +msgid "Course id not specified" +msgstr "课程编号未指定" + +#: common/djangoapps/student/views/management.py +msgid "Invalid course id" +msgstr "无效的课程编号" + +#: common/djangoapps/student/views/management.py +msgid "Course id is invalid" +msgstr "课程编号无效" + +#: common/djangoapps/student/views/management.py +msgid "Could not enroll" +msgstr "无法选修" + +#: common/djangoapps/student/views/management.py +msgid "You are not enrolled in this course" +msgstr "您还没有选修本课程" + +#: common/djangoapps/student/views/management.py +msgid "Your certificate prevents you from unenrolling from this course" +msgstr "您的证书会让您从无法取消注册" + +#: common/djangoapps/student/views/management.py +msgid "Enrollment action is invalid" +msgstr "选课操作无效" + +#: common/djangoapps/student/views/management.py +msgid "Please enter a username" +msgstr "请输入用户名" + +#: common/djangoapps/student/views/management.py +msgid "Please choose an option" +msgstr "请选择" + +#: common/djangoapps/student/views/management.py +msgid "User with username {} does not exist" +msgstr "用户名 {} 不存在" + +#: common/djangoapps/student/views/management.py +msgid "Successfully disabled {}'s account" +msgstr "成功停用{}的账号" + +#: common/djangoapps/student/views/management.py +msgid "Successfully reenabled {}'s account" +msgstr "成功重新启用{}的账号" + +#: common/djangoapps/student/views/management.py +msgid "Unexpected account status" +msgstr "异常的账号状态" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "" +"{html_start}Your account could not be activated{html_end}Something went " +"wrong, please contact support to resolve this " +"issue." +msgstr "" +"{html_start} 您的账号无法激活 {html_end} 什么地方发生错误了, 请联系支持 解决此问题。" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "{html_start}This account has already been activated.{html_end}" +msgstr "{html_start} 此账号已被激活。{html_end}" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "{html_start}Success{html_end} You have activated your account." +msgstr "{html_start} 成功! {html_end} 您已激活您的账号。" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "" +"{html_start}Success! You have activated your account.{html_end}You will now " +"receive email updates and alerts from us related to the courses you are " +"enrolled in. Sign In to continue." +msgstr "{html_start}您已成功激活账号!{html_end}我们会将您的课程更新以电子邮件通知您,请登录。" + +#: common/djangoapps/student/views/management.py +msgid "Some error occured during password change. Please try again" +msgstr "重设密码时发生错误,请重试" + +#: common/djangoapps/student/views/management.py +msgid "No email address provided." +msgstr "未提供Email地址。" + +#: common/djangoapps/student/views/management.py +msgid "Password reset unsuccessful" +msgstr "重新设置密码不成功" + +#: common/djangoapps/student/views/management.py +msgid "Error in resetting your password." +msgstr "重设密码时发生错误。" + +#: common/djangoapps/student/views/management.py +msgid "Error in resetting your password. Please try again." +msgstr "重置密码操作发生错误。请再尝试一次。" + +#: common/djangoapps/student/views/management.py +msgid "Password creation unsuccessful" +msgstr "密码设置不成功" + +#: common/djangoapps/student/views/management.py +msgid "Error in creating your password. Please try again." +msgstr "密码设置发生错误。请再试一次。" + +#: common/djangoapps/student/views/management.py +#, python-brace-format +msgid "" +"{html_start}Password Creation Complete{html_end}Your password has been " +"created. {bold_start}{email}{bold_end} is now your primary login email." +msgstr "" +"{html_start}密码创建完成{html_end}已经创建了您的密码。{bold_start}{email}{bold_end}现在是您的主登录电子邮件。" + +#: common/djangoapps/student/views/management.py +msgid "Valid e-mail address required." +msgstr "需要有效的电子邮件地址" + +#: common/djangoapps/student/views/management.py +msgid "Old email is the same as the new email." +msgstr "新邮件地址与旧邮件地址相同。" + +#: common/djangoapps/student/views/management.py +msgid "E-mail address has been used." +msgstr "邮件地址已被使用。" + +#: common/djangoapps/student/views/management.py +msgid "Cannot be same as your sign in email address." +msgstr "不能与登录邮箱相同" + +#: common/djangoapps/student/views/management.py +msgid "Unable to send email activation link. Please try again later." +msgstr "无法发送邮箱激活链接,请重试 。" + +#: common/djangoapps/third_party_auth/admin.py +msgid "Deleted the selected configuration(s)." +msgstr "删除所选配置(或多个)。" + +#: common/djangoapps/third_party_auth/admin.py +msgid "Delete the selected configuration" +msgstr "删除所选设置" + +#: common/djangoapps/third_party_auth/middleware.py +msgid "Unable to connect with the external provider, please try again" +msgstr "无法连接外部提供程序,请重试" + +#: common/djangoapps/third_party_auth/models.py +msgid "Authentication with {} is currently unavailable." +msgstr "当前不可使用{}认证。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"Secondary providers are displayed less prominently, in a separate list of " +"\"Institution\" login providers." +msgstr "二级供应商不会突出显示,将出现在一个单独的登录供应商列表“机构”中。" + +#: common/djangoapps/third_party_auth/models.py +msgid "The Site that this provider configuration belongs to." +msgstr "此提供程序设置所从属的网站。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is enabled, users that visit a \"TPA hinted\" URL for this " +"provider (e.g. a URL ending with `?tpa_hint=[provider_name]`) will be " +"forwarded directly to the login URL of the provider instead of being first " +"prompted with a login dialog." +msgstr "" +"如果启用此项,则访问此Provider的“TPA提示”URL(例如:以“?tpa_hint=[provider_name]”结尾的URL)的用户将被直接发送到Provider的登录URL,而非首先弹出登录对话框。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is enabled, users will not be asked to confirm their details " +"(name, email, etc.) during the registration process. Only select this option" +" for trusted providers that are known to provide accurate user information." +msgstr "" +"如果启用了该选项,用户在注册过程中将不会被要求验证他们的详细信息(姓名、电子邮件等)。只有对可信任的供应商,即已知会提供确切用户信息的供应商,才可启用该选项。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is selected, users will not be required to confirm their " +"email, and their account will be activated immediately upon registration." +msgstr "如果选择该选项,用户将不会被要求验证他们的邮箱,他们的账号将在注册后立刻被激活。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is selected, users will be sent a welcome email upon " +"registration." +msgstr "如果选择此选项,那么会在用户完成注册时发送一封欢迎电子邮件。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is not selected, users will not be presented with the " +"provider as an option to authenticate with on the login screen, but manual " +"authentication using the correct link is still possible." +msgstr "如果不勾选此项,用户将无法在登录页面使用Provider验证,不过可以使用正确的链接进行手动验证。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is set, then users logging in using this SSO provider will " +"have their session length limited to no longer than this value. If set to 0 " +"(zero), the session will expire upon the user closing their browser. If left" +" blank, the Django platform session default length will be used." +msgstr "" +"如果设置此项,那么使用此SSO " +"Provider登录的用户的会话时长不超过此设置值。如果设为0(零),则会话在用户关闭浏览器时过期。如果留空,则采用Django平台会话的默认时长。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"If this option is selected, users will be directed to the registration page " +"immediately after authenticating with the third party instead of the login " +"page." +msgstr "如果选择此选项,则用户在与第三方验证后会直接跳转至注册页面,而不是登录页面。" + +#: common/djangoapps/third_party_auth/models.py +msgid "" +"Synchronize user profile data received from the identity provider with the " +"edX user account on each SSO login. The user will be notified if the email " +"address associated with their account is changed as a part of this " +"synchronization." +msgstr "在每次SSO登录中,将来自身份provider程序的用户账号数据与edX用户账号相同步。当修改绑定邮箱时,用户会收到通知。" + +#: common/djangoapps/third_party_auth/models.py +msgid "The Site that this SAML configuration belongs to." +msgstr "此SAML设置所从属的网站。" + +#: common/djangoapps/third_party_auth/models.py lms/templates/help_modal.html +#, python-brace-format +msgid "{platform_name} Support" +msgstr "{platform_name}支援" + +#: common/djangoapps/third_party_auth/templates/third_party_auth/post_custom_auth_entry.html +#: lms/templates/student_account/finish_auth.html +#: themes/elitemba-theme/lms/templates/student_account/finish_auth.html +msgid "Please wait" +msgstr "请稍候" + +#. Translators: the translation for "LONG_DATE_FORMAT" must be a format +#. string for formatting dates in a long form. For example, the +#. American English form is "%A, %B %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "LONG_DATE_FORMAT" +msgstr "LONG_DATE_FORMAT" + +#. Translators: the translation for "DATE_TIME_FORMAT" must be a format +#. string for formatting dates with times. For example, the American +#. English form is "%b %d, %Y at %H:%M". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "DATE_TIME_FORMAT" +msgstr "DATE_TIME_FORMAT" + +#. Translators: the translation for "SHORT_DATE_FORMAT" must be a +#. format string for formatting dates in a brief form. For example, +#. the American English form is "%b %d %Y". +#. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "SHORT_DATE_FORMAT" +msgstr "SHORT_DATE_FORMAT" + +#. Translators: the translation for "TIME_FORMAT" must be a format +#. string for formatting times. For example, the American English +#. form is "%H:%M:%S". See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgid "TIME_FORMAT" +msgstr "TIME_FORMAT" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "AM" +msgstr "上午" + +#. Translators: This is an AM/PM indicator for displaying times. It is +#. used for the %p directive in date-time formats. See http://strftime.org +#. for details. +#: common/djangoapps/util/date_utils.py +msgctxt "am/pm indicator" +msgid "PM" +msgstr "下午" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Monday Februrary 10, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Monday" +msgstr "星期一" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Tuesday Februrary 11, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Tuesday" +msgstr "星期二" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Wednesday Februrary 12, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Wednesday" +msgstr "星期三" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Thursday Februrary 13, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Thursday" +msgstr "星期四" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Friday Februrary 14, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Friday" +msgstr "星期五" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Saturday Februrary 15, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Saturday" +msgstr "星期六" + +#. Translators: this is a weekday name that will be used when displaying +#. dates, as in "Sunday Februrary 16, 2014". It is used for the %A +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "weekday name" +msgid "Sunday" +msgstr "星期天" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Mon Feb 10, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Mon" +msgstr "周一" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Tue Feb 11, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Tue" +msgstr "周二" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Wed Feb 12, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Wed" +msgstr "周三" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Thu Feb 13, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Thu" +msgstr "周四" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Fri Feb 14, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Fri" +msgstr "周五" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sat Feb 15, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sat" +msgstr "周六" + +#. Translators: this is an abbreviated weekday name that will be used when +#. displaying dates, as in "Sun Feb 16, 2014". It is used for the %a +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated weekday name" +msgid "Sun" +msgstr "周日" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jan 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jan" +msgstr "一月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Feb 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Feb" +msgstr "二月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Mar 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Mar" +msgstr "三月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Apr 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Apr" +msgstr "四月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "May 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "May" +msgstr "五月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jun 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jun" +msgstr "六月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Jul 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Jul" +msgstr "七月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Aug 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Aug" +msgstr "八月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Sep 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Sep" +msgstr "九月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Oct 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Oct" +msgstr "十月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Nov 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Nov" +msgstr "十一月" + +#. Translators: this is an abbreviated month name that will be used when +#. displaying dates, as in "Dec 10, 2014". It is used for the %b +#. directive in date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "abbreviated month name" +msgid "Dec" +msgstr "十二月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "January 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "January" +msgstr "一月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "February 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "February" +msgstr "二月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "March 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "March" +msgstr "三月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "April 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "April" +msgstr "四月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "May 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "May" +msgstr "五月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "June 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "June" +msgstr "六月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "July 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "July" +msgstr "七月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "August 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "August" +msgstr "八月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "September 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "September" +msgstr "九月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "October 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "October" +msgstr "十月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "November 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "November" +msgstr "十一月" + +#. Translators: this is a month name that will be used when displaying +#. dates, as in "December 10, 2014". It is used for the %B directive in +#. date-time formats. See http://strftime.org for details. +#: common/djangoapps/util/date_utils.py +msgctxt "month name" +msgid "December" +msgstr "十二月" + +#: common/djangoapps/util/file.py +#, python-brace-format +msgid "The file must end with the extension '{file_types}'." +msgid_plural "" +"The file must end with one of the following extensions: '{file_types}'." +msgstr[0] "文件的扩展名必须为'{file_types}'。" + +#: common/djangoapps/util/file.py +#, python-brace-format +msgid "Maximum upload file size is {file_size} bytes." +msgstr "上传文件最大为{file_size} 字节。" + +#: common/djangoapps/util/milestones_helpers.py +#, python-brace-format +msgid "Course {course_id} requires {prerequisite_course_id}" +msgstr "课程{course_id}要求 {prerequisite_course_id}" + +#: common/djangoapps/util/milestones_helpers.py openedx/core/lib/gating/api.py +msgid "System defined milestone" +msgstr "系统定义的里程碑" + +#: common/djangoapps/util/password_policy_validators.py +#, python-brace-format +msgid "" +"Your password must contain {length_instruction}, including " +"{complexity_instructions}." +msgstr "您的密码必须包含{length_instruction},包括{complexity_instructions}。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-brace-format +msgid "Your password must contain {length_instruction}." +msgstr "您的密码必须包含{length_instruction}。" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Invalid password." +msgstr "密码无效。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "" +"This password is too short. It must contain at least %(min_length)d " +"character." +msgid_plural "" +"This password is too short. It must contain at least %(min_length)d " +"characters." +msgstr[0] "这个密码太短了,它必须包含至少%(min_length)d个字符。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_length)d character." +msgid_plural "Your password must contain at least %(min_length)d characters." +msgstr[0] "您的密码必须至少包含%(min_length)d个字符。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "at least %(min_length)d character" +msgid_plural "at least %(min_length)d characters" +msgstr[0] "至少%(min_length)d个字符" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "" +"This password is too long. It must contain no more than %(max_length)d " +"character." +msgid_plural "" +"This password is too long. It must contain no more than %(max_length)d " +"characters." +msgstr[0] "这个密码太长了。它必须包含不超过 %(max_length)d 字符。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain no more than %(max_length)d character." +msgid_plural "" +"Your password must contain no more than %(max_length)d characters." +msgstr[0] "您的密码必须包含不超过%(max_length)d字符。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_alphabetic)d letter." +msgid_plural "This password must contain at least %(min_alphabetic)d letters." +msgstr[0] "这个密码必须包含至少 %(min_alphabetic)d字母。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_alphabetic)d letter." +msgid_plural "Your password must contain at least %(min_alphabetic)d letters." +msgstr[0] "您的密码必须包含至少%(min_alphabetic)d 字母。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d letter" +msgid_plural "%(num)d letters" +msgstr[0] "%(num)d字母" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_numeric)d number." +msgid_plural "This password must contain at least %(min_numeric)d numbers." +msgstr[0] "这个密码必须包含至少%(min_numeric)d数字。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_numeric)d number." +msgid_plural "Your password must contain at least %(min_numeric)d numbers." +msgstr[0] "您的密码必须包含至少%(min_numeric)d数字。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d number" +msgid_plural "%(num)d numbers" +msgstr[0] "%(num)d数字" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_upper)d uppercase letter." +msgid_plural "" +"This password must contain at least %(min_upper)d uppercase letters." +msgstr[0] "这个密码必须包含至少%(min_upper)d大写字母。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_upper)d uppercase letter." +msgid_plural "" +"Your password must contain at least %(min_upper)d uppercase letters." +msgstr[0] "您的密码必须包含至少%(min_upper)d大写字母。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d uppercase letter" +msgid_plural "%(num)d uppercase letters" +msgstr[0] "%(num)d大写字母" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_lower)d lowercase letter." +msgid_plural "" +"This password must contain at least %(min_lower)d lowercase letters." +msgstr[0] "这个密码必须包含至少%(min_lower)d小写字母。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_lower)d lowercase letter." +msgid_plural "" +"Your password must contain at least %(min_lower)d lowercase letters." +msgstr[0] "您的密码必须包含至少%(min_lower)d小写字母。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d lowercase letter" +msgid_plural "%(num)d lowercase letters" +msgstr[0] "%(num)d小写字母" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "" +"This password must contain at least %(min_punctuation)d punctuation mark." +msgid_plural "" +"This password must contain at least %(min_punctuation)d punctuation marks." +msgstr[0] "这个密码必须包含至少%(min_punctuation)d标点符号。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "" +"Your password must contain at least %(min_punctuation)d punctuation mark." +msgid_plural "" +"Your password must contain at least %(min_punctuation)d punctuation marks." +msgstr[0] "您的密码必须包含至少%(min_punctuation)d标点符号。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d punctuation mark" +msgid_plural "%(num)d punctuation marks" +msgstr[0] "%(num)d标点符号" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "This password must contain at least %(min_symbol)d symbol." +msgid_plural "This password must contain at least %(min_symbol)d symbols." +msgstr[0] "这个密码必须包含至少%(min_symbol)d符号。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "Your password must contain at least %(min_symbol)d symbol." +msgid_plural "Your password must contain at least %(min_symbol)d symbols." +msgstr[0] "您的密码必须包含至少%(min_symbol)d符号。" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "%(num)d symbol" +msgid_plural "%(num)d symbols" +msgstr[0] "%(num)d符号" + +#: common/djangoapps/util/password_policy_validators.py +#, python-format +msgid "The password is too similar to the %(verbose_name)s." +msgstr "密码与%(verbose_name)s太相似。" + +#: common/djangoapps/util/password_policy_validators.py +msgid "Your password can't be too similar to your other personal information." +msgstr "您的密码不能与您的其他个人信息太相似。" + +#: common/djangoapps/xblock_django/admin.py +msgid "" +"To disable the XBlock and prevent rendering in the LMS, leave \"Enabled\" " +"deselected; for clarity, update XBlockStudioConfiguration support state " +"accordingly." +msgstr "取消勾选“启用”按钮即可禁用XBlock和LMS渲染;按需更新XBlockStudioConfiguration的支持状态即可调整清晰度。" + +#: common/djangoapps/xblock_django/admin.py +msgid "" +"Only XBlocks listed in a course's Advanced Module List can be flagged as " +"deprecated. Remember to update XBlockStudioConfiguration support state " +"accordingly, as deprecated does not impact whether or not new XBlock " +"instances can be created in Studio." +msgstr "" +"只能够将在高级模块列表中的XBlocks标记为不推荐允许,请记住要根据需要而更新XBlockStudioConfiguration的支持状态,因为设置了不推荐允许是不会影响在Studio中创建XBlock场景的。" + +#: common/djangoapps/xblock_django/admin.py +msgid "" +"XBlock/template combinations that are disabled cannot be edited in Studio, " +"regardless of support level. Remember to also check if all instances of the " +"XBlock are disabled in XBlockConfiguration." +msgstr "" +"无论支持级别多少,都无法在Studio中编辑被禁用的XBlock/模板组合。请记住还要检查所有XBlock场景是否在XBlockConfiguration中已被禁用。" + +#: common/djangoapps/xblock_django/admin.py +msgid "" +"Enabled XBlock/template combinations with full or provisional support can " +"always be created in Studio. Unsupported XBlock/template combinations " +"require course author opt-in." +msgstr "在Studio中,完全或暂时支持启用XBlock/模板组合总是可以创建。不支持XBlock或模板组合需要课程作者选择加入。" + +#: common/djangoapps/xblock_django/models.py +msgid "show deprecation messaging in Studio" +msgstr "在Studio中显示不推荐通知" + +#: common/djangoapps/xblock_django/models.py +msgid "Fully Supported" +msgstr "全部支持" + +#: common/djangoapps/xblock_django/models.py +msgid "Provisionally Supported" +msgstr "暂行支持" + +#: common/djangoapps/xblock_django/models.py +msgid "Unsupported" +msgstr "不支持" + +#: common/lib/capa/capa/capa_problem.py +msgid "Cannot rescore problems with possible file submissions" +msgstr "无法对可能的文件提交重新评分" + +#: common/lib/capa/capa/capa_problem.py +#, python-brace-format +msgid "Question {0}" +msgstr "问题{0}" + +#: common/lib/capa/capa/capa_problem.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Incorrect" +msgstr "不正确" + +#: common/lib/capa/capa/capa_problem.py +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Correct" +msgstr "正确" + +#: common/lib/capa/capa/inputtypes.py +msgid "correct" +msgstr "正确" + +#: common/lib/capa/capa/inputtypes.py +msgid "incorrect" +msgstr "不正确" + +#: common/lib/capa/capa/inputtypes.py +msgid "partially correct" +msgstr "部分正确" + +#: common/lib/capa/capa/inputtypes.py +msgid "incomplete" +msgstr "不完整" + +#: common/lib/capa/capa/inputtypes.py +msgid "unanswered" +msgstr "未答复" + +#: common/lib/capa/capa/inputtypes.py +msgid "submitted" +msgstr "已提交" + +#: common/lib/capa/capa/inputtypes.py +msgid "processing" +msgstr "处理中" + +#. Translators: these are tooltips that indicate the state of an assessment +#. question +#: common/lib/capa/capa/inputtypes.py +msgid "This answer is correct." +msgstr "这个回答是正确的。" + +#: common/lib/capa/capa/inputtypes.py +msgid "This answer is incorrect." +msgstr "这个回答是不正确的。" + +#: common/lib/capa/capa/inputtypes.py +msgid "This answer is partially correct." +msgstr "这个回答是部分正确的。" + +#: common/lib/capa/capa/inputtypes.py +msgid "This answer is being processed." +msgstr "这个回答正在处理中。" + +#: common/lib/capa/capa/inputtypes.py +msgid "Not yet answered." +msgstr "未回答。" + +#: common/lib/capa/capa/inputtypes.py wiki/forms.py +msgid "Select an option" +msgstr "请选择" + +#. Translators: 'ChoiceGroup' is an input type and should not be translated. +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "ChoiceGroup: unexpected tag {tag_name}" +msgstr "ChoiceGroup:未知标签{tag_name}" + +#: common/lib/capa/capa/inputtypes.py +msgid "Answer received." +msgstr "收到答案" + +#. Translators: '' and '' are tag names and should not +#. be translated. +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "Expected a or tag; got {given_tag} instead" +msgstr "期望一个标签;实际获得{given_tag}" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your files have been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "您的文件已经提交。当评定完成后,此消息将被评定者的反馈所替代。" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Your answer has been submitted. As soon as your submission is graded, this " +"message will be replaced with the grader's feedback." +msgstr "您的答案已经发布。当评定完成,此消息将被显示评定者的反馈所替代。" + +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "{programming_language} editor" +msgstr "{programming_language} 编辑者" + +#: common/lib/capa/capa/inputtypes.py +msgid "Press ESC then TAB or click outside of the code editor to exit" +msgstr "按ESC键然后TAB键可退出,或者鼠标点击代码编辑器以外的区域也可退出。" + +#: common/lib/capa/capa/inputtypes.py +msgid "" +"Submitted. As soon as a response is returned, this message will be replaced " +"by that feedback." +msgstr "已提交。当得到反馈,此消息将被反馈信息所替代。" + +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "No response from Xqueue within {xqueue_timeout} seconds. Aborted." +msgstr " Xqueue在 {xqueue_timeout} 秒内无响应,终止。" + +#: common/lib/capa/capa/inputtypes.py +msgid "Error running code." +msgstr "运行代码错误。" + +#: common/lib/capa/capa/inputtypes.py +msgid "Cannot connect to the queue" +msgstr "无法连接到队列。" + +#: common/lib/capa/capa/inputtypes.py +msgid "No formula specified." +msgstr "没有指定公式" + +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "Couldn't parse formula: {error_msg}" +msgstr "无法解析公式: {error_msg}" + +#: common/lib/capa/capa/inputtypes.py +msgid "Error while rendering preview" +msgstr "渲染预览出错" + +#: common/lib/capa/capa/inputtypes.py +msgid "Sorry, couldn't parse formula" +msgstr "抱歉,不能解析公式" + +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "{input_type}: unexpected tag {tag_name}" +msgstr "{input_type}: 未知标签 {tag_name}" + +#. Translators: a "tag" is an XML element, such as "" in HTML +#: common/lib/capa/capa/inputtypes.py +#, python-brace-format +msgid "Expected a {expected_tag} tag; got {given_tag} instead" +msgstr "期望一个 {expected_tag}标签;实际获得 {given_tag}" + +#. Translators: index here could be 1,2,3 and so on +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Question {index}" +msgstr "问题 {index}" + +#: common/lib/capa/capa/responsetypes.py +msgid "Correct:" +msgstr "正确:" + +#: common/lib/capa/capa/responsetypes.py +msgid "Incorrect:" +msgstr "不正确:" + +#: common/lib/capa/capa/responsetypes.py +#: common/lib/xmodule/xmodule/capa_module.py +msgid "Answer" +msgstr "答案" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Error {err} in evaluating hint function {hintfn}." +msgstr "在对提示函数 {hintfn} 求值时发生错误 {err}。" + +#: common/lib/capa/capa/responsetypes.py +msgid "(Source code line unavailable)" +msgstr "(源代码不可用 )" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "See XML source line {sourcenum}." +msgstr "参见 XML 源文件中的行{sourcenum}。" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Checkboxes" +msgstr "选框" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Multiple Choice" +msgstr "多项选择" + +#. Translators: 'shuffle' and 'answer-pool' are attribute names and should not +#. be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Do not use shuffle and answer-pool at the same time" +msgstr "请勿同时使用拖拽和答案池" + +#. Translators: 'answer-pool' is an attribute name and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +msgid "answer-pool value should be an integer" +msgstr "答案池的值必须是整数" + +#. Translators: 'Choicegroup' is an input type and should not be translated. +#: common/lib/capa/capa/responsetypes.py +msgid "Choicegroup must include at least 1 correct and 1 incorrect choice" +msgstr "Choicegroup必须包含至少1个正确选项和1个错误选项" + +#: common/lib/capa/capa/responsetypes.py +msgid "True/False Choice" +msgstr "True/False 选择" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Dropdown" +msgstr "下拉列表" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Numerical Input" +msgstr "数值输入" + +#: common/lib/capa/capa/responsetypes.py +msgid "There was a problem with the staff answer to this problem." +msgstr "工作人员对这个问题的答案有问题。" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Could not interpret '{student_answer}' as a number." +msgstr "无法将“{student_answer}”解释为一个数字。" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Factorial function evaluated outside its domain:'{student_answer}'" +msgstr "在阶乘函数的定义域之外对其求值:“{student_answer}”" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Invalid math syntax: '{student_answer}'" +msgstr "无效的数学表达式:'{student_answer}'" + +#: common/lib/capa/capa/responsetypes.py +msgid "You may not use complex numbers in range tolerance problems" +msgstr "范围公差类型的问题不可以使用复数" + +#. Translators: This is an error message for a math problem. If the instructor +#. provided a +#. boundary (end limit) for a variable that is a complex number (a + bi), this +#. message displays. +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: complex boundary." +msgstr "工作人员对此问题的解答存在问题:复杂边界。" + +#. Translators: This is an error message for a math problem. If the instructor +#. did not +#. provide a boundary (end limit) for a variable, this message displays. +#: common/lib/capa/capa/responsetypes.py +msgid "" +"There was a problem with the staff answer to this problem: empty boundary." +msgstr "工作人员对此问题的解答存在问题:边界未设置。" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: Separator used in NumericalResponse to display multiple +#. answers. +#. Translators: Separator used in StringResponse to display multiple answers. +#. Example: "Answer: Answer_1 or Answer_2 or Answer_3". +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: this is the last choice of a number of choices of how to log +#. in +#. to the site. +#: common/lib/capa/capa/responsetypes.py lms/templates/login.html +#: lms/templates/register-form.html lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "or" +msgstr "或者" + +#: common/lib/capa/capa/responsetypes.py +#: cms/templates/widgets/problem-edit.html +msgid "Text Input" +msgstr "文本输入" + +#: common/lib/capa/capa/responsetypes.py +msgid "error" +msgstr "错误" + +#: common/lib/capa/capa/responsetypes.py +msgid "Custom Evaluated Script" +msgstr "自定义评估脚本" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "error getting student answer from {student_answers}" +msgstr "获取学生答案 {student_answers} 时发生错误" + +#: common/lib/capa/capa/responsetypes.py +msgid "No answer entered!" +msgstr "没有输入答案!" + +#: common/lib/capa/capa/responsetypes.py +msgid "CustomResponse: check function returned an invalid dictionary!" +msgstr "客户端响应:检查函数返回无效字典!" + +#: common/lib/capa/capa/responsetypes.py +msgid "Symbolic Math Input" +msgstr "数学符号输入" + +#. Translators: 'SymbolicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "An error occurred with SymbolicResponse. The error was: {error_msg}" +msgstr "SymbolicResponse时发生一个错误。错误描述: {error_msg}" + +#: common/lib/capa/capa/responsetypes.py +msgid "Code Input" +msgstr "代码输入" + +#: common/lib/capa/capa/responsetypes.py +msgid "No answer provided." +msgstr "未提供答案。" + +#: common/lib/capa/capa/responsetypes.py +msgid "Error: No grader has been set up for this problem." +msgstr "错误:未设立该问题的评分者" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "" +"Unable to deliver your submission to grader (Reason: {error_msg}). Please " +"try again later." +msgstr "无法将您的提交答案发送给评分者 (原因:{error_msg})。 请稍后重试。" + +#. Translators: 'grader' refers to the edX automatic code grader. +#: common/lib/capa/capa/responsetypes.py +msgid "Invalid grader reply. Please contact the course staff." +msgstr "无效评分回复。请联系课程工作人员。" + +#: common/lib/capa/capa/responsetypes.py +msgid "External Grader" +msgstr "外部评分者" + +#: common/lib/capa/capa/responsetypes.py +msgid "Math Expression Input" +msgstr "数学表达式输入" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "" +"Factorial function not permitted in answer for this problem. Provided answer" +" was: {bad_input}" +msgstr "此题目的作答不允许使用阶乘函数,可使用:{bad_input}" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Invalid input: Could not parse '{bad_input}' as a formula." +msgstr "无效输入:无法将'{bad_input}'解析为公式。" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Invalid input: Could not parse '{bad_input}' as a formula" +msgstr "无效输入:无法将'{bad_input}'解析为一个公式" + +#: common/lib/capa/capa/responsetypes.py +msgid "Circuit Schematic Builder" +msgstr "电路原理图生成器" + +#. Translators: 'SchematicResponse' is a problem type and should not be +#. translated. +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Error in evaluating SchematicResponse. The error was: {error_msg}" +msgstr "评估SchematicResponse出错。错误为: {error_msg}" + +#: common/lib/capa/capa/responsetypes.py +msgid "Image Mapped Input" +msgstr "热点图片输入" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "error grading {image_input_id} (input={user_input})" +msgstr "评分出错 {image_input_id} (input={user_input})" + +#. Translators: {sr_coords} are the coordinates of a rectangle +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Error in problem specification! Cannot parse rectangle in {sr_coords}" +msgstr "问题说明中存在错误!在 {sr_coords} 中无法解析出矩形" + +#: common/lib/capa/capa/responsetypes.py +msgid "Annotation Input" +msgstr "批注输入" + +#: common/lib/capa/capa/responsetypes.py +msgid "Checkboxes With Text Input" +msgstr "文本输入复选框" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Answer not provided for {input_type}" +msgstr "未提供 {input_type}的解决方案" + +#: common/lib/capa/capa/responsetypes.py +msgid "The Staff answer could not be interpreted as a number." +msgstr "工作人员的大幅无法被解析为一个数字。" + +#: common/lib/capa/capa/responsetypes.py +#, python-brace-format +msgid "Could not interpret '{given_answer}' as a number." +msgstr "无法将'{given_answer}'解析为一个数字。" + +#: common/lib/xmodule/xmodule/annotatable_module.py +msgid "XML data for the annotation" +msgstr "用于批注的XML数据" + +#: common/lib/xmodule/xmodule/annotatable_module.py +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/conditional_module.py +#: common/lib/xmodule/xmodule/html_module.py +#: common/lib/xmodule/xmodule/library_content_module.py +#: common/lib/xmodule/xmodule/library_root_xblock.py +#: common/lib/xmodule/xmodule/poll_module.py +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +#: common/lib/xmodule/xmodule/word_cloud_module.py +#: common/lib/xmodule/xmodule/x_module.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "The display name for this component." +msgstr "组件显示的名称。" + +#: common/lib/xmodule/xmodule/annotatable_module.py +msgid "Annotation" +msgstr "批注" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Blank Advanced Problem" +msgstr "空白进阶问题" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Number of attempts taken by the student on this problem" +msgstr "学生尝试解答这个问题的次数" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Maximum Attempts" +msgstr "最大尝试次数" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines the number of times a student can try to answer this problem. If the" +" value is not set, infinite attempts are allowed." +msgstr "定义学生在回答这个问题时所允许的尝试次数。如果未设置,则允许无限次尝试。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Date that this problem is due by" +msgstr "问题的截至日期为" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Amount of time after the due date that submissions will be accepted" +msgstr "超过截止日期后仍接受提交作业的时间段 " + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Show Results" +msgstr "显示结果" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines when to show whether a learner's answer to the problem is correct. " +"Configured on the subsection." +msgstr "设置显示学员答案是否正确的时间。在“节”中设置。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Always" +msgstr "总是" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Never" +msgstr "从不" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Past Due" +msgstr "超过截止日期" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "Show Answer" +msgstr "显示答案" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines when to show the answer to the problem. A default value can be set " +"in Advanced Settings." +msgstr "定义何时显示问题的答案,默认值可在高级设置里设定。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Answered" +msgstr "已回答" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Attempted" +msgstr "已尝试" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Closed" +msgstr "已关闭" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Finished" +msgstr "已完成" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Correct or Past Due" +msgstr "正确或超过截止日期" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Whether to force the save button to appear on the page" +msgstr "是否强制显示保存按钮" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Show Reset Button" +msgstr "显示重置按钮" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Determines whether a 'Reset' button is shown so the user may reset their " +"answer. A default value can be set in Advanced Settings." +msgstr "决定是否显示“重置”键,以便用户重新填写他们的答案。 默认设置可以在“高级设置”中进行。" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Randomization" +msgstr "随机化" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines when to randomize the variables specified in the associated Python " +"script. For problems that do not randomize values, specify \"Never\". " +msgstr "定义何时随机化Python脚本中的变量。如果不需要随机化的变量,请选择“从不”。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "On Reset" +msgstr "在重置时" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Per Student" +msgstr "每学生" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "XML data for the problem" +msgstr "问题的XML数据" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Dictionary with the correctness of current student answers" +msgstr "当前学生答案正确性词典" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Dictionary for maintaining the state of inputtypes" +msgstr "维护状态的输入类型词典" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Dictionary with the current student responses" +msgstr "当前学生的回应词典" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Dictionary with the current student score" +msgstr "带当前学生分数的字典" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Whether or not the answers have been saved since last submit" +msgstr "上次提交的答案是否已保存" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Whether the student has answered the problem" +msgstr "学生是否已经回答问题" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Random seed for this student" +msgstr "该学生的随机名次" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Last submission time" +msgstr "最后提交时间" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Timer Between Attempts" +msgstr "两次尝试答题间计时" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Seconds a student must wait between submissions for a problem with multiple " +"attempts." +msgstr "一个学生再次尝试答题前需等待的时间" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem Weight" +msgstr "问题权重" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Defines the number of points each problem is worth. If the value is not set," +" each response field in the problem is worth one point." +msgstr "设置每个问题的分值。如果不设置,那么问题中的每空为一分。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Markdown source of this module" +msgstr "减记该模块资源" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Source code for LaTeX and Word problems. This feature is not well-supported." +msgstr "LaTeX及Word相关源代码问题,对该功能的支持尚不完备。" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/html_module.py +msgid "Enable LaTeX templates?" +msgstr "启用LaTeX模板?" + +#: common/lib/xmodule/xmodule/capa_base.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Matlab API key" +msgstr "Matlab API 密钥" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"Enter the API key provided by MathWorks for accessing the MATLAB Hosted " +"Service. This key is granted for exclusive use by this course for the " +"specified duration. Please do not share the API key with other courses and " +"notify MathWorks immediately if you believe the key is exposed or " +"compromised. To obtain a key for your course, or to report an issue, please " +"contact moocsupport@mathworks.com" +msgstr "" +"输入 " +"MATLAB讬管服务提供MathWorks公司的API密钥。这个密钥被授予通过本课程的指定时间独家使用。请不要共享的API密钥与其他课程,并立即通知MathWorks公司,如果您认为密钥被暴露或损害。为了获得一个关键的课程,或报告的问题,请联系moocsupport@mathworks.com" + +#: common/lib/xmodule/xmodule/capa_base.py +#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html +#: cms/templates/index.html cms/templates/videos_index_pagination.html +#: lms/templates/help_modal.html lms/templates/manage_user_standing.html +#: lms/templates/register-shib.html +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +#: lms/templates/peer_grading/peer_grading_problem.html +#: lms/templates/survey/survey.html +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Submit" +msgstr "提交" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Submitting" +msgstr "正在提交中" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Warning: The problem has been reset to its initial state!" +msgstr "警告:这个问题已经被重置为其初始状态!" + +#. Translators: Following this message, there will be a bulleted list of +#. items. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "" +"The problem's state was corrupted by an invalid submission. The submission " +"consisted of:" +msgstr "该问题的描述被一个无效的发布损坏。该发布包含:" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "If this error persists, please contact the course staff." +msgstr "如果该问题依然存在,请联系课程工作人员。" + +#. Translators: {previous_hints} is the HTML of hints that have already been +#. generated, {hint_number_prefix} +#. is a header for this hint, and {hint_text} is the text of the hint itself. +#. This string is being passed to translation only for possible reordering of +#. the placeholders. +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "{previous_hints}{list_start_tag}{strong_text}{hint_text}" +msgstr "{previous_hints}{list_start_tag}{strong_text}{hint_text}" + +#. Translators: e.g. "Hint 1 of 3: " meaning we are showing the first of three +#. hints. +#. This text is shown in bold before the accompanying hint text. +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "Hint ({hint_num} of {hints_count}): " +msgstr "提示(第 {hint_num} 个,共 {hints_count} 个):" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "" +"Your answers were previously saved. Click '{button_name}' to grade them." +msgstr "您的答案已经保存。点击{button_name}检查看分数。" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "Incorrect ({progress} point)" +msgid_plural "Incorrect ({progress} points)" +msgstr[0] "不正确 ({progress} 分)" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "Correct ({progress} point)" +msgid_plural "Correct ({progress} points)" +msgstr[0] "正确 ({progress} 分)" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "Partially correct ({progress} point)" +msgid_plural "Partially correct ({progress} points)" +msgstr[0] "部分正确 ({progress} 分)" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Partially Correct" +msgstr "部分正确" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Answer submitted." +msgstr "答案已提交。" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem is closed." +msgstr "问题已结束。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be reset before it can be submitted again." +msgstr "在重新检查问题之前必须把它重置。" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "You must wait at least {wait} seconds between submissions." +msgstr "在两次发布之间您至少需要等待{wait}秒。" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "" +"You must wait at least {wait_secs} between submissions. {remaining_secs} " +"remaining." +msgstr "在两次提交之间需要等待 {wait_secs} 秒。还需等待{remaining_secs}秒。" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "{num_hour} hour" +msgid_plural "{num_hour} hours" +msgstr[0] "{num_hour} 小时" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "{num_minute} minute" +msgid_plural "{num_minute} minutes" +msgstr[0] "{num_minute} 分钟" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "{num_second} second" +msgid_plural "{num_second} seconds" +msgstr[0] "{num_second} 秒钟" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem needs to be reset prior to save." +msgstr "问题在保存之前需要重置。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Your answers have been saved." +msgstr "您的答案已保存。" + +#: common/lib/xmodule/xmodule/capa_base.py +#, python-brace-format +msgid "" +"Your answers have been saved but not graded. Click '{button_name}' to grade " +"them." +msgstr "您的答案已保存,点击'{button_name}'以供评分。" + +#. Translators: 'closed' means the problem's due date has passed. You may no +#. longer attempt to solve the problem. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You cannot select Reset for a problem that is closed." +msgstr "无法重置已关闭的题目。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "You must submit an answer before you can select Reset." +msgstr "您必须先提交答案,再选择重置。" + +#. Translators: 'rescoring' refers to the act of re-submitting a student's +#. solution so it can get a new score. +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem's definition does not support rescoring." +msgstr "问题定义不支持重新打分。" + +#: common/lib/xmodule/xmodule/capa_base.py +msgid "Problem must be answered before it can be graded again." +msgstr "回答问题后才能够重新评定。" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"We're sorry, there was an error with processing your request. Please try " +"reloading your page and trying again." +msgstr "很抱歉,在处理您的请求时出现错误。请重新加载您的页面并再次尝试操作。" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "" +"The state of this problem has changed since you loaded this page. Please " +"refresh your page." +msgstr "该问题的描述在您加载本页面之后已经发生变化了。请刷新您的页面。" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "Answer ID" +msgstr "答案ID" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "Question" +msgstr "问题" + +#: common/lib/xmodule/xmodule/capa_module.py +msgid "Correct Answer" +msgstr "正确答案" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Conditional" +msgstr "条件" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "List of urls of children that are references to external modules" +msgstr "引用外部模块的子URL列表" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Source Components" +msgstr "来源组件" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "" +"The component location IDs of all source components that are used to " +"determine whether a learner is shown the content of this conditional module." +" Copy the component location ID of a component from its Settings dialog in " +"Studio." +msgstr "决定学员是否可见此条件模块内容的所有源组件的组件位置ID。在Studio的设置对话框中复制此组件地址ID。" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Conditional Attribute" +msgstr "条件属性" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "" +"The attribute of the source components that determines whether a learner is " +"shown the content of this conditional module." +msgstr "决定学员是否可见此条件模块内容的源组件的属性。" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Conditional Value" +msgstr "条件值" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "" +"The value that the conditional attribute of the source components must match" +" before a learner is shown the content of this conditional module." +msgstr "在学员可见此条件模块内容前,源组件的条件属性必须匹配的值。" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Blocked Content Message" +msgstr "已屏蔽内容信息" + +#: common/lib/xmodule/xmodule/conditional_module.py +#, python-brace-format +msgid "" +"The message that is shown to learners when not all conditions are met to " +"show the content of this conditional module. Include {link} in the text of " +"your message to give learners a direct link to required units. For example, " +"'You must complete {link} before you can access this unit'." +msgstr "" +"当无法满足显示此条件模块的所有条件时,则显示此条消息。在您的短信中附有获取所需单元的链接{link}。例如:“您必须先完成{link},才能访问此单元”。" + +#: common/lib/xmodule/xmodule/conditional_module.py +#, python-brace-format +msgid "You must complete {link} before you can access this unit." +msgstr "您必须先完成{link},才能访问此单元。" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "This component has no source components configured yet." +msgstr "此组件尚未配置源组件。" + +#: common/lib/xmodule/xmodule/conditional_module.py +msgid "Configure list of sources" +msgstr "配置来源列表" + +#: common/lib/xmodule/xmodule/course_module.py +#, python-brace-format +msgid "" +"The selected proctoring provider, {proctoring_provider}, is not a valid " +"provider. Please select from one of {available_providers}." +msgstr "所选的处理提供程序{proctoring_provider}不是有效的提供程序。请从{available_providers}中选择。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "LTI Passports" +msgstr "LTI 账号" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the passports for course LTI tools in the following format: " +"\"id:client_key:client_secret\"." +msgstr "以下列格式输入课程 LTI 工具的通行证:“id:client_key:client_secret”。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"List of Textbook objects with (title, url) for textbooks used in this course" +msgstr "本课程所用教材的教材目标列表(标题、网址)" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Slug that points to the wiki for this course" +msgstr "指向该课程维基的固定链接地址" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Date that enrollment for this class is opened" +msgstr "选修该课程的日期已经开放" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Date that enrollment for this class is closed" +msgstr "选修该课程的日期已经结束" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Start time when this module is visible" +msgstr "该模块可见的起始时间" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Date that this class ends" +msgstr "该课程结束的日期" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Date that certificates become available to learners" +msgstr "学员可开始申请证书的日期" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Cosmetic Course Display Price" +msgstr "掩饰课程显示价格" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"The cost displayed to students for enrolling in the course. If a paid course" +" registration price is set by an administrator in the database, that price " +"will be displayed instead of this one." +msgstr "费用已经显示给了选修该课程的学生。如果管理员在数据库中修改了付费课程的注册价格,那么该价格将会覆盖原来的费用。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Advertised Start" +msgstr "开课的宣传时间" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the text that you want to use as the advertised starting time frame " +"for the course, such as \"Winter 2018\". If you enter null for this value, " +"the start date that you have set for this course is used." +msgstr "请输入开课的宣传时间,比如“Winter2018”。如果您输入null,则您之前已设置的开课时间会生效。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Pre-Requisite Courses" +msgstr "先修课程" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Pre-Requisite Course key if this course has a pre-requisite course" +msgstr "如果本课程有先修课程,则指定先修课程的课程标识" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Grading policy definition for this class" +msgstr "该课程的评分标准定义" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Show Calculator" +msgstr "显示计算器" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. When true, students can see the calculator in the " +"course." +msgstr "输入true或false。当输入为true时,学生可以造课程中看到计算器。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the name of the course as it should appear in the EliteMBA.cn course " +"list." +msgstr "输入应当出现在 EliteMBA.cn 课程列表中的课程名称。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Display Name" +msgstr "课程显示名字" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Course Editor" +msgstr "课程编辑器" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enter the method by which this course is edited (\"XML\" or \"Studio\")." +msgstr "输入这门课程的编辑方式(“XML”或者“Studio”)。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Survey URL" +msgstr "课程调查链接" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the URL for the end-of-course survey. If your course does not have a " +"survey, enter null." +msgstr "输入课程最终调查的链接URL。如果您的课程没有最终调查,输入null。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Discussion Blackout Dates" +msgstr "讨论管制日期" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter pairs of dates between which students cannot post to discussion " +"forums. Inside the provided brackets, enter an additional set of square " +"brackets surrounding each pair of dates you add. Format each pair of dates " +"as [\"YYYY-MM-DD\", \"YYYY-MM-DD\"]. To specify times as well as dates, " +"format each pair as [\"YYYY-MM-DDTHH:MM\", \"YYYY-MM-DDTHH:MM\"]. Be sure to" +" include the \"T\" between the date and time. For example, an entry defining" +" two blackout periods looks like this, including the outer pair of square " +"brackets: [[\"2015-09-15\", \"2015-09-21\"], [\"2015-10-01\", " +"\"2015-10-08\"]] " +msgstr "" +"输入一对日期,在此期间内不允许学生往在讨论区上发帖。请在所提供的括号之内输入日期,每一对日期应由一组方括号包围,其格式为 [\"YYYY-MM-" +"DD\", \"YYYY-MM-DD\"]。如果还需要指定时间,请使用格式 [\"YYYY-MM-DDTHH:MM\", \"YYYY-MM-" +"DDTHH:MM\"],请确保在日期和时间的中间一定要有“T”。例如,一项定义了两段禁用时期的项应该是如下列格式所示(包括了最外层的一对方括号):[[\"2015-09-15\"," +" \"2015-09-21\"], [\"2015-10-01\", \"2015-10-08\"]]" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Discussion Topic Mapping" +msgstr "讨论主题映射" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter discussion categories in the following format: \"CategoryName\": " +"{\"id\": \"i4x-InstitutionName-CourseNumber-course-CourseRun\"}. For " +"example, one discussion category may be \"Lydian Mode\": {\"id\": \"i4x-" +"UniversityX-MUS101-course-2015_T1\"}. The \"id\" value for each category " +"must be unique. In \"id\" values, the only special characters that are " +"supported are underscore, hyphen, and period. You can also specify a " +"category as the default for new posts in the Discussion page by setting its " +"\"default\" attribute to true. For example, \"Lydian Mode\": {\"id\": \"i4x-" +"UniversityX-MUS101-course-2015_T1\", \"default\": true}." +msgstr "" +"请按照以下格式输入讨论目录:\"课程名称\": {\"id\": \"i4x-InstitutionName-CourseNumber-course-" +"CourseRun\"}。例如:\"Lydian Mode\": {\"id\": \"i4x-UniversityX-MUS101-course-" +"2015_T1\"},其中每个目录的“id”值必须不同。“id”值的输入只支持三种特殊符号:下划线、连字符、句号。您也可以设置讨论页面的默认新帖子目录,只需设置其“默认”属性为“true”,例如:\"Lydian" +" Mode\": {\"id\": \"i4x-UniversityX-MUS101-course-2015_T1\", \"default\": " +"true}。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Discussion Sorting Alphabetical" +msgstr "讨论排序字母" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, discussion categories and subcategories are " +"sorted alphabetically. If false, they are sorted chronologically by creation" +" date and time." +msgstr "请输入true或false。如果为true,讨论类別和子类別会依字母排序。否则按时间顺序排序。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Announcement Date" +msgstr "课程公开日期" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter the date to announce your course." +msgstr "输入公开您课程的日期。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Cohort Configuration" +msgstr "群组配置" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter policy keys and values to enable the cohort feature, define automated " +"student assignment to groups, or identify any course-wide discussion topics " +"as private to cohort members." +msgstr "请输入策略键和值以启用群组功能、定义如何自动将学生分配到群组中、或者将任何全课程范围内的讨论主题标识为对群组成员私有的主题。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Is New" +msgstr "新课程" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, the course appears in the list of new courses " +"on EliteMBA.cn, and a New! badge temporarily appears next to the course " +"image." +msgstr "" +"输入true或者false。如果输入true,课程会出现在EliteMBA.cn的新课程列表中,并且在课程图片旁边会出现一个New!样式的临时图标。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Mobile Course Available" +msgstr "手机端可见的课程" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, the course will be available to mobile " +"devices." +msgstr "请输入true或false,如果为true,这门课程将支持移动设备上学习" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Video Upload Credentials" +msgstr "视频上传凭据" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the unique identifier for your course's video files provided by " +"EliteMBA." +msgstr "请为EliteMBA提供给您的课程视频文件输入唯一标识符。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Not Graded" +msgstr "课程不评分" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter true or false. If true, the course will not be graded." +msgstr "输入 true 或 false。为 true 时,该课程将不会被评分。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Disable Progress Graph" +msgstr "禁用进度图表" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter true or false. If true, students cannot view the progress graph." +msgstr "输入true或者false。如果输入true,学生将不能看到进度图。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "PDF Textbooks" +msgstr "PDF 课本" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "List of dictionaries containing pdf_textbook configuration" +msgstr "字典列表包含pdf_textbook的结构" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "HTML Textbooks" +msgstr "HTML 课本" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"For HTML textbooks that appear as separate tabs in the course, enter the " +"name of the tab (usually the title of the book) as well as the URLs and " +"titles of each chapter in the book." +msgstr "对于在课程中以单独标签显示的 HTML 教材,则输入标签的名称(通常为课本的名称)以及教材每一章节的 URL 和标题。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Remote Gradebook" +msgstr "远程成绩册" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the remote gradebook mapping. Only use this setting when " +"REMOTE_GRADEBOOK_URL has been specified." +msgstr "输入远程的成绩薄映射。只使用此设置时,remote_gradebook_url已被指定。" + +#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using +#. course content. CCX Coach is +#. a role created by a course Instructor to enable a person (the "Coach") to +#. manage the custom course for +#. his students. +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enable CCX" +msgstr "启用CCX" + +#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using +#. course content. CCX Coach is +#. a role created by a course Instructor to enable a person (the "Coach") to +#. manage the custom course for +#. his students. +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Allow course instructors to assign CCX Coach roles, and allow coaches to " +"manage Custom Courses on EliteMBA. When false, Custom Courses cannot be " +"created, but existing Custom Courses will be preserved." +msgstr "" +"允许课程的主讲老师指派CCX指导角色,并允许指导们在EliteMBA上管理自定义课程。当值为“false”时,将不能创建自定义课程,但已有的自定义课程将会保留。" + +#. Translators: Custom Courses for edX (CCX) is an edX feature for re-using +#. course content. +#: common/lib/xmodule/xmodule/course_module.py +msgid "CCX Connector URL" +msgstr "CCX Connector URL" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"URL for CCX Connector application for managing creation of CCXs. (optional)." +" Ignored unless 'Enable CCX' is set to 'true'." +msgstr "" +"URL for CCX Connector application for managing creation of CCXs. (optional)." +" Ignored unless 'Enable CCX' is set to 'true'." + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allow Anonymous Discussion Posts" +msgstr "允许匿名讨论帖" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, students can create discussion posts that are " +"anonymous to all users." +msgstr "输入true或false。如果是true,学生可以匿名创建讨论的帖子。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allow Anonymous Discussion Posts to Peers" +msgstr "允许同伴间的匿名讨论帖" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, students can create discussion posts that are " +"anonymous to other students. This setting does not make posts anonymous to " +"course staff." +msgstr "输入 true 或者 false。如果输入为 true ,学生可以创建对其他学生匿名的讨论帖。这个设置不能对课程工作人员匿名发帖。" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/library_root_xblock.py +msgid "Advanced Module List" +msgstr "高级模块列表" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter the names of the advanced modules to use in your course." +msgstr "请输入您想要加入课程的高级模块名称。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Home Sidebar Name" +msgstr "课程主页的边栏名称" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the heading that you want students to see above your course handouts " +"on the Course Home page. Your course handouts appear in the right panel of " +"the page." +msgstr "输入您想要学生可以在课程首页看到此课程讲义的标题。您的讲义会出现在页面的右边。" + +#: common/lib/xmodule/xmodule/course_module.py +#: lms/templates/courseware/info.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Course Handouts" +msgstr "课程讲义" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"True if timezones should be shown on dates in the course. Deprecated in " +"favor of due_date_display_format." +msgstr "如果课程中的日期上应显示时区则正确。到期_日期_显示_格式已弃用。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Due Date Display Format" +msgstr "截止日期显示格式" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the format for due dates. The default is Mon DD, YYYY. Enter " +"\"%m-%d-%Y\" for MM-DD-YYYY, \"%d-%m-%Y\" for DD-MM-YYYY, \"%Y-%m-%d\" for " +"YYYY-MM-DD, or \"%Y-%d-%m\" for YYYY-DD-MM." +msgstr "" +"输入截止日期的格式,默认的格式是 Mon DD, YYYY。要使用 MM-DD-YYYY 格式,请输入“%m-%d-%Y”;要使用 DD-MM-" +"YYYY,请输入“%d-%m-%Y”;要使用 YYYY-MM-DD 格式,请输入“%Y-%m-%d”;要使用 YYYY-DD-MM " +"格式,请输入“%Y-%d-%m”。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "External Login Domain" +msgstr "外部登录域" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter the external login method students can use for the course." +msgstr "输入学生可参加课程的外部登陆方法。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificates Downloadable Before End" +msgstr "课程结束前可下载证书" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, students can download certificates before the " +"course ends, if they've met certificate requirements." +msgstr "输入真或假。如果是真的,学生遇到下载证书的要求,可以在课程结束前下载证书。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificates Display Behavior" +msgstr "认证演示行为" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter end, early_with_info, or early_no_info. After certificate generation, " +"students who passed see a link to their certificates on the dashboard and " +"students who did not pass see information about the grading configuration. " +"The default is end, which displays this certificate information to all " +"students after the course end date. To display this certificate information " +"to all students as soon as certificates are generated, enter " +"early_with_info. To display only the links to passing students as soon as " +"certificates are generated, enter early_no_info." +msgstr "" +"输入“end”、“early_with_info”或“early_no_info”。在证书生成后,所有通过考核的学生们会在他们的课程面板上看到证书的链接,而没有通过的学生则会看到关于成绩配置的信息。默认值是“end”,即在课程结束日期之后向所有学生显示证书信息。如果希望在证书生成后尽快让所有学生看到证书信息,请输入“early_with_info”。而如果只是希望在证书生成后尽快向已经通过的学生显示链接,请输入“early_no_info”。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course About Page Image" +msgstr "课程介绍页面图片" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Edit the name of the course image file. You must upload this file on the " +"Files & Uploads page. You can also set the course image on the Settings & " +"Details page." +msgstr "" +"编辑课程图片文件的名字。您必须在Files & Uploads页面上传这个文件。您也可以在 Settings & Details页面设置课程图片。" + +#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Banner Image" +msgstr "课程图标" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Edit the name of the banner image file. You can set the banner image on the " +"Settings & Details page." +msgstr "编辑横幅图片文件名称。您可以在设置&详情页面对横幅图片进行设置。" + +#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Video Thumbnail Image" +msgstr "课程视频缩略图" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Edit the name of the video thumbnail image file. You can set the video " +"thumbnail image on the Settings & Details page." +msgstr "编辑视频缩略图文件名称。您可以在设置&详情页面对视频缩略图进行设置。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Issue Open Badges" +msgstr "颁发徽章" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Issue Open Badges badges for this course. Badges are generated when " +"certificates are created." +msgstr "为该课程颁发徽章。徽章在证书创建的时候已经生成了。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Use this setting only when generating PDF certificates. Between quotation " +"marks, enter the short name of the type of certificate that students receive" +" when they complete the course. For instance, \"Certificate\"." +msgstr "" +"只有在要产生证书的PDF档时,才使用这项设定。当学生完成课程所获得的证书,在引文标号中间输入 证书类型简称於学生证书上。例如,“修课证明”。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Name (Short)" +msgstr "证书名称(短)" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Use this setting only when generating PDF certificates. Between quotation " +"marks, enter the long name of the type of certificate that students receive " +"when they complete the course. For instance, \"Certificate of Achievement\"." +msgstr "" +"只有在要产生证书的PDF档时,才使用这项设定。当学生完成课程所获得的证书,在引文标号中间输入 证书类型全名於学生证书上。例如,“成绩证书”。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Name (Long)" +msgstr "证书名称(长)" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Web/HTML View Enabled" +msgstr "启用证书的Web/HTML视图" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "If true, certificate Web/HTML views are enabled for the course." +msgstr "若为“true”,将会启用课程证书的Web/HTML视图。" + +#. Translators: This field is the container for course-specific certificate +#. configuration values +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Web/HTML View Overrides" +msgstr "证书 Web/HTML View Overrides" + +#. Translators: These overrides allow for an alternative configuration of the +#. certificate web view +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter course-specific overrides for the Web/HTML template parameters here " +"(JSON format)" +msgstr "为网页模板参数输入课程指定的接口(JSON格式)" + +#. Translators: This field is the container for course-specific certificate +#. configuration values +#: common/lib/xmodule/xmodule/course_module.py +msgid "Certificate Configuration" +msgstr "证书配置" + +#. Translators: These overrides allow for an alternative configuration of the +#. certificate web view +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter course-specific configuration information here (JSON format)" +msgstr "在这里输入课程指定的配置信息(JSON格式)" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "CSS Class for Course Reruns" +msgstr "重新开课的 CSS 类" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Allows courses to share the same css class across runs even if they have " +"different numbers." +msgstr "即使他们有不同的数字,也可以允许课程在运行过程中共享相同的CSS类。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Discussion Forum External Link" +msgstr "讨论区的外部链接" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allows specification of an external link to replace discussion forums." +msgstr "允许更换论坛外部链接规范。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Hide Progress Tab" +msgstr "隐藏进度页面" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allows hiding of the progress tab." +msgstr "允许进程选项卡隐藏。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Organization Display String" +msgstr "课程所属机构的显示名称" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the course organization that you want to appear in the course. This " +"setting overrides the organization that you entered when you created the " +"course. To use the organization that you entered when you created the " +"course, enter null." +msgstr "输入您想在课程中出现的课程安排。此设置将覆盖您在创建课程时输入的课程安排。要使用您在创建课程时输入的课程安排,请输入空值。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Number Display String" +msgstr "课程编号的显示名称" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the course number that you want to appear in the course. This setting " +"overrides the course number that you entered when you created the course. To" +" use the course number that you entered when you created the course, enter " +"null." +msgstr "输入您想在课程中出现的课程编号。此设置将覆盖您在创建课程时输入的课程编号。要使用您在创建课程时输入的课程编号,请输入空值。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Maximum Student Enrollment" +msgstr "最大选课学生人数" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter the maximum number of students that can enroll in the course. To allow" +" an unlimited number of students, enter null." +msgstr "输入该课程的最大选课学生人数;如无限制,输入null。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allow Public Wiki Access" +msgstr "允许公共 Wiki 访问" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, EliteMBA users can view the course wiki even " +"if they're not enrolled in the course." +msgstr "输入true或false。如果为true,EliteMBA用户即使未选修该课程也可以查看课程Wiki 。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Invitation Only" +msgstr "仅限受邀者" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Whether to restrict enrollment to invitation by the course staff." +msgstr "是否限制注册仅能透过课程工作人员邀请。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Pre-Course Survey Name" +msgstr "课前调查名称" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Name of SurveyForm to display as a pre-course survey to the user." +msgstr "用以显示的调查表(用户的先修课程调查)名称" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Pre-Course Survey Required" +msgstr "开课前需要填写调查问卷" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Specify whether students must complete a survey before they can view your " +"course content. If you set this value to true, you must add a name for the " +"survey to the Course Survey Name setting above." +msgstr "指定学生在查看您的课程内容之前是否必须完成一项调查。如果您设置该值为true,那么您必须在以上的课程调查名称设置中为该调查添加一个名称。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Visibility In Catalog" +msgstr "目录中课程可见性" + +#. Translators: the quoted words 'both', 'about', and 'none' must be +#. left untranslated. Leave them as English words. +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Defines the access permissions for showing the course in the course catalog." +" This can be set to one of three values: 'both' (show in catalog and allow " +"access to about page), 'about' (only allow access to about page), 'none' (do" +" not show in catalog and do not allow access to an about page)." +msgstr "" +"定义在课程目录中的显示课程的访问权限。可以设置为以下三个值的其中之一:“both”(在目录中显示且允许访问关于此页),“about”(只允许访问关于此页),“none”(不在目录中显示且不允许访问关于此页)。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Entrance Exam Enabled" +msgstr "入学考试开启" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Specify whether students must complete an entrance exam before they can view" +" your course content. Note, you must enable Entrance Exams for this course " +"setting to take effect." +msgstr "指定是否学生在浏览您的课程内容前必须完成一个入学考试。注意,您必须烤漆此课程设置的入学考试以便此设置起作用。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Entrance Exam Minimum Score (%)" +msgstr "入学考试最小分数(%)" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Specify a minimum percentage score for an entrance exam before students can " +"view your course content. Note, you must enable Entrance Exams for this " +"course setting to take effect." +msgstr "为学生能浏览您的课程前的入学考试定义一个的最小的百分比分数。注意,您必须开启此课程设置的入学考试以便此设置起作用。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Entrance Exam ID" +msgstr "入学考试ID" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Content module identifier (location) of entrance exam." +msgstr "入学考试内容模块标识符(位置)" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Social Media Sharing URL" +msgstr "社交媒体分享URL" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"If dashboard social sharing and custom course URLs are enabled, you can " +"provide a URL (such as the URL to a course About page) that social media " +"sites can link to. URLs must be fully qualified. For example: " +"http://www.edx.org/course/Introduction-to-MOOCs-ITM001" +msgstr "" +"若启动了课程面板的社交分享和自定义课程的URL功能,您则可以提供一个可链接社交媒体的URL(例如课程“关于此页”的URL)。所用的URL是完全规范合法的,例如:http://www.edx.org/course" +"/Introduction-to-MOOCs-ITM001" + +#: common/lib/xmodule/xmodule/course_module.py cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Language" +msgstr "课程语言" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Specify the language of your course." +msgstr "指定您的课程语言。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Teams Configuration" +msgstr "团队配置" + +#: common/lib/xmodule/xmodule/course_module.py +#, python-brace-format +msgid "" +"Specify the maximum team size and topics for teams inside the provided set " +"of curly braces. Make sure that you enclose all of the sets of topic values " +"within a set of square brackets, with a comma after the closing curly brace " +"for each topic, and another comma after the closing square brackets. For " +"example, to specify that teams should have a maximum of 5 participants and " +"provide a list of 2 topics, enter the configuration in this format: " +"{example_format}. In \"id\" values, the only supported special characters " +"are underscore, hyphen, and period." +msgstr "" +"将指定最大规模的团队和主题放置于大括号内。请确认您所有主题字段皆放置于中括号之内,每个主题大括号后加注逗号,而另一个逗号放加於中括号后。例如,指定团队应该最多5人为限,并提供2个主题,以这种形式进入配置" +" {example_format}。 \"id\"字段只支援特定符合,包括底线、破折号及句点。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enable Proctored Exams" +msgstr "启用监考考试" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, proctored exams are enabled in " +"your course. Note that enabling proctored exams will also enable timed " +"exams." +msgstr "输入 true 或 false。如果该值为true,监考的考试是在您的课程启用。请注意,使监考考试也将启动 限时考试。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Proctoring Provider" +msgstr "监考提供者" + +#: common/lib/xmodule/xmodule/course_module.py +#, python-brace-format +msgid "" +"Enter the proctoring provider you want to use for this course run. Choose " +"from the following options: {available_providers}." +msgstr "输入要用于本课程运行的监考提供程序。 从以下选项中选择: {available_providers}" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Allow Opting Out of Proctored Exams" +msgstr "允许在监考下退出考试" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, learners can choose to take " +"proctored exams without proctoring. If this value is false, all learners " +"must take the exam with proctoring. This setting only applies if proctored " +"exams are enabled for the course." +msgstr "" +"请输入“true”或“false”。如果输入“true”,那么学员可以选择关掉监考模式。如果输入“false”,那么学员无法关掉监考模式。此设置仅适用于已启动监考模式的课程。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Create Zendesk Tickets For Suspicious Proctored Exam Attempts" +msgstr "对有作弊嫌疑的考试创建Zendesk记录" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, a Zendesk ticket will be created" +" for suspicious attempts." +msgstr "请输入true或false。如果输入true,那么会对有作弊嫌疑的考试创建Zendesk记录。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enable Timed Exams" +msgstr "启用限时考试" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, timed exams are enabled in your " +"course. Regardless of this setting, timed exams are enabled if Enable " +"Proctored Exams is set to true." +msgstr "" +"输入“true”或“false”。如果输入“true”,课程会开启限时考试模式。如果监考模式值设成“true”,那么无论此选项如何设置,限时考试模式都会开启。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Minimum Grade for Credit" +msgstr "能够获取学分的最低分" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"The minimum grade that a learner must earn to receive credit in the course, " +"as a decimal between 0.0 and 1.0. For example, for 75%, enter 0.75." +msgstr "" +"最低分,是指学员在课程中为获得学分必须取得的分数,是一个0.0到\n" +"1.0的十进制数。例如:75%,则输入0.75。" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Self Paced" +msgstr "自定进度" + +#: common/lib/xmodule/xmodule/course_module.py +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Set this to \"true\" to mark this course as self-paced. Self-paced courses " +"do not have due dates for assignments, and students can progress through the" +" course at any rate before the course ends." +msgstr "将其设置为“true”,以设定这门课程为自学课程,没有截止日期的作业,学生可以在任何速度在课程结束之前进行学习。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Bypass Course Home" +msgstr "跳过课程主页" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Bypass the course home tab when students arrive from the dashboard, sending " +"them directly to course content." +msgstr "当学生从仪表板进入时跳过课程主页选项卡,让他们直接跳转到课程目录。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enable Subsection Prerequisites" +msgstr "可分段先修之要求" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If this value is true, you can hide a subsection until " +"learners earn a minimum score in another, prerequisite subsection." +msgstr "输入 true 或 false。如果该值为 true,您可以隐藏某分段,直到学习者获得最低分数为止。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Learning Information" +msgstr "课程学习信息" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Specify what student can learn from the course." +msgstr "请设置课程教学细节。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Visibility For Unenrolled Learners" +msgstr "未选课学员课程可见情况" + +#. Translators: the quoted words 'private', 'public_outline', and 'public' +#. must be left untranslated. Leave them as English words. +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Defines the access permissions for unenrolled learners. This can be set to " +"one of three values: 'private' (default visibility, only allowed for " +"enrolled students), 'public_outline' (allow access to course outline) and " +"'public' (allow access to both outline and course content)." +msgstr "" +"定义未登记学员的访问权限。这可以设置为三个值之一: “private” (默认可见性,只允许在册学生使用)、“public_outline” " +"(允许访问课程概述)和 “public”(允许访问概述和课程内容)。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Course Instructor" +msgstr "课程导师" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Enter the details for Course Instructor" +msgstr "请输入授课老师详细信息" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Add Unsupported Problems and Tools" +msgstr "添加不支持的题目和工具" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, you can add unsupported problems and tools to " +"your course in Studio. Unsupported problems and tools are not recommended " +"for use in courses due to non-compliance with one or more of the base " +"requirements, such as testing, accessibility, internationalization, and " +"documentation." +msgstr "" +"请输入“true”或“false”。如果您输入“true”,那么可以在Studio中将不支持的题目和工具添加至课程中。由于与测试、公开权限、国际化和文件归档等基础要求相抵触,所以不推荐在课程中使用不支持的题目和工具。" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "Highlights Enabled for Messaging" +msgstr "启用消息通知重点内容" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Enter true or false. If true, any highlights associated with content in the " +"course will be messaged to learners at their scheduled time." +msgstr "请输入true或false,如果输入true,那么任何与课程内容有关的标亮内容都将会在学员的规定时间内被发送给学员。" + +#: common/lib/xmodule/xmodule/course_module.py cms/templates/certificates.html +#: cms/templates/group_configurations.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Other Course Settings" +msgstr "课程其他设置" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "" +"Any additional information about the course that the platform needs or that " +"allows integration with external systems such as CRM software. Enter a " +"dictionary of values in JSON format, such as { \"my_custom_setting\": " +"\"value\", \"other_setting\": \"value\" }" +msgstr "" +"平台需要的课程或允许与CRM软件等外部系统集成的任何额外信息。输入JSON格式的值字典,例如{ \"my_custom_setting\": " +"\"value\", \"other_setting\": \"value\" }" + +#: common/lib/xmodule/xmodule/course_module.py +msgid "General" +msgstr "一般" + +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "{assignment_type} = {weighted_percent:.2%} of a possible {weight:.2%}" +msgstr "{assignment_type} = {weighted_percent:.2%} of a possible {weight:.2%}" + +#: common/lib/xmodule/xmodule/graders.py +msgid "Generated" +msgstr "已生成" + +#. Translators: "Homework 1 - Unreleased - 0% (?/?)" The section has not been +#. released for viewing. +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "{section_type} {index} Unreleased - 0% (?/?)" +msgstr "{section_type} {index} 未公开 - 0% (?/?)" + +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "The lowest {drop_count} {section_type} scores are dropped." +msgstr "最低{drop_count} {section_type}分的科目会被弃用。" + +#. Translators: "Homework Average = 0%" +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "{section_type} Average = {percent:.0%}" +msgstr "{section_type} 平均分 = {percent:.0%}" + +#. Translators: Avg is short for Average +#: common/lib/xmodule/xmodule/graders.py +#, python-brace-format +msgid "{short_label} Avg" +msgstr "{short_label} 平均分" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Text" +msgstr "文本" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Html contents to display for this module" +msgstr "本模块显示Html的内容" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Source code for LaTeX documents. This feature is not well-supported." +msgstr "此功能不支持LaTeX文件的源代码。" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "" +"Select Visual to enter content and have the editor automatically create the " +"HTML. Select Raw to edit HTML directly. If you change this setting, you must" +" save the component and then re-open it for editing." +msgstr "" +"选择“可视化”时,您只需输入内容,编辑器将生成相应的 HTML 代码。选择“代码”时,您可以直接编辑 HTML " +"代码。如果您改变了该设置,则该设置将在您保存并重新打开编辑器才生效。" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Editor" +msgstr "编辑器" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Visual" +msgstr "可视化" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Raw" +msgstr "代码" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "Hide Page From Learners" +msgstr "对所有学生隐藏这一页" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "" +"If you select this option, only course team members with the Staff or Admin " +"role see this page." +msgstr "如果您勾选此选项,那么只有员工或管理员身份的课程团队成员才能浏览此界面。" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "HTML for the additional pages" +msgstr "额外的HTML页面" + +#: common/lib/xmodule/xmodule/html_module.py +msgid "List of course update items" +msgstr "更新课程项目列表" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Any Type" +msgstr "任意类型" + +#: common/lib/xmodule/xmodule/library_content_module.py +#: cms/templates/widgets/header.html +msgid "Library" +msgstr "知识库" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Select the library from which you want to draw content." +msgstr "选择您想要从中拉取内容的知识库。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Library Version" +msgstr "知识库版本" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Determines how content is drawn from the library" +msgstr "确定内容如何被从知识库中拉取" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Choose n at random" +msgstr "随机选择一个数字n" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Count" +msgstr "计算" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Enter the number of components to display to each student." +msgstr "输入显示给每个学生的组件数量。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Problem Type" +msgstr "问题类型" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "" +"Choose a problem type to fetch from the library. If \"Any Type\" is selected" +" no filtering is applied." +msgstr "选择一个要从知识库中获取的问题类型,如果选择了“任意类型”,则不应用任何筛选。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "This component is out of date. The library has new content." +msgstr "该组件已过时。知识库有新的内容。" + +#. Translators: {refresh_icon} placeholder is substituted to "↻" (without +#. double quotes) +#: common/lib/xmodule/xmodule/library_content_module.py +#, python-brace-format +msgid "{refresh_icon} Update now." +msgstr "{refresh_icon} 立即更新。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Library is invalid, corrupt, or has been deleted." +msgstr "知识库无效,损坏或已经被删除。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Edit Library List." +msgstr "编辑库列表。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "" +"This course does not support content libraries. Contact your system " +"administrator for more information." +msgstr "此课程不支持内容库。联系您的系统管理员以获得更多信息。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "A library has not yet been selected." +msgstr "未选择一个知识库。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Select a Library." +msgstr "选择一个知识库。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "There are no matching problem types in the specified libraries." +msgstr "指定知识库中没有匹配的问题类型。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Select another problem type." +msgstr "选择其他问题类型。" + +#: common/lib/xmodule/xmodule/library_content_module.py +#, python-brace-format +msgid "The specified library is configured to fetch {count} problem, " +msgid_plural "The specified library is configured to fetch {count} problems, " +msgstr[0] "此专用库旨在用于取回 {count} 个问题," + +#: common/lib/xmodule/xmodule/library_content_module.py +#, python-brace-format +msgid "but there is only {actual} matching problem." +msgid_plural "but there are only {actual} matching problems." +msgstr[0] "但仅有 {actual} 个匹配问题。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Edit the library configuration." +msgstr "编辑知识库配置。" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "Invalid Library" +msgstr "无效的知识库" + +#: common/lib/xmodule/xmodule/library_content_module.py +msgid "No Library Selected" +msgstr "未选择知识库" + +#: common/lib/xmodule/xmodule/library_root_xblock.py +msgid "Library Display Name" +msgstr "知识库显示名称" + +#: common/lib/xmodule/xmodule/library_root_xblock.py +msgid "Enter the names of the advanced components to use in your library." +msgstr "输入在您的知识库中使用的高级组件的名字。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"The display name for this component. Analytics reports may also use the " +"display name to identify this component." +msgstr "此组件的显示名称,分析报告也可使用该名称来识别此组件。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "LTI ID" +msgstr "LTI ID" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Enter the LTI ID for the external LTI provider. This value must be the same" +" LTI ID that you entered in the LTI Passports setting on the Advanced " +"Settings page.
    See {docs_anchor_open}the edX LTI " +"documentation{anchor_close} for more details on this setting." +msgstr "" +"输入外部LTI提供商提供的LTI编号。该值必须和您的LTI账号里高级设置里的LTI编号相同。
    关于该设置的更多信息请访问 " +"{docs_anchor_open}LTI 文档{anchor_close} " + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "LTI URL" +msgstr "LTI URL" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Enter the URL of the external tool that this component launches. This " +"setting is only used when Hide External Tool is set to False.
    See " +"{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " +"on this setting." +msgstr "" +"输入启动该组件的外部工具的URL。这个设置只有在“隐藏外部工具”为False时才能使用。
    关于该设置的更多信息请访问{docs_anchor_open}edX LTI文档{anchor_close}。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Custom Parameters" +msgstr "自定义参数" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Add the key/value pair for any custom parameters, such as the page your " +"e-book should open to or the background color for this component.
    See " +"{docs_anchor_open}the edX LTI documentation{anchor_close} for more details " +"on this setting." +msgstr "" +"任意自定义的参数都要添加键/值且成对,例如您要打开的电子书的页面或者这个组件的背景颜色。
    这项设置的更多信息请查看{docs_anchor_open}edX LTI文档{anchor_close} " + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Open in New Page" +msgstr "在新的窗口打开" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Select True if you want students to click a link that opens the LTI tool in " +"a new window. Select False if you want the LTI content to open in an IFrame " +"in the current page. This setting is only used when Hide External Tool is " +"set to False. " +msgstr "" +"如果您想要学生通过点击一个链接在一个新窗口中打开LTI工具,选择True。如果您想要在当前页面的一个IFrame中打开LTI内容,选择False。这个设置只有在" +" 隐藏外部工具 设置为False的时候才能使用。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Scored" +msgstr "可评分" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Select True if this component will receive a numerical score from the " +"external LTI system." +msgstr "如果允许该组件接收来自外部的LTI系统的数值分数请选择True。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Weight" +msgstr "权重" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Enter the number of points possible for this component. The default value " +"is 1.0. This setting is only used when Scored is set to True." +msgstr "输入该组件可能的分数,默认值为 1.0。该设置仅在“可评分”设置为true的时候才有用。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"The score kept in the xblock KVS -- duplicate of the published score in " +"django DB" +msgstr "分数保存在xblock KVS中——已公布分数的分本存储在django数据库中" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Comment as returned from grader, LTI2.0 spec" +msgstr "Comment as returned from grader, LTI2.0 spec" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Hide External Tool" +msgstr "隐藏扩展工具" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Select True if you want to use this component as a placeholder for syncing " +"with an external grading system rather than launch an external tool. This " +"setting hides the Launch button and any IFrames for this component." +msgstr "" +"若您想要使用该组件作为一个与外部评分系统同步的占位符,而不是启动一个外部工具,则设该值为Ture。该设置会隐藏启动按钮和该组件的任何内联框架。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Request user's username" +msgstr "需要用户名" + +#. Translators: This is used to request the user's username for a third party +#. service. +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Select True to request the user's username." +msgstr "选择True 以要求用户的用户名 username。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Request user's email" +msgstr "需要用户邮箱" + +#. Translators: This is used to request the user's email for a third party +#. service. +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Select True to request the user's email address." +msgstr "选择True 以要求用户的电子邮件地址。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "LTI Application Information" +msgstr "LTI应用信息" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Enter a description of the third party application. If requesting username " +"and/or email, use this text box to inform users why their username and/or " +"email will be forwarded to a third party application." +msgstr "输入第三方应用程序的描述。用来告诉用户为什么第三方应用程序需要用户的用户名及E-mail。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Button Text" +msgstr "按钮文本" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Enter the text on the button used to launch the third party application." +msgstr "输入按钮上的文字用于加载第三方应用。" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "Accept grades past deadline" +msgstr "接受超过限期的成绩" + +#: common/lib/xmodule/xmodule/lti_module.py +msgid "" +"Select True to allow third party systems to post grades past the deadline." +msgstr "请选择“True”以同意第三方系统在截止日期之后发布成绩。" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Could not parse custom parameter: {custom_parameter}. Should be \"x=y\" " +"string." +msgstr "无法解析自定义参数:{custom_parameter}。参数格式必须类似于“x=y”。" + +#: common/lib/xmodule/xmodule/lti_module.py +#, python-brace-format +msgid "" +"Could not parse LTI passport: {lti_passport}. Should be \"id:key:secret\" " +"string." +msgstr "无法解析LTI通行证:{lti_passport},这应当是一个由“id:key:secret”构成的字符串。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#: common/lib/xmodule/xmodule/seq_module.py lms/templates/ccx/schedule.html +msgid "Due Date" +msgstr "截止日期" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enter the default date by which problems are due." +msgstr "输入问题的默认截止日期。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#: lms/djangoapps/lms_xblock/mixin.py +msgid "If true, can be seen only by course staff, regardless of start date." +msgstr "如果为真,则无论开始日期为何时都只能被课程员工看到。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "GIT URL" +msgstr "GIT URL" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enter the URL for the course data GIT repository." +msgstr "为课程数据GIT仓库输入URL" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "XQA Key" +msgstr "XQA 密钥" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "This setting is not currently supported." +msgstr "当前不支持此设置。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enter the ids for the content groups this problem belongs to." +msgstr "输入这个问题所属的内容组的编号。" + +#. Translators: DO NOT translate the words in quotes here, they are +#. specific words for the acceptable values. +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Specify when the Show Answer button appears for each problem. Valid values " +"are \"always\", \"answered\", \"attempted\", \"closed\", \"finished\", " +"\"past_due\", \"correct_or_past_due\", and \"never\"." +msgstr "" +"在每个问题中何时出现显示答案按钮,有效值是:“always”,“answered”,“attempted”,“closed”,“finished”,“past_due”," +" \"correct_or_past_due\"和“never”。" + +#. Translators: DO NOT translate the words in quotes here, they are +#. specific words for the acceptable values. +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Specify when to show answer correctness and score to learners. Valid values " +"are \"always\", \"never\", and \"past_due\"." +msgstr "请设置显示答案是否正确和分数的方式。有效值为\"always\"、\"never\"和\"past_due\"。" + +#. Translators: DO NOT translate the words in quotes here, they are +#. specific words for the acceptable values. +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Specify the default for how often variable values in a problem are " +"randomized. This setting should be set to \"never\" unless you plan to " +"provide a Python script to identify and randomize values in most of the " +"problems in your course. Valid values are \"always\", \"onreset\", " +"\"never\", and \"per_student\"." +msgstr "" +"指定隐含变量值多久会发生问题是采随机系统默认。此设定应设为“从不”,除非您打算提供一个Python script " +"来随机辨识您的课程中大部分问题。有效字段为“永远”,“当reset 时”,“从不”,以及“每名学生”。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Days Early for Beta Users" +msgstr "Beta 测试用户提前访问天数" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the number of days before the start date that beta users can access " +"the course." +msgstr "输入课程测试员可以提前访问课程的天数。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Static Asset Path" +msgstr "静态资源路径" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the path to use for files on the Files & Uploads page. This value " +"overrides the Studio default, c4x://." +msgstr "请输入要使用的文件&上传页面中文件的路径。这将覆盖 Studio 的默认值(c4x:// 格式)。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enable LaTeX Compiler" +msgstr "启用 LaTeX 编译器" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, you can use the LaTeX templates for HTML " +"components and advanced Problem components." +msgstr "请输入true或false,当输入为true时,您可以使用LaTeX编辑器,编辑HTML模块和问题模块。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the maximum number of times a student can try to answer problems. By " +"default, Maximum Attempts is set to null, meaning that students have an " +"unlimited number of attempts for problems. You can override this course-wide" +" setting for individual problems. However, if the course-wide setting is a " +"specific number, you cannot set the Maximum Attempts for individual problems" +" to unlimited." +msgstr "" +"请输入学生可以尝试回答问题的最大次数。最大尝试次数默认被设置为null,也就是说学生可以无限制的尝试回答问题。对于不同的问题您可以设置不同的回答次数限制。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the API key provided by MathWorks for accessing the MATLAB Hosted " +"Service. This key is granted for exclusive use in this course for the " +"specified duration. Do not share the API key with other courses. Notify " +"MathWorks immediately if you believe the key is exposed or compromised. To " +"obtain a key for your course, or to report an issue, please contact " +"moocsupport@mathworks.com" +msgstr "" +"请输入由 MathWorks 提供的、用于访问 MATLAB 宿主服务的 API Key 。请保证该 API Key " +"在指定的一段时间内由本课程独占使用,不要与其他课程共享该 API Key 。如果您确认 API Key 泄露或受损,请立刻通知 MathWorks " +"。要为您的课程获取 API Key 或报告问题,请联系 moocsupport@mathworks.com" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Group Configurations" +msgstr "组配置" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter the configurations that govern how students are grouped together." +msgstr "请输入学生分组的标准。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enable video caching system" +msgstr "启用视频缓存系统" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, video caching will be used for HTML5 videos." +msgstr "请输入true或者false。如果输入true,HTML5的视频将被缓存。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enable video auto-advance" +msgstr "自动播放下一个视频" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Specify whether to show an auto-advance button in videos. If the student " +"clicks it, when the last video in a unit finishes it will automatically move" +" to the next unit and autoplay the first video." +msgstr "" +"是否在视频中显示自动播放下一个视频按钮。如果学员点击该按钮,则当一个单元内的视频播放完成时,会自动跳转至下一个单元并播放该单元的第一个视频。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Video Pre-Roll" +msgstr "Video Pre-Roll" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +#, python-brace-format +msgid "" +"Identify a video, 5-10 seconds in length, to play before course videos. " +"Enter the video ID from the Video Uploads page and one or more transcript " +"files in the following format: {format}. For example, an entry for a video " +"with two transcripts looks like this: {example}" +msgstr "" +"课程视频前指定一个 5-10 秒的视频。从 Video Uploads 中输入 Video " +"ID,以及一个或多个字幕档,以下面的格式:{format}。例如,使用两个字幕档的一段视频如同: {example}" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Show Reset Button for Problems" +msgstr "为问题显示重置按钮" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, problems in the course default to always " +"displaying a 'Reset' button. You can override this in each problem's " +"settings. All existing problems are affected when this course-wide setting " +"is changed." +msgstr "" +"输入true或false。为true时,课程中的问题总是默认显示一个“重置”按钮,您可以在每个问题的设置中重设。当该课程范围内的设置改变时,所有已存在的问题都将受影响。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Enable Student Notes" +msgstr "启用学生笔记" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, students can use the Student Notes feature." +msgstr "输入true或false。为true时,学生可以使用学生笔记特性。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Indicates whether Student Notes are visible in the course. Students can also" +" show or hide their notes in the courseware." +msgstr "表明学生笔记是否在课程中可见。学生也可以在课件中显示或隐藏他们的笔记。" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "Tag this module as part of an Entrance Exam section" +msgstr "标记该模块为入学考试的部分" + +#: common/lib/xmodule/xmodule/modulestore/inheritance.py +msgid "" +"Enter true or false. If true, answer submissions for problem modules will be" +" considered in the Entrance Exam scoring/gating algorithm." +msgstr "输入true或false。若为true,问题模块的答案提交将会被考虑在入学考试的得分/控制算法中。" + +#: common/lib/xmodule/xmodule/partitions/partitions_service.py +#: cms/templates/group_configurations.html +msgid "Enrollment Track Groups" +msgstr "选课记录组" + +#: common/lib/xmodule/xmodule/partitions/partitions_service.py +msgid "Partition for segmenting users by enrollment track" +msgstr "通过选课记录划分用户的分区" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Whether this student has voted on the poll" +msgstr "这个学生是否已经投票" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Student answer" +msgstr "学生答案" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Poll answers from all students" +msgstr "来自所有学生的轮询" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Poll answers from xml" +msgstr "来自 xml 的投票选项" + +#: common/lib/xmodule/xmodule/poll_module.py +msgid "Poll question" +msgstr "投票问题" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Enter the date by which problems are due." +msgstr "输入问题的截止日期。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Hide sequence content After Due Date" +msgstr "截止日期后隐藏序列内容" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"If set, the sequence content is hidden for non-staff users after the due " +"date has passed." +msgstr "如果设置此项,那么非工作人员用户将无法再截止日期过后查看后续内容。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Entrance Exam" +msgstr "是入学考试" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"Tag this course module as an Entrance Exam. Note, you must enable Entrance " +"Exams for this course setting to take effect." +msgstr "标记该课程模块作为入学考试。注意,您必须开启此课程设置的入学考试功能才可生效。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Time Limited" +msgstr "时间是否受限" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This setting indicates whether students have a limited time to view or " +"interact with this courseware component." +msgstr "该设置表明学生是否有一段有限的时间去查看或与课件组件交互。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Time Limit in Minutes" +msgstr "时间限制在几分钟内" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"The number of minutes available to students for viewing or interacting with " +"this courseware component." +msgstr "学生可查看或与课件交互的时间(分钟)。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Proctoring Enabled" +msgstr "是否启动监考" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "This setting indicates whether this exam is a proctored exam." +msgstr "该设置表明这场考试是否有人监考。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Software Secure Review Rules" +msgstr "软体安全审查规则" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This setting indicates what rules the proctoring team should follow when " +"viewing the videos." +msgstr "此设定表示在浏览视频时,团队必须遵循监考的规则。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "Is Practice Exam" +msgstr "是否是模拟考试" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This setting indicates whether this exam is for testing purposes only. " +"Practice exams are not verified." +msgstr "该设置表明这场考试是否仅用于测试目的。模拟考试未经过身份认证。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This subsection is unlocked for learners when they meet the prerequisite " +"requirements." +msgstr "满足先修条件的学员可解锁此节内容。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "This exam is hidden from the learner." +msgstr "本次考试对学员隐藏。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"Because the course has ended, this assignment is hidden from the learner." +msgstr "由于课程已结束,所以此学员无法查看此作业。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"Because the due date has passed, this assignment is hidden from the learner." +msgstr "由于已超过截止日期,所以学员无法查看此作业。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"This section is a prerequisite. You must complete this section in order to " +"unlock additional content." +msgstr "此章内容为先修条件,您必须先完成此章学习才可以解锁额外内容。" + +#: common/lib/xmodule/xmodule/seq_module.py +msgid "" +"A list summarizing what students should look forward to in this section." +msgstr "此章的内容概况列表。" + +#: common/lib/xmodule/xmodule/split_test_module.py +#, python-brace-format +msgid "Group ID {group_id}" +msgstr "组号{group_id}" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Not Selected" +msgstr "未选中" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "The display name for this component. (Not shown to learners)" +msgstr "此组件的显示名称(学员不可见)。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Content Experiment" +msgstr "实验内容" + +#: common/lib/xmodule/xmodule/split_test_module.py +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"The list of group configurations for partitioning students in content " +"experiments." +msgstr "在内容实验中学生分组的组配置列表。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The configuration defines how users are grouped for this content experiment." +" Caution: Changing the group configuration of a student-visible experiment " +"will impact the experiment data." +msgstr "该配置定义了用户如何为该内容实验分组。谨记:改变一个学生可见实验的组配置会影响实验数据。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Group Configuration" +msgstr "组配置" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Which child module students in a particular group_id should see" +msgstr "哪个子模块学生将会被特別的gouup_id所检视" + +#: common/lib/xmodule/xmodule/split_test_module.py +#, python-brace-format +msgid "{group_name} (inactive)" +msgstr "{group_name} (未激活)" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "The experiment is not associated with a group configuration." +msgstr "实验未与任何群组设定关联。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Select a Group Configuration" +msgstr "选择一个组别配置" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The experiment uses a deleted group configuration. Select a valid group " +"configuration or delete this experiment." +msgstr "该实验使用了一个已删除的组配置。请选择一个有效的组配置或删除该实验。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The experiment uses a group configuration that is not supported for " +"experiments. Select a valid group configuration or delete this experiment." +msgstr "该实验使用了一个实验不支持的组配置。请选择一个有效的组配置或删除该实验。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The experiment does not contain all of the groups in the configuration." +msgstr "该实验不包含配置中所有的组。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "Add Missing Groups" +msgstr "增加丢失的分组" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "" +"The experiment has an inactive group. Move content into active groups, then " +"delete the inactive group." +msgstr "该实验有一个不活跃的小组。将其内容移至活跃的小组中,然后删除该不活跃的小组。" + +#: common/lib/xmodule/xmodule/split_test_module.py +msgid "This content experiment has issues that affect content visibility." +msgstr "该内容实验可能影响内容可见性。" + +#: common/lib/xmodule/xmodule/tabs.py +msgid "External Discussion" +msgstr "外部讨论" + +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +msgid "Home" +msgstr "主页" + +#: common/lib/xmodule/xmodule/tabs.py lms/djangoapps/courseware/tabs.py +#: lms/djangoapps/courseware/views/views.py +#: lms/djangoapps/shoppingcart/reports.py +#: openedx/features/course_experience/__init__.py +#: cms/templates/widgets/header.html lms/templates/help_modal.html +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/courseware.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Course" +msgstr "课程" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +#, python-brace-format +msgid "" +"Can't receive transcripts from Youtube for {youtube_id}. Status code: " +"{status_code}." +msgstr "不能从Youtube接受{youtube_id}的成绩单。状态码为:{status_code}。" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "We support only SubRip (*.srt) transcripts format." +msgstr "我们只支持SubRip (*.srt)格式的字幕。" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +#, python-brace-format +msgid "" +"Something wrong with SubRip transcripts file during parsing. Inner message " +"is {error_message}" +msgstr "解析SubRip字幕文件时出错。内部消息是{error_message}" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +msgid "Something wrong with SubRip transcripts file during parsing." +msgstr "解析SubRip字幕文件时出错。" + +#: common/lib/xmodule/xmodule/video_module/transcripts_utils.py +#, python-brace-format +msgid "{exception_message}: Can't find uploaded transcripts: {user_filename}" +msgstr "{exception_message}: 找不到上传的成绩单: {user_filename}" + +#: common/lib/xmodule/xmodule/video_module/video_handlers.py +msgid "Language is required." +msgstr "语言是必填项" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "Basic" +msgstr "基本" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +#, python-brace-format +msgid "There is no transcript file associated with the {lang} language." +msgid_plural "" +"There are no transcript files associated with the {lang} languages." +msgstr[0] "没有与 {lang} 相关联的字幕文件。" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "" +"The URL for your video. This can be a YouTube URL or a link to an .mp4, " +".ogg, or .webm video file hosted elsewhere on the Internet." +msgstr "" +"该地址指向视频链接。这可能是一个YouTube的网址或者一个存储于其他互联网服务器的 .mp4, .ogg, 或者.webm 格式视频的链接地址。" + +#: common/lib/xmodule/xmodule/video_module/video_module.py +msgid "Default Video URL" +msgstr "默认的视频 URL" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Component Display Name" +msgstr "组件显示名称" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Current position in the video." +msgstr "视频的当前位置。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Optional, for older browsers: the YouTube ID for the normal speed video." +msgstr "可选,针对较早的浏览器:正常速度视频的 YouTube ID。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "YouTube ID" +msgstr "YouTube ID" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Optional, for older browsers: the YouTube ID for the .75x speed video." +msgstr "可选,针对较早的浏览器:0.75 倍速视频的 YouTube ID。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "YouTube ID for .75x speed" +msgstr "YouTube ID(0.75 倍速)" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Optional, for older browsers: the YouTube ID for the 1.25x speed video." +msgstr "可选,针对较早的浏览器:1.25 倍速视频的 YouTube ID。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "YouTube ID for 1.25x speed" +msgstr "YouTube ID(1.25 倍速)" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Optional, for older browsers: the YouTube ID for the 1.5x speed video." +msgstr "可选,针对较早的浏览器:1.5 倍速视频的 YouTube ID。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "YouTube ID for 1.5x speed" +msgstr "YouTube ID(1.5 倍速)" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Time you want the video to start if you don't want the entire video to play." +" Not supported in the native mobile app: the full video file will play. " +"Formatted as HH:MM:SS. The maximum value is 23:59:59." +msgstr "" +"如果不希望播放整个视频,则在此提供视频播放的开始时间。该操作在本地的移动应用上不支持,即播放完整视频。格式为:HH:MM:SS,最大值为23:59:59。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video Start Time" +msgstr "视频开始时间" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Time you want the video to stop if you don't want the entire video to play. " +"Not supported in the native mobile app: the full video file will play. " +"Formatted as HH:MM:SS. The maximum value is 23:59:59." +msgstr "" +"如果不希望播放整个视频,则在此提供视频播放的结束时间。此操作在本地的移动应用上不支持,即播放完整视频。格式为:HH:MM:SS,最大值为23:59:59。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video Stop Time" +msgstr "视频结束时间" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "The external URL to download the video." +msgstr "下载视频的外部 URL。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Download Video" +msgstr "下载视频" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Allow students to download versions of this video in different formats if " +"they cannot use the edX video player or do not have access to YouTube. You " +"must add at least one non-YouTube URL in the Video File URLs field." +msgstr "" +"如果学生无法使用 edX 视频播放器,或者不能访问 YouTube,则可以允许学生以不同的格式下载该视频。为此,必须在“视频文件 " +"URL”域中添加至少一个非 YouTube 的视频 URL。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video Download Allowed" +msgstr "允许下载视频" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"The URL or URLs where you've posted non-YouTube versions of the video. Each " +"URL must end in .mpeg, .mp4, .ogg, or .webm and cannot be a YouTube URL. " +"(For browser compatibility, we strongly recommend .mp4 and .webm format.) " +"Students will be able to view the first listed video that's compatible with " +"the student's computer. To allow students to download these videos, set " +"Video Download Allowed to True." +msgstr "" +"非 YouTube 版本的视频 URL。每个 URL 应当以 .mpeg、.mp4、.ogg 或者 .webm 结尾,并且不得为 YouTube " +"URL。(为了浏览器的兼容性考虑,我们强烈建议您使用 .mp4 和 .webm " +"格式。)每个学生将看到列表中第一个与他自己的计算机兼容的视频。如果想让学生下载这些视频,请将“允许下载视频”设置为“True”。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video File URLs" +msgstr "视频文件 URL" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"By default, students can download an .srt or .txt transcript when you set " +"Download Transcript Allowed to True. If you want to provide a downloadable " +"transcript in a different format, we recommend that you upload a handout by " +"using the Upload a Handout field. If this isn't possible, you can post a " +"transcript file on the Files & Uploads page or on the Internet, and then add" +" the URL for the transcript here. Students see a link to download that " +"transcript below the video." +msgstr "" +"默认情况下,当“允许下载字幕”设置为“True”的时候,学生可以下载 .srt 或者 .txt " +"格式的字幕。如果您需要提供不同文件格式的字幕供学生下载,我们建议您首先考虑使用“上传讲义”域上传您的讲义;其次您可以将字幕文件上传至“文件&上传”页面或者" +" Internet,并在这里添加下载字幕的 URL。学生们会在视频的下方看到一个下载字幕的链接。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Downloadable Transcript URL" +msgstr "字幕下载 URL" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Allow students to download the timed transcript. A link to download the file" +" appears below the video. By default, the transcript is an .srt or .txt " +"file. If you want to provide the transcript for download in a different " +"format, upload a file by using the Upload Handout field." +msgstr "" +"允许学生下载字幕。下载链接会出现在视频的下方。默认情况下,下载的字幕是一个 .srt 或者 .txt " +"文件。如果您需要提供不同文件格式的字幕下载,使用“上传讲义”域上传该文件。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Download Transcript Allowed" +msgstr "允许下载字幕" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"The default transcript for the video, from the Default Timed Transcript " +"field on the Basic tab. This transcript should be in English. You don't have" +" to change this setting." +msgstr "视频的默认字幕,来自于“基本”面板的“默认字幕”域。该字幕应当是英语字幕。您不必修改这个设置。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Default Timed Transcript" +msgstr "默认字幕" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Specify whether the transcripts appear with the video by default." +msgstr "指定是否默认就显示字幕。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Show Transcript" +msgstr "显示字幕" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Add transcripts in different languages. Click below to specify a language " +"and upload an .srt transcript file for that language." +msgstr "添加不同语言的字幕。单击下方以指定语言并上传该语言对应的 .srt 字幕文件。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Transcript Languages" +msgstr "字幕语言" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Preferred language for transcript." +msgstr "首选的字幕语言。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Preferred language for transcript" +msgstr "首选的字幕语言" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Transcript file format to download by user." +msgstr "用户下载的字幕文件格式。" + +#. Translators: This is a type of file used for captioning in the video +#. player. +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "SubRip (.srt) file" +msgstr "字幕 (.srt) 文件" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Text (.txt) file" +msgstr "文本 (.txt) 文件" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "The last speed that the user specified for the video." +msgstr "该视频上一次用户指定的速度。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "The default speed for the video." +msgstr "该视频的默认速度。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Specify whether to advance automatically to the next unit when the video " +"ends." +msgstr "设置是否自动播放下一单元的视频" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Specify whether YouTube is available for the user." +msgstr "指定 YouTube 是否对用户可用。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Upload a handout to accompany this video. Students can download the handout " +"by clicking Download Handout under the video." +msgstr "上传与该视频相关的讲义。学生可以单击视频下方的“下载讲义”按钮来下载该讲义。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Upload Handout" +msgstr "上传讲义" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"Specify whether access to this video is limited to browsers only, or if it " +"can be accessed from other applications including mobile apps." +msgstr "指定是否限制为只有浏览器才能访问该视频,或可以再其他应用上访问,包括移动应用。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Video Available on Web Only" +msgstr "视频只在网页版提供" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "" +"If you were assigned a Video ID by edX for the video to play in this " +"component, enter the ID here. In this case, do not enter values in the " +"Default Video URL, the Video File URLs, and the YouTube ID fields. If you " +"were not assigned a Video ID, enter values in those other fields and ignore " +"this field." +msgstr "" +"如果您上传的视频分配了一个ID,请在此输入您的视频ID。请注意,如果您有被分配视频ID请不要输入默认视频ID,视频文件ID以及YouTube视频ID。如果您没有被分配ID请输入上述描述部分,这部分请不要填写。" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Date of the last view of the bumper" +msgstr "最近浏览片头的日期" + +#: common/lib/xmodule/xmodule/video_module/video_xfields.py +msgid "Do not show bumper again" +msgstr "不重复显示片头" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +#: lms/templates/annotatable.html lms/templates/peer_grading/peer_grading.html +msgid "Instructions" +msgstr "指令" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "" +"Add instructions to help learners understand how to use the word cloud. " +"Clear instructions are important, especially for learners who have " +"accessibility requirements." +msgstr "添加指引帮助学员使用词语云盘,清楚明了的指引对有访问要求的学员特别重要。" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Inputs" +msgstr "投入" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "" +"The number of text boxes available for learners to add words and sentences." +msgstr "学员可用输入框的数量,可添加文字与句子。" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Maximum Words" +msgstr "字数上限" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "The maximum number of words displayed in the generated word cloud." +msgstr "在生成的词语云盘中最多能显示的词语数。" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Show Percents" +msgstr "显示百分比" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Statistics are shown for entered words near that word." +msgstr "展示了临近那个单词输入的单词的统计信息。" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Whether this learner has posted words to the cloud." +msgstr "此学员是否在云盘中发布过词语" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Student answer." +msgstr "学生答案" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "All possible words from all learners." +msgstr "所有学员发布的所有词语" + +#: common/lib/xmodule/xmodule/word_cloud_module.py +msgid "Top num_top_words words for word cloud." +msgstr "词云中的最热门词汇" + +#: common/lib/xmodule/xmodule/x_module.py +#, python-brace-format +msgid "" +"{display_name} is only accessible to enrolled learners. Sign in or register," +" and enroll in this course to view it." +msgstr "{display_name} 仅供注册的学员使用。 登录或注册,并注册此课程以查看它。" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +msgid "Create Password" +msgstr "创建密码" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#, python-format +msgid "" +"You're receiving this e-mail because you requested to create a password for " +"your user account at %(platform_name)s." +msgstr "您收到此电子邮件是因为您在%(platform_name)s申请了账户密码创建" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +msgid "" +"If you didn't request this change, you can disregard this email - we have " +"not yet created your password." +msgstr "如果您没有请求该变更,请忽略本邮件——我们尚未重置您的密码。" + +#: common/templates/student/edx_ace/accountrecovery/email/body.html +msgid "Create my Password" +msgstr "创建我的密码" + +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "Please go to the following page and choose a new password:" +msgstr "请到以下页面设置新的密码:" + +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "Thanks for using our site!" +msgstr "谢谢您访问我们的网站!" + +#: common/templates/student/edx_ace/accountrecovery/email/body.txt +#: common/templates/student/edx_ace/passwordreset/email/body.txt +#, python-format +msgid "The %(platform_name)s Team" +msgstr "%(platform_name)s 团队" + +#: common/templates/student/edx_ace/accountrecovery/email/subject.txt +#, python-format +msgid "Create password on %(platform_name)s" +msgstr "%(platform_name)s设置密码" + +#: common/templates/student/edx_ace/emailchange/email/body.html +msgid "Email Change" +msgstr "电子邮件变更" + +#: common/templates/student/edx_ace/emailchange/email/body.html +#: common/templates/student/edx_ace/emailchange/email/body.txt +#, python-format +msgid "" +"We received a request to change the secondary e-mail associated with your " +"%(platform_name)s account to %(new_email)s. If this is correct, please " +"confirm your new secondary e-mail address by visiting:" +msgstr "" +"我们收到了您需要将您的%(platform_name)s账号关联的电子邮箱变更为 %(new_email)s " +"的请求。如果该请求无误,请访问如下网页确认您的新电子邮件地址:" + +#: common/templates/student/edx_ace/emailchange/email/body.html +#: common/templates/student/edx_ace/emailchange/email/body.txt +#, python-format +msgid "" +"We received a request to change the e-mail associated with your " +"%(platform_name)s account from %(old_email)s to %(new_email)s. If this is " +"correct, please confirm your new e-mail address by visiting:" +msgstr "" +"我们收到了您需要将%(platform_name)s 账号的电子邮件关联由 %(old_email)s 变更为 %(new_email)s " +"的请求。如果该请求无误,请访问如下网页确认您的新电子邮件地址:" + +#: common/templates/student/edx_ace/emailchange/email/body.html +msgid "Confirm Email Change" +msgstr "确认电子邮箱变更" + +#: common/templates/student/edx_ace/emailchange/email/body.html +#: common/templates/student/edx_ace/emailchange/email/body.txt +#, python-format +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the %(platform_name)s web site." +msgstr "" +"如果您没发出过该请求,您可以忽略该邮件;您将不会收到其他任何我们的电子邮件。请不要回复此电子邮件;如果您需要帮助,请访问%(platform_name)s网站。" + +#: common/templates/student/edx_ace/emailchange/email/subject.txt +#, python-format +msgid "Request to change %(platform_name)s account secondary e-mail" +msgstr "变更%(platform_name)s账号电子邮箱的请求" + +#: common/templates/student/edx_ace/emailchange/email/subject.txt +#, python-format +msgid "Request to change %(platform_name)s account e-mail" +msgstr "变更%(platform_name)s账号电子邮件的请求" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: lms/templates/forgot_password_modal.html +msgid "Password Reset" +msgstr "密码重置" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +#, python-format +msgid "" +"You're receiving this email because you requested a password reset for your " +"user account at %(platform_name)s." +msgstr "您在%(platform_name)s申请了账号密码重置。" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +#, python-format +msgid "" +"However, there is currently no user account associated with your email " +"address: %(email_address)s." +msgstr "您的邮箱地址%(email_address)s暂时没有与任何账号相关联。" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "If you did not request this change, you can ignore this email." +msgstr "如果您没有申请作出更改,请忽略此邮件。" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +#: common/templates/student/edx_ace/passwordreset/email/body.txt +msgid "" +"If you didn't request this change, you can ignore this email - we have not " +"yet reset your password." +msgstr "如果您没有请求该变更,请忽略本邮件——我们尚未重置您的密码。" + +#: common/templates/student/edx_ace/passwordreset/email/body.html +msgid "Change my Password" +msgstr "修改我的密码" + +#: common/templates/student/edx_ace/passwordreset/email/subject.txt +#, python-format +msgid "Password reset on %(platform_name)s" +msgstr "%(platform_name)s重置密码" + +#: lms/djangoapps/badges/events/course_complete.py +#, python-brace-format +msgid "" +"Completed the course \"{course_name}\" ({course_mode}, {start_date} - " +"{end_date})" +msgstr "已修完课程“{course_name}”({course_mode}, {start_date} - {end_date})" + +#: lms/djangoapps/badges/events/course_complete.py +#, python-brace-format +msgid "Completed the course \"{course_name}\" ({course_mode})" +msgstr "已修完课程“{course_name}”({course_mode})" + +#: lms/djangoapps/badges/models.py +msgid "The badge image must be square." +msgstr "徽章图片必须为正方形。" + +#: lms/djangoapps/badges/models.py +msgid "The badge image file size must be less than 250KB." +msgstr "徽章图片的文件大小必须小于250KB。" + +#: lms/djangoapps/badges/models.py +msgid "This value must be all lowercase." +msgstr "该值必须全部为小写字母。" + +#: lms/djangoapps/badges/models.py +msgid "The course mode for this badge image. For example, \"verified\" or \"honor\"." +msgstr "该课程模式的徽章图像。例如,“合格”或“荣誉”。" + +#: lms/djangoapps/badges/models.py +msgid "" +"Badge images must be square PNG files. The file size should be under 250KB." +msgstr "徽章图片必须为正方形的PNG文件,且文件大小应小于250KB。" + +#: lms/djangoapps/badges/models.py +msgid "" +"Set this value to True if you want this image to be the default image for " +"any course modes that do not have a specified badge image. You can have only" +" one default image." +msgstr "对于那些没有指定徽章图片的课程模式,如果您想设置此图为其默认图片,则将该值设为True。您只能设置一张默认图片。" + +#: lms/djangoapps/badges/models.py +msgid "There can be only one default image." +msgstr "只能有一张默认图片。" + +#: lms/djangoapps/badges/models.py +msgid "" +"On each line, put the number of completed courses to award a badge for, a " +"comma, and the slug of a badge class you have created that has the issuing " +"component 'openedx__course'. For example: 3,enrolled_3_courses" +msgstr "" +"在每一行上,列出为了获得徽章的已完成课程的数目、一个逗号以及您创建的具有发行组件“openedx__course”的徽章类别标语。例如:3, " +"已登记_3_个课程" + +#: lms/djangoapps/badges/models.py +msgid "" +"On each line, put the number of enrolled courses to award a badge for, a " +"comma, and the slug of a badge class you have created that has the issuing " +"component 'openedx__course'. For example: 3,enrolled_3_courses" +msgstr "" +"在每一行上,列出为了获得徽章的已登记课程的数目、一个逗号以及您创建的具有发行组件“openedx__course”的徽章类别标语。例如:3, " +"已登记_3_个课程" + +#: lms/djangoapps/badges/models.py +msgid "" +"Each line is a comma-separated list. The first item in each line is the slug" +" of a badge class you have created that has an issuing component of " +"'openedx__course'. The remaining items in each line are the course keys the " +"learner needs to complete to be awarded the badge. For example: " +"slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" +msgstr "" +"每一行都是以逗号分隔的列表。每一行的第一项是您创建的具有发行组件“openedx__course”的徽章类别标语。每一行的其余项是学员为了获得徽章需要完成的课程要领。例如:slug_for_compsci_courses_group_badge,course-v1:CompSci+Course+First,course-v1:CompsSci+Course+Second" + +#: lms/djangoapps/badges/models.py +msgid "Please check the syntax of your entry." +msgstr "请检查您的条目的句法。" + +#: lms/djangoapps/branding/api.py +msgid "Take free online courses at EliteMBA.cn" +msgstr "在EliteMBA.cn上学习免费课程" + +#. Translators: 'EdX', 'edX', and 'Open edX' are trademarks of 'edX Inc.'. +#. Please do not translate any of these trademarks and company names. +#: lms/djangoapps/branding/api.py +#, python-brace-format +msgid "" +"© {org_name}. All rights reserved except where noted. EdX, Open edX and " +"their respective logos are trademarks or registered trademarks of edX Inc." +msgstr "© {org_name}。版权所有,除非另有注明。EdX、Open edX和他们各自的标识都是edX Inc的商标或注册商标。" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: 'Open edX' is a brand, please keep this untranslated. +#. See http://openedx.org for more information. +#: lms/djangoapps/branding/api.py cms/templates/widgets/footer.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +msgid "Powered by Open edX" +msgstr "Powered by Open edX" + +#: lms/djangoapps/branding/api.py lms/templates/static_templates/blog.html +msgid "Blog" +msgstr "博客" + +#: lms/djangoapps/branding/api.py cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "Contact Us" +msgstr "联系我们" + +#: lms/djangoapps/branding/api.py +msgid "Help Center" +msgstr "帮助中心" + +#: lms/djangoapps/branding/api.py +#: lms/templates/static_templates/media-kit.html +msgid "Media Kit" +msgstr "多媒体工具箱" + +#: lms/djangoapps/branding/api.py lms/templates/static_templates/donate.html +msgid "Donate" +msgstr "捐助" + +#: lms/djangoapps/branding/api.py lms/templates/footer.html +#: lms/templates/static_templates/about.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "About" +msgstr "关于我们" + +#: lms/djangoapps/branding/api.py +#, python-brace-format +msgid "{platform_name} for Business" +msgstr "{platform_name} 为商业" + +#: lms/djangoapps/branding/api.py +msgid "News" +msgstr "新闻" + +#: lms/djangoapps/branding/api.py lms/templates/static_templates/contact.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "Contact" +msgstr "联系我们" + +#: lms/djangoapps/branding/api.py +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/about.html +msgid "Careers" +msgstr "招聘" + +#: lms/djangoapps/branding/api.py lms/djangoapps/certificates/views/webview.py +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +msgid "Terms of Service & Honor Code" +msgstr "服务条款 & 荣誉准则" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: A 'Privacy Policy' is a legal document/statement describing a +#. website's use of personal information +#: lms/djangoapps/branding/api.py lms/djangoapps/certificates/views/webview.py +#: cms/templates/widgets/footer.html +#: lms/templates/static_templates/privacy.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +#: themes/elitemba-theme/lms/templates/static_templates/privacy.html +#: themes/elitemba-theme/lms/templates/static_templates/privacy_policy.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Privacy Policy" +msgstr "隐私政策" + +#: lms/djangoapps/branding/api.py +msgid "Accessibility Policy" +msgstr "可访问策略" + +#: lms/djangoapps/branding/api.py +msgid "Sitemap" +msgstr "网站导航" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This is a legal document users must agree to +#. in order to register a new account. +#: lms/djangoapps/branding/api.py openedx/core/djangoapps/user_api/api.py +#: cms/templates/widgets/footer.html lms/templates/static_templates/tos.html +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Terms of Service" +msgstr "服务条款" + +#: lms/djangoapps/branding/api.py +msgid "Affiliates" +msgstr "附属机构" + +#: lms/djangoapps/branding/api.py +msgid "Open edX" +msgstr "Open edX" + +#: lms/djangoapps/branding/api.py +msgid "Trademark Policy" +msgstr "商标政策" + +#: lms/djangoapps/branding/api.py +#, python-brace-format +msgid "Download the {platform_name} mobile app from the Apple App Store" +msgstr "从Apple App Store下载{platform_name}的移动客户端" + +#: lms/djangoapps/branding/api.py +#, python-brace-format +msgid "Download the {platform_name} mobile app from Google Play" +msgstr "从Google Play下载{platform_name}的移动客户端" + +#. Translators: Bulk email from address e.g. ("Physics 101" Course Staff) +#: lms/djangoapps/bulk_email/tasks.py +#, python-brace-format +msgid "\"{course_title}\" Course Staff" +msgstr "\"{course_title}\" 课程员工" + +#: lms/djangoapps/ccx/plugins.py +msgid "CCX Coach" +msgstr "CCX指导" + +#: lms/djangoapps/ccx/utils.py +msgid "" +"A CCX can only be created on this course through an external service. " +"Contact a course admin to give you access." +msgstr "CCX 仅可以通过外部服务在此课程上创建。联系课程管理员授予您访问权限。" + +#: lms/djangoapps/ccx/utils.py +#, python-brace-format +msgid "The course is full: the limit is {max_student_enrollments_allowed}" +msgstr "此门课已额满:人数限制为 {max_student_enrollments_allowed}" + +#: lms/djangoapps/ccx/views.py +msgid "You must be a CCX Coach to access this view." +msgstr "您需要成为CCX指导才能访问该视图。" + +#: lms/djangoapps/ccx/views.py +msgid "You must be the coach for this ccx to access this view" +msgstr "您必须要成为该CCX的指导才能够访问该视图" + +#: lms/djangoapps/ccx/views.py +msgid "" +"You cannot create a CCX from a course using a deprecated id. Please create a" +" rerun of this course in the studio to allow this action." +msgstr "您不能使用一个过时的ID从课程中创建CCX,请在studio中创建该课程的重启以允许此操作。" + +#: lms/djangoapps/certificates/models.py wiki/admin.py wiki/models/article.py +msgid "created" +msgstr "创建" + +#. Translators: This is a past-tense verb that is used for task action +#. messages. +#: lms/djangoapps/certificates/models.py +msgid "regenerated" +msgstr "重新产生" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/certificates/models.py +#: lms/djangoapps/instructor_task/tasks.py +msgid "generated" +msgstr "已生成" + +#. Translators: This string represents task was executed for all learners. +#: lms/djangoapps/certificates/models.py +msgid "All learners" +msgstr "所有学习者" + +#. Translators: This string represents task was executed for students having +#. exceptions. +#: lms/djangoapps/certificates/models.py +msgid "For exceptions" +msgstr "例外" + +#: lms/djangoapps/certificates/models.py +msgid "" +"A human-readable description of the example certificate. For example, " +"'verified' or 'honor' to differentiate between two types of certificates." +msgstr "范例证书的可读说明。例如,“合格”或“荣誉\"两类证书区分。" + +#: lms/djangoapps/certificates/models.py +msgid "" +"A unique identifier for the example certificate. This is used when we " +"receive a response from the queue to determine which example certificate was" +" processed." +msgstr "示例证书的唯一标识符。可用于当我们从队列中得到响应以决定哪个示例证书已被处理。" + +#: lms/djangoapps/certificates/models.py +msgid "" +"An access key for the example certificate. This is used when we receive a " +"response from the queue to validate that the sender is the same entity we " +"asked to generate the certificate." +msgstr "范例证书会有访问的金钥。我们接收到回应是用来检核与验证,与我们申请产生证书的验证是相同的。" + +#: lms/djangoapps/certificates/models.py +msgid "The full name that will appear on the certificate." +msgstr "将显示在证书上的全名" + +#: lms/djangoapps/certificates/models.py +msgid "The template file to use when generating the certificate." +msgstr "当生成证书时使用的模板文件。" + +#: lms/djangoapps/certificates/models.py +msgid "The status of the example certificate." +msgstr "示例证书状态。" + +#: lms/djangoapps/certificates/models.py +msgid "The reason an error occurred during certificate generation." +msgstr "生成证书过程中发生错误的原因" + +#: lms/djangoapps/certificates/models.py +msgid "The download URL for the generated certificate." +msgstr "已生成证书的下载URL。" + +#: lms/djangoapps/certificates/models.py +msgid "Name of template." +msgstr "模板名称。" + +#: lms/djangoapps/certificates/models.py +msgid "Description and/or admin notes." +msgstr "叙述与/或管理员笔记" + +#: lms/djangoapps/certificates/models.py +msgid "Django template HTML." +msgstr "Django模板HTML" + +#: lms/djangoapps/certificates/models.py +msgid "Organization of template." +msgstr "模板的组织" + +#: lms/djangoapps/certificates/models.py +msgid "The course mode for this template." +msgstr "该模板的课程模式。" + +#: lms/djangoapps/certificates/models.py +msgid "On/Off switch." +msgstr "开/关切换" + +#: lms/djangoapps/certificates/models.py +msgid "Description of the asset." +msgstr "该资源的描述。" + +#: lms/djangoapps/certificates/models.py +msgid "Asset file. It could be an image or css file." +msgstr "资源档。可以是一张图片或css文件。" + +#: lms/djangoapps/certificates/models.py +msgid "" +"Asset's unique slug. We can reference the asset in templates using this " +"value." +msgstr "Asset's unique slug.我们可以参考使用这个参数用在这个模版。" + +#: lms/djangoapps/certificates/views/support.py +msgid "user is not given." +msgstr "没有提供使用者" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "user '{user}' does not exist" +msgstr "使用者'{user}'不存在" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "Course id '{course_id}' is not valid" +msgstr "无效之课程id '{course_id}'" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "The course does not exist against the given key '{course_key}'" +msgstr "本课程不存在指定的金钥'{course_key}'" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "User {username} does not exist" +msgstr "使用者 {username} 不存在。" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "{course_key} is not a valid course key" +msgstr "{course_key} 不是有效的课程密钥。" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "The course {course_key} does not exist" +msgstr "{course_key} 课程不存在。" + +#: lms/djangoapps/certificates/views/support.py +#, python-brace-format +msgid "User {username} is not enrolled in the course {course_key}" +msgstr "使用者 {username} 还没有注册 {course_key} 课程。" + +#: lms/djangoapps/certificates/views/support.py +msgid "An unexpected error occurred while regenerating certificates." +msgstr "在重新产生证书时,发生了一个未预期的错误。" + +#. Translators: This text describes the 'Honor' course certificate type. +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"An {cert_type} certificate signifies that a learner has agreed to abide by " +"the honor code established by {platform_name} and has completed all of the " +"required tasks for this course under its guidelines." +msgstr "" +"An {cert_type} 证书象征著学习者已同意由{platform_name}建立及遵守荣誉守则,并已经完成根据此门课之指引完成所有任务。" + +#. Translators: This text describes the 'ID Verified' course certificate +#. type, which is a higher level of +#. verification offered by edX. This type of verification is useful for +#. professional education/certifications +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"A {cert_type} certificate signifies that a learner has agreed to abide by " +"the honor code established by {platform_name} and has completed all of the " +"required tasks for this course under its guidelines. A {cert_type} " +"certificate also indicates that the identity of the learner has been checked" +" and is valid." +msgstr "" +"A {cert_type} 证书象征著学习者已同意由{platform_name}建立及遵守荣誉守则,并已经完成根据此门课之指引完成所有任务。A " +"{cert_type} 证书也意味着学习者的身份已被确认且是有效的。" + +#. Translators: This text describes the 'XSeries' course certificate type. +#. An XSeries is a collection of +#. courses related to each other in a meaningful way, such as a specific topic +#. or theme, or even an organization +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"An {cert_type} certificate demonstrates a high level of achievement in a " +"program of study, and includes verification of the student's identity." +msgstr "一张 {cert_type} 证书证明学习课程高水準的成果,并包括验证学生的身份。" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{month} {day}, {year}" +msgstr "{year} {month} {day}" + +#. Translators: This text represents the verification of the certificate +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"This is a valid {platform_name} certificate for {user_name}, who " +"participated in {partner_short_name} {course_number}" +msgstr "" +"此为有效的 {platform_name} 证书给{user_name},并参与了{partner_short_name}{course_number}" + +#. Translators: This text is bound to the HTML 'title' element of the page +#. and appears in the browser title bar +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{partner_short_name} {course_number} Certificate | {platform_name}" +msgstr "{partner_short_name} {course_number} 修课证明 | {platform_name}" + +#. Translators: This text fragment appears after the student's name +#. (displayed in a large font) on the certificate +#. screen. The text describes the accomplishment represented by the +#. certificate information displayed to the user +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"successfully completed, received a passing grade, and was awarded this " +"{platform_name} {certificate_type} Certificate of Completion in " +msgstr "完成课程、测验及格,并荣获该{platform_name} {certificate_type} 之证书" + +#. Translators: This text describes the purpose (and therefore, value) of a +#. course certificate +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"{platform_name} acknowledges achievements through certificates, which are " +"awarded for course activities that {platform_name} students complete." +msgstr "{platform_name}借由证书承认已完成修习课程,该课之修课证书证明学生完成 {platform_name}课程活动。" + +#. Translators: 'All rights reserved' is a legal term used in copyrighting to +#. protect published content +#: lms/djangoapps/certificates/views/webview.py +msgid "All rights reserved" +msgstr "保留所有权利" + +#. Translators: This text is bound to the HTML 'title' element of the page +#. and appears +#. in the browser title bar when a requested certificate is not found or +#. recognized +#: lms/djangoapps/certificates/views/webview.py +msgid "Invalid Certificate" +msgstr "无效的证书" + +#. Translators: This line appears as a byline to a header image and describes +#. the purpose of the page +#: lms/djangoapps/certificates/views/webview.py +msgid "Certificate Validation" +msgstr "证书认可" + +#. Translators: Accomplishments describe the awards/certifications obtained by +#. students on this platform +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "About {platform_name} Accomplishments" +msgstr "关于{platform_name}的成就" + +#. Translators: This line appears on the page just before the generation date +#. for the certificate +#: lms/djangoapps/certificates/views/webview.py +msgid "Issued On" +msgstr "签发日期" + +#. Translators: The Certificate ID Number is an alphanumeric value unique to +#. each individual certificate +#: lms/djangoapps/certificates/views/webview.py +msgid "Certificate ID Number" +msgstr "证书ID编号" + +#: lms/djangoapps/certificates/views/webview.py +#: lms/templates/certificates/invalid.html +#, python-brace-format +msgid "About {platform_name} Certificates" +msgstr "关于 {platform_name} 认证证书" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "How {platform_name} Validates Student Certificates" +msgstr "{platform_name}如何验证学生证书" + +#. Translators: This text describes the validation mechanism for a +#. certificate file (known as GPG security) +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"Certificates issued by {platform_name} are signed by a gpg key so that they " +"can be validated independently by anyone with the {platform_name} public " +"key. For independent verification, {platform_name} uses what is called a " +"\"detached signature\""\"." +msgstr "" +"通过 {platform_name} 颁发证书由gpg密钥簽署,使他们可以被任何人与 " +"{platform_name}公钥独立验证。对于独立核查,{platform_name}使用所谓的\"detached " +"signature\""\"。" + +#: lms/djangoapps/certificates/views/webview.py +msgid "Validate this certificate for yourself" +msgstr "为自己验证此证书" + +#. Translators: This text describes (at a high level) the mission and charter +#. the edX platform and organization +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{platform_name} offers interactive online classes and MOOCs." +msgstr "{platform_name}提供线上互动课程和MOOCs课程。" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "About {platform_name}" +msgstr "关于{platform_name}" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "Learn more about {platform_name}" +msgstr "了解更多关于{platform_name}的信息" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "Learn with {platform_name}" +msgstr "了解{platform_name}" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "Work at {platform_name}" +msgstr "工作于{platform_name}" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "Contact {platform_name}" +msgstr "联系{platform_name}" + +#. Translators: This text appears near the top of the certficate and +#. describes the guarantee provided by edX +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{platform_name} acknowledges the following student accomplishment" +msgstr "{platform_name}承认以下的学生成就" + +#. Translators: This text represents the description of course +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"a course of study offered by {partner_short_name}, an online learning " +"initiative of {partner_long_name}." +msgstr "课程的学习是由 {partner_short_name}所提供,和 {partner_long_name}的主动线上学习。" + +#. Translators: This text represents the description of course +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "a course of study offered by {partner_short_name}." +msgstr "课程的学习是由 {partner_short_name}所提供。" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "I completed the {course_title} course on {platform_name}." +msgstr "我在{platform_name}上完成了{course_title}课程。" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "" +"I completed a course at {platform_name}. Take a look at my certificate." +msgstr "我已经完成了一门课在{platform_name}。检视我的证书。" + +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "More Information About {user_name}'s Certificate:" +msgstr "关于 {user_name} 证书的更多信息:" + +#. Translators: This line is displayed to a user who has completed a course +#. and achieved a certification +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "{fullname}, you earned a certificate!" +msgstr "{fullname},您已经取得证书!" + +#. Translators: This line congratulates the user and instructs them to share +#. their accomplishment on social networks +#: lms/djangoapps/certificates/views/webview.py +msgid "" +"Congratulations! This page summarizes what you accomplished. Show it off to " +"family, friends, and colleagues in your social and professional networks." +msgstr "恭喜!本页总结您所完成之项目。" + +#. Translators: This line leads the reader to understand more about the +#. certificate that a student has been awarded +#: lms/djangoapps/certificates/views/webview.py +#, python-brace-format +msgid "More about {fullname}'s accomplishment" +msgstr "了解更多有关{fullname}的成就" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/schedules/admin.py +#: lms/templates/staff_problem_info.html +#: lms/templates/api_admin/catalogs/search.html +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Username" +msgstr "用户名" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade" +msgstr "成绩" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Percent" +msgstr "百分比" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "Opened by this number of students" +msgstr "打开过的学生" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "subsections" +msgstr "节" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "Count of Students" +msgstr "学生数量" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "Percent of Students" +msgstr "学生百分比" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Score" +msgstr "分数" + +#: lms/djangoapps/class_dashboard/dashboard_data.py +msgid "problems" +msgstr "问题" + +#: lms/djangoapps/commerce/api/v1/serializers.py +#, python-brace-format +msgid "{course_id} is not a valid course key." +msgstr "{course_id} 不是有效的课程密钥。" + +#: lms/djangoapps/commerce/api/v1/serializers.py +#, python-brace-format +msgid "Course {course_id} does not exist." +msgstr "{course_id} 课程不存在。" + +#: lms/djangoapps/commerce/models.py +msgid "Use the checkout page hosted by the E-Commerce service." +msgstr "透过使用电子商务服务承载结帐页面。" + +#: lms/djangoapps/commerce/models.py +msgid "Path to course(s) checkout page hosted by the E-Commerce service." +msgstr "电子商务服务托管的课程(或多个)结帐路径。" + +#: lms/djangoapps/commerce/models.py openedx/core/djangoapps/catalog/models.py +#: openedx/core/djangoapps/credentials/models.py +#: openedx/core/djangoapps/credit/models.py +msgid "Cache Time To Live" +msgstr "快取存留时间" + +#: lms/djangoapps/commerce/models.py +#: openedx/core/djangoapps/credentials/models.py +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Specified in seconds. Enable caching by setting this to a value greater than" +" 0." +msgstr "指定为秒。借由设定这个大于0的值来启动快取。" + +#: lms/djangoapps/commerce/models.py +msgid "Path to order receipt page." +msgstr "接收订单页面的路径。" + +#: lms/djangoapps/commerce/models.py +msgid "Automatically approve valid refund requests, without manual processing" +msgstr "自动批准有效的退款申请,无需人工处理。" + +#: lms/djangoapps/commerce/utils.py lms/djangoapps/shoppingcart/models.py +msgid "[Refund] User-Requested Refund" +msgstr "[Refund] 用户申请退款" + +#: lms/djangoapps/commerce/utils.py +#, python-brace-format +msgid "" +"A refund request has been initiated for {username} ({email}). To process " +"this request, please visit the link(s) below." +msgstr "{username} ({email}) 的退款要求已经建立。为了处理此请求,请访问以下联结(s) 。" + +#: lms/djangoapps/commerce/views.py lms/djangoapps/shoppingcart/pdf.py +msgid "Receipt" +msgstr "收据" + +#: lms/djangoapps/commerce/views.py +msgid "Payment Failed" +msgstr "支付失败" + +#: lms/djangoapps/commerce/views.py +msgid "There was a problem with this transaction. You have not been charged." +msgstr "交易出现问题。您尚未缴费。" + +#: lms/djangoapps/commerce/views.py +msgid "" +"Make sure your information is correct, or try again with a different card or" +" another form of payment." +msgstr "确保您的信息正确无误了,或换一张信用重试或换用其他支付方式。" + +#: lms/djangoapps/commerce/views.py +msgid "" +"A system error occurred while processing your payment. You have not been " +"charged." +msgstr "在处理您的付款时出现系统错误。您尚未缴费。" + +#: lms/djangoapps/commerce/views.py +msgid "Please wait a few minutes and then try again." +msgstr "请等待几分钟后重试。" + +#: lms/djangoapps/commerce/views.py +#, python-brace-format +msgid "For help, contact {payment_support_link}." +msgstr "联系{payment_support_link}寻求帮助。" + +#: lms/djangoapps/commerce/views.py +msgid "An error occurred while creating your receipt." +msgstr "创建您的收据时出错。" + +#: lms/djangoapps/commerce/views.py +#, python-brace-format +msgid "" +"If your course does not appear on your dashboard, contact " +"{payment_support_link}." +msgstr "如果您的课程未出现在您的课程面板上,请联系{payment_support_link}。" + +#: lms/djangoapps/course_goals/models.py +msgid "Earn a certificate" +msgstr "获取证书" + +#: lms/djangoapps/course_goals/models.py +msgid "Complete the course" +msgstr "完成课程" + +#: lms/djangoapps/course_goals/models.py +msgid "Explore the course" +msgstr "发现课程" + +#: lms/djangoapps/course_goals/models.py +msgid "Not sure yet" +msgstr "再想想" + +#: lms/djangoapps/course_wiki/tab.py lms/djangoapps/course_wiki/views.py +#: lms/templates/wiki/base.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Wiki" +msgstr "维基" + +#. Translators: this string includes wiki markup. Leave the ** and the _ +#. alone. +#: lms/djangoapps/course_wiki/views.py +#, python-brace-format +msgid "This is the wiki for _{course_name}_." +msgstr "这是 _{course_name}_ 的wiki。" + +#: lms/djangoapps/course_wiki/views.py +msgid "Course page automatically created." +msgstr "课程网页已经自动创建" + +#: lms/djangoapps/course_wiki/views.py +#, python-brace-format +msgid "Welcome to the {platform_name} Wiki" +msgstr "欢迎来到 {platform_name} Wiki" + +#: lms/djangoapps/course_wiki/views.py +msgid "Visit a course wiki to add an article." +msgstr "浏览课程维基添加课程标题" + +#: lms/djangoapps/courseware/access_response.py +msgid "Course has not started" +msgstr "课程尚未开始" + +#: lms/djangoapps/courseware/access_response.py +msgid "Course does not start until {}" +msgstr "课程将在{}后开课" + +#: lms/djangoapps/courseware/access_response.py +msgid "You have unfulfilled milestones" +msgstr "您有未完成的里程碑" + +#: lms/djangoapps/courseware/access_response.py +msgid "You do not have access to this course" +msgstr "您无权访问学习该课程" + +#: lms/djangoapps/courseware/access_response.py +msgid "You do not have access to this course on a mobile device" +msgstr "您无法在移动设备上学习该课程" + +#: lms/djangoapps/courseware/course_tools.py +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Upgrade to Verified" +msgstr "升级到验证" + +#. Translators: 'absolute' is a date such as "Jan 01, +#. 2020". 'relative' is a fuzzy description of the time until +#. 'absolute'. For example, 'absolute' might be "Jan 01, 2020", +#. and if today were December 5th, 2020, 'relative' would be "1 +#. month". +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "{relative} ago - {absolute}" +msgstr "{relative} 前 - {absolute}" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "in {relative} - {absolute}" +msgstr " {relative}后 - {absolute}" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Course Starts" +msgstr "课程开始" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Don't forget to add a calendar reminder!" +msgstr "请记得要添加提醒!" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "Course starts in {time_remaining_string} on {course_start_date}." +msgstr "课程开始日期:{course_start_date},即{time_remaining_string}后开始。" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "Course starts in {time_remaining_string} at {course_start_time}." +msgstr "课程开始时间:{course_start_time},即{time_remaining_string}后开始。" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Course End" +msgstr "课程结束" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"To earn a certificate, you must complete all requirements before this date." +msgstr "要获取修课证明,您必须在这个期限之前完成课程的所有要求。" + +#: lms/djangoapps/courseware/date_summary.py +msgid "After this date, course content will be archived." +msgstr "在此日期之后,课程内容将被存档。" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"This course is archived, which means you can review course content but it is" +" no longer active." +msgstr "这门课程已经归档:您可以复习课程内容,但该课程不再有活动(active)。" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "This course is ending in {time_remaining_string} on {course_end_date}." +msgstr "课程结束日期:{course_end_date},即{time_remaining_string}后结束。" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "This course is ending in {time_remaining_string} at {course_end_time}." +msgstr "课程结束时间:{course_end_time},即{time_remaining_string}后结束。" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Certificate Available" +msgstr "可申请的证书" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Day certificates will become available for passing verified learners." +msgstr "及格的已认证学员可获得证书的时间。" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "" +"If you have earned a certificate, you will be able to access it " +"{time_remaining_string} from now. You will also be able to view your " +"certificates on your {learner_profile_link}." +msgstr "如果您已获取证书,则可在{time_remaining_string}内前往{learner_profile_link}上查看您的证书。" + +#: lms/djangoapps/courseware/date_summary.py +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "Learner Profile" +msgstr "学生用户资料" + +#: lms/djangoapps/courseware/date_summary.py +msgid "We are working on generating course certificates." +msgstr "正在生成课程证书。" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Upgrade to Verified Certificate" +msgstr "身份认证升级" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Verification Upgrade Deadline" +msgstr "验证升级期限" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"Don't miss the opportunity to highlight your new knowledge and skills by " +"earning a verified certificate." +msgstr "学习新知识、磨炼新技能、获取认证证书,好机会不容错过!" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"You are still eligible to upgrade to a Verified Certificate! Pursue it to " +"highlight the knowledge and skills you gain in this course." +msgstr "您仍有资格升级至合格证书!继续努力精进您从这个课程所获的知识和技能。" + +#. Translators: This describes the time by which the user +#. should upgrade to the verified track. 'date' will be +#. their personalized verified upgrade deadline formatted +#. according to their locale. +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "by {date}" +msgstr "截止于{date}" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "" +"Don't forget, you have {time_remaining_string} left to upgrade to a Verified" +" Certificate." +msgstr "温馨提示,您升级成认证证书的剩余时间为{time_remaining_string}。" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "Don't forget to upgrade to a verified certificate by {localized_date}." +msgstr "温馨提示,请在{localized_date}前升级成认证证书。" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "" +"In order to qualify for a certificate, you must meet all course grading " +"requirements, upgrade before the course deadline, and successfully verify " +"your identity on {platform_name} if you have not done so " +"already.{button_panel}" +msgstr "" +"您必须满足所有课程评分要求才能申请证书,请在课程截止日期前进行升级,并在{platform_name}成功认证身份。{button_panel}" + +#: lms/djangoapps/courseware/date_summary.py +#, python-brace-format +msgid "Upgrade ({upgrade_price})" +msgstr "升级({upgrade_price})" + +#: lms/djangoapps/courseware/date_summary.py +#: cms/templates/group_configurations.html +#: lms/templates/courseware/program_marketing.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Learn More" +msgstr "了解更多" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Retry Verification" +msgstr "重试验证" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Verify My Identity" +msgstr "验证我的身份" + +#: lms/djangoapps/courseware/date_summary.py +msgid "Missed Verification Deadline" +msgstr "已错过验证期限" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"Unfortunately you missed this course's deadline for a successful " +"verification." +msgstr "很抱歉您错过了成功验证这堂课的截止期限。" + +#: lms/djangoapps/courseware/date_summary.py +msgid "" +"You must successfully complete verification before this date to qualify for " +"a Verified Certificate." +msgstr "您必须在这个日期之前成功完成验证,以具备获取合格证书的资格。" + +#: lms/djangoapps/courseware/masquerade.py +#, python-brace-format +msgid "" +"There is no user with the username or email address \"{user_identifier}\" " +"enrolled in this course." +msgstr "在此门课程的学员中,未找到使用用户名或邮箱为{user_identifier}的用户。" + +#: lms/djangoapps/courseware/masquerade.py +msgid "" +"This user does not have access to this content because" +" the content start date is in the future" +msgstr "此用户无权访问此内容,因为内容开始日期在将来" + +#: lms/djangoapps/courseware/masquerade.py +msgid "" +"This type of component cannot be shown while viewing the course as a " +"specific student." +msgstr "特定学生查看课程时,该类型组件无法显示。" + +#: lms/djangoapps/courseware/models.py +msgid "" +"Number of days a learner has to upgrade after content is made available" +msgstr "当内容开放后,学员必须升级的天数期限。" + +#: lms/djangoapps/courseware/models.py +msgid "Disable the dynamic upgrade deadline for this course run." +msgstr "禁用此门开课的可变升级截止日期。" + +#: lms/djangoapps/courseware/models.py +msgid "Disable the dynamic upgrade deadline for this organization." +msgstr "禁用此组织的可变升级截止日期。" + +#: lms/djangoapps/courseware/tabs.py lms/templates/courseware/syllabus.html +msgid "Syllabus" +msgstr "教学大纲" + +#: lms/djangoapps/courseware/tabs.py +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Progress" +msgstr "进度" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: 'Textbooks' refers to the tab in the course that leads to the +#. course' textbooks +#: lms/djangoapps/courseware/tabs.py cms/templates/textbooks.html +#: cms/templates/widgets/header.html +msgid "Textbooks" +msgstr "教材" + +#: lms/djangoapps/courseware/views/index.py +#, python-brace-format +msgid "" +"You are not signed in. To see additional course content, {sign_in_link} or " +"{register_link}, and enroll in this course." +msgstr "您尚未登录,如需查看额外课程内容,请{sign_in_link}或{register_link}并报名此门课程。" + +#: lms/djangoapps/courseware/views/index.py +#: lms/djangoapps/courseware/views/views.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "sign in" +msgstr "登录" + +#: lms/djangoapps/courseware/views/index.py +#: lms/djangoapps/courseware/views/views.py +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +#: openedx/features/course_experience/views/course_home_messages.py +msgid "register" +msgstr "注册" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your enrollment: Audit track" +msgstr "您已报名旁听" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"You are enrolled in the audit track for this course. The audit track does " +"not include a certificate." +msgstr "您已报名旁听此门课程,旁听无法获得证书。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your enrollment: Honor track" +msgstr "您已报名旁听" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"You are enrolled in the honor track for this course. The honor track does " +"not include a certificate." +msgstr "您已报名旁听此门课程,旁听无法获得证书。" + +#: lms/djangoapps/courseware/views/views.py +msgid "We're working on it..." +msgstr "我们正在努力..." + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"We're creating your certificate. You can keep working in your courses and a " +"link to it will appear here and on your Dashboard when it is ready." +msgstr "我们正在为您生成证书。您可以继续学习您的课程,一旦证书准备就绪,这里及您的课程面板中都会显示指向证书的链接。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your certificate has been invalidated" +msgstr "您的证书已失效" + +#: lms/djangoapps/courseware/views/views.py +msgid "Please contact your course team if you have any questions." +msgstr "如果您有任何问题,请联系您的课程团队。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Congratulations, you qualified for a certificate!" +msgstr "恭喜!您已经通过认证!" + +#: lms/djangoapps/courseware/views/views.py +msgid "You've earned a certificate for this course." +msgstr "您已获取此门课程的证书。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Certificate unavailable" +msgstr "无法查看证书" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "" +"You have not received a certificate because you do not have a current " +"{platform_name} verified identity." +msgstr "您未收到证书,因为您尚未认证{platform_name}的身份。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your certificate is available" +msgstr "您的证书有效" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "To see course content, {sign_in_link} or {register_link}." +msgstr "请{sign_in_link}或{register_link}以查看课程内容。" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "" +"You must be enrolled in the course to see course content." +" {enroll_link_start}Enroll now{enroll_link_end}." +msgstr "您必须{enroll_link_start}报名课程{enroll_link_end}才能查看课程内容。" + +#: lms/djangoapps/courseware/views/views.py +#: openedx/features/course_experience/views/course_home_messages.py +msgid "You must be enrolled in the course to see course content." +msgstr "您必须报名课程才能查看课程内容。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Invalid location." +msgstr "无效地址" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "User {username} has never accessed problem {location}" +msgstr "用户{username} 从来没有访问{location}问答" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "You must be signed in to {platform_name} to create a certificate." +msgstr "您必须先登录{platform_name}才可创建证书。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Course is not valid" +msgstr "课程无效" + +#: lms/djangoapps/courseware/views/views.py +msgid "Your certificate will be available when you pass the course." +msgstr "您的认证在您通过课程后有效。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Certificate has already been created." +msgstr "证书已经被创建。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Certificate is being created." +msgstr "认证已被创建。" + +#: lms/djangoapps/courseware/views/views.py +#, python-brace-format +msgid "" +"{platform_name} now offers financial assistance for learners who want to earn Verified Certificates but who may not be able to pay the Verified Certificate fee. Eligible learners may receive up to 90{percent_sign} off the Verified Certificate fee for a course.\n" +"To apply for financial assistance, enroll in the audit track for a course that offers Verified Certificates, and then complete this application. Note that you must complete a separate application for each course you take.\n" +" We plan to use this information to evaluate your application for financial assistance and to further develop our financial assistance program." +msgstr "" +"{platform_name} 现今提供经济援助,使想获得合格证书却无法支付证书费用之学习者能拿到证书。有资格的学习者可获得高达免 90 {percent_sign} 的合格证书优惠价。\n" +"申请经济援助,报名参加提供合格证书之审核作业,接着完成申请。请注意,您必须分別申请每一门您修习完毕之课程。\n" +"计画利用这些讯息来评估您的经济援助申请,并进一步发展经济援助计划。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Annual Household Income" +msgstr "家庭年收入" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your current financial situation. Why do you need assistance?" +msgstr "请告诉我们关于您目前的经济状况。为什么您需要协助?" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your learning or professional goals. How will a Verified " +"Certificate in this course help you achieve these goals?" +msgstr "请告诉我们关于您的学习或专业目标。一份这门课的认证证书,将会如何帮助您达成这些目标?" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Tell us about your plans for this course. What steps will you take to help " +"you complete the course work and receive a certificate?" +msgstr "告诉我们有关于您计画的这门课程。您会采取什么措施来帮助您完成课程学习,并获得证书?" + +#: lms/djangoapps/courseware/views/views.py +msgid "Use between 250 and 500 words or so in your response." +msgstr "您的回应字数应在250到500字之间。" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"Select the course for which you want to earn a verified certificate. If the " +"course does not appear in the list, make sure that you have enrolled in the " +"audit track for the course." +msgstr "选择您想要获得修课证明之课程。如果课程没出现在列表中,请确认您已经注册及追踪该课程。" + +#: lms/djangoapps/courseware/views/views.py +msgid "Specify your annual household income in US Dollars." +msgstr "说明您以美金计算之家庭年收入。" + +#: lms/djangoapps/courseware/views/views.py +msgid "" +"I allow EliteMBA to use the information provided in this application (except" +" for financial information) for EliteMBA marketing purposes." +msgstr "我同意EliteMBA.cn使用此申请中所提供之资讯(除财务资讯)作为edX销售之目的。" + +#: lms/djangoapps/dashboard/git_import.py +#, python-brace-format +msgid "" +"Path {0} doesn't exist, please create it, or configure a different path with" +" GIT_REPO_DIR" +msgstr "路径 {0} 不存在,请创建,或为GIT_REPO_DIR设置一个不同的路径。" + +#: lms/djangoapps/dashboard/git_import.py +msgid "" +"Non usable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "没有可写的Git地址。期待类似这样的地址:git@github.com:mitocw/edx4edx_lite.git" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to get git log" +msgstr "不能取得git 日志" + +#: lms/djangoapps/dashboard/git_import.py +msgid "git clone or pull failed!" +msgstr "git clone或pull失败!" + +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to run import command." +msgstr "不能执行导入命令。" + +#: lms/djangoapps/dashboard/git_import.py +msgid "The underlying module store does not support import." +msgstr "底层模块存储不支持导入。" + +#. Translators: This is an error message when they ask for a +#. particular version of a git repository and that version isn't +#. available from the remote source they specified +#: lms/djangoapps/dashboard/git_import.py +msgid "The specified remote branch is not available." +msgstr "指定的远程分支无效。" + +#. Translators: Error message shown when they have asked for a git +#. repository branch, a specific version within a repository, that +#. doesn't exist, or there is a problem changing to it. +#: lms/djangoapps/dashboard/git_import.py +msgid "Unable to switch to specified branch. Please check your branch name." +msgstr "无法切换到指定的分支。请检查您的分支名。" + +#: lms/djangoapps/dashboard/management/commands/git_add_course.py +msgid "" +"Import the specified git repository and optional branch into the modulestore" +" and optionally specified directory." +msgstr "倒入指定的git代码仓库和可选分支到模块库与可选的指定目录。" + +#. Translators: This message means that the user could not be authenticated +#. (that is, we could +#. not log them in for some reason - maybe they don't have permission, or +#. their password was wrong) +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Failed in authenticating {username}, error {error}\n" +msgstr "认证{username}失败, 错误代码{error}\n" + +#. Translators: This message means that the user could not be authenticated +#. (that is, we could +#. not log them in for some reason - maybe they don't have permission, or +#. their password was wrong) +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Failed in authenticating {username}\n" +msgstr "验证{username}失败\n" + +#. Translators: this means that the password has been corrected (sometimes the +#. database needs to be resynchronized) +#. Translate this as meaning "the password was fixed" or "the password was +#. corrected". +#: lms/djangoapps/dashboard/sysadmin.py +msgid "fixed password" +msgstr "修改后的密码" + +#. Translators: this means everything happened successfully, yay! +#: lms/djangoapps/dashboard/sysadmin.py +msgid "All ok!" +msgstr "一切正常!" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Must provide username" +msgstr "请提供用户名" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Must provide full name" +msgstr "请提供全名" + +#. Translators: Domain is an email domain, such as "@gmail.com" +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Email address must end in {domain}" +msgstr "电子邮箱地址必须以{domain}结尾" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Failed - email {email_addr} already exists as {external_id}" +msgstr "失败 - Email {email_addr} 已经存在为 {external_id}" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Password must be supplied if not using certificates" +msgstr "没有使用认证时必须提供密码。" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email address required (not username)" +msgstr "电子邮件地址必填(不是用户名)" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Oops, failed to create user {user}, {error}" +msgstr "啊, 用户 {user}创建失败, {error}" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "User {user} created successfully!" +msgstr "用户{user}创建成功!" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Cannot find user with email address {email_addr}" +msgstr "未能找到使用{email_addr}注册的用户" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Cannot find user with username {username} - {error}" +msgstr "无法找到用户名为 {username} 的用户 - {error}" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Deleted user {username}" +msgstr "删除用户{username}" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Statistic" +msgstr "统计" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Value" +msgstr "值" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Site statistics" +msgstr "网站统计" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Total number of users" +msgstr "用户总数" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Courses loaded in the modulestore" +msgstr "已加载课程至模块仓库" + +#: lms/djangoapps/dashboard/sysadmin.py +#: lms/djangoapps/support/views/manage_user.py lms/templates/tracking_log.html +msgid "username" +msgstr "用户名" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "email" +msgstr "电子邮件" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Repair Results" +msgstr "修复结果" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Create User Results" +msgstr "创建用户结果" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Delete User Results" +msgstr "删除用户结果" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "The git repo location should end with '.git', and be a valid url" +msgstr "Git仓库应为以“.git”结尾的有效 URL" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Added Course" +msgstr "添加课程" + +#: lms/djangoapps/dashboard/sysadmin.py cms/templates/course-create-rerun.html +#: cms/templates/index.html lms/templates/shoppingcart/receipt.html +#: lms/templates/support/feature_based_enrollments.html +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Course Name" +msgstr "课程名称" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Directory/ID" +msgstr "目录/ID" + +#. Translators: "Git Commit" is a computer command; see +#. http://gitref.org/basic/#commit +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Git Commit" +msgstr "Git提交" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Change" +msgstr "最后一次修改" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Last Editor" +msgstr "最后一次编辑者" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Information about all courses" +msgstr "所有课程信息" + +#: lms/djangoapps/dashboard/sysadmin.py +#, python-brace-format +msgid "Error - cannot get course with ID {0}
    {1}
    " +msgstr "错误,不能通过 ID {0}
    {1}
    取得课程" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Deleted" +msgstr "删除" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "course_id" +msgstr "课程ID" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# enrolled" +msgstr "# 已选修" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "# staff" +msgstr "# 员工" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "instructors" +msgstr "主讲教师" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "Enrollment information for all courses" +msgstr "所有课程的选课信息" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "role" +msgstr "角色" + +#: lms/djangoapps/dashboard/sysadmin.py +msgid "full_name" +msgstr "全名" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +#, python-format +msgid "%(comment_username)s replied to %(thread_title)s:" +msgstr "%(comment_username)s回复了%(thread_title)s:" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.html +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/body.txt +msgid "View discussion" +msgstr "查看讨论" + +#: lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/email/subject.txt +#, python-format +msgid "Response to %(thread_title)s" +msgstr "%(thread_title)s的回复" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Title can't be empty" +msgstr "标题不能为空" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Body can't be empty" +msgstr "内容不能为空" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Topic doesn't exist" +msgstr "主题不存在" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Comment level too deep" +msgstr "评论层级过深" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "" +"Error uploading file. Please contact the site administrator. Thank you." +msgstr "上传文件出错,请联系网站管理员,谢谢。" + +#: lms/djangoapps/django_comment_client/base/views.py +msgid "Good" +msgstr "好" + +#: lms/djangoapps/edxnotes/helpers.py +msgid "EdxNotes Service is unavailable. Please try again in a few minutes." +msgstr "EdxNotes服务不可用。请几分钟后重试。" + +#: lms/djangoapps/edxnotes/helpers.py +msgid "Invalid JSON response received from notes api." +msgstr "Notes api 接收到的 JSON 响应无效。" + +#: lms/djangoapps/edxnotes/helpers.py +msgid "Incorrect data received from notes api." +msgstr "notes api 接收到的数据错误。" + +#: lms/djangoapps/edxnotes/helpers.py +msgid "No endpoint was provided for EdxNotes." +msgstr "未为EdxNotes提供终端点。" + +#: lms/djangoapps/edxnotes/plugins.py lms/templates/edxnotes/edxnotes.html +msgid "Notes" +msgstr "笔记" + +#: lms/djangoapps/email_marketing/models.py +msgid "API key for accessing Sailthru. " +msgstr "用于访问Sailthru的AIP key" + +#: lms/djangoapps/email_marketing/models.py +msgid "API secret for accessing Sailthru. " +msgstr "用于访问Sailthru的API secret。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru list name to add new users to. " +msgstr "添加新用户的Salithru列表名称。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru connection retry interval (secs)." +msgstr "Sailthru连接重试间隔时间(秒)" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru maximum retries." +msgstr "Sailthru最多可重试次数。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru template to use on welcome send." +msgstr "Sailthru用于欢迎发送的模板。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru template to use on abandoned cart reminder. Deprecated." +msgstr "Sailthru用于废弃的购物车提醒通知的模板。弃用。" + +#: lms/djangoapps/email_marketing/models.py +msgid "" +"Sailthru minutes to wait before sending abandoned cart message. Deprecated." +msgstr "Sailthru等待了几分钟才发送了废弃的购物车消息。弃用。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on enrolling for audit. " +msgstr "用于报名旁听的Sailthru模板。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on passed ID verification." +msgstr "Sailthru发送模板以便在通过的ID验证时使用。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on failed ID verification." +msgstr "Sailthru发送模板用于失败的ID验证。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on upgrading a course. Deprecated " +msgstr "Sailthru发送模板用于更新课程。弃用。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Sailthru send template to use on purchasing a course seat. Deprecated " +msgstr "Sailthru发送模板用于购买一个课程名额。弃用。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Use the Sailthru content API to fetch course tags." +msgstr "使用Sailthru内容API来获取课程标签。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Number of seconds to cache course content retrieved from Sailthru." +msgstr "隐藏从Sailthru所获取的课程内容的所需时间。" + +#: lms/djangoapps/email_marketing/models.py +msgid "Cost in cents to report to Sailthru for enrolls." +msgstr "向Sailthru报告入学申请的费用以美分计。" + +#: lms/djangoapps/email_marketing/models.py +msgid "" +"Optional lms url scheme + host used to construct urls for content library, " +"e.g. https://courses.edx.org." +msgstr "可选LMS URL方案 + 用于构建内容库的主URL,例如:https://courses.edx.org。" + +#: lms/djangoapps/email_marketing/models.py +msgid "" +"Number of seconds to delay the sending of User Welcome email after user has " +"been created" +msgstr "在用户已注册账号后,发送欢迎邮件的延迟秒数" + +#: lms/djangoapps/email_marketing/models.py +msgid "" +"The number of seconds to delay/timeout wait to get cookie values from " +"sailthru." +msgstr "从sailthru获取cookie值的延迟/超时等待秒数" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#, python-brace-format +msgid "{platform_name} Staff" +msgstr "{platform_name} 员工" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Course Staff" +msgstr "授课教师" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#: lms/templates/preview_menu.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Staff" +msgstr "教员" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Used Registration Code" +msgstr "已使用的注册编号" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Credit Card - Individual" +msgstr "信用卡—个人" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +#, python-brace-format +msgid "manually enrolled by username: {username}" +msgstr "透过使用者: {username}手动注册" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Manually Enrolled" +msgstr "手动注册" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "Data Integrity Error" +msgstr "数据完整性错误" + +#: lms/djangoapps/instructor/paidcourse_enrollment_report.py +msgid "TBD" +msgstr "待定" + +#: lms/djangoapps/instructor/services.py +#, python-brace-format +msgid "Proctored Exam Review: {review_status}" +msgstr "监考模式考试审查: {review_status}" + +#: lms/djangoapps/instructor/services.py +#, python-brace-format +msgid "" +"A proctored exam attempt for {exam_name} in {course_name} by username: {student_username} was reviewed as {review_status} by the proctored exam review provider.\n" +"Review link: {review_url}" +msgstr "" +"在{course_name}中的{exam_name}监考考试:由监考考试审核者审核用户名{student_username}为{review_status}\n" +"审核链接:{review_url}" + +#: lms/djangoapps/instructor/settings/common.py +msgid "Your Platform Insights" +msgstr "您的平台Insights" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"The {report_type} report is being created. To view the status of the report," +" see Pending Tasks below." +msgstr "正在创建{report_type}报告,请在下面的“进行中的任务”查看报告状态。" + +#: lms/djangoapps/instructor/views/api.py +msgid "User does not exist." +msgstr "该用户不存在。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Found a conflict with given identifier. Please try an alternative identifier" +msgstr "发现一处与给定标识发生的冲突,请使用其他标识" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Make sure that the file you upload is in CSV format with no extraneous " +"characters or rows." +msgstr "确认您上传的CSV格式的文件里不包含无关的字符或行。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Could not read uploaded file." +msgstr "不能读取已上传的文件。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Data in row #{row_num} must have exactly four columns: email, username, full" +" name, and country" +msgstr "第#{row_num}行的数据必须是以下四列:E-mail、用户名、全名以及国家" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Invalid email {email_address}." +msgstr "无效的邮箱{email_address}。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"An account with email {email} exists but the provided username {username} is" +" different. Enrolling anyway with {email}." +msgstr "电子邮件{email}的帐户已存在但是所提供的使用者名称{username}是不同的。可以用{email}注册。" + +#: lms/djangoapps/instructor/views/api.py +msgid "File is not attached." +msgstr "文件未附上。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Username {user} already exists." +msgstr "用户名 {user} 已经存在了。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Error '{error}' while sending email to new user (user email={email}). " +"Without the email student would not be able to login. Please contact support" +" for further information." +msgstr "" +"Error '{error}'同时发送电子邮件给新用户(user email={email})。\n" +"如果没有电子邮件的学生将无法登录。请联系以获取更多讯息的支援。" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "problem responses" +msgstr "问题回答" + +#: lms/djangoapps/instructor/views/api.py +msgid "Could not find problem with this location." +msgstr "无法於此位置找到问题。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Invoice number '{num}' does not exist." +msgstr "发票号 '{num}' 不存在。" + +#: lms/djangoapps/instructor/views/api.py +msgid "The sale associated with this invoice has already been invalidated." +msgstr "与此相关联的发票出售已经失效。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Invoice number {0} has been invalidated." +msgstr "发票号 {0} 已经无效。" + +#: lms/djangoapps/instructor/views/api.py +msgid "This invoice is already active." +msgstr "此发货单已经激活。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "The registration codes for invoice {0} have been re-activated." +msgstr "收据 {0}的注册编号已经被重新激活。" + +#: lms/djangoapps/instructor/views/api.py +msgid "CourseID" +msgstr "课程 ID" + +#: lms/djangoapps/instructor/views/api.py +msgid "Certificate Type" +msgstr "证书类型" + +#: lms/djangoapps/instructor/views/api.py +msgid "Total Certificates Issued" +msgstr "发行的证书总计" + +#: lms/djangoapps/instructor/views/api.py +msgid "Date Report Run" +msgstr "报告实行日期" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "enrolled learner profile" +msgstr "已报名学员的资料" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "User ID" +msgstr "用户ID" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Email" +msgstr "电子邮件" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Language" +msgstr "语言" + +#: lms/djangoapps/instructor/views/api.py +msgid "Location" +msgstr "位置" + +#: lms/djangoapps/instructor/views/api.py +msgid "Birth Year" +msgstr "出生年度" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's gender. +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/api.py lms/templates/register-form.html +#: lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Gender" +msgstr "性别" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Level of Education" +msgstr "教育水平" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Mailing Address" +msgstr "邮寄地址" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Goals" +msgstr "目标" + +#: lms/djangoapps/instructor/views/api.py +msgid "Enrollment Mode" +msgstr "选课模式" + +#: lms/djangoapps/instructor/views/api.py +msgid "Verification Status" +msgstr "验证状态" + +#: lms/djangoapps/instructor/views/api.py +msgid "Cohort" +msgstr "群组" + +#: lms/djangoapps/instructor/views/api.py +msgid "Team" +msgstr "团队" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the city in which they live. +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py lms/templates/register-form.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/shoppingcart/receipt.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "City" +msgstr "城市" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: lms/templates/register-form.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/shoppingcart/receipt.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Country" +msgstr "国家/地区" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "enrollment" +msgstr "报名" + +#: lms/djangoapps/instructor/views/api.py +msgid "The file must contain a 'cohort' column containing cohort names." +msgstr "该文件必须包含一个“群组”列,该列中包含了群组的名称。" + +#: lms/djangoapps/instructor/views/api.py +msgid "The file must contain a 'username' column, an 'email' column, or both." +msgstr "该文件必须包含一个“username”列,或一个“email”列,或两者都包含。" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Coupon Code" +msgstr "优惠券编码" + +#: lms/djangoapps/instructor/views/api.py +#: openedx/core/djangoapps/schedules/admin.py +msgid "Course Id" +msgstr "课程编号" + +#: lms/djangoapps/instructor/views/api.py +msgid "% Discount" +msgstr "%折扣" + +#: lms/djangoapps/instructor/views/api.py lms/djangoapps/shoppingcart/pdf.py +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: wiki/plugins/attachments/forms.py +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +msgid "Description" +msgstr "描述" + +#: lms/djangoapps/instructor/views/api.py +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Expiration Date" +msgstr "过期日期" + +#: lms/djangoapps/instructor/views/api.py +msgid "Is Active" +msgstr "是否活跃" + +#: lms/djangoapps/instructor/views/api.py +msgid "Code Redeemed Count" +msgstr "推广折扣额代码" + +#: lms/djangoapps/instructor/views/api.py +msgid "Total Discounted Seats" +msgstr "总折扣名额" + +#: lms/djangoapps/instructor/views/api.py +msgid "Total Discounted Amount" +msgstr "总折扣金额" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "detailed enrollment" +msgstr "报名详情" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "executive summary" +msgstr "摘要信息" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "survey" +msgstr "调查" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "proctored exam results" +msgstr "监考模式考试结果" + +#: lms/djangoapps/instructor/views/api.py +msgid "Could not parse amount as a decimal" +msgstr "无法解析总数为十进制" + +#: lms/djangoapps/instructor/views/api.py +msgid "Unable to generate redeem codes because of course misconfiguration." +msgstr "由于课程的错误配置,无法生成兑换码。" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/shoppingcart/models.py +msgid "pdf download unavailable right now, please contact support." +msgstr "pdf文件现在无法下载,请联系技术支持。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: unknown" +msgstr "{student}的选课状态:未知" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: active" +msgstr "{student}的选课状态:有效" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: inactive" +msgstr "{student}的选课状态:无效" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: pending" +msgstr "{student}的选课状态:挂起" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Enrollment status for {student}: never enrolled" +msgstr "{student}的选课状态:从未加入" + +#: lms/djangoapps/instructor/views/api.py +msgid "Module does not exist." +msgstr "模块不存在。" + +#: lms/djangoapps/instructor/views/api.py +msgid "An error occurred while deleting the score." +msgstr "删除该分数时出错。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Course has no entrance exam section." +msgstr "本课程无入学测试部分。" + +#: lms/djangoapps/instructor/views/api.py +msgid "all_students and unique_student_identifier are mutually exclusive." +msgstr "all_students和unique_student_identifier是相互不包含的。" + +#: lms/djangoapps/instructor/views/api.py +msgid "all_students and delete_module are mutually exclusive." +msgstr "all_students和delete_module是相互不包含的。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Requires instructor access." +msgstr "需要教师访问。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Course has no valid entrance exam section." +msgstr "课程无有效的入学测试部分。" + +#: lms/djangoapps/instructor/views/api.py +msgid "All Students" +msgstr "所有学生" + +#: lms/djangoapps/instructor/views/api.py +msgid "Cannot rescore with all_students and unique_student_identifier." +msgstr "不能重新评定all_students和unique_student_identifier。" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "ORA data" +msgstr "ORA数据" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "grade" +msgstr "成绩" + +#: lms/djangoapps/instructor/views/api.py +#: lms/djangoapps/instructor_task/api_helper.py +msgid "problem grade" +msgstr "问题计分情况" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Successfully changed due date for student {0} for {1} to {2}" +msgstr "成功修改了学生{0}的截止日期从{1}变为{2}" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Successfully removed invalid due date extension (unit has no due date)." +msgstr "已经成功的移除了无效的延长截止日期 (单元没有截止日期)。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Successfully reset due date for student {0} for {1} to {2}" +msgstr "成功重置了学生{0}的截止日期从{1}变为{2}" + +#: lms/djangoapps/instructor/views/api.py +#, python-format +msgid "This student (%s) will skip the entrance exam." +msgstr "此学生 (%s) 将会跳过入学考试。" + +#: lms/djangoapps/instructor/views/api.py +#, python-format +msgid "This student (%s) is already allowed to skip the entrance exam." +msgstr "此学生 (%s) 已被允许跳过入学考试。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Certificate generation task for all students of this course has been " +"started. You can view the status of the generation task in the \"Pending " +"Tasks\" section." +msgstr "该课程所有学生的证书生成任务已经启动,您可以在“主讲教师待处理的任务”板块中查看该生成任务的状态。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Please select one or more certificate statuses that require certificate " +"regeneration." +msgstr "请选择需要一个或多个修课证明重制之状态。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Please select certificate statuses from the list only." +msgstr "请只从清单中选取证书形式。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Certificate regeneration task has been started. You can view the status of " +"the generation task in the \"Pending Tasks\" section." +msgstr "修课证明重新产出任务已启动。您可以在“待处理任务”区域中查看证明产出任务的状态。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "Student (username/email={user}) already in certificate exception list." +msgstr "学生 (username/email={user}) 已经排除於证书名单之外。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Certificate exception (user={user}) does not exist in certificate white " +"list. Please refresh the page and try again." +msgstr "证书例外 (user={user}) 不存在于证书批准名单中。请重新载入页面或再试一次。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Student username/email field is required and can not be empty. Kindly fill " +"in username/email and then press \"Add to Exception List\" button." +msgstr "学生使用者名称及电子邮件是必填且不能空白。请填入使用者名称及电子邮件,并按“加入例外名单”按钮。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"The record is not in the correct format. Please add a valid username or " +"email address." +msgstr "记录非为正确之格式。请加入有效使用者名称或email 网址。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"{user} does not exist in the LMS. Please check your spelling and retry." +msgstr "{user} 不存在于LMS。请确认您的拼字并再试一次。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"{user} is not enrolled in this course. Please check your spelling and retry." +msgstr "{user} 没有注册此课程。请确认您的拼字并再试一次。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Invalid data, generate_for must be \"new\" or \"all\"." +msgstr "无效数据,generate_for 必须为 \"新\" 或 \"全部\"。" + +#: lms/djangoapps/instructor/views/api.py +msgid "Certificate generation started for white listed students." +msgstr "被批准的学生之证书开始产生。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "user \"{user}\" in row# {row}" +msgstr "使用者 \"{user}\" in row# {row}" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "user \"{username}\" in row# {row}" +msgstr "使用者 \"{username}\" in row# {row}" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Certificate of {user} has already been invalidated. Please check your " +"spelling and retry." +msgstr "使用者之证书 {user} 已经无失效。请确认拼字或再试一次。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"Certificate for student {user} is already invalid, kindly verify that " +"certificate was generated for this student and then proceed." +msgstr "学生 {user}的证书已无效,请核对该证书是否是为此学生产出后再做后续动作。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Certificate Invalidation does not exist, Please refresh the page and try " +"again." +msgstr "证书失效是不存在的,请重新载入页面或再试一次。" + +#: lms/djangoapps/instructor/views/api.py +msgid "" +"Student username/email field is required and can not be empty. Kindly fill " +"in username/email and then press \"Invalidate Certificate\" button." +msgstr "学生使用者名称及email是必填的且不能空白。请填入使用者名称及email,并按“作废证书”的按钮。" + +#: lms/djangoapps/instructor/views/api.py +#, python-brace-format +msgid "" +"The student {student} does not have certificate for the course {course}. " +"Kindly verify student username/email and the selected course are correct and" +" try again." +msgstr "" +"学生 {student} 没有此门课程 {course}之修课证明。请验证学生使用者名称/email以及确认所选之课程是否正确,然后再试一次。" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "coupon id is None" +msgstr "优惠券ID不存在" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon id ({coupon_id}) DoesNotExist" +msgstr "编号为({coupon_id})的优惠券不存在" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon id ({coupon_id}) is already inactive" +msgstr "编号为({coupon_id})的优惠券已经被激活" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon id ({coupon_id}) updated successfully" +msgstr "编号为({coupon_id})的优惠券更新成功" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "" +"The code ({code}) that you have tried to define is already in use as a " +"registration code" +msgstr "您试图定义的这个卡号 ({code})已经被注册码使用了" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "Please Enter the Integer Value for Coupon Discount" +msgstr "请输入整数值的折扣率" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "Please Enter the Coupon Discount Value Less than or Equal to 100" +msgstr "请输入不大于100的优惠券折扣度" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "Please enter the date in this format i-e month/day/year" +msgstr "请以该格式输入日期,如:月/日/年" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon code ({code}) added successfully" +msgstr "使用优惠代码({code})的优惠券添加成功。" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon code ({code}) already exists for this course" +msgstr "优惠代码为({code})的优惠券对于该课程已经存在" + +#: lms/djangoapps/instructor/views/coupons.py +msgid "coupon id not found" +msgstr "优惠券编号无法找到" + +#: lms/djangoapps/instructor/views/coupons.py +#, python-brace-format +msgid "coupon with the coupon id ({coupon_id}) updated Successfully" +msgstr "编号为({coupon_id})的优惠券更新成功" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Instructor" +msgstr "主讲教师" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#, python-brace-format +msgid "" +"To gain insights into student enrollment and participation {link_start}visit" +" {analytics_dashboard_name}, our new course analytics product{link_end}." +msgstr "" +"要深入了解学生的选课和参与信息,请{link_start}访问我们全新的课程分析产品{analytics_dashboard_name}{link_end}。" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "E-Commerce" +msgstr "电子商务" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Special Exams" +msgstr "专业测验" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/djangoapps/support/views/index.py cms/templates/certificates.html +#: cms/templates/export.html cms/templates/widgets/header.html +msgid "Certificates" +msgstr "证书" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Please Enter the numeric value for the course price" +msgstr "课程价格只能是数字" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#, python-brace-format +msgid "CourseMode with the mode slug({mode_slug}) DoesNotExist" +msgstr "课程模型中的模型类({mode_slug})不存在" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "CourseMode price updated successfully" +msgstr "课程模式价格更新成功" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Course Info" +msgstr "课程信息" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#, python-brace-format +msgid "Enrollment data is now available in {dashboard_link}." +msgstr "选课数据现已可通过{dashboard_link}查看。" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Membership" +msgstr "会员资格" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Cohorts" +msgstr "群组" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html +msgid "Discussions" +msgstr "讨论" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +#: lms/templates/ccx/coach_dashboard.html +msgid "Student Admin" +msgstr "学生管理" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Extensions" +msgstr "扩展" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Data Download" +msgstr "数据下载" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Analytics" +msgstr "分析" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Metrics" +msgstr "度量" + +#: lms/djangoapps/instructor/views/instructor_dashboard.py +msgid "Open Responses" +msgstr "开放性题目" + +#. Translators: number sent refers to the number of emails sent +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +msgid "0 sent" +msgstr "已发送0封邮件" + +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +#, python-brace-format +msgid "{num_emails} sent" +msgid_plural "{num_emails} sent" +msgstr[0] "{num_emails} 已发送" + +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +#, python-brace-format +msgid "{num_emails} failed" +msgid_plural "{num_emails} failed" +msgstr[0] "{num_emails} 失败" + +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +msgid "Complete" +msgstr "已经完成" + +#: lms/djangoapps/instructor/views/instructor_task_helpers.py +msgid "Incomplete" +msgstr "未完成" + +#: lms/djangoapps/instructor/views/registration_codes.py +#, python-brace-format +msgid "" +"The enrollment code ({code}) was not found for the {course_name} course." +msgstr "对于{course_name}课程的选课码({code})未找到。" + +#: lms/djangoapps/instructor/views/registration_codes.py +msgid "This enrollment code has been canceled. It can no longer be used." +msgstr "该选课码已经被取消,不能再使用。" + +#: lms/djangoapps/instructor/views/registration_codes.py +msgid "This enrollment code has been marked as unused." +msgstr "该选课码已被标记为未使用过的。" + +#: lms/djangoapps/instructor/views/registration_codes.py +msgid "The enrollment code has been restored." +msgstr "选课码已修复。" + +#: lms/djangoapps/instructor/views/registration_codes.py +#, python-brace-format +msgid "The redemption does not exist against enrollment code ({code})." +msgstr "针对redemption 注册代码 ({code})是不存在的。" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Could not find student matching identifier: {student_identifier}" +msgstr "无法找到与标识符:{student_identifier}匹配的学生" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Unable to parse date: " +msgstr "不能解析日期" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Couldn't find module for url: {0}" +msgstr "不能为url {0} 找到合适的模块" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Unit {0} has no due date to extend." +msgstr "单元{0}没有要延长的截止日期。" + +#: lms/djangoapps/instructor/views/tools.py +msgid "An extended due date must be later than the original due date." +msgstr "延长的截止日期必须在正常截止日期之后。" + +#: lms/djangoapps/instructor/views/tools.py +msgid "No due date extension is set for that student and unit." +msgstr "还没有为学生和单元设置可延长的截止日期。" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's full name. +#: lms/djangoapps/instructor/views/tools.py +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/api.py cms/templates/register.html +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/signup_modal.html lms/templates/sysadmin_dashboard.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Full Name" +msgstr "全名" + +#: lms/djangoapps/instructor/views/tools.py +msgid "Extended Due Date" +msgstr "扩展截止日期" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Users with due date extensions for {0}" +msgstr "拥有到期扩展{0}的用户" + +#: lms/djangoapps/instructor/views/tools.py +#, python-brace-format +msgid "Due date extensions for {0} {1} ({2})" +msgstr "到期扩展{0} {1} ({2})" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "Requested task is already running" +msgstr "请求任务已在运行中" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "Error occured. Please try again later." +msgstr "发生错误,请稍后重试。" + +#: lms/djangoapps/instructor_task/api_helper.py +#, python-brace-format +msgid "" +"The {report_type} report is being created. To view the status of the report," +" see Pending Tasks below. You will be able to download the report when it is" +" complete." +msgstr "正在创建{report_type}报告,请在下面的“进行中的任务”查看报告状态。您可以在任务完成时下载报告。" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "This component cannot be rescored." +msgstr "无法重新评分此组件。" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "This component does not support score override." +msgstr "此组件不支持覆盖分数操作。" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "Scores must be between 0 and the value of the problem." +msgstr "分数必须为0与题目分值之间。" + +#: lms/djangoapps/instructor_task/api_helper.py +msgid "Not all problems in entrance exam support re-scoring." +msgstr "入学考试中不是所有的问题都支持重新打分。" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "rescored" +msgstr "重新评分" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/djangoapps/instructor_task/tasks_helper/module_state.py +msgid "overridden" +msgstr "已覆盖" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "reset" +msgstr "重置" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +#: lms/templates/wiki/plugins/attachments/index.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/models/article.py +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +#: wiki/templates/wiki/includes/revision_info.html +msgid "deleted" +msgstr "已删除" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "emailed" +msgstr "已邮件通知" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "graded" +msgstr "已评价" + +#. Translators: This is a past-tense phrase that is inserted into task +#. progress messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "problem distribution graded" +msgstr "问题分布已评价" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "generating_enrollment_report" +msgstr "正在生成选课报告" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#: lms/djangoapps/instructor_task/tasks.py +msgid "certificates generated" +msgstr "证书已生成" + +#. Translators: This is a past-tense verb that is inserted into task progress +#. messages as {action}. +#. An example of such a message is: "Progress: {action} {succeeded} of +#. {attempted} so far" +#: lms/djangoapps/instructor_task/tasks.py +msgid "cohorted" +msgstr "群组化" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the First Name +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "First Name" +msgstr "名" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the First Name +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Last Name" +msgstr "姓" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: lms/templates/shoppingcart/receipt.html +msgid "Company Name" +msgstr "公司名称" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the Title +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py wiki/forms.py +#: wiki/templates/wiki/dir.html +msgid "Title" +msgstr "标题" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's year of birth. +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +#: openedx/core/djangoapps/user_api/api.py lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Year of Birth" +msgstr "出生年份" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Enrollment Date" +msgstr "选课日期" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Currently Enrolled" +msgstr "当前注册" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Enrollment Source" +msgstr "注册来源" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Manual (Un)Enrollment Reason" +msgstr "招生手册 (Un)" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Enrollment Role" +msgstr "注册身份" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "List Price" +msgstr "列表价格" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Payment Amount" +msgstr "支付金额" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Coupon Codes Used" +msgstr "优惠券代码已使用" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Registration Code Used" +msgstr "注册编号已使用" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Payment Status" +msgstr "付款状态" + +#: lms/djangoapps/instructor_task/tasks_helper/enrollments.py +msgid "Transaction Reference Number" +msgstr "交易参考编码" + +#: lms/djangoapps/instructor_task/views.py +msgid "No status information available" +msgstr "尚无状态信息" + +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "No task_output information found for instructor_task {0}" +msgstr "无主讲教师任务 {0}的输出信息" + +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "No parsable task_output information found for instructor_task {0}: {1}" +msgstr "未找到主讲教师任务{0}:{1} 的可解析的任务输出信息" + +#: lms/djangoapps/instructor_task/views.py +msgid "No parsable status information available" +msgstr "尚无可解析的状态信息" + +#: lms/djangoapps/instructor_task/views.py +msgid "No message provided" +msgstr "尚无消息" + +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Invalid task_output information found for instructor_task {0}: {1}" +msgstr "发现主讲教师任务{0}: {1}的无效的任务输出信息" + +#: lms/djangoapps/instructor_task/views.py +msgid "No progress status information available" +msgstr "尚无进度状态信息" + +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "No parsable task_input information found for instructor_task {0}: {1}" +msgstr "未找到主讲教师任务{0}:{1} 的可解析的任务输入信息" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} and {succeeded} are counts. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Progress: {action} {succeeded} of {attempted} so far" +msgstr "进度: 目前 {attempted}的{action} {succeeded} " + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Unable to find submission to be {action} for student '{student}'" +msgstr "无法找到学生“{student}”的要被{action}的提交" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem failed to be {action} for student '{student}'" +msgstr "学生“{student}”的问题{action}失败" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem successfully {action} for student '{student}'" +msgstr "学生“{student}”的问题{action}成功" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "" +"Unable to find entrance exam submission to be {action} for student " +"'{student}'" +msgstr "无法找到学生“{student}”的要被{action}的入学考试提交" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {student} is a student identifier. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Entrance exam successfully {action} for student '{student}'" +msgstr "为学生 '{student}'{action} 入学考试成功" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Unable to find any students with submissions to be {action}" +msgstr "无法找到任何为{action}提交的学生" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem failed to be {action} for any of {attempted} students" +msgstr "对于{attempted}学生的问题{action}失败" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem successfully {action} for {attempted} students" +msgstr "对于{attempted}学生的问题{action}成功" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Problem {action} for {succeeded} of {attempted} students" +msgstr "对于{attempted} 学生的问题 {action}{succeeded}" + +#. Translators: {action} is a past-tense verb that is localized separately. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Unable to find any recipients to be {action}" +msgstr "无法找到{action}的接受者" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Message failed to be {action} for any of {attempted} recipients " +msgstr "对{attempted}接受者的消息{action}失败" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {attempted} is a count. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Message successfully {action} for {attempted} recipients" +msgstr "对于{attempted}接受者的消息{action}成功" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Message {action} for {succeeded} of {attempted} recipients" +msgstr "对于{attempted}接受者的消息{action}{succeeded}" + +#. Translators: {action} is a past-tense verb that is localized separately. +#. {succeeded} and {attempted} are counts. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid "Status: {action} {succeeded} of {attempted}" +msgstr "状态: 对于{attempted}{action} {succeeded} " + +#. Translators: {skipped} is a count. This message is appended to task +#. progress status messages. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid " (skipping {skipped})" +msgstr "(忽略 {skipped})" + +#. Translators: {total} is a count. This message is appended to task progress +#. status messages. +#: lms/djangoapps/instructor_task/views.py +#, python-brace-format +msgid " (out of {total})" +msgstr "( /{total} )" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"This component's access settings refer to deleted or invalid group " +"configurations." +msgstr "此组件的访问设置指的是已删除或无效的分组设置。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"This unit's access settings refer to deleted or invalid group " +"configurations." +msgstr "此单元的访问设置指的是已删除的或无效的分组配置项。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "This component's access settings refer to deleted or invalid groups." +msgstr "此组件的访问设置指的是已删除的或无效的分组。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "This unit's access settings refer to deleted or invalid groups." +msgstr "此单元的访问设置指的是已删除的或无效的分组。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"This component's access settings contradict its parent's access settings." +msgstr "此组件的访问设置与其父级访问设置相冲突。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "Whether to display this module in the table of contents" +msgstr "是否在表格内容中展示该模块" + +#. Translators: "TOC" stands for "Table of Contents" +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"What format this module is in (used for deciding which grader to apply, and " +"what to show in the TOC)" +msgstr "该模块的格式是什么(用于决定应用哪一个评分者,以及在TOC中显示什么)" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "Course Chrome" +msgstr "课程Chrome" + +#. Translators: DO NOT translate the words in quotes here, they are +#. specific words for the acceptable values. +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"Enter the chrome, or navigation tools, to use for the XBlock in the LMS. Valid values are: \n" +"\"chromeless\" -- to not use tabs or the accordion; \n" +"\"tabs\" -- to use tabs only; \n" +"\"accordion\" -- to use the accordion only; or \n" +"\"tabs,accordion\" -- to use tabs and the accordion." +msgstr "" +"输入在 LMS 的 XBlock 中要使用的镶边(导航工具条)。允许的取值有:\n" +"“chromeless”——不使用选项卡及风琴栏;\n" +"“tabs”——只使用选项卡;\n" +"“accordion”——只使用风琴栏;\n" +"“tabs,accordion”——既使用选项卡也使用风琴栏。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "Default Tab" +msgstr "默认页面" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"Enter the tab that is selected in the XBlock. If not set, the Course tab is " +"selected." +msgstr "输入在XBlock中被选择的选项卡,如未设置,则选择课件选项卡。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "LaTeX Source File Name" +msgstr "LaTex 源文件名" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "Enter the source file name for LaTeX." +msgstr "输入 LaTex 源文件名。" + +#: lms/djangoapps/lms_xblock/mixin.py +msgid "" +"A dictionary that maps which groups can be shown this block. The keys are " +"group configuration ids and the values are a list of group IDs. If there is " +"no key for a group configuration or if the set of group IDs is empty then " +"the block is considered visible to all. Note that this field is ignored if " +"the block is visible_to_staff_only." +msgstr "" +"被字典对映到的群组可以被显示在此区块中。关键字是群组设定id和数值是群组 ID的列表。假如没有关键字给群组设定或者群组 " +"ID的集合是空的那么区块就会对所有公开。如果该区块是visible_to_staff_only则字段会被忽略。" + +#: lms/djangoapps/mobile_api/views.py +msgid "Missing requested parameter 'platform'" +msgstr "缺少必要参数 ‘平台’" + +#: lms/djangoapps/mobile_api/views.py +msgid "Unable to find information about the latest version of the platform" +msgstr "未能找到平台最新版本的相关信息" + +#: lms/djangoapps/notes/views.py lms/templates/notes.html +msgid "My Notes" +msgstr "我的笔记" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Order Payment Confirmation" +msgstr "订单付款确认" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"Confirmation and Registration Codes for the following courses: " +"{course_name_list}" +msgstr "接下来的课程:{course_name_list}的确认和注册编号" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Trying to add a different currency into the cart" +msgstr "尝试添加不同的货币到购物车" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Internal reference code for this invoice." +msgstr "该发票的内部参考代码。" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Customer's reference code for this invoice." +msgstr "该发票的客户参考代码。" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"The amount of the transaction. Use positive amounts for payments and " +"negative amounts for refunds." +msgstr "交易的总额,使用正总额的当作付款,负总额的当作退款。" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Lower-case ISO currency codes" +msgstr "小写国际标準组织通货代号" + +#: lms/djangoapps/shoppingcart/models.py +msgid "Optional: provide additional information for this transaction" +msgstr "可选:为该交易提供附加信息" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"The status of the payment or refund. 'started' means that payment is " +"expected, but money has not yet been transferred. 'completed' means that the" +" payment or refund was received. 'cancelled' means that payment or refund " +"was expected, but was cancelled before money was transferred. " +msgstr "" +"付款和退款的状态。“开始”意味着即将付款,但钱尚未转移。“完成”意味着付款或退款已经收到。“取消”意味着即将付款或退款,但在钱转移之前就被取消了。" + +#: lms/djangoapps/shoppingcart/models.py +msgid "The number of items sold." +msgstr "已售项目的数量。" + +#: lms/djangoapps/shoppingcart/models.py +msgid "The price per item sold, including discounts." +msgstr "没意见商品出售的价格,包括折扣。" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Registration for Course: {course_name}" +msgstr "注册课程:{course_name}" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"Please visit your {link_start}dashboard{link_end} to see your new course." +msgstr "请前往您的{link_start}课程面板{link_end}查看新课程。" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Enrollment codes for Course: {course_name}" +msgstr "课程:{course_name}的选课码" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Mode {mode} does not exist for {course_id}" +msgstr "{course_id}不存在 {mode}模式" + +#. Translators: In this particular case, mode_name refers to a +#. particular mode (i.e. Honor Code Certificate, Verified Certificate, etc) +#. by which a user could enroll in the given course. +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "{mode_name} for course {course}" +msgstr "课程{course}的{mode_name} " + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"You can unenroll in the course and receive a full refund for 14 days after " +"the course start date. " +msgstr "您可以取消注册课程,并在开课后14天收到全额退费。" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"If you haven't verified your identity yet, please start the verification " +"process ({verification_url})." +msgstr "如果您还没有验证您的身份,请立即开始验证过程吧({verification_url})。" + +#: lms/djangoapps/shoppingcart/models.py +msgid "" +"You can unenroll in the course and receive a full refund for 2 days after " +"the course start date. " +msgstr "您可以取消注册课程,并在开课后2天收到全额退费。" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"{refund_reminder_msg}To receive your refund, contact {billing_email}. Please" +" include your order number in your email. Please do NOT include your credit " +"card information." +msgstr "" +"{refund_reminder_msg} 如要收到退费请联系 " +"{billing_email}。请包含您的订单号码及您的email。请不要提供您的信用卡讯息。" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "" +"We greatly appreciate this generous contribution and your support of the " +"{platform_name} mission. This receipt was prepared to support charitable " +"contributions for tax purposes. We confirm that neither goods nor services " +"were provided in exchange for this gift." +msgstr "" +"我们非常感谢慷慨的贡献,您的支持{platform_name}的任务。该收据準备支持为稅收目的的慈善捐款。我们确认,没有商品,也没有服务,以换取这份礼物。" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Could not find a course with the ID '{course_id}'" +msgstr "无法找到ID为‘{course_id}’的课程" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Donation for {course}" +msgstr "给{course}捐款" + +#: lms/djangoapps/shoppingcart/models.py +#, python-brace-format +msgid "Donation for {platform_name}" +msgstr "为 {platform_name}捐款" + +#: lms/djangoapps/shoppingcart/pdf.py +#, python-brace-format +msgid "Page {page_number} of {page_count}" +msgstr "翻到{page_count}的{page_number}" + +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/shoppingcart/receipt.html +msgid "Invoice" +msgstr "收据" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "Order" +msgstr "顺序" + +#: lms/djangoapps/shoppingcart/pdf.py +#, python-brace-format +msgid "{id_label} # {item_id}" +msgstr "{id_label} # {item_id}" + +#: lms/djangoapps/shoppingcart/pdf.py +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +#, python-brace-format +msgid "Date: {date}" +msgstr "日期: {date}" + +#: lms/djangoapps/shoppingcart/pdf.py lms/djangoapps/shoppingcart/reports.py +msgid "Quantity" +msgstr "数量" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "" +"List Price\n" +"per item" +msgstr "数量" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "" +"Discount\n" +"per item" +msgstr "" +"折扣\n" +"每一项" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "Amount" +msgstr "量" + +#: lms/djangoapps/shoppingcart/pdf.py lms/templates/courseware/gradebook.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/receipt.html +msgid "Total" +msgstr "总计" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "Payment Received" +msgstr "付款已收到" + +#: lms/djangoapps/shoppingcart/pdf.py membership/models.py +msgid "Balance" +msgstr "金额" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "Billing Address" +msgstr "帐单地址" + +#: lms/djangoapps/shoppingcart/pdf.py openedx/core/djangoapps/user_api/api.py +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/disclaimer.html +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Disclaimer" +msgstr "免责声明" + +#: lms/djangoapps/shoppingcart/pdf.py +msgid "TERMS AND CONDITIONS" +msgstr "条款声明" + +#. Translators: this text appears when an unfamiliar error code occurs during +#. payment, +#. for which we don't know a user-friendly message to display in advance. +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "UNKNOWN REASON" +msgstr "未知原因" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "The payment processor did not return a required parameter: {parameter}" +msgstr "支付处理程序没有返回一个必须的参数:{parameter}" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"The payment processor returned a badly-typed value {value} for parameter " +"{parameter}." +msgstr "支付处理程序返回一个参数 {parameter}的错误输入值 {value}。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The payment processor accepted an order whose number is not in our system." +msgstr "付款处理器接受了一个号码不在我们系统中的订单。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"The amount charged by the processor {charged_amount} " +"{charged_amount_currency} is different than the total cost of the order " +"{total_cost} {total_cost_currency}." +msgstr "" +"付款处理器收取的总金额{charged_amount} {charged_amount_currency}与订单总费用{total_cost} " +"{total_cost_currency}不一致。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Our payment processor did not accept your payment. The decision they" +" returned was {decision}, and the reason was {reason}. You were not " +"charged. Please try a different form of payment. Contact us with payment-" +"related questions at {email}." +msgstr "" +"抱歉!支付系统没有受理您的缴费申请。答复是:{decision},原因为:{reason}。您尚未缴费,请尝试其他支付方式。相关问题请联系{email}。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Our payment processor sent us back a payment confirmation that had " +"inconsistent data! We apologize that we cannot verify whether the charge " +"went through and take further action on your order. The specific error " +"message is: {msg} Your credit card may possibly have been charged. Contact " +"us with payment-specific questions at {email}." +msgstr "" +"抱歉!支付系统返回的支付确认数据不一致。无法确认支付成功并进一步处理您的订单,我们深表歉意。具体的错误信息为: " +"{msg}。您的信用卡可能已被扣费。相关问题请联系{email}。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Due to an error your purchase was charged for a different amount than" +" the order total! The specific error message is: {msg}. Your credit card has" +" probably been charged. Contact us with payment-specific questions at " +"{email}." +msgstr "抱歉!实际扣费金额与订单总额不符!具体的错误信息为:{msg}。您的信用卡可能已被扣费。相关问题请联系{email}。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Our payment processor sent us back a corrupted message regarding your" +" charge, so we are unable to validate that the message actually came from " +"the payment processor. The specific error message is: {msg}. We apologize " +"that we cannot verify whether the charge went through and take further " +"action on your order. Your credit card may possibly have been charged. " +"Contact us with payment-specific questions at {email}." +msgstr "" +"抱歉!支付系统返回信息受损,无法解析返回结果。具体的错误信息为{msg}。无法确认支付成功并进一步处理您的订单,对此我们深表歉意。您的信用卡可能已被扣费。相关问题请联系{email}。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Our payment processor sent us back a message saying that you have " +"cancelled this transaction. The items in your shopping cart will exist for " +"future purchase. If you feel that this is in error, please contact us with " +"payment-specific questions at {email}." +msgstr "" +"抱歉!我们的支付系统发送了一条您已取消该交易的消息。您购物车中的商品将为存在于您未来的购买中。若您觉得此处发生错误,请联系{email}询问具体的付款问题。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"We're sorry, but this payment was declined. The items in your shopping cart " +"have been saved. If you have any questions about this transaction, please " +"contact us at {email}." +msgstr "对不起,此次支付无效。您的购物车中的内容将会被保留。若对此次交易有任何问题,请通过{email}联系我们。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"Sorry! Your payment could not be processed because an unexpected exception " +"occurred. Please contact us at {email} for assistance." +msgstr "抱歉!您的付款由于出现异常未被受理。请联系{email}寻求帮助。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Successful transaction." +msgstr "交易成功。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The request is missing one or more required fields." +msgstr "请求缺少了一个或多个必须的字段" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "One or more fields in the request contains invalid data." +msgstr "请求中的一个或多个字段包含了无效数据。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The merchant reference code for this authorization request matches the merchant reference code of another\n" +" authorization request that you sent within the past 15 minutes.\n" +" Possible action: Resend the request with a unique merchant reference code.\n" +" " +msgstr "" +"\n" +"此授权要求商家参考代码需於过去15分钟之内匹配另一家商家参考代码。\n" +"可能解决的方法:重新发送一个特定商家需求的参考代码。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Only a partial amount was approved." +msgstr "仅有部分金额被批准。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "General system failure." +msgstr "系统故障。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The request was received but there was a server timeout. This error does not include timeouts between the\n" +" client and the server.\n" +" " +msgstr "" +"\n" +"请求已接受但服务器超时。该错误不包括\n" +"客户端与服务器之间的超时" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The request was received, but a service did not finish running in time." +msgstr "请求已接受,但服务为按时完成。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource\n" +" because it did not pass the Address Verification System (AVS).\n" +" " +msgstr "" +"\n" +"授权请求已被发卡行通过但被CyberSource拒绝\n" +"因为没有通过地址认证系统(AVS)。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The issuing bank has questions about the request. You do not receive an\n" +" authorization code programmatically, but you might receive one verbally by calling the processor.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" +"\n" +"发卡银行对此申请有问题。您没收到授权代码,但您可能收到从处理端发出口头通知。可能的解决方法,用另一种付款方式重试一遍。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" Expired card. You might also receive this if the expiration date you\n" +" provided does not match the date the issuing bank has on file.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" +"\n" +"信用卡已过期。也有可能是由于您所提供的有效期\n" +"与银行提供的日期不一致。\n" +"解决办法:尝试其他支付形式。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" General decline of the card. No other information provided by the issuing bank.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" +"\n" +"拒绝支付。发卡行未提供其他信息。\n" +"可能的解决办法:尝试另一种支付方式。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"Insufficient funds in the account. Possible action: retry with another form " +"of payment." +msgstr "账号中的资金不足。可能的解决方法:重试另一种付款方式。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Stolen or lost card." +msgstr "被盗或者遗失的卡。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"Issuing bank unavailable. Possible action: retry again after a few minutes." +msgstr "发卡银行无响应。可能的解决方法:几分钟后重试。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" Inactive card or card not authorized for card-not-present transactions.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" +"\n" +"未激活的卡或卡主未授权无卡交易。\n" +"解决办法:尝试其他交易形式。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "CVN did not match." +msgstr "信用卡验证码不匹配。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The card has reached the credit limit. Possible action: retry with another " +"form of payment." +msgstr "已超过该卡信用额度。可能的解决方法:重试另一种付款方式。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"Invalid card verification number (CVN). Possible action: retry with another " +"form of payment." +msgstr "无效的信用卡验证码(CVN)。可能的解决方法:重试另一种付款方式。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The customer matched an entry on the processors negative file." +msgstr "此客户符合於处理者的黑名单格上。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Account frozen. Possible action: retry with another form of payment." +msgstr "账号被冻结。可能的解决方法:尝试另一种付款方式。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by\n" +" CyberSource because it did not pass the CVN check.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" +"\n" +"授权请求已被发卡行通过但被CyberSource拒绝\n" +"因为没有通过CVN检查。\n" +"可能的解决办法:尝试另一种付款方式。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"Invalid account number. Possible action: retry with another form of payment." +msgstr "无效的帐户号码。可能的解决方法:重试另一种付款方式。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The card type is not accepted by the payment processor.\n" +" Possible action: retry with another form of payment.\n" +" " +msgstr "" +"\n" +"支付系统不受理该类型的信用卡。\n" +"可能的解决办法:尝试另一种付款方式。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"General decline by the processor. Possible action: retry with another form " +"of payment." +msgstr "付款被拒绝。可能的解决方法:重试另一种付款方式。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +#, python-brace-format +msgid "" +"There is a problem with the information in your CyberSource account. Please" +" let us know at {0}" +msgstr "此问题可能与您的CyberSource账号信息有关。请通知我们{0}" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The requested capture amount exceeds the originally authorized amount." +msgstr "所请求的捕获量超过了原先授权的数量。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Processor Failure. Possible action: retry the payment" +msgstr "处理器故障。可能的解决方法:重试支付。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The authorization has already been reversed." +msgstr "授权已被撤回。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The authorization has already been captured." +msgstr "已获得授权。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The requested transaction amount must match the previous transaction amount." +msgstr "要求的交易金额必须与先前的交易金额一致。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The card type sent is invalid or does not correlate with the credit card number.\n" +" Possible action: retry with the same card or another form of payment.\n" +" " +msgstr "" +"\n" +"所发送的信用卡类型无效或所关联的信用卡卡号错误。\n" +"可能的解决办法:以此卡重试或尝试另一种支付方式。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The request ID is invalid." +msgstr "请求ID无效。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" You requested a capture, but there is no corresponding, unused authorization record. Occurs if there was\n" +" not a previously successful authorization request or if the previously successful authorization has already\n" +" been used by another capture request.\n" +" " +msgstr "" +"\n" +"您想申请留存,但没有相应及未使用的授权记录。如果有发生非以前成功申请授权,或者以前已经申请授权成功。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The transaction has already been settled or reversed." +msgstr "该交易已经得到处理或已被退回。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" Either the capture or credit is not voidable because the capture or credit information has already been\n" +" submitted to your processor, or you requested a void for a type of transaction that cannot be voided.\n" +" " +msgstr "" +"\n" +"扣费/预授权申请信息已经提交到支付系统,不可撤销。\n" +"或者,您所请求的交易类型是不可撤销的。\n" +" " + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "You requested a credit for a capture that was previously voided." +msgstr "您请求确认扣款的预授权已经撤销。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"The request was received, but there was a timeout at the payment processor." +msgstr "请求已收到,但是支付服务超时。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Stand-alone credits are not allowed." +msgstr "不允许" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "The cardholder is enrolled for payer authentication" +msgstr "持卡人注册为付款人验证" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "Payer authentication could not be authenticated" +msgstr "无法验证付款人身份。" + +#: lms/djangoapps/shoppingcart/processors/CyberSource2.py +msgid "" +"\n" +" The authorization request was approved by the issuing bank but declined by CyberSource based\n" +" on your legacy Smart Authorization settings.\n" +" Possible action: retry with a different form of payment.\n" +" " +msgstr "" +"\n" +"授权请求已被发卡行通过,\n" +"但由于您的传统只能授权设置被CyberSouce拒绝。\n" +"可能的解决办法:尝试另一种支付方式。\n" +" " + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order Number" +msgstr "订单号" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Customer Name" +msgstr "客户姓名" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Original Transaction" +msgstr "原本事务的日期" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Date of Refund" +msgstr "偿还日期" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Amount of Refund" +msgstr "偿还总数" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Service Fees (if any)" +msgstr "服务费(如果有的话)" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Purchase Time" +msgstr "购买时间" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Order ID" +msgstr "订单ID" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Unit Cost" +msgstr "单位价格" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Cost" +msgstr "总价格" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Currency" +msgstr "货币" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Comments" +msgstr "评语" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "University" +msgstr "大学" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Announce Date" +msgstr "课程发布日期" + +#: lms/djangoapps/shoppingcart/reports.py cms/templates/settings.html +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Start Date" +msgstr "课程开始日期" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Close Date" +msgstr "课程注册截止日期" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Course Registration Period" +msgstr "课程注册期" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Enrolled" +msgstr "总计选修人数" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Audit Enrollment" +msgstr "审核选课" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Honor Code Enrollment" +msgstr "诚信准则选课" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Verified Enrollment" +msgstr "已认证的选课人数" + +#: lms/djangoapps/shoppingcart/reports.py +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Gross Revenue" +msgstr "总收入" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Gross Revenue over the Minimum" +msgstr "总收入超过最低" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Verified Students Contributing More than the Minimum" +msgstr "已验证的学生贡献数量超过最低" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Refunds" +msgstr "偿还数量" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Dollars Refunded" +msgstr "已偿还金额" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Transactions" +msgstr "事务数量" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Payments Collected" +msgstr "总的已收集支付" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Number of Successful Refunds" +msgstr "成功偿还的数量" + +#: lms/djangoapps/shoppingcart/reports.py +msgid "Total Amount of Refunds" +msgstr "总偿还数量" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You must be logged-in to add to a shopping cart" +msgstr "您必须登录才能添加到购物车" + +#: lms/djangoapps/shoppingcart/views.py +msgid "The course you requested does not exist." +msgstr "您请求的课程不存在。" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "The course {course_id} is already in your cart." +msgstr "课程 {course_id} 已经在您的购物车中。" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "You are already registered in course {course_id}." +msgstr "您已经在课程 {course_id} 中注册。" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Course added to cart." +msgstr "课程添加到购物车。" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "Discount does not exist against code '{code}'." +msgstr "对应的折扣码 '{code}' 不存在。" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "This enrollment code ({enrollment_code}) is no longer valid." +msgstr "该选课码({enrollment_code})不再有效。" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "This enrollment code ({enrollment_code}) is not valid." +msgstr "该选课码({enrollment_code})无效" + +#: lms/djangoapps/shoppingcart/views.py +#, python-brace-format +msgid "" +"Code '{registration_code}' is not valid for any course in the shopping cart." +msgstr "注册编号‘{registration_code}’对于购物车中的任何课程都无效。" + +#: lms/djangoapps/shoppingcart/views.py +msgid "" +"Cart item quantity should not be greater than 1 when applying activation " +"code" +msgstr "当应用激活码时,购物车中的商品数量不应大于1" + +#: lms/djangoapps/shoppingcart/views.py +msgid "Only one coupon redemption is allowed against an order" +msgstr "每个订单只能对应一个返券" + +#: lms/djangoapps/shoppingcart/views.py +msgid "success" +msgstr "成功" + +#: lms/djangoapps/shoppingcart/views.py +msgid "You do not have permission to view this page." +msgstr "您没有访问此页面的权限。" + +#: lms/djangoapps/support/views/index.py +msgid "View and regenerate certificates." +msgstr "查看并产生证书。" + +#: lms/djangoapps/support/views/index.py lms/templates/support/refund.html +msgid "Manual Refund" +msgstr "人工退费" + +#: lms/djangoapps/support/views/index.py +msgid "Track refunds issued directly through CyberSource." +msgstr "直接透过CyberSource追踪退款问题。" + +#: lms/djangoapps/support/views/index.py +#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/enrollment.html +#: lms/templates/support/enrollment.html +msgid "Enrollment" +msgstr "选课" + +#: lms/djangoapps/support/views/index.py +msgid "View and update learner enrollments." +msgstr "查看及更新学习者注册资讯。" + +#: lms/djangoapps/support/views/index.py +#: lms/templates/support/manage_user.html +msgid "Manage User" +msgstr "管理用户" + +#: lms/djangoapps/support/views/index.py +msgid "Disable User Account" +msgstr "禁用用户账号" + +#: lms/djangoapps/support/views/index.py +#: lms/templates/support/entitlement.html +msgid "Entitlements" +msgstr "授权" + +#: lms/djangoapps/support/views/index.py +msgid "View, create, and reissue learner entitlements" +msgstr "查看、新建、重新分发学员授权" + +#: lms/djangoapps/support/views/index.py +#: lms/templates/support/feature_based_enrollments.html +msgid "Feature Based Enrollments" +msgstr "基于功能的注册" + +#: lms/djangoapps/support/views/index.py +msgid "View feature based enrollment settings" +msgstr "查看基于功能的注册设置" + +#: lms/djangoapps/support/views/manage_user.py +msgid "user_support_url" +msgstr "user_support_url" + +#: lms/djangoapps/support/views/manage_user.py +msgid "user_detail_url" +msgstr "user_detail_url" + +#: lms/djangoapps/support/views/manage_user.py +msgid "Usable" +msgstr "可用" + +#: lms/djangoapps/support/views/manage_user.py +msgid "Unusable" +msgstr "不可用" + +#: lms/djangoapps/support/views/manage_user.py +msgid "User Enabled Successfully" +msgstr "用户激活成功" + +#: lms/djangoapps/support/views/manage_user.py +msgid "User Disabled Successfully" +msgstr "成功禁用用户" + +#: lms/djangoapps/support/views/refund.py +#: lms/templates/shoppingcart/billing_details.html +msgid "Email Address" +msgstr "电子邮件地址" + +#: lms/djangoapps/support/views/refund.py +#: openedx/core/djangoapps/schedules/admin.py +#: cms/templates/maintenance/_force_publish_course.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: lms/templates/support/feature_based_enrollments.html +msgid "Course ID" +msgstr "课程编号" + +#: lms/djangoapps/support/views/refund.py +msgid "User not found" +msgstr "未找到用户" + +#: lms/djangoapps/support/views/refund.py +#, python-brace-format +msgid "Course {course_id} not past the refund window." +msgstr "课程 {course_id}没有通过退费窗口。" + +#: lms/djangoapps/support/views/refund.py +#, python-brace-format +msgid "No order found for {user} in course {course_id}" +msgstr "在课程{course_id}中没有为{user}找到订单。" + +#: lms/djangoapps/support/views/refund.py +#, python-brace-format +msgid "Unenrolled {user} from {course_id}" +msgstr "放弃选修{course_id}的{user}" + +#: lms/djangoapps/support/views/refund.py +#, python-brace-format +msgid "Refunded {cost} for order id {order_id}" +msgstr "订单{order_id}已退款{cost}" + +#: lms/djangoapps/teams/models.py +msgid "Optional language the team uses as ISO 639-1 code." +msgstr "团队所使用之选择性语言的代码为 ISO 639-1 。" + +#: lms/djangoapps/teams/plugins.py +#: lms/djangoapps/teams/templates/teams/teams.html +msgid "Teams" +msgstr "团队" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The supplied course id {course_id} is not valid." +msgstr "提供的课程编号{course_id}无效。" + +#: lms/djangoapps/teams/views.py +msgid "course_id must be provided" +msgstr "必须提供课程编号" + +#: lms/djangoapps/teams/views.py +msgid "text_search and order_by cannot be provided together" +msgstr "text_search和 order_by 不能一起被提供" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The supplied topic id {topic_id} is not valid" +msgstr "提供的主题编号{topic_id}无效" + +#: lms/djangoapps/teams/views.py +msgid "Error connecting to elasticsearch" +msgstr "到elasticsearch 的错误链接" + +#. Translators: 'ordering' is a string describing a way +#. of ordering a list. For example, {ordering} may be +#. 'name', indicating that the user wants to sort the +#. list by lower case name. +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The ordering {ordering} is not supported" +msgstr "不支持{ordering}排序" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The supplied course_id {course_id} is not valid." +msgstr "提供的课程编号{course_id}无效。" + +#: lms/djangoapps/teams/views.py +msgid "You are already in a team in this course." +msgstr "您已经加入了该课程中的一个小组。" + +#: lms/djangoapps/teams/views.py +msgid "username or team_id must be specified." +msgstr "必须制定用户名和team_id。" + +#: lms/djangoapps/teams/views.py +msgid "Username is required." +msgstr "需要填写用户名" + +#: lms/djangoapps/teams/views.py +msgid "Team id is required." +msgstr "需要填写Team id" + +#: lms/djangoapps/teams/views.py +msgid "This team is already full." +msgstr "该组已经满员。" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "The user {username} is already a member of a team in this course." +msgstr "用户{username}已经是该课程团队中的一员了。" + +#: lms/djangoapps/teams/views.py +#, python-brace-format +msgid "" +"The user {username} is not enrolled in the course associated with this team." +msgstr "{username}用户未选修与该团队相关的课程。" + +#: lms/djangoapps/verify_student/admin.py +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "Your {platform_name} ID Verification Approved" +msgstr "您的{platform_name}身份认证已通过" + +#: lms/djangoapps/verify_student/admin.py +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "Your {platform_name} Verification Has Been Denied" +msgstr "您的{platform_name}身份认证已被拒绝" + +#: lms/djangoapps/verify_student/models.py +msgid "The course for which this deadline applies" +msgstr "使用该截止日期的课程" + +#: lms/djangoapps/verify_student/models.py +msgid "" +"The datetime after which users are no longer allowed to submit photos for " +"verification." +msgstr "该日期之后,用户将不再允许提交照片用于认证了。" + +#: lms/djangoapps/verify_student/services.py +#, python-brace-format +msgid "Your {platform_name} verification has expired." +msgstr "您的 {platform_name} 认证已经过期。" + +#: lms/djangoapps/verify_student/views.py +msgid "Intro" +msgstr "简介" + +#: lms/djangoapps/verify_student/views.py +msgid "Make payment" +msgstr "付款" + +#: lms/djangoapps/verify_student/views.py +msgid "Payment confirmation" +msgstr "付款确认" + +#: lms/djangoapps/verify_student/views.py +msgid "Take photo" +msgstr "拍摄" + +#: lms/djangoapps/verify_student/views.py +msgid "Take a photo of your ID" +msgstr "拍摄一张您身份证件的照片" + +#: lms/djangoapps/verify_student/views.py +msgid "Review your info" +msgstr "审核您的信息" + +#: lms/djangoapps/verify_student/views.py +msgid "Enrollment confirmation" +msgstr "选课确认" + +#: lms/djangoapps/verify_student/views.py +msgid "Selected price is not valid number." +msgstr "选择的价格不是有效数字。" + +#: lms/djangoapps/verify_student/views.py +msgid "This course doesn't support paid certificates" +msgstr "本课程不支持付费认证证书。" + +#: lms/djangoapps/verify_student/views.py +msgid "No selected price or selected price is below minimum." +msgstr "未选择价格或选择的价格低于最低价。" + +#: lms/djangoapps/verify_student/views.py +msgid "" +"Photo ID image is required if the user does not have an initial verification" +" attempt." +msgstr "如果用户没有一个初步的验证尝试,则需要提供带照片的身份证件图片。" + +#: lms/djangoapps/verify_student/views.py +msgid "Missing required parameter face_image" +msgstr "缺少必要的参数:面部图像" + +#: lms/djangoapps/verify_student/views.py +msgid "Invalid course key" +msgstr "无效的课程标识" + +#: lms/djangoapps/verify_student/views.py +msgid "No profile found for user" +msgstr "未找到用户档案" + +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "Name must be at least {min_length} characters long." +msgstr "名字不能少于{min_length}字符。" + +#: lms/djangoapps/verify_student/views.py +msgid "Image data is not valid." +msgstr "图像数据无效." + +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "{platform_name} ID Verification Photos Received" +msgstr "已收到{platform_name}身份认证照片" + +#: lms/djangoapps/verify_student/views.py +#, python-brace-format +msgid "Review ID Verification Photos For {username}" +msgstr "查看{username}的身份验证照片" + +#: lms/envs/common.py +msgid "Your Platform Name Here" +msgstr "这里是平台名称" + +#: lms/envs/common.py +msgid "Your Platform Description Here" +msgstr "您的平台描述" + +#: lms/envs/common.py +msgid "Read access" +msgstr "访问权限" + +#: lms/envs/common.py +msgid "Write access" +msgstr "写访问权限" + +#: lms/envs/common.py +msgid "Know your email address" +msgstr "找回邮箱地址" + +#: lms/envs/common.py +msgid "Know your name and username" +msgstr "找回姓名及用户名" + +#: lms/envs/common.py +msgid "Retrieve your grades for your enrolled courses" +msgstr "重新获取已修课程的分数" + +#: lms/envs/common.py +msgid "Retrieve your course certificates" +msgstr "获取您的课程证书" + +#: lms/envs/common.py +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Audit" +msgstr "旁听" + +#. Translators: This is the website name of www.facebook.com. Please +#. translate this the way that Facebook advertises in your language. +#: lms/envs/common.py +msgid "Facebook" +msgstr "Facebook" + +#: lms/envs/common.py +#, python-brace-format +msgid "Like {platform_name} on Facebook" +msgstr "在Facebook上为{platform_name}点赞" + +#. Translators: This is the website name of www.twitter.com. Please +#. translate this the way that Twitter advertises in your language. +#: lms/envs/common.py +msgid "Twitter" +msgstr "Twitter" + +#: lms/envs/common.py +#, python-brace-format +msgid "Follow {platform_name} on Twitter" +msgstr "在Twitter上关注{platform_name}" + +#. Translators: This is the website name of www.linkedin.com. Please +#. translate this the way that LinkedIn advertises in your language. +#: lms/envs/common.py +msgid "LinkedIn" +msgstr "领英" + +#: lms/envs/common.py +#, python-brace-format +msgid "Follow {platform_name} on LinkedIn" +msgstr "在领英上关注 {platform_name}" + +#. Translators: This is the website name of plus.google.com. Please +#. translate this the way that Google+ advertises in your language. +#: lms/envs/common.py +msgid "Google+" +msgstr "Google+" + +#: lms/envs/common.py +#, python-brace-format +msgid "Follow {platform_name} on Google+" +msgstr "关注{platform_name} 的Google+账号" + +#. Translators: This is the website name of www.tumblr.com. Please +#. translate this the way that Tumblr advertises in your language. +#: lms/envs/common.py +msgid "Tumblr" +msgstr "Tumblr" + +#. Translators: This is the website name of www.meetup.com. Please +#. translate this the way that MeetUp advertises in your language. +#: lms/envs/common.py +msgid "Meetup" +msgstr "Meetup" + +#. Translators: This is the website name of www.reddit.com. Please +#. translate this the way that Reddit advertises in your language. +#: lms/envs/common.py +msgid "Reddit" +msgstr "Reddit网站" + +#: lms/envs/common.py +#, python-brace-format +msgid "Subscribe to the {platform_name} subreddit" +msgstr "订阅 {platform_name} 在Reddit网站的子板块" + +#. Translators: This is the website name of https://vk.com. Please +#. translate this the way that VK advertises in your language. +#: lms/envs/common.py +msgid "VK" +msgstr "VK" + +#. Translators: This is the website name of http://www.weibo.com. Please +#. translate this the way that Weibo advertises in your language. +#: lms/envs/common.py +msgid "Weibo" +msgstr "微博" + +#. Translators: This is the website name of www.youtube.com. Please +#. translate this the way that YouTube advertises in your language. +#: lms/envs/common.py +msgid "Youtube" +msgstr "YouTube" + +#: lms/envs/common.py +#, python-brace-format +msgid "Subscribe to the {platform_name} YouTube channel" +msgstr "订阅 {platform_name} 的YouTube频道" + +#: lms/envs/common.py lms/envs/eliteu_common.py +msgid "Kosovo" +msgstr "科索沃" + +#: lms/envs/common.py +#, python-brace-format +msgid "Welcome to {platform_name}." +msgstr "欢迎来到 {platform_name}" + +#: lms/envs/common.py +#, python-brace-format +msgid "" +"You have left the {start_bold}{enterprise_name}{end_bold} website and are " +"now on the {platform_name} site. {enterprise_name} has partnered with " +"{platform_name} to offer you high-quality, always available learning " +"programs to help you advance your knowledge and career. {line_break}Please " +"note that {platform_name} has a different {privacy_policy_link_start}Privacy" +" Policy{privacy_policy_link_end} from {enterprise_name}." +msgstr "" +"您已经离开 {start_bold}{enterprise_name}{end_bold} 页面,来到 {platform_name} 网站。 " +"{enterprise_name} 携手 {platform_name} " +"为您提供高质量,能随时随地学习的课程,助力您的知识扩展,事业进阶。{line_break}请注意, {platform_name} " +"的{privacy_policy_link_start}隐私政策{privacy_policy_link_end}与 {enterprise_name}" +" 不一致。" + +#: lms/envs/common.py +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Professional" +msgstr "教授" + +#: lms/envs/common.py +msgid "No-Id-Professional" +msgstr "未注册教授" + +#: lms/envs/common.py +msgid "Credit" +msgstr "学分" + +#: lms/envs/eliteu_common.py membership/templates/membership/card.html +#: membership/templates/membership/index.html +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/certificates/verify.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "EliteMBA" +msgstr "英荔商学院" + +#: lms/envs/eliteu_common.py +msgid "Certificate" +msgstr "结课证书" + +#: lms/envs/eliteu_common.py +msgid "Certificate of Achievement" +msgstr "荣誉证书" + +#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html +msgid "Please correct the errors below." +msgstr "请修正下面的错误" + +#: lms/templates/admin/user_api/accounts/cancel_retirement_action.html +#, python-format +msgid "Are you sure you want to cancel retirement for user \"%(username)s\"? " +msgstr "您确定要为用户\"%(username)s\"取消退出计划吗?" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#, python-format +msgid "" +"\n" +" Welcome to %(course_name)s\n" +" " +msgstr "" +"\n" +"欢迎 %(course_name)s" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#, python-format +msgid "To get started, please visit https://%(site_name)s." +msgstr "开始。请访问 https://%(site_name)s" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +msgid "The login information for your account follows:" +msgstr "您的账号登录信息如下:" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "email: %(email_address)s" +msgstr "电子邮件:%(email_address)s" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "password: %(password)s" +msgstr "密码:%(password)s" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +msgid "It is recommended that you change your password." +msgstr "建议您修改密码" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.html +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "Sincerely yours, The %(course_name)s Team" +msgstr "您的真挚的,%(course_name)s 团队" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "Welcome to %(course_name)s" +msgstr "欢迎 %(course_name)s" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/body.txt +#, python-format +msgid "" +"To get started, please visit https://%(site_name)s. The login information " +"for your account follows." +msgstr "开始。请访问https://%(site_name)s 。您的账号登录信息如下。" + +#: lms/templates/instructor/edx_ace/accountcreationandenrollment/email/subject.txt +#: lms/templates/instructor/edx_ace/enrollenrolled/email/subject.txt +#, python-format +msgid "You have been enrolled in %(course_name)s" +msgstr "您已经选修了%(course_name)s" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +#, python-format +msgid "" +"\n" +" You have been invited to be a beta tester for %(course_name)s at %(site_name)s\n" +" " +msgstr "" +"\n" +"您已被邀请作为 Beta 测试员加入%(site_name)s上的%(course_name)s。" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +msgid "The invitation has been sent by a member of the course staff." +msgstr "邀请已经由一名课程工作人员发出。" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +msgid "To start accessing course materials, please visit:" +msgstr "获取课程资料,请访问:" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +msgid "To enroll in this course and begin the beta test:" +msgstr "报名参加本课程并开始测试:" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +#, python-format +msgid "Visit %(course_name)s" +msgstr "访问%(course_name)s" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +#, python-format +msgid "Visit %(site_name)s" +msgstr "访问%(site_name)s" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.html +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#, python-format +msgid "" +"This email was automatically sent from %(site_name)s to %(email_address)s" +msgstr "该电子邮件是由%(site_name)s向%(email_address)s自动发出的" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt +#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt +#, python-format +msgid "Dear %(full_name)s" +msgstr "亲爱的%(full_name)s" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#, python-format +msgid "" +"You have been invited to be a beta tester for %(course_name)s at " +"%(site_name)s by a member of the course staff." +msgstr "您已被课程工作人员邀请作为 Beta 测试员加入%(site_name)s上的 %(course_name)s。" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt +#, python-format +msgid "To start accessing course materials, please visit %(course_url)s" +msgstr "获取课程资料,请访问 %(course_url)s" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#, python-format +msgid "" +"Visit %(course_about_url)s to enroll in this course and begin the beta test." +msgstr "访问%(course_about_url)s以加入该课程并开始Beta测试。" + +#: lms/templates/instructor/edx_ace/addbetatester/email/body.txt +#, python-format +msgid "Visit %(site_name)s to enroll in this course and begin the beta test." +msgstr "访问%(site_name)s以选修此课程并开始Beta测试。" + +#: lms/templates/instructor/edx_ace/addbetatester/email/subject.txt +#, python-format +msgid "You have been invited to a beta test for %(course_name)s" +msgstr "您被邀请参与一个%(course_name)sBeta测试。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#, python-format +msgid "You have been invited to %(course_name)s" +msgstr "您被邀请去%(course_name)s。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"You have been invited to join %(course_name)s at %(site_name)s by a member " +"of the course staff." +msgstr "您已被课程工作人员邀请加入 %(course_name)s上的%(site_name)s。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +msgid "To access this course click on the button below and login:" +msgstr "访问本课程,请点击下面的按钮并登录:" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +msgid "To access this course visit it and register:" +msgstr "要访问本课程,请访问并注册:" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#, python-format +msgid "" +"Please finish your registration and fill out the registration form making " +"sure to use %(email_address)s in the Email field:" +msgstr "请填写您的注册表,确保在电子邮件中使用%(email_address)s:" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +msgid "Finish Your Registration" +msgstr "完成您的注册" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"Once you have registered and activated your account, you will see " +"%(course_name)s listed on your dashboard." +msgstr "一旦您完成注册并已激活了您的账号,您将在课程面板中见到 %(course_name)s。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +msgid "" +"Once you have registered and activated your account, you will be able to " +"access this course:" +msgstr "一旦您完成注册并已激活了账号,您将可以访问该课程:" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "You can then enroll in %(course_name)s." +msgstr "您可以选修课程%(course_name)s。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +msgid "Dear student," +msgstr "亲爱的同学," + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "To access this course visit %(course_url)s and login." +msgstr "要进入该课程,请访问%(course_url)s登录。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"To access this course visit %(course_about_url)s and register for this " +"course." +msgstr "要进入该课程,请访问 %(course_about_url)s并注册该课程。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"To finish your registration, please visit %(registration_url)s and fill out " +"the registration form making sure to use %(email_address)s in the Email " +"field." +msgstr "要完成您的注册,请访问%(registration_url)s填写注册表格,并确保将 %(email_address)s填写在电子邮件中。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/body.txt +#, python-format +msgid "" +"Once you have registered and activated your account, visit " +"%(course_about_url)s to join this course." +msgstr "一旦您完成注册并已激活了您的账号,请访问%(course_about_url)s以加入该课程。" + +#: lms/templates/instructor/edx_ace/allowedenroll/email/subject.txt +#, python-format +msgid "You have been invited to register for %(course_name)s" +msgstr "您已被邀请注册%(course_name)s" + +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedunenroll/email/subject.txt +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/subject.txt +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#, python-format +msgid "You have been unenrolled from %(course_name)s" +msgstr "您已从课程%(course_name)s中被移除。" + +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#, python-format +msgid "" +"You have been unenrolled from the course %(course_name)s by a member of the " +"course staff. Please disregard the invitation previously sent." +msgstr "您已被课程工作人员从 %(course_name)s课程移除。请忽略之前向您发出的所有请求。" + +#: lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +msgid "Dear Student," +msgstr "亲爱的同学," + +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html +#, python-format +msgid "" +"\n" +" You have been unenrolled from %(course_name)s\n" +" " +msgstr "" +"\n" +"您已从课程%(course_name)s中被移除。" + +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt +#, python-format +msgid "" +"You have been unenrolled from %(course_name)s at %(site_name)s by a member " +"of the course staff. This course will no longer appear on your %(site_name)s" +" dashboard." +msgstr "" +"您已被课程工作人员加入到了%(site_name)s上的%(course_name)s。该课程应会立即出现在您的%(site_name)s课程面板中。" + +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt +msgid "Your other courses have not been affected." +msgstr "您参加的其他课程没有受到影响。" + +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.html +#: lms/templates/instructor/edx_ace/enrolledunenroll/email/body.txt +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt +#, python-format +msgid "This email was automatically sent from %(site_name)s to %(full_name)s" +msgstr "这封电子邮件是由%(site_name)s向%(full_name)s自动发送的" + +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html +#, python-format +msgid "" +"\n" +" You have been enrolled in %(course_name)s\n" +" " +msgstr "" +"\n" +"您已经选修了%(course_name)s" + +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.txt +#, python-format +msgid "" +"You have been enrolled in %(course_name)s at %(site_name)s by a member of " +"the course staff. This course will now appear on your %(site_name)s " +"dashboard." +msgstr "" +"您已被课程工作人员加入到了%(site_name)s上的%(course_name)s中。该课程应会立即出现在您的%(site_name)s课程面板中。" + +#: lms/templates/instructor/edx_ace/enrollenrolled/email/body.html +msgid "Access the Course Materials Now" +msgstr "现在访问课程资料" + +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +#, python-format +msgid "" +"You have been removed as a beta tester for %(course_name)s at %(site_name)s" +msgstr "在%(site_name)s,您已经从%(course_name)s课程的 Beta 测试中被移除" + +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +#, python-format +msgid "" +"You have been removed as a beta tester for %(course_name)s at %(site_name)s " +"by a member of the course staff." +msgstr "在%(site_name)s,您作为测试者已经被课程工作人员从%(course_name)s的 移除" + +#: lms/templates/instructor/edx_ace/removebetatester/email/body.html +msgid "" +"This course will remain on your dashboard, but you will no longer be part of" +" the beta testing group." +msgstr "这门课程将留在您的面板上,但您将不再是beta测试组的一员。" + +#: lms/templates/instructor/edx_ace/removebetatester/email/body.txt +#, python-format +msgid "" +"You have been removed as a beta tester for %(course_name)s at %(site_name)s " +"by a member of the course staff. This course will remain on your dashboard, " +"but you will no longer be part of the beta testing group." +msgstr "" +"您在%(site_name)s上的%(course_name)s课程的 Beta " +"测试员身份已被课程教员移除。该课程仍将显示在您的课程面板中,但您已不再是 Beta 测试组的一员。" + +#: lms/templates/instructor/edx_ace/removebetatester/email/subject.txt +#, python-format +msgid "You have been removed from a beta test for %(course_name)s" +msgstr "您已经从课程 %(course_name)sBeta 测试中被移除" + +#: lms/templates/logout.html themes/elitemba-theme/lms/templates/logout.html +msgid "Signed Out" +msgstr "已注销" + +#: lms/templates/logout.html themes/elitemba-theme/lms/templates/logout.html +msgid "You have signed out." +msgstr "您已注销。" + +#: lms/templates/logout.html themes/elitemba-theme/lms/templates/logout.html +#, python-format +msgid "" +"If you are not redirected within 5 seconds, click " +"here to go to the home page." +msgstr "如果您在5秒内没有被重定向,点击这里进入主页。" + +#: lms/templates/main_django.html cms/templates/base.html +#: lms/templates/main.html themes/elitemba-theme/cms/templates/base.html +#: themes/elitemba-theme/lms/templates/main.html +msgid "Skip to main content" +msgstr "跳至主要内容" + +#: lms/templates/oauth2_provider/authorize.html +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Authorize" +msgstr "授权" + +#: lms/templates/oauth2_provider/authorize.html +msgid "" +"The above application requests the following permissions from your account:" +msgstr "以上应用需要您账号进行以下授权:" + +#: lms/templates/oauth2_provider/authorize.html +msgid "" +"These permissions will be granted for data from your courses associated with" +" the following content providers:" +msgstr "这些授权用于与以下内容Provider相关的课程数据:" + +#: lms/templates/oauth2_provider/authorize.html +msgid "" +"Please click the 'Allow' button to grant these permissions to the above " +"application. Otherwise, to withhold these permissions, please click the " +"'Cancel' button." +msgstr "请点击“允许”按钮给以上应用进行授权。如果您不希望授权,请点击“取消”按钮。" + +#: lms/templates/oauth2_provider/authorize.html +#: openedx/core/djangoapps/user_api/admin.py +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +#: cms/templates/videos_index_pagination.html +#: lms/templates/provider/authorize.html +msgid "Cancel" +msgstr "取消" + +#: lms/templates/oauth2_provider/authorize.html +msgid "Allow" +msgstr "允许" + +#: lms/templates/oauth2_provider/authorize.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/ccx/schedule.html +msgid "Error" +msgstr "错误" + +#: lms/templates/wiki/article.html +#: themes/elitemba-theme/lms/templates/wiki/article.html +msgid "Last modified:" +msgstr "最后修改:" + +#: lms/templates/wiki/article.html +#: themes/elitemba-theme/lms/templates/wiki/article.html +msgid "See all children" +msgstr "查看所有子文章" + +#: lms/templates/wiki/article.html +#: themes/elitemba-theme/lms/templates/wiki/article.html +#: wiki/templates/wiki/article.html +msgid "This article was last modified:" +msgstr "这篇文章最后修改:" + +#: lms/templates/wiki/create.html wiki/templates/wiki/create.html +msgid "Add new article" +msgstr "增加新文章" + +#: lms/templates/wiki/create.html wiki/templates/wiki/create.html +msgid "Create article" +msgstr "创建文章" + +#: lms/templates/wiki/create.html lms/templates/wiki/delete.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +#: wiki/plugins/images/templates/wiki/plugins/images/purge.html +#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html +#: wiki/templates/wiki/create.html wiki/templates/wiki/delete.html +msgid "Go back" +msgstr "返回" + +#: lms/templates/wiki/delete.html lms/templates/wiki/edit.html +#: wiki/templates/wiki/delete.html wiki/templates/wiki/edit.html +msgid "Delete article" +msgstr "删除文章" + +#: lms/templates/wiki/delete.html +#: lms/templates/wiki/plugins/attachments/index.html +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/templates/wiki/delete.html +msgid "Delete" +msgstr "删除" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "You cannot delete a root article." +msgstr "根文章不可删除。" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "" +"You cannot delete this article because you do not have permission to delete " +"articles with children. Try to remove the children manually one-by-one." +msgstr "当文章带有子文章时您无权删除,请尝试手动逐一删除子文章。" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "" +"You are deleting an article. This means that its children will be deleted as" +" well. If you choose to purge, children will also be purged!" +msgstr "删除这篇文章将会导致相关子文章会同时被删除。如果您选择清除,子文章也将同时被清除。" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "Articles that will be deleted" +msgstr "将要被删除的文章" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "...and more!" +msgstr "……还有更多!" + +#: lms/templates/wiki/delete.html wiki/templates/wiki/delete.html +msgid "You are deleting an article. Please confirm." +msgstr "您正试图删除文章。请确认!" + +#: lms/templates/wiki/edit.html cms/templates/component.html +#: cms/templates/container.html cms/templates/studio_xblock_wrapper.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/wiki/includes/article_menu.html wiki/templates/wiki/edit.html +#: wiki/templates/wiki/includes/article_menu.html +msgid "Edit" +msgstr "编辑" + +#: lms/templates/wiki/edit.html lms/templates/ccx/schedule.html +#: wiki/templates/wiki/edit.html wiki/templates/wiki/settings.html +msgid "Save changes" +msgstr "保存修改" + +#: lms/templates/wiki/edit.html cms/templates/container.html +#: wiki/templates/wiki/edit.html +msgid "Preview" +msgstr "预览" + +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: this is a control to allow users to exit out of this modal +#. interface (a menu or piece of UI that takes the full focus of the screen) +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/includes/cheatsheet.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: lms/templates/dashboard.html lms/templates/forgot_password_modal.html +#: lms/templates/help_modal.html lms/templates/signup_modal.html +#: lms/templates/ccx/schedule.html +#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +#: lms/templates/modal/_modal-settings-language.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Close" +msgstr "关闭" + +#: lms/templates/wiki/edit.html +msgid "Wiki Preview" +msgstr "Wiki预览" + +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: this text gives status on if the modal interface (a menu or +#. piece of UI that takes the full focus of the screen) is open or not +#: lms/templates/wiki/edit.html lms/templates/wiki/history.html +#: lms/templates/wiki/includes/cheatsheet.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: lms/templates/dashboard.html +#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: lms/templates/modal/_modal-settings-language.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "window open" +msgstr "窗口打开" + +#: lms/templates/wiki/edit.html wiki/templates/wiki/edit.html +msgid "Back to editor" +msgstr "返回编辑器" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +#: wiki/templates/wiki/history.html +msgid "History" +msgstr "历史记录" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "" +"Click each revision to see a list of edited lines. Click the Preview button " +"to see how the article looked at this stage. At the bottom of this page, you" +" can change to a particular revision or merge an old revision with the " +"current one." +msgstr "" +"点击每一个版本,您将会看到被编辑行的列表。点击预览按钮,您可以看到这篇文章目前的状态。在页面的底部,您可以切换到一个指定版本,或者合并两个现存的版本生成新版本。" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "(no log message)" +msgstr "(无日志消息)" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Preview this revision" +msgstr "预览本次修改" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Auto log:" +msgstr "自动日志" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: cms/templates/videos_index_pagination.html +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +#: wiki/templates/wiki/history.html +msgid "Change" +msgstr "修改" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Merge selected with current..." +msgstr "合并选择项和当前项……" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Switch to selected version" +msgstr "转到选择的版本" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "Wiki Revision Preview" +msgstr "Wiki修订预览" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Back to history view" +msgstr "返回历史视图" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Switch to this version" +msgstr "切换到这个版本" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "Merge Revision" +msgstr "合并修订" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Merge with current" +msgstr "和当前版本合并" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "" +"When you merge a revision with the current, all data will be retained from " +"both versions and merged at its approximate location from each revision." +msgstr "当您合并修订版本与当前版本时,所有的数据都会被保留。修改信息将会合并到系统择优选择的位置。" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "After this, it's important to do a manual review." +msgstr "注意:请在操作完成后做一次人工检查。" + +#: lms/templates/wiki/history.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/history.html +msgid "Create new merged version" +msgstr "创建新的合并版本" + +#: lms/templates/wiki/includes/anonymous_blocked.html +#: wiki/templates/wiki/includes/anonymous_blocked.html +#, python-format +msgid "" +"You need to log in or sign up to use this function." +msgstr "" +"您必须登录注册才能使用这项功能。" + +#: lms/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in or sign up to use this function." +msgstr "您需要注册或者登录才能使用这个功能。" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Cheatsheet" +msgstr "Wiki简单说明" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wiki Syntax Help" +msgstr "Wiki语法帮助" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "" +"This wiki uses Markdown for styling. There are several " +"useful guides online. See any of the links below for in-depth details:" +msgstr "本Wiki使用了Markdown语法,网上可以找到很多有用的资料。点击以下链接可了解更多细节:" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Markdown: Basics" +msgstr "Markdown:基础知识" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quick Markdown Syntax Guide" +msgstr "Markdown 语法快速指南" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Miniature Markdown Guide" +msgstr "简明 Markdown 语法指南" + +#: lms/templates/wiki/includes/cheatsheet.html +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "" +"To create a new wiki article, create a link to it. Clicking the link gives " +"you the creation page." +msgstr "若想创建一篇新文章,可以先创建一个指向它的链接。点击该链接转向自动创建页面。" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "[Article Name](wiki:ArticleName)" +msgstr "[文章名称](wiki:ArticleName)" + +#: lms/templates/wiki/includes/cheatsheet.html +#, python-format +msgid "%(platform_name)s Additions:" +msgstr "%(platform_name)s 附加:" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Math Expression" +msgstr "数学表达式" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Useful examples:" +msgstr "实用的例子:" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Wikipedia" +msgstr "Wikipedia" + +#: lms/templates/wiki/includes/cheatsheet.html +#, python-format +msgid "%(platform_name)s Wiki" +msgstr "%(platform_name)s Wiki" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Huge Header" +msgstr "大标题" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Smaller Header" +msgstr "小标题" + +#. Translators: Leave the punctuation, but translate "emphasis" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "*emphasis* or _emphasis_" +msgstr "*重点* or _重点_" + +#. Translators: Leave the punctuation, but translate "strong" +#: lms/templates/wiki/includes/cheatsheet.html +msgid "**strong** or __strong__" +msgstr "**强调** or __强调__" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Unordered List" +msgstr "无序列表" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 1" +msgstr "子项目1" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Sub Item 2" +msgstr "子项目2" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Ordered" +msgstr "排序" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "List" +msgstr "列表" + +#: lms/templates/wiki/includes/cheatsheet.html +msgid "Quotes" +msgstr "引言" + +#: lms/templates/wiki/includes/editor_widget.html +#, python-format +msgid "" +"Markdown syntax is allowed. See the %(start_link)scheatsheet%(end_link)s for" +" help." +msgstr "允许使用MarkDown语法。请参阅%(start_link)s快捷键管理%(end_link)s以获得帮助。" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/wiki_plugin.py +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Attachments" +msgstr "附件" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Upload new file" +msgstr "上传新文件" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Search and add file" +msgstr "搜索并添加文件" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "Upload File" +msgstr "上传文件" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Upload file" +msgstr "上传文件" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Search files and articles" +msgstr "搜索文件和文章" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "" +"You can reuse files from other articles. These files are subject to updates " +"on other articles which may or may not be a good thing." +msgstr "您可以从其他文章中重用一些文件。但是该文件的更新依赖于原始文章,请判断该引用关系是否恰当。" + +#: lms/templates/wiki/plugins/attachments/index.html +#: lms/templates/dashboard.html lms/templates/index.html +#: lms/templates/api_admin/catalogs/search.html +#: lms/templates/courseware/courses.html +#: lms/templates/courseware/courseware.html +#: lms/templates/edxnotes/edxnotes.html +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +#: openedx/features/course_search/templates/course_search/course-search-fragment.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/index.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +#: themes/stanford-style/lms/templates/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Search" +msgstr "搜索" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "" +"The following files are available for this article. Copy the markdown tag to" +" directly refer to a file from the article text." +msgstr "下列文件对这篇文章可用,请复制markdown标记到文本中,直接指向对应文件。" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Markdown tag" +msgstr "Markdown标记" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Uploaded by" +msgstr "上传者是" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Size" +msgstr "大小" + +#: lms/templates/wiki/plugins/attachments/index.html +msgid "File History" +msgstr "文件历史记录" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "Detach" +msgstr "分离" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Replace" +msgstr "替换" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +#: wiki/templates/wiki/deleted.html +msgid "Restore" +msgstr "恢复" + +#: lms/templates/wiki/plugins/attachments/index.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +#: wiki/templates/wiki/includes/revision_info.html +msgid "anonymous (IP logged)" +msgstr "匿名(IP已记录)" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "File history" +msgstr "文件历史" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "revisions" +msgstr "修订版" + +#: lms/templates/wiki/plugins/attachments/index.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/index.html +msgid "There are no attachments for this article." +msgstr "这篇文章没有附件" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing revision:" +msgstr "预览修改:" + +#: lms/templates/wiki/preview_inline.html +msgid "Previewing a merge between two revisions:" +msgstr "预览合并效果:" + +#: lms/templates/wiki/preview_inline.html +#: wiki/templates/wiki/preview_inline.html +msgid "This revision has been deleted." +msgstr "该修订已被删除。" + +#: lms/templates/wiki/preview_inline.html +#: wiki/templates/wiki/preview_inline.html +msgid "Restoring to this revision will mark the article as deleted." +msgstr "恢复该修订将标记本文章为已删除状态。" + +#: lms/urls.py +msgid "LMS Administration" +msgstr "LMS管理" + +#: openedx/core/djangoapps/ace_common/apps.py +msgid "ACE Common" +msgstr "ACE 共享" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "Go to %(platform_name)s Home Page" +msgstr "前往%(platform_name)s主页" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#: cms/templates/login.html cms/templates/widgets/header.html +msgid "Sign In" +msgstr "登录" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on LinkedIn" +msgstr "%(platform_name)s的领英官方号" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on Twitter" +msgstr "%(platform_name)s的推特官方账号" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on Facebook" +msgstr "%(platform_name)s的Facebook官方账号" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on Google Plus" +msgstr "%(platform_name)s的Google+官方账号" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#, python-format +msgid "%(platform_name)s on Reddit" +msgstr "%(platform_name)s的Reddit官方账号" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +msgid "Download the iOS app on the Apple Store" +msgstr "在平台官方应用商店下载iOS App" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +msgid "Download the Android app on the Google Play Store" +msgstr "在Google Play商店下载安卓App" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +msgid "," +msgstr "," + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +msgid "All rights reserved." +msgstr "保留所有权利。" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +msgid "Our mailing address is" +msgstr "我们的邮箱地址" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/base_head.html +msgid "EliteMBA Email" +msgstr "英荔商学院邮箱" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.html +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.txt +#, python-format +msgid "" +"Don't miss the opportunity to highlight your new knowledge and skills by " +"earning a verified certificate. Upgrade by " +"%(user_schedule_upgrade_deadline_time)s." +msgstr "" +"抓住冲刺认证证书的机会,以此学习新知识、掌握新技能。请于%(user_schedule_upgrade_deadline_time)s前升级证书。" + +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.html +#: openedx/core/djangoapps/ace_common/templates/ace_common/edx_ace/common/upsell_cta.txt +msgid "Upgrade Now" +msgstr "立刻升级" + +#: openedx/core/djangoapps/api_admin/admin.py +#, python-brace-format +msgid "" +"Once you have approved this request, go to {catalog_admin_url} to set up a " +"catalog for this user." +msgstr "一旦您已批准此请求,请前往{catalog_admin_url}为此用户设置一个目录。" + +#: openedx/core/djangoapps/api_admin/forms.py +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Organization Name" +msgstr "机构名称" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "Organization Address" +msgstr "组织地址" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "Describe what your application does." +msgstr "描述您的应用的功能。" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "The URL of your organization's website." +msgstr "您组织网站的URL。" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "The name of your organization." +msgstr "您组织的名称。" + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "The contact address of your organization." +msgstr "您组织的联系地址。" + +#: openedx/core/djangoapps/api_admin/forms.py +#, python-brace-format +msgid "The following users do not exist: {usernames}." +msgstr "以下用户不存在: {usernames}." + +#: openedx/core/djangoapps/api_admin/forms.py +msgid "" +"Comma-separated list of usernames which will be able to view this catalog." +msgstr "在此目录中可查看逗号隔开的用户名列表。" + +#: openedx/core/djangoapps/api_admin/models.py cms/templates/index.html +msgid "Denied" +msgstr "拒绝" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "Approved" +msgstr "已批准" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "Status of this API access request" +msgstr "此 API 访问请求的状态" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "The URL of the website associated with this API user." +msgstr "与此 API 用户相关的网站的 URL。" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "The reason this user wants to access the API." +msgstr "此用户希望访问 API 的原因。" + +#: openedx/core/djangoapps/api_admin/models.py +#, python-brace-format +msgid "API access request from {company}" +msgstr "{company} 的 API 访问请求" + +#: openedx/core/djangoapps/api_admin/models.py +msgid "API access request" +msgstr "API 访问请求" + +#: openedx/core/djangoapps/api_admin/widgets.py +#, python-brace-format +msgid "" +"I, and my organization, accept the {link_start}{platform_name} API Terms of " +"Service{link_end}." +msgstr "我和我的组织均同意此{link_start}{platform_name}API服务条款{link_end}。" + +#: openedx/core/djangoapps/bookmarks/apps.py +#: openedx/features/course_bookmarks/plugins.py +#: openedx/features/course_bookmarks/views/course_bookmarks.py +#: lms/templates/courseware/courseware.html +#: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html +msgid "Bookmarks" +msgstr "书签" + +#: openedx/core/djangoapps/bookmarks/views.py +msgid "An error has occurred. Please try again." +msgstr "发生了一个未知错误,请重试。" + +#: openedx/core/djangoapps/bookmarks/views.py +msgid "No data provided." +msgstr "未提供数据。" + +#: openedx/core/djangoapps/bookmarks/views.py +msgid "Parameter usage_id not provided." +msgstr "未提供参数usage_id。" + +#: openedx/core/djangoapps/bookmarks/views.py +#, python-brace-format +msgid "Invalid usage_id: {usage_id}." +msgstr "无效 usage_id: {usage_id}。" + +#: openedx/core/djangoapps/bookmarks/views.py +#, python-brace-format +msgid "Block with usage_id: {usage_id} not found." +msgstr "封锁 usage_id: {usage_id}搜寻不到。" + +#: openedx/core/djangoapps/bookmarks/views.py +#, python-brace-format +msgid "" +"You can create up to {max_num_bookmarks_per_course} bookmarks. You must " +"remove some bookmarks before you can add new ones." +msgstr "您可以建立 {max_num_bookmarks_per_course} 书签。您必须在新增书签前删除一些书签。" + +#: openedx/core/djangoapps/bookmarks/views.py +#, python-brace-format +msgid "Bookmark with usage_id: {usage_id} does not exist." +msgstr "书签 usage_id: {usage_id} 不存在。" + +#: openedx/core/djangoapps/catalog/models.py +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Internal API URL" +msgstr "内部API URL" + +#: openedx/core/djangoapps/catalog/models.py +msgid "DEPRECATED: Use the setting COURSE_CATALOG_API_URL." +msgstr "不推荐项:使用设置项“COURSE_CATALOG_API_URL”。" + +#: openedx/core/djangoapps/catalog/models.py +msgid "" +"Specified in seconds. Enable caching of API responses by setting this to a " +"value greater than 0." +msgstr "以秒为单位,通过将此值设置为大于0来启用API回复缓存。" + +#: openedx/core/djangoapps/catalog/models.py +msgid "Long Term Cache Time To Live" +msgstr "长期缓存有效时间" + +#: openedx/core/djangoapps/catalog/models.py +msgid "" +"Specified in seconds (defaults to 86400s, 24hr). In some cases the cache " +"does needs to be refreshed less frequently. Enable long term caching of API " +"responses by setting this to a value greater than 0." +msgstr "精确到秒(默认值86400秒/24小时)。有时候请勿太频繁刷新缓存,通过将此值设置为大于0来启用长期API回复缓存。" + +#: openedx/core/djangoapps/catalog/models.py +msgid "" +"Username created for Course Catalog Integration, e.g. " +"lms_catalog_service_user." +msgstr "用于课程目录整合的用户名,例如:lms_catalog_service_user。" + +#: openedx/core/djangoapps/catalog/models.py +msgid "Page Size" +msgstr "页面尺寸" + +#: openedx/core/djangoapps/catalog/models.py +msgid "" +"Maximum number of records in paginated response of a single request to " +"catalog service." +msgstr "对目录服务的单个请求的最大记录数量,表现形式为分页回复。" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "Enabled" +msgstr "已启用" + +#: openedx/core/djangoapps/config_model_utils/models.py +msgid "Configuration may not be specified at more than one level at once." +msgstr "不能一次在多个级别指定配置。" + +#: openedx/core/djangoapps/cors_csrf/models.py +msgid "" +"List of domains that are allowed to make cross-domain requests to this site." +" Please list each domain on its own line." +msgstr "允许进行跨域请求至此页面的主机列表。请在每一行列出一个主机。" + +#: openedx/core/djangoapps/course_groups/cohorts.py +msgid "Default Group" +msgstr "默认组" + +#: openedx/core/djangoapps/course_groups/cohorts.py +msgid "You cannot create two cohorts with the same name" +msgstr "您无法创建两个具有相同名称的群组。" + +#: openedx/core/djangoapps/course_groups/cohorts.py +msgid "" +"There must be one cohort to which students can automatically be assigned." +msgstr "必须存在一个可以将学生自动分配进去的群组。" + +#: openedx/core/djangoapps/course_groups/views.py +msgid "A cohort with the same name already exists." +msgstr "具有相同名称的群组已存在。" + +#: openedx/core/djangoapps/credentials/apps.py +msgid "Credentials" +msgstr "证书" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Internal Service URL" +msgstr "内部服务链接" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Public Service URL" +msgstr "公众服务链接" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Enable Learner Issuance" +msgstr "使学习者发表问题" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Enable issuance of credentials via Credential Service." +msgstr "透过证书服务启动发布认证" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Enable Authoring of Credential in Studio" +msgstr "在工作室中,启动编辑的证书" + +#: openedx/core/djangoapps/credentials/models.py +msgid "Enable authoring of Credential Service credentials in Studio." +msgstr "在工作室中,启动编辑证书服务的资格" + +#: openedx/core/djangoapps/credit/email_utils.py +msgid "Course Credit Eligibility" +msgstr "学分评定资格" + +#: openedx/core/djangoapps/credit/email_utils.py +#, python-brace-format +msgid "You are eligible for credit from {providers_string}" +msgstr "您有资格获得 {providers_string} 的学分" + +#. Translators: The join of two university names (e.g., Harvard and MIT). +#: openedx/core/djangoapps/credit/email_utils.py +#, python-brace-format +msgid "{first_provider} and {second_provider}" +msgstr "{first_provider} 和{second_provider}" + +#. Translators: The join of three or more university names. The first of these +#. formatting strings +#. represents a comma-separated list of names (e.g., MIT, Harvard, Dartmouth). +#: openedx/core/djangoapps/credit/email_utils.py +#, python-brace-format +msgid "{first_providers}, and {last_provider}" +msgstr "{first_providers},和{last_provider}" + +#: openedx/core/djangoapps/credit/exceptions.py +#, python-brace-format +msgid "[{username}] is not eligible for credit for [{course_key}]." +msgstr "[{username}] 没有获得[{course_key}]学分的资格。" + +#: openedx/core/djangoapps/credit/exceptions.py +#, python-brace-format +msgid "[{course_key}] is not a valid course key." +msgstr "[{course_key}] 不是有效课程密钥。" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Unique identifier for this credit provider. Only alphanumeric characters and" +" hyphens (-) are allowed. The identifier is case-sensitive." +msgstr "学分提供方的唯一标识符。只允许使用数字、字母和连字符(-),且大小写敏感。" + +#: openedx/core/djangoapps/credit/models.py +msgid "Whether the credit provider is currently enabled." +msgstr "当前是否启用学分提供方。" + +#: openedx/core/djangoapps/credit/models.py +msgid "Name of the credit provider displayed to users" +msgstr "展现给用户的学分提供者的名称" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"When true, automatically notify the credit provider when a user requests " +"credit. In order for this to work, a shared secret key MUST be configured " +"for the credit provider in secure auth settings." +msgstr "当该值为True时,若用户请求学分则自动通知学分提供方。为使该操作生效,共享密钥必须配置学分提供方的安全认证设置。" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"URL of the credit provider. If automatic integration is enabled, this will " +"the the end-point that we POST to to notify the provider of a credit " +"request. Otherwise, the user will be shown a link to this URL, so the user " +"can request credit from the provider directly." +msgstr "" +"信贷提供者之网址。如果可以启动自动集成,这将是最后一次发布通知信贷提供者。除此之外,使用者将可看到一个链接网址,使用者可以直接向信贷提供者申请贷款。" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"URL from the credit provider where the user can check the status of his or " +"her request for credit. This is displayed to students *after* they have " +"requested credit." +msgstr "信贷提供者可从网址让使用者可检查他或她申请贷款之状态。这是显示於学生们申请贷款后。" + +#: openedx/core/djangoapps/credit/models.py +msgid "Description for the credit provider displayed to users." +msgstr "展现给用户的学分提供方的描述。" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Plain text or html content for displaying further steps on receipt page " +"*after* paying for the credit to get credit for a credit course against a " +"credit provider." +msgstr "纯文本或html内容显示进一步收据页面於支付款项后,获得信贷提供者所提供之学分课程。" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Plain text or html content for displaying custom message inside credit " +"eligibility email content which is sent when user has met all credit " +"eligibility requirements." +msgstr "纯文本或html内容显示,当使用者符合所有信贷资格时,会被发送用户信贷资格讯息通知。" + +#: openedx/core/djangoapps/credit/models.py +msgid "" +"Plain text or html content for displaying custom message inside credit " +"receipt email content which is sent *after* paying to get credit for a " +"credit course." +msgstr "纯文本或html内容显示,当支付学分课程后,会发送使用者收据讯息。" + +#: openedx/core/djangoapps/credit/models.py +msgid "Thumbnail image url of the credit provider." +msgstr "学分提供者的缩图网址。" + +#: openedx/core/djangoapps/credit/models.py +msgid "Credit requirement statuses" +msgstr "学分要求状态" + +#: openedx/core/djangoapps/credit/models.py +msgid "Deadline for purchasing and requesting credit." +msgstr "购买和请求学分的截止日期。" + +#: openedx/core/djangoapps/dark_lang/views.py +msgid "Preview Language Administration" +msgstr "预览语言管理" + +#: openedx/core/djangoapps/dark_lang/views.py +msgid "Language not provided" +msgstr "未提供语言" + +#: openedx/core/djangoapps/dark_lang/views.py +#, python-brace-format +msgid "Language set to {preview_language}" +msgstr "语言为{preview_language}" + +#: openedx/core/djangoapps/dark_lang/views.py +msgid "Language reset to the default" +msgstr "重置为默认语言" + +#: openedx/core/djangoapps/debug/views.py +msgid "This is a test message" +msgstr "这是一条测试信息" + +#: openedx/core/djangoapps/debug/views.py +msgid "This is a success message" +msgstr "这是一条成功的信息" + +#: openedx/core/djangoapps/debug/views.py +msgid "This is a test warning" +msgstr "这是一个测试警告" + +#: openedx/core/djangoapps/debug/views.py +msgid "This is a test error" +msgstr "这是一个测试错误" + +#: openedx/core/djangoapps/embargo/forms.py +#: openedx/core/djangoapps/verified_track_content/forms.py +msgid "COURSE NOT FOUND. Please check that the course ID is valid." +msgstr "课程未找到,请检查课程 ID 是否有效。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The course key for the restricted course." +msgstr "此受限课程的课程标识。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The message to show when a user is blocked from enrollment." +msgstr "当用户被阻止选课时显示的信息。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The message to show when a user is blocked from accessing a course." +msgstr "对不起,您暂时无法进入此课程的学习。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "" +"Allow users who enrolled in an allowed country to access restricted courses " +"from excluded countries." +msgstr "允许注册于许可国家或地区的用户能从受限国家或地区登入受限课程。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "Two character ISO country code." +msgstr "ISO国家代码 (2位)" + +#: openedx/core/djangoapps/embargo/models.py +msgid "" +"Whether to include or exclude the given course. If whitelist countries are " +"specified, then ONLY users from whitelisted countries will be able to access" +" the course. If blacklist countries are specified, then users from " +"blacklisted countries will NOT be able to access the course." +msgstr "无论保留或者删减指定课程。一旦某国被认定为白名单,则只有这个国家的用户可以参加课程;一旦某国被认定为黑名单,则这个国家的用户不能参加课程。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The course to which this rule applies." +msgstr "使用该规则的课程。" + +#: openedx/core/djangoapps/embargo/models.py +msgid "The country to which this rule applies." +msgstr "这条规律同样适用于这个国家。" + +#: openedx/core/djangoapps/embargo/models.py +#, python-brace-format +msgid "Whitelist {country} for {course}" +msgstr "课程{course}的白名单国家: {country}" + +#: openedx/core/djangoapps/embargo/models.py +#, python-brace-format +msgid "Blacklist {country} for {course}" +msgstr "课程{course}的黑名单国家: {country}" + +#: openedx/core/djangoapps/external_auth/views.py +#, python-brace-format +msgid "" +"You have already created an account using an external login like WebAuth or " +"Shibboleth. Please contact {tech_support_email} for support." +msgstr "您已经创建使用外部登录类似的WebAuth或Shibboleth的帐户。请联系{tech_support_email}支持。" + +#: openedx/core/djangoapps/external_auth/views.py +msgid "" +"\n" +" Your university identity server did not return your ID information to us.\n" +" Please try logging in again. (You may need to restart your browser.)\n" +" " +msgstr "" +"\n" +" 您的大学身份服务器未将您的身份信息返回给我们,\n" +" 请重新登录(可能需要重启浏览器。)\n" +" " + +#: openedx/core/djangoapps/oauth_dispatch/models.py +msgid "" +"Comma-separated list of scopes that this application will be allowed to " +"request." +msgstr "用逗号隔开的此应用可申请范围列表。" + +#: openedx/core/djangoapps/oauth_dispatch/models.py +msgid "Content Provider" +msgstr "内容Provider" + +#: openedx/core/djangoapps/password_policy/apps.py +msgid "Password Policy" +msgstr "密码政策" + +#: openedx/core/djangoapps/password_policy/compliance.py +#, python-brace-format +msgid "" +"{strong_tag_open}We recently changed our password " +"requirements{strong_tag_close}{break_line_tag}Your current password does not" +" meet the new security requirements. We just sent a password-reset message " +"to the email address associated with this account. Thank you for helping us " +"keep your data safe." +msgstr "" +"{strong_tag_open}我们最近更改了密码要求{strong_tag_close}{break_line_tag}您当前的密码不符合新的安全要求。我们刚刚发送了一个密码重置消息到与这个账号相关联的电子邮件地址。感谢您帮助我们保护您的数据安全。" + +#: openedx/core/djangoapps/password_policy/compliance.py +#, python-brace-format +msgid "" +"{strong_tag_open}Required Action: Please update your " +"password{strong_tag_close}{break_line_tag}As of {deadline}, {platform_name} " +"will require all learners to have complex passwords. Your current password " +"does not meet these requirements. To reset your password, go to to " +"{anchor_tag_open}Account Settings{anchor_tag_close}." +msgstr "" +"{strong_tag_open}要求的行动:请更新您的密码{strong_tag_close}{break_line_tag}自 " +"{deadline}起, " +"{platform_name}将要求所有的学员有复杂的密码。您当前的密码不满足这些要求。要重置密码,去{anchor_tag_open}账号设置{anchor_tag_close}。" + +#: openedx/core/djangoapps/profile_images/images.py +#, python-brace-format +msgid "The file must be smaller than {image_max_size} in size." +msgstr "文件必须小于 {image_max_size} 。" + +#: openedx/core/djangoapps/profile_images/images.py +#, python-brace-format +msgid "The file must be at least {image_min_size} in size." +msgstr "文件必须大于 {image_min_size} 。" + +#: openedx/core/djangoapps/profile_images/images.py +#, python-brace-format +msgid "The file must be one of the following types: {valid_file_types}." +msgstr "文件必须为以下其中一项样式:{valid_file_types}。" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "" +"The Content-Type header for this file does not match the file data. The file" +" may be corrupted." +msgstr "此文件内容类型标题不匹配文件数据。该文件可能已损坏。" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "" +"The file name extension for this file does not match the file data. The file" +" may be corrupted." +msgstr "扩展之文件名称不匹配文件数据。该文件可能已损坏。" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "bytes" +msgstr "字节" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "KB" +msgstr "KB" + +#: openedx/core/djangoapps/profile_images/images.py +msgid "MB" +msgstr "MB" + +#: openedx/core/djangoapps/profile_images/views.py +msgid "No file provided for profile image" +msgstr "未向档案照片提交文件" + +#: openedx/core/djangoapps/programs/models.py +msgid "Path used to construct URLs to programs marketing pages (e.g., \"/foo\")." +msgstr "用于构建方案销售页面URL的路径(例如:\"/foo\")。" + +#: openedx/core/djangoapps/schedules/admin.py +msgid "Known Error Case" +msgstr "已知错误案例" + +#: openedx/core/djangoapps/schedules/admin.py +msgid "Schedule start < course start" +msgstr "计划开始时间 < 课程开始时间" + +#: openedx/core/djangoapps/schedules/admin.py +msgid "All" +msgstr "所有" + +#: openedx/core/djangoapps/schedules/admin.py +msgid "Experience" +msgstr "经验" + +#: openedx/core/djangoapps/schedules/apps.py +#: openedx/core/djangoapps/schedules/models.py +msgid "Schedules" +msgstr "时间表" + +#: openedx/core/djangoapps/schedules/models.py +msgid "Indicates if this schedule is actively used" +msgstr "表明此时间表是否生效" + +#: openedx/core/djangoapps/schedules/models.py +msgid "Date this schedule went into effect" +msgstr "此时间表生效日期" + +#: openedx/core/djangoapps/schedules/models.py +msgid "Deadline by which the learner must upgrade to a verified seat" +msgstr "学员必须升级为认证名额的截止日期" + +#: openedx/core/djangoapps/schedules/models.py +#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/schedule.html +msgid "Schedule" +msgstr "时间表" + +#: openedx/core/djangoapps/schedules/templates/dropdown_filter.html +#, python-format +msgid " By %(filter_title)s " +msgstr "于%(filter_title)s前" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html +#, python-format +msgid "Welcome to week %(week_num)s of %(course_name)s!" +msgstr "%(week_num)s学习的第%(course_name)s周!" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html +#, python-format +msgid "" +"We hope you're enjoying %(course_name)s! We want to let you" +" know what you can look forward to in week %(week_num)s:" +msgstr "希望您喜欢我们的课程%(course_name)s!以下是第%(week_num)s周的学习内容:" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.txt +msgid "" +"With self-paced courses, you learn on your own schedule. We encourage you to" +" spend time with the course each week. Your focused attention will pay off " +"in the end!" +msgstr "自定学习进度的课程,由您自定学习计划时间表。我们建议您每周都学习,您的孜孜不倦会换来硕果累累。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.html +msgid "Resume your course now" +msgstr "继续学习课程" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/body.txt +#, python-format +msgid "" +"We hope you're enjoying %(course_name)s! We want to let you know what you " +"can look forward to in week %(week_num)s:" +msgstr "希望您喜欢我们的课程%(course_name)s!以下是第%(week_num)s周的学习内容:" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/courseupdate/email/subject.txt +#, python-format +msgid "Welcome to week %(week_num)s" +msgstr "欢迎来到第%(week_num)s周" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt +#, python-format +msgid "" +"Many %(platform_name)s learners are completing more problems every week, and" +" participating in the discussion forums. What do you want to do to keep " +"learning?" +msgstr "每周都有许多%(platform_name)s学员完成越来越多的题目,并参与讨论。您想要继续学习什么内容?" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt +#, python-format +msgid "" +"Many %(platform_name)s learners in %(course_name)s are completing more " +"problems every week, and participating in the discussion forums. What do you" +" want to do to keep learning?" +msgstr "" +"每周都有许多%(platform_name)s学员完成越来越多的%(course_name)s课程题目,并参与讨论。您想要继续学习什么内容?" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/subject.txt +msgid "Keep up the momentum!" +msgstr "保持势头!" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#, python-format +msgid "" +"Many %(platform_name)s learners in %(course_name)s are " +"completing more problems every week, and participating in the discussion " +"forums. What do you want to do to keep learning?" +msgstr "" +"每周都有许多%(platform_name)s学员完成越来越多的%(course_name)s课程题目,并参与讨论。您想要继续学习什么内容?" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day10/email/body.txt +msgid "Keep learning" +msgstr "继续学习" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s, and other courses on " +"%(platform_name)s? We do, and we’re glad to have you! Come see what everyone" +" is learning." +msgstr "" +"您还记得在%(platform_name)s上报名了%(course_name)s和其他课程吗?很荣幸您报名了我们的课程!赶紧来看看大家都在学习什么吧。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s on %(platform_name)s? We do, " +"and we’re glad to have you! Come see what everyone is learning." +msgstr "" +"您还记得在%(platform_name)s上报名了%(course_name)s吗?很荣幸您报名了我们的课程!赶紧来看看大家都在学习什么吧。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +msgid "Keep learning today" +msgstr "继续学习" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s, and other " +"courses on %(platform_name)s? We do, and we’re glad to have you! Come see " +"what everyone is learning." +msgstr "" +"您还记得在%(platform_name)s上报名了%(course_name)s吗?很荣幸您报名了我们的课程!赶紧来看看大家都在学习什么吧。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s on " +"%(platform_name)s? We do, and we’re glad to have you! Come see what everyone" +" is learning." +msgstr "" +"您还记得在%(platform_name)s上报名了%(course_name)s吗?很荣幸您报名了我们的课程!赶紧来看看大家都在学习什么吧。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#: themes/elitemba-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +msgid "Start learning now" +msgstr "马上开始学习" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/subject.txt +#, python-format +msgid "Keep learning on %(platform_name)s" +msgstr "继续在%(platform_name)s学习" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/recurringnudge_day3/email/subject.txt +#, python-format +msgid "Keep learning in %(course_name)s" +msgstr "继续学习%(course_name)s" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt +#, python-format +msgid "" +"We hope you are enjoying learning with us so far on %(platform_name)s! A " +"verified certificate allows you to highlight your new knowledge and skills. " +"An %(platform_name)s certificate is official and easily shareable. Upgrade " +"by %(user_schedule_upgrade_deadline_time)s." +msgstr "" +"感谢您在我们%(platform_name)s上学习!您可以考取认证证书来突显您的新知识、新技能。专业且易于分享的%(platform_name)s认证证书,欢迎您于%(user_schedule_upgrade_deadline_time)s前进行升级。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt +#, python-format +msgid "" +"We hope you are enjoying learning with us so far in %(first_course_name)s! A" +" verified certificate allows you to highlight your new knowledge and skills." +" An %(platform_name)s certificate is official and easily shareable. Upgrade " +"by %(user_schedule_upgrade_deadline_time)s." +msgstr "" +"感谢您至今在我们%(first_course_name)s上的学习!您可以考取认证证书来突显您的新知识、新技能。专业且易于分享的%(platform_name)s认证证书,欢迎您于%(user_schedule_upgrade_deadline_time)s前进行升级。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +msgid "Upgrade now" +msgstr "马上升级" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#, python-format +msgid "" +"We hope you are enjoying learning with us so far on " +"%(platform_name)s! A verified certificate allows you to " +"highlight your new knowledge and skills. An %(platform_name)s certificate is" +" official and easily shareable." +msgstr "" +"感谢您至今在我们%(platform_name)s上的学习!您可以考取我们专业且易于分享的%(platform_name)s认证证书来突显您的新知识、新技能。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#, python-format +msgid "" +"We hope you are enjoying learning with us so far in " +"%(first_course_name)s! A verified certificate allows you to" +" highlight your new knowledge and skills. An %(platform_name)s certificate " +"is official and easily shareable." +msgstr "" +"感谢您至今在我们%(first_course_name)s上的学习!您可以考取我们专业且易于分享的%(platform_name)s认证证书来突显您的新知识、新技能。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +#, python-format +msgid "Upgrade by %(user_schedule_upgrade_deadline_time)s." +msgstr "请于%(user_schedule_upgrade_deadline_time)s前进行升级。" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +msgid "You are eligible to upgrade in these courses:" +msgstr "您具备以下课程的证书升级资格:" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.html +msgid "Example of a verified certificate" +msgstr "认证证书示例" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/body.txt +msgid "Upgrade now at" +msgstr "马上升级" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/subject.txt +#, python-format +msgid "Upgrade to earn a verified certificate on %(platform_name)s" +msgstr "在%(platform_name)s升级考取认证证书" + +#: openedx/core/djangoapps/schedules/templates/schedules/edx_ace/upgradereminder/email/subject.txt +#, python-format +msgid "Upgrade to earn a verified certificate in %(first_course_name)s" +msgstr "在%(first_course_name)s升级考取认证证书" + +#: openedx/core/djangoapps/self_paced/models.py +msgid "Enable course home page improvements." +msgstr "启用改进版课程主页" + +#: openedx/core/djangoapps/theming/views.py +#, python-brace-format +msgid "Site theme changed to {site_theme}" +msgstr "网站主题切换至{site_theme}" + +#: openedx/core/djangoapps/theming/views.py +#, python-brace-format +msgid "Theme {site_theme} does not exist" +msgstr " {site_theme}主题不存在" + +#: openedx/core/djangoapps/theming/views.py +msgid "Site theme reverted to the default" +msgstr "网站主题恢复至默认主题" + +#: openedx/core/djangoapps/theming/views.py +#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html +msgid "Theming Administration" +msgstr "网站主题管理" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "" +"Usernames can only contain letters (A-Z, a-z), numerals (0-9), underscores " +"(_), and hyphens (-)." +msgstr "用户名只能包含罗字母(A-Z、a-z)、下划线数字(0-9)、下划线(_)、连字符(-)。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Usernames can only contain letters, numerals, and @.+-_ characters." +msgstr "用户名只能包含字母、数字、“@.+-_”字符。" + +#. Translators: This message is shown to users who attempt to create a new +#. account using +#. an invalid email format. +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "\"{email}\" is not a valid email address." +msgstr "“{email}”邮箱地址无效。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "" +"It looks like {email_address} belongs to an existing account. Try again with" +" a different email address." +msgstr "{email_address} 已经被注册了。请更换邮箱重试。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "" +"It looks like {username} belongs to an existing account. Try again with a " +"different username." +msgstr "{username}已经被注册了。请更换用户名重试。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "Username must be between {min} and {max} characters long." +msgstr "用户名字符数{min}到{max}位。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +#, python-brace-format +msgid "Enter a valid email address that contains at least {min} characters." +msgstr "请输入有效的邮箱地址,不少于{min}个字符。" + +#. Translators: These messages are shown to users who do not enter information +#. into the required field or enter it incorrectly. +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your full name." +msgstr "请输入您的全名。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "The email addresses do not match." +msgstr "邮箱地址不一致。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Select your country or region of residence." +msgstr "选择您的居住地国家或地区。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Select your profession." +msgstr "选择您的职业。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Select your specialty." +msgstr "选择您的专业技能。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your profession." +msgstr "输入您的职业。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your specialty." +msgstr "输入您的专业技能。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your city." +msgstr "输入您的城市。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Tell us your goals." +msgstr "说说您的目标。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Select the highest level of education you have completed." +msgstr "选择您已完成的最高学历。" + +#: openedx/core/djangoapps/user_api/accounts/__init__.py +msgid "Enter your mailing address." +msgstr "输入您的邮寄地址。" + +#: openedx/core/djangoapps/user_api/accounts/api.py +#, python-brace-format +msgid "The '{field_name}' field cannot be edited." +msgstr "'{field_name}'字段无法编辑." + +#: openedx/core/djangoapps/user_api/accounts/api.py +#: openedx/core/djangoapps/user_api/views.py +#: openedx/core/djangoapps/user_authn/views/auto_auth.py +#: openedx/core/djangoapps/user_authn/views/deprecated.py +msgid "Account creation not allowed." +msgstr "禁止创建账号" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the State/Province/Region in which they +#. live. +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "State/Province/Region" +msgstr "州/省/地区" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the Company +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Company" +msgstr "公司" + +#. Translators: This label appears above a field on the registration form +#. which allows the user to input the Job Title +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Job Title" +msgstr "职业头衔" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's mailing address. +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py lms/templates/signup_modal.html +msgid "Mailing address" +msgstr "邮寄地址" + +#. Translators: This phrase appears above a field on the registration form +#. meant to hold the user's reasons for registering with edX. +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "Tell us why you're interested in {platform_name}" +msgstr "告诉我们您为何对{platform_name}感兴趣" + +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's profession +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Profession" +msgstr "专业领域" + +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's specialty +#: openedx/core/djangoapps/user_api/accounts/settings_views.py +#: openedx/core/djangoapps/user_api/api.py +msgid "Specialty" +msgstr "专业领域" + +#: openedx/core/djangoapps/user_api/accounts/utils.py +msgid "" +" Make sure that you are providing a valid username or a URL that contains \"" +msgstr "请提供有效的用户名或包含“”的URL" + +#: openedx/core/djangoapps/user_api/accounts/views.py +#: openedx/core/djangoapps/user_authn/views/login.py +msgid "" +"Due to multiple login failures, the account is temporarily locked. Please " +"try again after 15 minutes." +msgstr "由于登录失败次数过多,该账号暂时被锁定,请于15分钟后再次尝试登录。" + +#: openedx/core/djangoapps/user_api/accounts/views.py +#: lms/templates/provider_login.html +msgid "Email or password is incorrect." +msgstr "邮箱或密码错误。" + +#: openedx/core/djangoapps/user_api/accounts/views.py +msgid "Verification failed" +msgstr "验证失败" + +#: openedx/core/djangoapps/user_api/accounts/views.py +msgid "Please check mobile number format;" +msgstr "请检查电话号码格式" + +#: openedx/core/djangoapps/user_api/accounts/views.py +msgid "The mobile number has been occupied." +msgstr "此手机号码已绑定到其他帐户。" + +#: openedx/core/djangoapps/user_api/admin.py +#: wiki/templates/wiki/permission_denied.html +msgid "Permission Denied" +msgstr "没有权限" + +#: openedx/core/djangoapps/user_api/admin.py +msgid "Retirement does not exist!" +msgstr "退出是不存在的!" + +#: openedx/core/djangoapps/user_api/admin.py cms/templates/export.html +#: cms/templates/import.html +msgid "Success" +msgstr "成功" + +#: openedx/core/djangoapps/user_api/admin.py +#: lms/templates/staff_problem_info.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Actions" +msgstr "操作" + +#. Translators: This label appears above a field on the password reset +#. form meant to hold the user's email address. +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgctxt "Register and Login" +msgid "Email" +msgstr "邮箱" + +#. Translators: This example email address is used as a placeholder in +#. a field on the password reset form meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgid "username@domain.com" +msgstr "username@domain.com" + +#. Translators: These instructions appear on the password reset form, +#. immediately below a field meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "The email address you used to register with {platform_name}" +msgstr "您在{platform_name}上注册的邮箱" + +#. Translators: This label appears above a field on the password reset +#. form meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgid "Secondary email" +msgstr "备选邮箱" + +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"Secondary email address you registered with {platform_name} using account " +"settings page" +msgstr "使用帐户设置页面在{platform_name}注册的辅助电子邮箱地址" + +#. Translators: This label appears above a field on the login form +#. meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgctxt "Register and Login" +msgid "Email or Phone Number" +msgstr "邮箱或手机号" + +#. Translators: These instructions appear on the login form, immediately +#. below a field meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"The email address you registered on {platform_name}, or the phone number " +"that is bound." +msgstr "您在{platform_name}上注册的邮箱,或绑定的手机号" + +#: openedx/core/djangoapps/user_api/api.py lms/templates/login.html +msgid "Remember me" +msgstr "记住我" + +#. Translators: These instructions appear on the registration form, +#. immediately +#. below a field meant to hold the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgid "This is what you will use to login." +msgstr "登录邮箱地址。" + +#. Translators: This label appears above a field on the registration form +#. meant to confirm the user's email address. +#: openedx/core/djangoapps/user_api/api.py +msgid "Confirm Email" +msgstr "确认邮箱地址" + +#. Translators: These instructions appear on the registration form, +#. immediately +#. below a field meant to hold the user's full name. +#: openedx/core/djangoapps/user_api/api.py +msgid "This name will be used on any certificates that you earn." +msgstr "显示在您证书的姓名。" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a field on the registration form +#. meant to hold the user's public username. +#: openedx/core/djangoapps/user_api/api.py cms/templates/register.html +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/signup_modal.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Public Username" +msgstr "公开用户名" + +#. Translators: These instructions appear on the registration form, +#. immediately +#. below a field meant to hold the user's public username. +#: openedx/core/djangoapps/user_api/api.py +msgid "" +"The name that will identify you in your courses. It cannot be changed later." +msgstr "您在课程中的姓名,一旦确定便无法更改。" + +#. #-#-#-#-# django-partial.po (0.1a) #-#-#-#-# +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the user's highest completed level of education. +#: openedx/core/djangoapps/user_api/api.py lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Highest Level of Education Completed" +msgstr "最高教育程度" + +#. Translators: This label appears above a dropdown menu on the registration +#. form used to select the country in which the user lives. +#: openedx/core/djangoapps/user_api/api.py +msgid "Country or Region of Residence" +msgstr "您所居住的国家或地区" + +#. Translators: These instructions appear on the registration form, +#. immediately +#. below a field meant to hold the user's country. +#: openedx/core/djangoapps/user_api/api.py +msgid "The country or region where you live." +msgstr "您所居住的国家或地区。" + +#. Translators: This is a legal document users must agree to +#. in order to register a new account. +#: openedx/core/djangoapps/user_api/api.py +msgid "Terms of Service and Honor Code" +msgstr "服务条款和诚信准则" + +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"I agree to the {platform_name} " +"{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" +msgstr "" +"我同意{platform_name} " +"{terms_of_service_link_start}{terms_of_service}{terms_of_service_link_end}" + +#. Translators: "Terms of Service" is a legal document users must agree to +#. in order to register a new account. +#. Translators: "Terms of service" is a legal document users must agree to +#. in order to register a new account. +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "You must agree to the {platform_name} {terms_of_service}" +msgstr "您必须同意接受{platform_name}的{terms_of_service}" + +#: openedx/core/djangoapps/user_api/api.py +msgid "" +"Account can only be created after you agree to our User Agreement, " +"Disclaimer and Privacy Policy." +msgstr "只有同意遵守英荔商学院的用户协议、免责声明和隐私政策,才能创建账号。" + +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"By checking this box, you agree to abide by EliteMBA's" +" " +"{user_agreement_link_start}{user_agreement}{user_agreement_link_end}, " +"{disclaimer_link_start}{disclaimer}{disclaimer_link_end} " +"and {privacy_policy_link_start}Privacy Policy{privacy_policy_link_end}." +msgstr "" +"勾选即表示同意遵守英荔商学院的{user_agreement_link_start}{user_agreement}{user_agreement_link_end}、{disclaimer_link_start}{disclaimer}{disclaimer_link_end}和{privacy_policy_link_start}隐私政策{privacy_policy_link_end}" + +#: openedx/core/djangoapps/user_api/api.py +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +#: themes/elitemba-theme/lms/templates/static_templates/user_agreement.html +msgid "User Agreement" +msgstr "用户协议" + +#. Translators: "Terms of service" is a legal document users must agree to +#. in order to register a new account. +#: openedx/core/djangoapps/user_api/api.py +#, python-brace-format +msgid "" +"I agree to the {platform_name} " +"{tos_link_start}{terms_of_service}{tos_link_end}" +msgstr "我同意{platform_name} {tos_link_start}{terms_of_service}{tos_link_end}" + +#: openedx/core/djangoapps/user_api/config/waffle.py +msgid "System maintenance in progress. Please try again later." +msgstr "正在系统维护中,请稍后重试。" + +#: openedx/core/djangoapps/user_api/elite_password_reset.py +#, python-brace-format +msgid "Request parameter {key} missing!" +msgstr "请求参数{key}缺失!" + +#: openedx/core/djangoapps/user_api/elite_password_reset.py +msgid "New passwords do not match. Please try again." +msgstr "密码前后不一致,请重试。" + +#: openedx/core/djangoapps/user_api/elite_password_reset.py +msgid "Password modified." +msgstr "修改密码成功" + +#: openedx/core/djangoapps/user_api/elite_password_reset.py +msgid "Wrong password" +msgstr "密码错误" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Delete failed for user preference '{preference_key}'." +msgstr "用户设置 '{preference_key}' 删除失败." + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Preference '{preference_key}' cannot be set to an empty value." +msgstr "首选项“{preference_key}”不能设置为空值。" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Invalid user preference key '{preference_key}'." +msgstr "无效的用户参数项'{preference_key}'." + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "" +"Value '{preference_value}' is not valid for user preference " +"'{preference_key}'." +msgstr "对于用户参数'{preference_key}',值'{preference_value}'无效." + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "" +"Value '{preference_value}' not valid for preference '{preference_key}': Not " +"in timezone set." +msgstr "{preference_key}偏好的{preference_value}值无效:不在所设置的时区内。" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Value '{preference_value}' is not a valid time zone selection." +msgstr "{preference_value}值是无效的时区值选项。" + +#: openedx/core/djangoapps/user_api/preferences/api.py +#, python-brace-format +msgid "Save failed for user preference '{key}' with value '{value}'." +msgstr "使用值'{value}'保存用户参数'{key}'失败." + +#: openedx/core/djangoapps/user_api/preferences/views.py +msgid "No data provided for user preference update" +msgstr "未向用户参数更新提供数据" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "Hello %(full_name)s," +msgstr "您好,%(full_name)s" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "" +"We received a deletion request for your account on %(platform_name)s. We're " +"sorry to see you go!" +msgstr "我们收到您删除%(platform_name)s账号的申请,有缘再见!" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +msgid "" +"Your account will be deleted shortly. Account deletion, including removal " +"from email lists, may take a few weeks to fully process through our system. " +"If you want to opt-out of emails before then, please unsubscribe from the " +"footer of any email." +msgstr "马上帮您删除账号,包括从邮箱地址列表中移除您的邮箱地址,系统可能需要耗时数周才能处理完成。如果您想更快,请从页脚处取消订阅所有邮件。" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "" +"This is an informational email only. If you did not initiate this request, " +"please contact %(contact_email)s." +msgstr "这是一封信息邮件,如果您没有发起此申请,请联系 %(contact_email)s。" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.html +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/body.txt +#, python-format +msgid "Best, %(platform_name)s" +msgstr "致敬,%(platform_name)s" + +#: openedx/core/djangoapps/user_api/templates/user_api/edx_ace/deletionnotificationmessage/email/subject.txt +msgid "Your Account Has Been Queued For Deletion" +msgstr "您的账号已进入删除队列" + +#: openedx/core/djangoapps/user_authn/views/auto_auth.py +msgid "Superuser creation not allowed" +msgstr "不允许创建超级用户" + +#: openedx/core/djangoapps/user_authn/views/auto_auth.py +msgid "Account modification not allowed." +msgstr "不允许修改账号。" + +#: openedx/core/djangoapps/user_authn/views/login.py +#, python-brace-format +msgid "" +"You've successfully logged into your {provider_name} account, but this " +"account isn't linked with an {platform_name} account yet." +msgstr "您已成功登录{provider_name}帐户,但该账号尚未与{platform_name}帐户关联。" + +#: openedx/core/djangoapps/user_authn/views/login.py +#, python-brace-format +msgid "" +"Use your {platform_name} username and password to log into {platform_name} " +"below, and then link your {platform_name} account with {provider_name} from " +"your dashboard." +msgstr "" +"用您的{platform_name}用户名和密码登陆{platform_name},然后从课程面板页面关联{platform_name}账号和{provider_name}。" + +#: openedx/core/djangoapps/user_authn/views/login.py +#, python-brace-format +msgid "" +"If you don't have an {platform_name} account yet, click " +"{register_label_strong} at the top of the page." +msgstr "如果您没有{platform_name},请点击页面上方的{register_label_strong}按钮。" + +#: openedx/core/djangoapps/user_authn/views/login.py +#: lms/templates/register-form.html +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Register" +msgstr "注册" + +#: openedx/core/djangoapps/user_authn/views/login.py +msgid "There was an error receiving your login information. Please email us." +msgstr "接受您的登录信息时出现错误,请发电子邮件给我们。" + +#: openedx/core/djangoapps/user_authn/views/login.py +#, python-brace-format +msgid "" +"In order to sign in, you need to activate your account.

    We just " +"sent an activation link to {email}. If you do not receive " +"an email, check your spam folders or contact " +"{platform} Support." +msgstr "" +"如需登录,请先激活您的账号。

    我们会发送激活链接至 " +"{email}。如果您未收到邮件,请查看邮箱的垃圾箱或 联系{platform}的技术支持。" + +#: openedx/core/djangoapps/user_authn/views/login.py +msgid "Too many failed login attempts. Try again later." +msgstr "失败次数超过限制,请稍后再试!" + +#: openedx/core/djangoapps/user_authn/views/login.py +msgid "Login account or password is wrong." +msgstr "账号或密码错误。" + +#: openedx/core/djangoapps/user_authn/views/login_form.py +msgid "Create Account" +msgstr "创建账号" + +#: openedx/core/djangoapps/user_authn/views/register.py +#, python-brace-format +msgid "Registration using {provider} has timed out." +msgstr "使用{provider}注册已超时。" + +#: openedx/core/djangoapps/user_authn/views/register.py +msgid "An access_token is required when passing value ({}) for provider." +msgstr "传递值({})给提供者的时候需要访问令牌。" + +#: openedx/core/djangoapps/user_authn/views/register.py +msgid "The provided access_token is already associated with another user." +msgstr "提供的access_token已与另一个用户关联了。" + +#: openedx/core/djangoapps/user_authn/views/register.py +msgid "The provided access_token is not valid." +msgstr "提供的access_token无效。" + +#: openedx/core/djangoapps/util/user_messages.py +#, python-brace-format +msgid "{header_open}{title}{header_close}{body}" +msgstr "{header_open}{title}{header_close}{body}" + +#: openedx/core/djangoapps/util/user_messages.py +#, python-brace-format +msgid "{header_open}{title}{header_close}" +msgstr "{header_open}{title}{header_close}" + +#: openedx/core/djangoapps/util/user_messages.py +#: cms/templates/course_outline.html cms/templates/index.html +#: openedx/features/course_experience/templates/course_experience/latest-update-fragment.html +#: openedx/features/course_experience/templates/course_experience/welcome-message-fragment.html +msgid "Dismiss" +msgstr "解散" + +#: openedx/core/djangoapps/verified_track_content/models.py +msgid "The course key for the course we would like to be auto-cohorted." +msgstr "我们想要自动分配队列的课程要领。" + +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "Oauth client name of video pipeline service." +msgstr "视频通道服务的Oauth客户端名称" + +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "edx-video-pipeline API URL." +msgstr "edx-video-pipeline API URL" + +#: openedx/core/djangoapps/video_pipeline/models.py +msgid "" +"Username created for Video Pipeline Integration, e.g. veda_service_user." +msgstr "用于视频管道整合的用户名,例如:veda_service_user。" + +#: openedx/core/djangoapps/waffle_utils/models.py +msgid "Force On" +msgstr "强制开启" + +#: openedx/core/djangoapps/waffle_utils/models.py +msgid "Force Off" +msgstr "强制关闭" + +#: openedx/core/lib/api/view_utils.py +msgid "This value is invalid." +msgstr "该值无效。" + +#: openedx/core/lib/api/view_utils.py +msgid "This field is not editable" +msgstr "该区域不能编辑" + +#: openedx/core/lib/gating/api.py +#, python-format +msgid "%(min_score)s is not a valid grade percentage" +msgstr "%(min_score)s 不是一个有效的评分尺度" + +#: openedx/core/lib/gating/api.py +#, python-brace-format +msgid "Gating milestone for {usage_key}" +msgstr "{usage_key}的途径" + +#: openedx/core/lib/license/mixin.py +msgid "License" +msgstr "许可" + +#: openedx/core/lib/license/mixin.py +msgid "" +"A license defines how the contents of this block can be shared and reused." +msgstr "许可定义了此块的内容能如何被分享和重用。" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "Category" +msgstr "分类" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "Week 1" +msgstr "第一周" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "" +"A category name for the discussion. This name appears in the left pane of " +"the discussion forum for the course." +msgstr "讨论类别名称时,该名称会出现在课程论坛的左窗格里" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "Subcategory" +msgstr "子分类" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +msgid "" +"A subcategory name for the discussion. This name appears in the left pane of" +" the discussion forum for the course." +msgstr "讨论子类别名称时,该名称会出现在课程论坛的左窗格里。" + +#: openedx/core/lib/xblock_builtin/xblock_discussion/xblock_discussion/__init__.py +#, python-brace-format +msgid "" +"You are not signed in. To view the discussion content, {sign_in_link} or " +"{register_link}, and enroll in this course." +msgstr "您尚未登录,如需查看此讨论内容,请{sign_in_link}或{register_link}并报名此门课程。" + +#: openedx/features/content_type_gating/admin.py +#: openedx/features/course_duration_limits/admin.py +msgid "" +"These define the context to enable course duration limits on. If no values " +"are set, then the configuration applies globally. If a single value is set, " +"then the configuration applies to all courses within that context. At most " +"one value can be set at a time.
    If multiple contexts apply to a course " +"(for example, if configuration is specified for the course specifically, and" +" for the org that the course is in, then the more specific context overrides" +" the more general context." +msgstr "" +"这些选项规定了启用课程持续时间限制的场景。如果未设置任何值,则配置将全局应用。 如果设置了单个值,则配置将应用于该场景中的所有课程。 " +"一次最多只能设置一个值。
    如果课程适用于多个场景(例如,如果课程有自身特定的配置,并且课程所在的组织也有特定配置,则更具体化的场景会覆盖通用场景。" + +#: openedx/features/content_type_gating/admin.py +#: openedx/features/course_duration_limits/admin.py +msgid "" +"If any of these values is left empty or \"Unknown\", then their value at " +"runtime will be retrieved from the next most specific context that applies. " +"For example, if \"Enabled\" is left as \"Unknown\" in the course context, " +"then that course will be Enabled only if the org that it is in is Enabled." +msgstr "" +"如果这些值中的任何一个为空或“未知”,则运行时的值将恢复到下一个最具体化场景应用的值。 " +"例如,如果在课程场景中“已启用”被保留为“未知”,则仅当其所在的组织已启用时,该课程才会启用。" + +#: openedx/features/content_type_gating/models.py +#: openedx/features/course_duration_limits/models.py +#: lms/templates/support/feature_based_enrollments.html +msgid "Enabled As Of" +msgstr "启用至" + +#: openedx/features/content_type_gating/models.py +#: openedx/features/course_duration_limits/models.py +msgid "" +"If the configuration is Enabled, then all enrollments created after this " +"date and time (UTC) will be affected." +msgstr "如果配置为“已启用”,则在此日期和时间(世界标准时间UTC)之后创建的所有注册都将受到影响。" + +#: openedx/features/content_type_gating/models.py +msgid "Studio Override Enabled" +msgstr "已启用覆盖Studio功能" + +#: openedx/features/content_type_gating/models.py +msgid "" +"Allow Feature Based Enrollment visibility to be overriden on a per-component" +" basis in Studio." +msgstr "允许在Studio中每个基础组件覆盖基于功能的选课可见性。" + +#: openedx/features/content_type_gating/models.py +#: openedx/features/course_duration_limits/models.py +msgid "enabled_as_of must be set when enabled is True" +msgstr "当enabled为True时,必须设置enabled_as_of" + +#: openedx/features/content_type_gating/partitions.py +msgid "Feature-based Enrollments" +msgstr "基于功能的选课" + +#: openedx/features/content_type_gating/partitions.py +msgid "Partition for segmenting users by access to gated content types" +msgstr "通过访问封闭的内容类型来划分用户的分区" + +#: openedx/features/content_type_gating/partitions.py +msgid "" +"Graded assessments are available to Verified Track learners. Upgrade to " +"Unlock." +msgstr "已通过认证的学员可获得等级评估。 升级至解锁。" + +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Content available only to verified track learners" +msgstr "仅供经过身份认证的学员使用的内容" + +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Verified Track Access" +msgstr "已经过身份认证的跟踪访问" + +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Graded assessments are available to Verified Track learners." +msgstr "分级评估可用于已经过身份认证的跟踪学员。" + +#: openedx/features/content_type_gating/templates/content_type_gating/access_denied_message.html +msgid "Upgrade to unlock" +msgstr "升级到解锁" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "Access expired on {expiration_date}" +msgstr "访问于 {expiration_date}过期" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "Access to {course_name} expired on {expiration_date}" +msgstr "访问{course_name} 于 {expiration_date}过期" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "Access to the course you were looking for expired on {expiration_date}" +msgstr "您要查看的课程访问已于 {expiration_date} 过期" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "" +"This learner does not have access to this course. Their access expired on " +"{expiration_date}." +msgstr "该学员无权进入此课程。此权利于{expiration_date}到期。" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "" +"{strong_open}Audit Access Expires " +"{expiration_date}{strong_close}{line_break}You lose all access to this " +"course, including your progress, on {expiration_date}." +msgstr "" +"{strong_open} 旁听访问入口过期 {expiration_date}{strong_close}{line_break}。您已于 " +"{expiration_date} 失去课程访问权限,包括正在上的课程。" + +#: openedx/features/course_duration_limits/access.py +#, python-brace-format +msgid "" +"{line_break}Upgrade by {upgrade_deadline} to get unlimited access to the " +"course as long as it exists on the site. {a_open}Upgrade " +"now{sronly_span_open} to retain access past " +"{expiration_date}{span_close}{a_close}" +msgstr "" +"{line_break} 在 {upgrade_deadline} 前升级,获取网站内课程的无限访问权, " +"{a_open}现在升级{sronly_span_open} 以确保{expiration_date}前保留访问权 " +"{span_close}{a_close}。" + +#: openedx/features/course_experience/plugins.py +#: cms/templates/widgets/header.html +#: lms/templates/api_admin/terms_of_service.html +#: openedx/features/course_experience/templates/course_experience/course-updates-fragment.html +msgid "Updates" +msgstr "更新" + +#: openedx/features/course_experience/plugins.py +#: openedx/features/course_experience/templates/course_experience/course-reviews-fragment.html +msgid "Reviews" +msgstr "评论" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{sign_in_link} or {register_link} and then enroll in this course." +msgstr "{sign_in_link}或{register_link}并报名此门课程。" + +#: openedx/features/course_experience/views/course_home_messages.py +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-not-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Sign in" +msgstr "登录" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "" +"{open_enroll_link}Enroll now{close_enroll_link} to access the full course." +msgstr "{open_enroll_link}马上报名课程{close_enroll_link}充分体验课程内容。" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "Welcome to {course_display_name}" +msgstr "欢迎来到{course_display_name}" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "" +"To start, set a course goal by selecting the option below that best " +"describes your learning plan. {goal_options_container}" +msgstr "设置课程学习目标,挑选一个最能贴切描述您学习计划的选项{goal_options_container}。" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "Set goal to: {choice}" +msgstr "设置课程学习目标:{choice}" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "{choice}" +msgstr "{choice}" + +#: openedx/features/course_experience/views/course_home_messages.py +#, python-brace-format +msgid "Set goal to: {goal_text}" +msgstr "设置课程学习目标为:{goal_text}" + +#: openedx/features/enterprise_support/api.py +#, python-brace-format +msgid "Enrollment in {course_title} was not complete." +msgstr "未完成报名课程{course_title}。" + +#: openedx/features/enterprise_support/api.py +#, python-brace-format +msgid "" +"If you have concerns about sharing your data, please contact your " +"administrator at {enterprise_customer_name}." +msgstr "如果您对分享您的数据有顾虑,请联系您的{enterprise_customer_name}管理员。" + +#: openedx/features/enterprise_support/utils.py +#, python-brace-format +msgid "" +"We are sorry, you are not authorized to access {platform_name} via this " +"channel. Please contact your learning administrator or manager in order to " +"access {platform_name}.{line_break}{line_break}" +msgstr "" +"非常抱歉,您无权通过此渠道访问{platform_name}。请向您的学习管理员或协调员寻求帮助访问{platform_name}。{line_break}{line_break}" + +#: openedx/features/enterprise_support/utils.py +#, python-brace-format +msgid "" +"Thank you for joining {platform_name}. Just a couple steps before you start " +"learning!" +msgstr "感谢您加入{platform_name},请根据步骤来开启您的学习之旅!" + +#: openedx/features/enterprise_support/utils.py +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Continue" +msgstr "继续" + +#: openedx/features/learner_profile/views/learner_profile.py +#, python-brace-format +msgid "" +"Welcome to the new learner profile page. Your full profile now displays more" +" information to other learners. You can instead choose to display a limited " +"profile. {learn_more_link_start}Learn more{learn_more_link_end}" +msgstr "" +"欢迎来到新学员账号页面,提供更多账号信息方便其他学员查看。您也可以选择只显示部分内容。{learn_more_link_start}了解更多内容{learn_more_link_end}" + +#: cms/djangoapps/api/v1/serializers/course_runs.py +msgid "Course team user does not exist" +msgstr "课程团队用户不存在" + +#: cms/djangoapps/contentstore/course_group_config.py +msgid "" +"The groups in this configuration can be mapped to cohorts in the Instructor " +"Dashboard." +msgstr "可以将此配置下的分组与授课老师面板的群组相对应。" + +#: cms/djangoapps/contentstore/course_group_config.py +#: cms/templates/group_configurations.html +msgid "Content Groups" +msgstr "内容组" + +#: cms/djangoapps/contentstore/course_group_config.py +#: cms/djangoapps/contentstore/views/certificates.py +msgid "invalid JSON" +msgstr "无效的 JSON" + +#: cms/djangoapps/contentstore/course_group_config.py +msgid "must have name of the configuration" +msgstr "必须有配置的名称" + +#: cms/djangoapps/contentstore/course_group_config.py +msgid "must have at least one group" +msgstr "必须至少有一个组" + +#: cms/djangoapps/contentstore/course_group_config.py +msgid "unable to load this type of group configuration" +msgstr "无法加载此类组配置" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Invalid course update id." +msgstr "课程ID更新无效。" + +#: cms/djangoapps/contentstore/course_info_model.py +msgid "Course update not found." +msgstr "课程更新没有找到。" + +#: cms/djangoapps/contentstore/courseware_index.py +msgid "Could not index item: {}" +msgstr "无法索引项:{}" + +#: cms/djangoapps/contentstore/courseware_index.py +msgid "General indexing error occurred" +msgstr "发生了一般性索引错误" + +#: cms/djangoapps/contentstore/courseware_index.py +msgid "(Unnamed)" +msgstr "(未命名)" + +#: cms/djangoapps/contentstore/git_export_utils.py +#, python-brace-format +msgid "" +"GIT_REPO_EXPORT_DIR not set or path {0} doesn't exist, please create it, or " +"configure a different path with GIT_REPO_EXPORT_DIR" +msgstr "" +"GIT_REPO_EXPORT_DIR 未被设置或者路径 {0} 不存在,请创建它,或者为 GIT_REPO_EXPORT_DIR 设置一个不同的路径。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Non writable git url provided. Expecting something like: " +"git@github.com:mitocw/edx4edx_lite.git" +msgstr "没有可写的Git地址。期待类似这样的地址:git@github.com:mitocw/edx4edx_lite.git" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"If using http urls, you must provide the username and password in the url. " +"Similar to https://user:pass@github.com/user/course." +msgstr "" +"如果使用HTTP地址,您必须在地址里提供用户名和密码,类似于 https://user:pass@github.com/user/course 。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to determine branch, repo in detached HEAD mode" +msgstr "无法找到分支,源正处于分离HEAD模式。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to update or clone git repository." +msgstr "无法更新或者复制Git源。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to export course to xml." +msgstr "无法将课程导出成XML文件。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Unable to configure git username and password" +msgstr "无法配置Git的用户名和密码" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to commit changes. This is usually because there are no changes to be" +" committed" +msgstr "无法提交变更,这通常是因为没有变更之处,不需要提交。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "" +"Unable to push changes. This is usually because the remote repository " +"cannot be contacted" +msgstr "无法推送变更,这通常是因为无法连接远程源。" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Bad course location provided" +msgstr "提供了错误的课程地址" + +#: cms/djangoapps/contentstore/git_export_utils.py +msgid "Missing branch on fresh clone" +msgstr "在最近的复制中,丢失一些分支" + +#: cms/djangoapps/contentstore/management/commands/git_export.py +msgid "" +"Take the specified course and attempt to export it to a git repository\n" +". Course directory must already be a git repository. Usage: git_export " +msgstr "" +"取得指定的课程然后尝试将其导出到一个Git源。\n" +"课程目录必须已经是一个Git源。用法: git_export " + +#: cms/djangoapps/contentstore/tasks.py +#, python-brace-format +msgid "Unknown User ID: {0}" +msgstr "未知用户ID: {0}" + +#: cms/djangoapps/contentstore/tasks.py +msgid "Permission denied" +msgstr "没有权限" + +#: cms/djangoapps/contentstore/tasks.py +#: cms/djangoapps/contentstore/views/import_export.py +msgid "We only support uploading a .tar.gz file." +msgstr "我们仅支持上传.tar.gz格式文件。" + +#: cms/djangoapps/contentstore/tasks.py +msgid "Tar file not found" +msgstr "未找到Tar文件" + +#: cms/djangoapps/contentstore/tasks.py +msgid "Unsafe tar file. Aborting import." +msgstr "不安全的tar文件,正在取消导入。" + +#: cms/djangoapps/contentstore/tasks.py +#, python-brace-format +msgid "Could not find the {0} file in the package." +msgstr "无法在包中找到{0}文件。" + +#: cms/djangoapps/contentstore/utils.py cms/templates/visibility_editor.html +msgid "Deleted Group" +msgstr "已删除组" + +#. Translators: This is building up a list of groups. It is marked for +#. translation because of the +#. comma, which is used as a separator between each group. +#: cms/djangoapps/contentstore/utils.py +#, python-brace-format +msgid "{previous_groups}, {current_group}" +msgstr "{previous_groups}, {current_group}" + +#: cms/djangoapps/contentstore/video_utils.py +msgid "The image must have name, content type, and size information." +msgstr "图片必须有名称、内容类型、尺寸信息。" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "" +"This image file type is not supported. Supported file types are " +"{supported_file_formats}." +msgstr "不支持此图片文件类型;支持的文件类型有{supported_file_formats}。" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "This image file must be smaller than {image_max_size}." +msgstr "此图片文件不得超过{image_max_size}。" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "This image file must be larger than {image_min_size}." +msgstr "图片文件必须大于{image_min_size}。" + +#: cms/djangoapps/contentstore/video_utils.py +msgid "" +"There is a problem with this image file. Try to upload a different file." +msgstr "此图片文件发生问题,请上传其他文件。" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "" +"Recommended image resolution is " +"{image_file_max_width}x{image_file_max_height}. The minimum resolution is " +"{image_file_min_width}x{image_file_min_height}." +msgstr "" +"建议图片分辨率为{image_file_max_width}x{image_file_max_height},最小分辨率为{image_file_min_width}x{image_file_min_height}。" + +#: cms/djangoapps/contentstore/video_utils.py +#, python-brace-format +msgid "" +"This image file must have an aspect ratio of " +"{video_image_aspect_ratio_text}." +msgstr "此图片文件的宽高比必须为{video_image_aspect_ratio_text}。" + +#: cms/djangoapps/contentstore/video_utils.py +msgid "" +"The image file name can only contain letters, numbers, hyphens (-), and " +"underscores (_)." +msgstr "图片文件名只支持字母、数字、连字符(-)、下划线(_)。" + +#: cms/djangoapps/contentstore/views/assets.py +msgid "Upload completed" +msgstr "上传完成" + +#: cms/djangoapps/contentstore/views/assets.py +#, python-brace-format +msgid "" +"File {filename} exceeds maximum size of {maximum_size_in_megabytes} MB." +msgstr "{filename}文件超过{maximum_size_in_megabytes}。" + +#: cms/djangoapps/contentstore/views/certificates.py +msgid "must have name of the certificate" +msgstr "证书必有有名称" + +#: cms/djangoapps/contentstore/views/certificates.py +#, python-brace-format +msgid "Certificate dict {0} missing value key '{1}'" +msgstr "证书字典{0}确实数值'{1}'" + +#: cms/djangoapps/contentstore/views/certificates.py +#, python-brace-format +msgid "PermissionDenied: Failed in authenticating {user}" +msgstr "拒绝访问: {user}验证失败" + +#: cms/djangoapps/contentstore/views/component.py +#, python-brace-format +msgid "{platform_name} Support Levels:" +msgstr "{platform_name} 支持等级:" + +#: cms/djangoapps/contentstore/views/component.py +msgid "HTML" +msgstr "HTML" + +#: cms/djangoapps/contentstore/views/component.py lms/templates/video.html +#: membership/templates/membership/index.html +msgid "Video" +msgstr "视频" + +#: cms/djangoapps/contentstore/views/component.py +msgid "Blank" +msgstr "空白" + +#: cms/djangoapps/contentstore/views/course.py +msgid "Course has been successfully reindexed." +msgstr "课程重新索引成功。" + +#: cms/djangoapps/contentstore/views/course.py +msgid "Set Date" +msgstr "设置日期" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Special characters not allowed in organization, course number, and course " +"run." +msgstr "在机构、课程编号和开课时间中,不允许使用特殊字符。" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"There is already a course defined with the same organization and course " +"number. Please change either organization or course number to be unique." +msgstr "已经存在一个具有相同机构和课程编号的课程,请更改机构名称或者课程编号以保证其唯一性。" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"Please change either the organization or course number so that it is unique." +msgstr "请更改机构或者课程编号以确保唯一性。" + +#: cms/djangoapps/contentstore/views/course.py +#, python-brace-format +msgid "" +"Unable to create course '{name}'.\n" +"\n" +"{err}" +msgstr "" +"无法创建课程“{name}”。\n" +"\n" +"{err}" + +#: cms/djangoapps/contentstore/views/course.py +msgid "" +"You must link this course to an organization in order to continue. " +"Organization you selected does not exist in the system, you will need to add" +" it to the system" +msgstr "您为了继续必须将此课程链接到一个机构。您选择了不存在于系统中的机构,您需要将此机构新增到系统" + +#: cms/djangoapps/contentstore/views/course.py +msgid "Invalid prerequisite course key" +msgstr "先修课程标识无效" + +#: cms/djangoapps/contentstore/views/course.py +msgid "An error occurred while trying to save your tabs" +msgstr "当您尝试保存书签时发生错误" + +#: cms/djangoapps/contentstore/views/course.py +msgid "Tabs Exception" +msgstr "书签异常" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This group configuration is in use and cannot be deleted." +msgstr "不能删除正在使用中的组配置。" + +#: cms/djangoapps/contentstore/views/course.py +msgid "This content group is in use and cannot be deleted." +msgstr "不能删除正在使用中的内容组。" + +#: cms/djangoapps/contentstore/views/entrance_exam.py +msgid "Entrance Exam - Subsection" +msgstr "入学考试—节" + +#: cms/djangoapps/contentstore/views/entrance_exam.py +msgid "Completed Course Entrance Exam" +msgstr "已完成的课程入学考试" + +#: cms/djangoapps/contentstore/views/export_git.py +msgid "Course successfully exported to git repository" +msgstr "课程成功被导出到Git仓库" + +#: cms/djangoapps/contentstore/views/helpers.py +msgid "Vertical" +msgstr "纵列块" + +#: cms/djangoapps/contentstore/views/import_export.py +msgid "File upload corrupted. Please try again" +msgstr "文件上传失败,请重试" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Invalid data" +msgstr "无效的数据" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "Invalid data ({details})" +msgstr "无效的数据 ({details})" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "You can not move {source_type} into {target_parent_type}." +msgstr "无法将 {source_type}移进 {target_parent_type}内。" + +#: cms/djangoapps/contentstore/views/item.py +msgid "Item is already present in target location." +msgstr "目标位置已显示该项。" + +#: cms/djangoapps/contentstore/views/item.py +msgid "You can not move an item into itself." +msgstr "无法将项移动至本身目录。" + +#: cms/djangoapps/contentstore/views/item.py +msgid "You can not move an item into it's child." +msgstr "无法将项移动至子目录下。" + +#: cms/djangoapps/contentstore/views/item.py +msgid "You can not move an item directly into content experiment." +msgstr "无法直接将项移动至内容实验中。" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "{source_usage_key} not found in {parent_usage_key}." +msgstr "在{parent_usage_key}中未找到{source_usage_key} 。" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "" +"You can not move {source_usage_key} at an invalid index ({target_index})." +msgstr "无法将{source_usage_key}移动至无效索引中({target_index})。" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "You must provide target_index ({target_index}) as an integer." +msgstr "您必须提供整数的target_index ({target_index})。" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "Duplicate of {0}" +msgstr "“{0}”的副本" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "Duplicate of '{0}'" +msgstr "“{0}”的副本" + +#. Translators: The {pct_sign} here represents the percent sign, i.e., '%' +#. in many languages. This is used to avoid Transifex's misinterpreting of +#. '% o'. The percent sign is also translatable as a standalone string. +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "" +"Students must score {score}{pct_sign} or higher to access course materials." +msgstr "学生必须获得 {score}{pct_sign} 或者更高的分数才能查看课程资料。" + +#. Translators: This is the percent sign. It will be used to represent +#. a percent value out of 100, e.g. "58%" means "58/100". +#: cms/djangoapps/contentstore/views/item.py +msgid "%" +msgstr "%" + +#: cms/djangoapps/contentstore/views/item.py +#, python-brace-format +msgid "{section_or_subsection} \"{display_name}\"" +msgstr "{section_or_subsection}“{display_name}”" + +#: cms/djangoapps/contentstore/views/library.py +#, python-brace-format +msgid "Unable to create library - missing required field '{field}'" +msgstr "无法创建知识库—缺少必填字段“{field}”" + +#: cms/djangoapps/contentstore/views/library.py +#, python-brace-format +msgid "" +"Unable to create library '{name}'.\n" +"\n" +"{err}" +msgstr "" +"无法创建知识库“{name}”。\n" +"\n" +"{err}" + +#: cms/djangoapps/contentstore/views/library.py +msgid "" +"There is already a library defined with the same organization and library " +"code. Please change your library code so that it is unique within your " +"organization." +msgstr "已经存在一个具有相同机构和知识库编号的知识库,请更改您的知识库编号以保证其在您的机构中是唯一的。" + +#: cms/djangoapps/contentstore/views/preview.py +#, python-brace-format +msgid "Access restricted to: {list_of_groups}" +msgstr "仅限可访问人群:{list_of_groups}" + +#: cms/djangoapps/contentstore/views/transcript_settings.py +msgid "The information you entered is incorrect." +msgstr "您输入的信息不正确。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Transcripts are supported only for \"video\" modules." +msgstr "字幕只支持视频模块。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Cannot find item by locator." +msgstr "定位工具未找到该项。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Video locator is required." +msgstr "必须要有视频定位工具。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "This transcript file type is not supported." +msgstr "不支持此字幕文件类型。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Video ID is required." +msgstr "必须提供视频ID。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Incoming video data is empty." +msgstr "来源视频数据为空。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "Can't find item by locator." +msgstr "定位器无法找到它们。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "No such transcript." +msgstr "没有该字幕。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "There is a problem with the chosen transcript file." +msgstr "已选中的字幕文件发生问题。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "" +"There is a problem with the existing transcript file. Please upload a " +"different file." +msgstr "当前字幕文件发生问题,请上传其他文件。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "YouTube ID is required." +msgstr "必须提供YouTube ID。" + +#: cms/djangoapps/contentstore/views/transcripts_ajax.py +msgid "There is a problem with the YouTube transcript file." +msgstr "YouTube字幕文件有问题。" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Insufficient permissions" +msgstr "没有足够的权限" + +#: cms/djangoapps/contentstore/views/user.py +#, python-brace-format +msgid "Could not find user by email address '{email}'." +msgstr "无法通过邮件地址“{email}”找到用户。" + +#: cms/djangoapps/contentstore/views/user.py +msgid "No `role` specified." +msgstr "“角色”未指定。" + +#: cms/djangoapps/contentstore/views/user.py +#, python-brace-format +msgid "User {email} has registered but has not yet activated his/her account." +msgstr "用户{email}已注册但尚未激活其账号。" + +#: cms/djangoapps/contentstore/views/user.py +msgid "Invalid `role` specified." +msgstr "指定的“角色”无效。" + +#: cms/djangoapps/contentstore/views/user.py +msgid "You may not remove the last Admin. Add another Admin first." +msgstr "您不能移除最后一个管理员,请先添加另一个管理员后再移除。" + +#. #-#-#-#-# django-studio.po (0.1a) #-#-#-#-# +#. Translators: This is the status of an active video upload +#: cms/djangoapps/contentstore/views/videos.py cms/templates/import.html +msgid "Uploading" +msgstr "上传中" + +#. Translators: This is the status for a video that the servers are currently +#. processing +#: cms/djangoapps/contentstore/views/videos.py +msgid "In Progress" +msgstr "正在进行中" + +#. Translators: This is the status for a video that the servers have +#. successfully processed +#: cms/djangoapps/contentstore/views/videos.py +msgid "Ready" +msgstr "就绪" + +#. Translators: This is the status for a video that is uploaded completely +#: cms/djangoapps/contentstore/views/videos.py +msgid "Uploaded" +msgstr "上传完成" + +#. Translators: This is the status for a video that the servers have failed to +#. process +#: cms/djangoapps/contentstore/views/videos.py +msgid "Failed" +msgstr "已失败" + +#. #-#-#-#-# django-studio.po (0.1a) #-#-#-#-# +#. Translators: This is the status for a video that is cancelled during upload +#. by user +#: cms/djangoapps/contentstore/views/videos.py membership/models.py +msgid "Cancelled" +msgstr "已取消" + +#. Translators: This is the status for a video which has failed +#. due to being flagged as a duplicate by an external or internal CMS +#: cms/djangoapps/contentstore/views/videos.py +msgid "Failed Duplicate" +msgstr "复制失败" + +#. Translators: This is the status for a video which has duplicate token for +#. youtube +#: cms/djangoapps/contentstore/views/videos.py +msgid "YouTube Duplicate" +msgstr "YouTube拷贝视频" + +#. Translators: This is the status for a video for which an invalid +#. processing token was provided in the course settings +#: cms/djangoapps/contentstore/views/videos.py +msgid "Invalid Token" +msgstr "无效的令牌" + +#. Translators: This is the status for a video that was included in a course +#. import +#: cms/djangoapps/contentstore/views/videos.py +msgid "Imported" +msgstr "已导入" + +#. Translators: This is the status for a video that is in an unknown state +#: cms/djangoapps/contentstore/views/videos.py +msgid "Unknown" +msgstr "未知" + +#. Translators: This is the status for a video that is having its +#. transcription in progress on servers +#: cms/djangoapps/contentstore/views/videos.py +msgid "Transcription in Progress" +msgstr "字幕转载进行中" + +#. Translators: This is the status for a video whose transcription is complete +#: cms/djangoapps/contentstore/views/videos.py +msgid "Transcript Ready" +msgstr "字幕完成" + +#: cms/djangoapps/contentstore/views/videos.py +msgid "An image file is required." +msgstr "必须提供图片文件。" + +#. Translators: This is the header for a CSV file column +#. containing URLs for video encodings for the named profile +#. (e.g. desktop, mobile high quality, mobile low quality) +#: cms/djangoapps/contentstore/views/videos.py +#, python-brace-format +msgid "{profile_name} URL" +msgstr "{profile_name} URL" + +#: cms/djangoapps/contentstore/views/videos.py +msgid "Duration" +msgstr "长度" + +#: cms/djangoapps/contentstore/views/videos.py +msgid "Date Added" +msgstr "添加日期" + +#. Translators: This is the suggested filename when downloading the URL +#. listing for videos uploaded through Studio +#: cms/djangoapps/contentstore/views/videos.py +#, python-brace-format +msgid "{course}_video_urls" +msgstr "{course}_video_urls" + +#: cms/djangoapps/contentstore/views/videos.py +msgid "A non zero positive integer is expected" +msgstr "需要一个非零的正整数" + +#: cms/djangoapps/course_creators/models.py +msgid "unrequested" +msgstr "未请求的" + +#: cms/djangoapps/course_creators/models.py +msgid "pending" +msgstr "挂起" + +#: cms/djangoapps/course_creators/models.py +msgid "granted" +msgstr "已授权" + +#: cms/djangoapps/course_creators/models.py +msgid "denied" +msgstr "已拒绝" + +#: cms/djangoapps/course_creators/models.py +msgid "Studio user" +msgstr "Studio用户" + +#: cms/djangoapps/course_creators/models.py +msgid "The date when state was last updated" +msgstr "状态最后更新日期" + +#: cms/djangoapps/course_creators/models.py +msgid "Current course creator state" +msgstr "课程创建者当前状态" + +#: cms/djangoapps/course_creators/models.py +msgid "" +"Optional notes about this user (for example, why course creation access was " +"denied)" +msgstr "关于本用户的可选备注(例如,课程创建被拒绝的原因)" + +#: cms/djangoapps/maintenance/views.py +#: cms/templates/maintenance/_force_publish_course.html +msgid "Force Publish Course" +msgstr "强制发布课程" + +#: cms/djangoapps/maintenance/views.py +msgid "" +"Sometimes the draft and published branches of a course can get out of sync. " +"Force publish course command resets the published branch of a course to " +"point to the draft branch, effectively force publishing the course. This " +"view dry runs the force publish command" +msgstr "" +"有时候课程初稿分支与已发布分支会不同步。强制发布课程指令会将已发布的课程分支指向初稿分支,以此有效地强制发布该课程。此视图DRY运行该强制发布指令" + +#: cms/djangoapps/maintenance/views.py +msgid "Please provide course id." +msgstr "请提供课程编号。" + +#: cms/djangoapps/maintenance/views.py +msgid "Invalid course key." +msgstr "无效的课程标识。" + +#: cms/djangoapps/maintenance/views.py +msgid "No matching course found." +msgstr "未找到符合条件得课程。" + +#: cms/djangoapps/maintenance/views.py +msgid "Force publishing course is not supported with old mongo courses." +msgstr "强制发布的课程不支持旧mongo课程。" + +#: cms/djangoapps/maintenance/views.py +msgid "Course is already in published state." +msgstr "课程已经是发布状态了。" + +#: cms/djangoapps/models/settings/course_metadata.py +#, python-brace-format +msgid "Incorrect format for field '{name}'. {detailed_message}" +msgstr "“{name}”字段的格式不正确。{detailed_message}" + +#: cms/envs/bok_choy.py cms/envs/test.py +msgid "Your Platform 𝓢𝓽𝓾𝓭𝓲𝓸" +msgstr "您的平台𝓢𝓽𝓾𝓭𝓲𝓸" + +#: cms/envs/bok_choy.py cms/envs/test.py +msgid "𝓢𝓽𝓾𝓭𝓲𝓸" +msgstr "𝓢𝓽𝓾𝓭𝓲𝓸" + +#: cms/envs/common.py +msgid "Your Platform Studio" +msgstr "Studio" + +#: cms/envs/common.py +msgid "Studio" +msgstr "Studio" + +#: cms/lib/xblock/tagging/tagging.py +msgid "Dictionary with the available tags" +msgstr "可使用标签的字典" + +#: cms/urls.py +msgid "Studio Administration" +msgstr "Studio管理" + +#: cms/templates/404.html cms/templates/error.html +#: lms/templates/static_templates/404.html +#: themes/elitemba-theme/lms/templates/static_templates/404.html +msgid "Page Not Found" +msgstr "找不到页面" + +#: cms/templates/404.html lms/templates/static_templates/404.html +#: themes/elitemba-theme/lms/templates/static_templates/404.html +msgid "Page not found" +msgstr "找不到页面" + +#: cms/templates/asset_index.html cms/templates/course_info.html +#: cms/templates/course_outline.html cms/templates/edit-tabs.html +#: cms/templates/textbooks.html cms/templates/videos_index.html +#: cms/templates/widgets/header.html lms/templates/static_htmlbook.html +#: lms/templates/static_pdfbook.html lms/templates/staticbook.html +msgid "Content" +msgstr "内容" + +#: cms/templates/certificates.html +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +msgid "Course Certificates" +msgstr "课程证书" + +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: lms/templates/wiki/includes/article_menu.html +#: themes/elitemba-theme/cms/templates/settings.html +#: wiki/templates/wiki/settings.html +#: wiki/templates/wiki/includes/article_menu.html +msgid "Settings" +msgstr "设置" + +#: cms/templates/certificates.html cms/templates/container.html +#: cms/templates/course_outline.html cms/templates/group_configurations.html +#: cms/templates/library.html cms/templates/manage_users.html +#: cms/templates/manage_users_lib.html lms/templates/courseware/courses.html +#: lms/templates/edxnotes/edxnotes.html +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +msgid "Loading" +msgstr "正在加载" + +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Grading" +msgstr "评分" + +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/manage_users.html cms/templates/settings.html +#: cms/templates/settings_advanced.html cms/templates/settings_graders.html +#: cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Team" +msgstr "课程团队" + +#: cms/templates/certificates.html cms/templates/group_configurations.html +#: cms/templates/settings.html cms/templates/settings_advanced.html +#: cms/templates/settings_graders.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Advanced Settings" +msgstr "高级设置" + +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Organization" +msgstr "组织" + +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/settings.html lms/templates/courseware/course_about.html +#: themes/elitemba-theme/cms/templates/settings.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Course Number" +msgstr "课程代码" + +#: cms/templates/course-create-rerun.html cms/templates/index.html +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Run" +msgstr "课程" + +#: cms/templates/course_outline.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Course Outline" +msgstr "课程大纲" + +#: cms/templates/html_error.html lms/templates/module-error.html +msgid "Error:" +msgstr "错误:" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Organization:" +msgstr "机构:" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Number:" +msgstr "课程代码:" + +#: cms/templates/index.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Run:" +msgstr "课程长度:" + +#: cms/templates/index.html lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/courseware/courses.html +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Courses" +msgstr "课程" + +#: cms/templates/login.html cms/templates/register.html +#: lms/templates/help_modal.html lms/templates/login.html +#: lms/templates/provider_login.html lms/templates/register-form.html +#: lms/templates/register-shib.html lms/templates/signup_modal.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "E-mail" +msgstr "电子邮件" + +#. Translators: This is the placeholder text for a field that requests an +#. email +#. address. +#: cms/templates/login.html cms/templates/manage_users.html +#: cms/templates/manage_users_lib.html cms/templates/register.html +#: lms/templates/login.html lms/templates/register-form.html +#: lms/templates/register-shib.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "example: username@domain.com" +msgstr "例:username@domain.com" + +#: cms/templates/login.html lms/templates/login.html +msgid "Forgot password?" +msgstr "忘记密码?" + +#: cms/templates/register.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Sign Up" +msgstr "注册" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Sign Up for {studio_name}" +msgstr "注册{studio_name}" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Already have a {studio_name} Account? Sign in" +msgstr "已经有一个{studio_name}账号了?请登录" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"Ready to start creating online courses? Sign up below and start creating " +"your first {platform_name} course today." +msgstr "准备好创建在线课程了?请今天注册并创建您的第一个{platform_name}课程。" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Required Information to Sign Up for {studio_name}" +msgstr "注册{studio_name}所必须的信息" + +#. Translators: This is the placeholder text for a field that requests the +#. user's full name. +#: cms/templates/register.html lms/templates/register-form.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "example: Jane Doe" +msgstr "例:Jane Doe" + +#. Translators: This is the placeholder text for a field that asks the user to +#. pick a username +#: cms/templates/register.html lms/templates/register-form.html +#: lms/templates/register-shib.html +#: themes/elitemba-theme/cms/templates/register.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "example: JaneDoe" +msgstr "例:JaneDoe" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"This will be used in public discussions with your courses and in our edX101 " +"support forums" +msgstr "这将会被用于您课程的公开讨论中以及我们edX101课程的支持论坛" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Your Location" +msgstr "您的位置" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Preferred Language" +msgstr "首选语言" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "I agree to the {a_start} Terms of Service {a_end}" +msgstr "我同意{a_start}服务条约{a_end}" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Create My Account & Start Authoring Courses" +msgstr "创建我的账号&开始创建课程" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Common {studio_name} Questions" +msgstr "关于{studio_name}的常见问题" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "Who is {studio_name} for?" +msgstr "{studio_name}是为谁而建的?" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"{studio_name} is for anyone that wants to create online courses that " +"leverage the global {platform_name} platform. Our users are often faculty " +"members, teaching assistants and course staff, and members of instructional " +"technology groups." +msgstr "" +"{studio_name}面向任何希望在全球化的{platform_name}平台上创建在线课程的用户。我们的用户通常是教员、助教、课程员工或教学技术小组成员。" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"How technically savvy do I need to be to create courses in {studio_name}?" +msgstr "在{studio_name}创建课程需要怎样的技术程度?" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"{studio_name} is designed to be easy to use by almost anyone familiar with " +"common web-based authoring environments (Wordpress, Moodle, etc.). No " +"programming knowledge is required, but for some of the more advanced " +"features, a technical background would be helpful. As always, we are here to" +" help, so don't hesitate to dive right in." +msgstr "" +"对几乎所有熟悉基于网页的编辑环境(WordPress、Moodle等)的人而言,{studio_name}都是很容易使用的。它无需编程知识,但拥有一些技术背景会在使用一些高级特性时有所帮助。我们会一如既往地为您提供帮助。不要犹豫,赶快加入吧。" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "I've never authored a course online before. Is there help?" +msgstr "我以前从来没创建过在线课程,可以帮帮我吗?" + +#: cms/templates/register.html +#: themes/elitemba-theme/cms/templates/register.html +msgid "" +"Absolutely. We have created an online course, edX101, that describes some " +"best practices: from filming video, creating exercises, to the basics of " +"running an online course. Additionally, we're always here to help, just drop" +" us a note." +msgstr "" +"当然。我们创建了一个在线课程:edX101,它介绍了一些创建在线课程的最佳实践:从拍摄视频,创建练习到开展在线教学的基础。另外,我们会尽力提供所需帮助,需要时请随时给我们留言。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Schedule & Details Settings" +msgstr "日程与细节设置" + +#: cms/templates/settings.html cms/templates/widgets/header.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Schedule & Details" +msgstr "日程 & 细节" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Basic Information" +msgstr "基本信息" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "The nuts and bolts of your course" +msgstr "您课程的具体细节" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "This field is disabled: this information cannot be changed." +msgstr "该字段已禁用:信息不可修改。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Summary Page" +msgstr "课程概要页面" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "(for student enrollment and access)" +msgstr "(用于学生选修和访问)" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enroll in {course_display_name}" +msgstr "选修{course_display_name}" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"The course \"{course_display_name}\", provided by {platform_name}, is open " +"for enrollment. Please navigate to this course at {link_for_about_page} to " +"enroll." +msgstr "" +"由{platform_name}提供的课程“{course_display_name}”现已开放选课,请通过{link_for_about_page}选修该课程。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Send a note to students via email" +msgstr "通过电子邮件给学生发送笔记" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Invite your students" +msgstr "邀请您的学生" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Promoting Your Course with {platform_name}" +msgstr "通过{platform_name}推广您的课程" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course summary page will not be viewable until your course has been " +"announced. To provide content for the page and preview it, follow the " +"instructions provided by your Program Manager." +msgstr "您的课程概要页面在您的课程公开之后才对外可见。为了向该页面提供信息并预览该页面,请遵循您的项目经理提供的指导。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Credit Requirements" +msgstr "课程学分要求" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Steps required to earn course credit" +msgstr "获取课程学分必要的步骤" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Minimum Grade" +msgstr "最低分" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Successful Proctored Exam" +msgstr "成功设置考试监考" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Proctored Exam {number}" +msgstr "监考考试{number}" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "ID Verification" +msgstr "身份验证" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "In-Course Reverification {number}" +msgstr "考前复检检测{number}" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Pacing" +msgstr "课程开始" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Set the pacing for this course" +msgstr "设定课程开始" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Instructor-Paced" +msgstr "讲师进度" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Instructor-paced courses progress at the pace that the course author sets. " +"You can configure release dates for course content and due dates for " +"assignments." +msgstr "教师教学课程的进度可以由该课程作者设置。您可以为该课程设置课程内容发布时间及停止观看时间。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Self-Paced" +msgstr "自定进度" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Self-paced courses do not have release dates for course content or due dates" +" for assignments. Learners can complete course material at any time before " +"the course end date." +msgstr "自学课程没有课程发布时间与作业缴交时间,学生可以在课程结束时间间自由地完成。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Schedule" +msgstr "课程时间表" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Dates that control when your course can be viewed" +msgstr "调整您的课程可以浏览的日期" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "First day the course begins" +msgstr "课程开始的第一天" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Start Time" +msgstr "课程开始时间" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "(UTC)" +msgstr "(UTC)" + +#: cms/templates/settings.html +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course End Date" +msgstr "课程结束日期" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Last day your course is active" +msgstr "课程活跃的最后一天" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course End Time" +msgstr "课程结束时间" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Certificates Available Date" +msgstr "证书获取日期" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "By default, 48 hours after course end date" +msgstr "默认为结课日期的48小时候" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enrollment Start Date" +msgstr "选课开始日期" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "First day students can enroll" +msgstr "学生可以选课的第一天" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enrollment Start Time" +msgstr "选课开始时间" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enrollment End Date" +msgstr "选课截止日期" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Last day students can enroll." +msgstr "学生可以选课的最后一天。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enrollment End Time" +msgstr "选课截止时间" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Details" +msgstr "课程详情" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Provide useful information about your course" +msgstr "提供有关您的课程的有用信息" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Identify the course language here. This is used to assist users find courses" +" that are taught in a specific language. It is also used to localize the " +"'From:' field in bulk emails." +msgstr "设置课程语言,用于帮助用户寻找用某个语言教学的课程,并本地化批量邮箱地址中的“From”输入框。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Introducing Your Course" +msgstr "介绍您的课程" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Information for prospective students" +msgstr "提供给预期学生的信息" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Title" +msgstr "课程标题" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Displayed as title on the course details page. Limit to 50 characters." +msgstr "课程详情页面的标题,不超过50个字符。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Subtitle" +msgstr "课程子标题" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Displayed as subtitle on the course details page. Limit to 150 characters." +msgstr "课程详情页面的副标题,不超过150个字符。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Duration" +msgstr "课时" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Displayed on the course details page. Limit to 50 characters." +msgstr "显示于课程详情页面,不超过50个字符。" + +#: cms/templates/settings.html lms/templates/courseware/program_marketing.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Description" +msgstr "课程简介" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Displayed on the course details page. Limit to 1000 characters." +msgstr "显示于课程详情页面,不超过1000个字符。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Short Description" +msgstr "课程简介" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Appears on the course catalog page when students roll over the course name. " +"Limit to ~150 characters" +msgstr "将在学生浏览课程目录时出现。限制150个字符。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Overview" +msgstr "课程概览" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "HTML Code Editor" +msgstr "HTML代码编辑器" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Introductions, prerequisites, FAQs that are used on {a_link_start}your " +"course summary page{a_link_end} (formatted in HTML)" +msgstr "在{a_link_start}您的课程摘要页面{a_link_end}的简介、先修条件、常见问题解答(HTML格式)。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course About Sidebar HTML" +msgstr "关于边栏HTML的课程" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Custom sidebar content for {a_link_start}your course summary " +"page{a_link_end} (formatted in HTML)" +msgstr "{a_link_start}您课程摘要页面{a_link_end}的自定义工具栏内容 (HTML格式)" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Card Image" +msgstr "课程卡图片" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"You can manage this image along with all of your other {a_link_start}files " +"and uploads{a_link_end}" +msgstr "您可以管理此图片和其他所有{a_link_start}上传的文件和资料{a_link_end}" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 375px wide by 200px tall)" +msgstr "您的课程目前没有图片。请上传一张(JPEG或PNG格式,最小建议大小为375像素宽、200像素高)" + +#. Translators: This is the placeholder text for a field that requests the URL +#. for a course image +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Your course image URL" +msgstr "您的课程图片 URL" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your course image (Note: only JPEG " +"or PNG format supported)" +msgstr "请为您的课程图片提供一个有效的路径和名字(注意:仅支持JPEG和PNG格式)" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Upload Course Card Image" +msgstr "上传课程卡图片" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course currently does not have an image. Please upload one (JPEG or PNG" +" format, and minimum suggested dimensions are 1440px wide by 400px tall)" +msgstr "您的课程暂无图片,请上传一张图片(JPEG/PNG),推荐最小尺寸1440px 宽 x 400px高" + +#. Translators: This is the placeholder text for a field that requests the URL +#. for a course banner image +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Your banner image URL" +msgstr "您的横幅图片URL" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your banner image (Note: only JPEG " +"or PNG format supported)" +msgstr "请输入有效的横幅图片路径和名称(注意:只支持JPEG/PNG格式图片)" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Upload Course Banner Image" +msgstr "上传课程横幅图片" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Video Thumbnail Image" +msgstr "视频缩略图" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course currently does not have a video thumbnail image. Please upload " +"one (JPEG or PNG format, and minimum suggested dimensions are 375px wide by " +"200px tall)" +msgstr "您的课程缺少视频缩略图,请上传一张视频缩略图(JPEG或PNG格式,推荐最小尺寸为375px 宽 X 200px 高)" + +#. Translators: This is the placeholder text for a field that requests the URL +#. for a course video thumbnail image +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Your video thumbnail image URL" +msgstr "您视频缩略图URL" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Please provide a valid path and name to your video thumbnail image (Note: " +"only JPEG or PNG format supported)" +msgstr "请输入有效的视频缩略图的路径和名称(注意:只支持JPEG/PNG格式图片)" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Upload Video Thumbnail Image" +msgstr "上传视频缩略图" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Introduction Video" +msgstr "课程介绍视频" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Delete Current Video" +msgstr "删除当前视频" + +#. Translators: This is the placeholder text for a field that requests a +#. YouTube video ID for a course video +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "your YouTube video's ID" +msgstr "您的 YouTube 视频 ID" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Enter your YouTube video's ID (along with any restriction parameters)" +msgstr "请输入您的YouTube视频编号(以及任何必要的限制参数)" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Learning Outcomes" +msgstr "学习成果" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Add the learning outcomes for this course" +msgstr "添加本门课程的预期学习成果" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Add Learning Outcome" +msgstr "添加学习预期成果" + +#: cms/templates/settings.html lms/templates/courseware/program_marketing.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Instructors" +msgstr "主讲教师" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Add details about the instructors for this course" +msgstr "添加本门课程教授的详细信息" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Add Instructor" +msgstr "添加主讲教师" + +#: cms/templates/settings.html lms/templates/courseware/course_about.html +#: themes/elitemba-theme/cms/templates/settings.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Requirements" +msgstr "修习要求" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Expectations of the students taking this course" +msgstr "对参加本门课程的学生的期望" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Hours of Effort per Week" +msgstr "每周投入课程学习的小时数" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Time spent on all course work" +msgstr "在整个课程上投入的时间" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Prerequisite Course" +msgstr "先修课程" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "None" +msgstr "无" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course that students must complete before beginning this course" +msgstr "学生在开始本课程之前必须完成的课程" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "set pre-requisite course" +msgstr "设置先修课程" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Require students to pass an exam before beginning the course." +msgstr "要求学生在课程开始前通过考试。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"You can now view and author your course entrance exam from the " +"{link_start}Course Outline{link_end}." +msgstr "您现在可以从{link_start}课程大纲{link_end}中查看并编写您课程的入学考试内容。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Grade Requirements" +msgstr "评分要求" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid " %" +msgstr "" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"The score student must meet in order to successfully complete the entrance " +"exam. " +msgstr "学生要顺利完成入学考试所必须满足的分数。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Course Content License" +msgstr "课程内容许可" + +#. Translators: At the course settings, the editor is able to select the +#. default course content license. +#. The course content will have this license set, some assets can override the +#. license with their own. +#. In the form, the license selector for course content is described using the +#. following string: +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Select the default license for course content" +msgstr "选择默认的课程内容许可" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "How are these settings used?" +msgstr "如何使用这些设置?" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Your course's schedule determines when students can enroll in and begin a " +"course." +msgstr "您的课程时间表决定何时学生可以注册和开始本门课程。" + +#: cms/templates/settings.html +#: themes/elitemba-theme/cms/templates/settings.html +msgid "" +"Other information from this page appears on the About page for your course. " +"This information includes the course overview, course image, introduction " +"video, and estimated time requirements. Students use About pages to choose " +"new courses to take." +msgstr "" +"本页面的其他信息将会出现在您课程的关于页面上。这些信息包括课程概要,课程图片,介绍视频,以及预估的时间要求。学生们使用关于页面来选择要上的课程。" + +#: cms/templates/studio_xblock_wrapper.html lms/templates/help_modal.html +#: lms/templates/module-error.html +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Details" +msgstr "细节" + +#. #-#-#-#-# mako.po (0.1a) #-#-#-#-# +#. Translators: this is a verb describing the action of viewing more details +#: cms/templates/studio_xblock_wrapper.html +#: lms/templates/wiki/includes/article_menu.html +#: wiki/templates/wiki/includes/article_menu.html +msgid "View" +msgstr "阅览" + +#: cms/templates/emails/activation_email.txt +#: themes/elitemba-theme/cms/templates/emails/activation_email.txt +msgid "" +"Thank you for signing up for {studio_name}! To activate your account, please" +" copy and paste this address into your web browser's address bar:" +msgstr "感谢您注册{studio_name}!要激活您的账号,请复制并粘贴下面的网址到您的浏览器的地址栏:" + +#: cms/templates/emails/activation_email.txt +#: themes/elitemba-theme/cms/templates/emails/activation_email.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the help section of the {studio_name} web site." +msgstr "" +"如果您没发出过该请求,您不需要做任何事情,您将不会收到其他任何电子邮件。请不要回复此电子邮件。如果您需要帮助,请访问{studio_name}网站。" + +#: cms/templates/maintenance/_force_publish_course.html +#: lms/templates/problem.html lms/templates/shoppingcart/shopping_cart.html +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html +#: themes/elitemba-theme/lms/templates/problem.html +msgid "Reset" +msgstr "重置" + +#: cms/templates/widgets/footer.html lms/templates/footer.html +msgid "Legal" +msgstr "合法" + +#: cms/templates/widgets/header.html lms/templates/header/header.html +#: lms/templates/navigation/navigation.html +#: lms/templates/widgets/footer-language-selector.html +msgid "Choose Language" +msgstr "选择语言" + +#: cms/templates/widgets/header.html lms/templates/user_dropdown.html +#: lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Account" +msgstr "账号" + +#: cms/templates/widgets/header.html +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: lms/templates/static_templates/help.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: wiki/plugins/help/wiki_plugin.py +msgid "Help" +msgstr "帮助" + +#: cms/templates/widgets/sock.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Looking for help with {studio_name}?" +msgstr "查找有关{studio_name}的帮助?" + +#: cms/templates/widgets/sock.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Hide {studio_name} Help" +msgstr "隐藏{studio_name}帮助" + +#: cms/templates/widgets/sock.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "{studio_name} Documentation" +msgstr "{studio_name}文档" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Access documentation on http://docs.edx.org" +msgstr "到 http://docs.edx.org 获取文档" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "edX Documentation" +msgstr "edX文档" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Enroll in edX101: Overview of Creating an edX Course" +msgstr "参加 edX101:关于创建一门 edX 课程的概述" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Enroll in edX101" +msgstr "选修edX101" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Enroll in StudioX: Creating a Course with edX Studio" +msgstr "参加 StudioX:使用 edX Studio 创建一门课程" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Enroll in StudioX" +msgstr "参加 StudioX" + +#: cms/templates/widgets/sock_links.html +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "Send an email to {email}" +msgstr "发送邮件到 {email}" + +#: cms/templates/widgets/tabs-aggregator.html +#: lms/templates/courseware/static_tab.html +#: lms/templates/courseware/tab-view-v2.html +#: lms/templates/courseware/tab-view.html +msgid "name" +msgstr "名称" + +#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html +msgid "Usermenu" +msgstr "用户菜单" + +#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html +msgid "Usermenu dropdown" +msgstr "用户菜单下拉列表" + +#: cms/templates/widgets/user_dropdown.html lms/templates/user_dropdown.html +#: lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Sign Out" +msgstr "退出" + +#: common/lib/capa/capa/templates/codeinput.html +msgid "Code Editor" +msgstr "代码编辑器" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Feedback Form" +msgstr "反馈表格" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Email: {email}" +msgstr "电子邮件: {email}" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Full Name: {realname}" +msgstr "全名: {realname}" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Inquiry Type: {inquiry_type}" +msgstr "查询类型: {inquiry_type}" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Message: {message}" +msgstr "信息: {message}" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Tags: {tags}" +msgstr "标签: {tags}" + +#: common/templates/emails/contact_us_feedback_email_body.txt +msgid "Additional Info:" +msgstr "附加信息" + +#: common/templates/emails/contact_us_feedback_email_subject.txt +msgid "Feedback from user" +msgstr "使用者反馈意见" + +#: common/templates/emails/sync_learner_profile_data_email_change_body.txt +msgid "" +"The email associated with your {platform_name} account has changed from " +"{old_email} to {new_email}." +msgstr "与您账号 {platform_name} 相关联的电子邮件地址由 {old_email} 修改为 {new_email}。" + +#: common/templates/emails/sync_learner_profile_data_email_change_body.txt +msgid "No action is needed on your part." +msgstr "您不需要进行任何操作。" + +#: common/templates/emails/sync_learner_profile_data_email_change_body.txt +msgid "" +"If this change is not correct, contact {link_start}{platform_name} " +"Support{link_end} or your administrator." +msgstr "如果此更改有误,请联系{link_start}{platform_name}客户支持服务{link_end}或您的管理员。" + +#: common/templates/emails/sync_learner_profile_data_email_change_subject.txt +msgid "Your {platform_name} account email has been updated" +msgstr "您的 {platform_name} 账号电子邮件已更新" + +#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html +msgid "Add a Post" +msgstr "添加一个讨论帖" + +#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html +msgid "New topic form" +msgstr "新主题表格" + +#: lms/djangoapps/discussion/templates/discussion/discussion_board_fragment.html +msgid "Discussion thread list" +msgstr "讨论列表" + +#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html +#: lms/templates/discussion/_user_profile.html +#, python-format +msgid "%s discussion started" +msgid_plural "%s discussions started" +msgstr[0] "%s 场讨论已开始" + +#: lms/djangoapps/discussion/templates/discussion/discussion_profile_page.html +#: lms/templates/discussion/_user_profile.html +#, python-format +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "%s 条评论" + +#: lms/djangoapps/discussion/templates/discussion/maintenance_fragment.html +msgid "Discussion unavailable" +msgstr "讨论不可用" + +#: lms/djangoapps/discussion/templates/discussion/maintenance_fragment.html +msgid "" +"The discussions are currently undergoing maintenance. We'll have them back " +"up shortly!" +msgstr "讨论板块正在进行维护。我们会很快备份内容!" + +#: lms/templates/_gated_content.html lms/templates/seq_module.html +msgid "Content Locked" +msgstr "未解锁内容" + +#: lms/templates/_gated_content.html +msgid "" +"You must complete the prerequisites for '{prereq_section_name}' to access " +"this content." +msgstr "您必须先完成'{prereq_section_name}'的先修课程,才能访问此内容。" + +#: lms/templates/_gated_content.html +msgid "Go to Prerequisite Section" +msgstr "前往“先修课程要求”" + +#: lms/templates/annotatable.html +msgid "Collapse Instructions" +msgstr "折叠说明" + +#: lms/templates/annotatable.html +msgid "Guided Discussion" +msgstr "指导性讨论" + +#: lms/templates/annotatable.html +msgid "Hide Annotations" +msgstr "隐藏批注" + +#: lms/templates/bookmark_button.html lms/templates/seq_module.html +msgid "Bookmarked" +msgstr "已收藏" + +#: lms/templates/bookmark_button.html +msgid "Bookmark this page" +msgstr "收藏此页" + +#: lms/templates/conditional_module.html +msgid "You do not have access to this dependency module." +msgstr "您无权访问此依赖模块。" + +#: lms/templates/course.html +#: openedx/features/journals/templates/journals/bundle_card.html +#: openedx/features/journals/templates/journals/journal_card.html +#: themes/elitemba-theme/lms/templates/course.html +msgid "LEARN MORE" +msgstr "了解更多" + +#: lms/templates/course.html themes/elitemba-theme/lms/templates/course.html +msgid "Starts" +msgstr "开始" + +#: lms/templates/course.html themes/elitemba-theme/lms/templates/course.html +msgid "Starts: {date}" +msgstr "开课日期: {date}" + +#: lms/templates/courses_list.html +msgid "View all Courses" +msgstr "浏览所有课程" + +#: lms/templates/dashboard.html lms/templates/user_dropdown.html +#: lms/templates/header/user_dropdown.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Dashboard" +msgstr "课程面板" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "You are not enrolled in any courses yet." +msgstr "您尚未参加任何课程。" + +#: lms/templates/dashboard.html +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Explore courses" +msgstr "发现课程" + +#: lms/templates/dashboard.html +#: lms/templates/registration/account_activation_sidebar_notice.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Activate your account!" +msgstr "激活您的账号!" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Course-loading errors" +msgstr "课程加载错误" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Search Your Courses" +msgstr "查找课程" + +#: lms/templates/dashboard.html lms/templates/courseware/courseware.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Clear search" +msgstr "清空搜索结果" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Account Status Info" +msgstr "账号状态信息" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Order History" +msgstr "订单记录" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Email Settings for {course_number}" +msgstr "{course_number}的电子邮件设置" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Receive course emails" +msgstr "接收课程邮件" + +#: lms/templates/dashboard.html themes/edx.org/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Save Settings" +msgstr "保存设置" + +#: lms/templates/dashboard.html lms/templates/ccx/enrollment.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_entitlement_actions.html +#: lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: themes/edx.org/lms/templates/dashboard.html +#: themes/edx.org/lms/templates/dashboard/_dashboard_entitlement_unenrollment_modal.html +#: themes/elitemba-theme/lms/templates/dashboard.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Unenroll" +msgstr "放弃选修" + +#: lms/templates/edit_unit_link.html +msgid "View Unit in Studio" +msgstr "在 Studio 中查看单元" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +msgid "E-mail change failed" +msgstr "邮箱变更失败" + +#: lms/templates/email_change_failed.html +msgid "We were unable to send a confirmation email to {email}" +msgstr "我们无法向 {email}发送确认邮件" + +#: lms/templates/email_change_failed.html lms/templates/email_exists.html +#: lms/templates/invalid_email_key.html +#: lms/templates/secondary_email_change_failed.html +msgid "Go back to the {link_start}home page{link_end}." +msgstr "返回{link_start}主页{link_end}" + +#: lms/templates/email_change_successful.html +msgid "E-mail change successful!" +msgstr "邮箱更改成功!" + +#: lms/templates/email_change_successful.html +msgid "You should see your new email in your {link_start}dashboard{link_end}." +msgstr "您可以在{link_start}课程面板{link_end}看到您的新邮箱地址" + +#: lms/templates/email_exists.html +msgid "An account with the new e-mail address already exists." +msgstr "该邮箱地址已被另一个账号使用。" + +#: lms/templates/enroll_staff.html +msgid "You should Register before trying to access the Unit" +msgstr "您在查看单元前应先注册。" + +#: lms/templates/enroll_staff.html lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "self" +msgid "Enroll" +msgstr "选修" + +#: lms/templates/enroll_staff.html +msgid "Don't enroll" +msgstr "不选修" + +#: lms/templates/enroll_students.html +msgid "Student Enrollment Form" +msgstr "学生选课表" + +#: lms/templates/enroll_students.html +msgid "Course: " +msgstr "课程:" + +#: lms/templates/enroll_students.html +msgid "Add new students" +msgstr "添加新学生" + +#: lms/templates/enroll_students.html +msgid "Existing students:" +msgstr "现有学生:" + +#: lms/templates/enroll_students.html +msgid "New students added: " +msgstr "新增学生:" + +#: lms/templates/enroll_students.html +msgid "Students rejected: " +msgstr "被拒绝的学生:" + +#: lms/templates/enroll_students.html +msgid "Debug: " +msgstr "排除错误" + +#: lms/templates/extauth_failure.html +msgid "External Authentication failed" +msgstr "外部认证失败" + +#: lms/templates/forgot_password_modal.html +msgid "" +"Please enter your e-mail address below, and we will e-mail instructions for " +"setting a new password." +msgstr "请在下面输入您的电子邮件地址。我们会通过邮件发送设置新密码的说明。" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Required Information" +msgstr "必填信息" + +#: lms/templates/forgot_password_modal.html +msgid "Your E-mail Address" +msgstr "您的邮件地址" + +#: lms/templates/forgot_password_modal.html lms/templates/login.html +msgid "This is the e-mail address you used to register with {platform}" +msgstr "这是您在{platform}注册时使用的e-mail地址。" + +#: lms/templates/forgot_password_modal.html +msgid "Reset My Password" +msgstr "重置我的密码" + +#: lms/templates/forgot_password_modal.html +msgid "Email is incorrect." +msgstr "邮箱不正确。" + +#: lms/templates/help_modal.html +msgid "Support" +msgstr "支持" + +#: lms/templates/help_modal.html +msgid "" +"For {strong_start}questions on course lectures, homework, tools, or " +"materials for this course{strong_end}, post in the {link_start}course " +"discussion forum{link_end}." +msgstr "" +"关于{strong_start}此课程的讲座、作业、工具或材料的问题{strong_end},请发布在{link_start}课程讨论论坛{link_end}中。" + +#: lms/templates/help_modal.html +msgid "" +"Have {strong_start}general questions about {platform_name}{strong_end}? You " +"can find lots of helpful information in the {platform_name} " +"{link_start}FAQ{link_end}." +msgstr "" +"{strong_start}对{platform_name}有常见问题{strong_end}?您可以在 {platform_name} " +"{link_start}FAQ{link_end} 中找到许多有用的信息。" + +#: lms/templates/help_modal.html +msgid "" +"Have a {strong_start}question about something specific{strong_end}? You can " +"contact the {platform_name} general support team directly:" +msgstr "{strong_start}对具体事物有疑问{strong_end}?您可以直接联系 {platform_name} 支持团队:" + +#: lms/templates/help_modal.html +msgid "Report a problem" +msgstr "报告问题" + +#: lms/templates/help_modal.html +msgid "Make a suggestion" +msgstr "提供建议" + +#: lms/templates/help_modal.html +msgid "Ask a question" +msgstr "提问" + +#: lms/templates/help_modal.html +msgid "" +"Please note: The {platform_name} support team is English speaking. While we " +"will do our best to address your inquiry in any language, our responses will" +" be in English." +msgstr "请注意{platform_name}平台的技术支持团队说的是英语。我们将尽可能处理来自任何语种的请求,但我们只用英语答复。" + +#: lms/templates/help_modal.html +msgid "Briefly describe your issue" +msgstr "简述您的问题" + +#: lms/templates/help_modal.html +msgid "Tell us the details" +msgstr "告诉我们细节" + +#: lms/templates/help_modal.html +msgid "" +"Describe what you were doing when you encountered the issue. Include any " +"details that will help us to troubleshoot, including error messages that you" +" saw." +msgstr "请尽可能详细地描述您遇到该问题时的情况,包括显示的错误提示,以便我们排除故障。" + +#: lms/templates/help_modal.html +msgid "Thank You!" +msgstr "谢谢!" + +#: lms/templates/help_modal.html +msgid "" +"Thank you for your inquiry or feedback. We typically respond to a request " +"within one business day, Monday to Friday. In the meantime, please review " +"our {link_start}detailed FAQs{link_end} where most questions have already " +"been answered." +msgstr "" +"感谢您的咨询及反馈。我们一般将在1个工作日内给您答复,我们的工作日为周一至周五。您也可以访问我们的常见问题解答页面{link_start}{link_end}以获得问题答案。" + +#: lms/templates/help_modal.html +msgid "- Select -" +msgstr "选择" + +#: lms/templates/help_modal.html +msgid "problem" +msgstr "问题" + +#: lms/templates/help_modal.html +msgid "Report a Problem" +msgstr "报告问题" + +#: lms/templates/help_modal.html +msgid "Brief description of the problem" +msgstr "简述此问题" + +#: lms/templates/help_modal.html +msgid "Details of the problem you are encountering{asterisk}" +msgstr "问题详情{asterisk}" + +#: lms/templates/help_modal.html +msgid "suggestion" +msgstr "建议" + +#: lms/templates/help_modal.html +msgid "Make a Suggestion" +msgstr "提供建议" + +#: lms/templates/help_modal.html +msgid "Brief description of your suggestion" +msgstr "简述您的建议" + +#: lms/templates/help_modal.html +msgid "question" +msgstr "问题" + +#: lms/templates/help_modal.html +msgid "Ask a Question" +msgstr "提问" + +#: lms/templates/help_modal.html +msgid "Brief summary of your question" +msgstr "简单概述您的问题" + +#: lms/templates/help_modal.html +msgid "An error has occurred." +msgstr "发生错误" + +#: lms/templates/help_modal.html +msgid "Please {link_start}send us e-mail{link_end}." +msgstr "请 {link_start}发送e-mail{link_end} 给我们。" + +#: lms/templates/help_modal.html +msgid "Please try again later." +msgstr "请稍后再试。" + +#: lms/templates/hidden_content.html +msgid "The course has ended." +msgstr "课程已经结束" + +#: lms/templates/hidden_content.html +msgid "The due date for this assignment has passed." +msgstr "本次作业已经过了截止日期。" + +#: lms/templates/hidden_content.html +msgid "" +"Because the course has ended, this assignment is no longer " +"available.{line_break}If you have completed this assignment, your grade is " +"available on the {link_start}progress page{link_end}." +msgstr "" +"由于课程已经结束,此作业不再可用。{line_break} 如果您已经完成此作业,您可以在 {link_start}进度页面{link_end} " +"上查询作业成绩。" + +#: lms/templates/hidden_content.html +msgid "" +"Because the due date has passed, this assignment is no longer " +"available.{line_break}If you have completed this assignment, your grade is " +"available on the {link_start}progress page{link_end}." +msgstr "" +"由于截止日期已过,此作业不再可用。{line_break} 如果您已经完成此作业,您可以在 {link_start}进度页面{link_end} " +"上查询作业成绩。" + +#: lms/templates/index.html lms/templates/courseware/courses.html +#: themes/elitemba-theme/lms/templates/index.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +#: themes/stanford-style/lms/templates/index.html +msgid "Search for a course" +msgstr "查找课程" + +#. Translators: 'Open edX' is a registered trademark, please keep this +#. untranslated. See http://open.edx.org for more information. +#: lms/templates/index_overlay.html +msgid "Welcome to the Open edX{registered_trademark} platform!" +msgstr "欢迎来到Open edX{registered_trademark}平台!" + +#. Translators: 'Open edX' is a registered trademark, please keep this +#. untranslated. See http://open.edx.org for more information. +#: lms/templates/index_overlay.html +msgid "It works! This is the default homepage for this Open edX instance." +msgstr "成功了!这是一个 Open edX 实例的默认主页。" + +#: lms/templates/invalid_email_key.html +msgid "Invalid email change key" +msgstr "无效的邮件变更码" + +#: lms/templates/invalid_email_key.html +msgid "This e-mail key is not valid. Please check:" +msgstr "邮件码无效。请检查:" + +#: lms/templates/invalid_email_key.html +msgid "" +"Was this key already used? Check whether the e-mail change has already " +"happened." +msgstr "如果该编码已被使用,请检查邮箱变更是否已成功。" + +#: lms/templates/invalid_email_key.html +msgid "Did your e-mail client break the URL into two lines?" +msgstr "您的邮箱客户端是否将URL分成两行?" + +#: lms/templates/invalid_email_key.html +msgid "The keys are valid for a limited amount of time. Has the key expired?" +msgstr "由于密钥的时效有限,请检查是否已过期。" + +#: lms/templates/library-block-author-preview-header.html +msgid "" +"Showing all matching content eligible to be added into {display_name}. Each " +"student will be assigned {max_count} component drawn randomly from this " +"list." +msgid_plural "" +"Showing all matching content eligible to be added into {display_name}. Each " +"student will be assigned {max_count} components drawn randomly from this " +"list." +msgstr[0] "显示可添加到 {display_name} 的全部匹配内容。每位学生都将从此列表随机分配到 {max_count} 个组件。" + +#: lms/templates/login-sidebar.html +msgid "Helpful Information" +msgstr "有用的信息" + +#: lms/templates/login-sidebar.html +msgid "Login via OpenID" +msgstr "通过OpenID登录" + +#: lms/templates/login-sidebar.html +msgid "" +"You can now start learning with {platform_name} by logging in with your OpenID account." +msgstr "" +"您现在可以登录您的 OpenID账号开始学习{platform_name}上的课程。" + +#: lms/templates/login-sidebar.html +msgid "Not Enrolled?" +msgstr "尚未选课?" + +#: lms/templates/login-sidebar.html +msgid "Sign up for {platform_name} today!" +msgstr "现在就注册加入{platform_name}!" + +#: lms/templates/login-sidebar.html lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Need Help?" +msgstr "需要帮助?" + +#: lms/templates/login-sidebar.html +msgid "Looking for help signing in or with your {platform_name} account?" +msgstr "寻找关于登录或者您的 {platform_name} 账号的帮助?" + +#: lms/templates/login-sidebar.html +msgid "View our help section for answers to commonly asked questions." +msgstr "查看帮助部分来获得常见问题的解答。" + +#: lms/templates/login.html +msgid "Log into your {platform_name} Account" +msgstr "登录进入您的{platform_name}账号" + +#: lms/templates/login.html +msgid "Log into My {platform_name} Account" +msgstr "登录我的{platform_name}账号" + +#: lms/templates/login.html +msgid "Access My Courses" +msgstr "进入我的课程" + +#: lms/templates/login.html lms/templates/register-shib.html +#: lms/templates/register.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Processing your account information" +msgstr "正在处理您的账号信息" + +#: lms/templates/login.html wiki/templates/wiki/accounts/login.html +msgid "Please log in" +msgstr "请登录" + +#: lms/templates/login.html +msgid "to access your account and courses" +msgstr "来访问您的账号和课程" + +#: lms/templates/login.html +msgid "We're Sorry, {platform_name} accounts are unavailable currently" +msgstr "我们很遗憾,{platform_name} 账号现在无法使用" + +#: lms/templates/login.html +msgid "We couldn't log you in." +msgstr "无法登录。" + +#: lms/templates/login.html +msgid "Your email or password is incorrect" +msgstr "您的邮箱或密码不正确" + +#: lms/templates/login.html +msgid "An error occurred when signing you in to {platform_name}." +msgstr "您注册 {platform_name} 时发生了一个错误。" + +#: lms/templates/login.html +msgid "" +"Please provide the following information to log into your {platform_name} " +"account. Required fields are noted by bold text " +"and an asterisk (*)." +msgstr "" +"请提供下面的信息以登录进入您的 {platform_name} 账号,必须填写的信息已经被 加粗和用 (*)标出。" + +#: lms/templates/login.html +msgid "Account Preferences" +msgstr "账号参数" + +#: lms/templates/login.html +msgid "Sign in with {provider_name}" +msgstr "以 {provider_name}登陆" + +#. Translators: "External resource" means that this learning module is hosted +#. on a platform external to the edX LMS +#: lms/templates/lti.html +msgid "External resource" +msgstr "外部资源" + +#. Translators: "points" is the student's achieved score on this LTI unit, and +#. "total_points" is the maximum number of points achievable. +#: lms/templates/lti.html +msgid "{points} / {total_points} points" +msgstr "{points} / 共{total_points} 分" + +#. Translators: "total_points" is the maximum number of points achievable on +#. this LTI unit +#: lms/templates/lti.html +msgid "{total_points} points possible" +msgstr "本题共有{total_points} 分" + +#: lms/templates/lti.html +msgid "View resource in a new window" +msgstr "在新窗口中查看资源" + +#: lms/templates/lti.html +msgid "" +"Please provide launch_url. Click \"Edit\", and fill in the required fields." +msgstr "请提供运行链接 launch_url,点击\"编辑\",并填写需要的项。" + +#: lms/templates/lti.html +msgid "Feedback on your work from the grader:" +msgstr "评分者给您的反馈:" + +#: lms/templates/lti_form.html +msgid "Press to Launch" +msgstr "点击来启动" + +#: lms/templates/manage_user_standing.html +msgid "Manage student accounts" +msgstr "管理学生账号" + +#: lms/templates/manage_user_standing.html +msgid "Username:" +msgstr "用户名:" + +#: lms/templates/manage_user_standing.html +msgid "Profile:" +msgstr "用户资料:" + +#: lms/templates/manage_user_standing.html +msgid "Image:" +msgstr "图像" + +#: lms/templates/manage_user_standing.html +msgid "Name:" +msgstr "名字" + +#: lms/templates/manage_user_standing.html +msgid "Choose an action:" +msgstr "选择一个行为:" + +#: lms/templates/manage_user_standing.html +msgid "View Profile" +msgstr "查看用户资料" + +#: lms/templates/manage_user_standing.html +msgid "Disable Account" +msgstr "停用账号" + +#: lms/templates/manage_user_standing.html +msgid "Reenable Account" +msgstr "重新启用账号" + +#: lms/templates/manage_user_standing.html +msgid "Remove Profile Image" +msgstr "删除用户资料照片" + +#: lms/templates/manage_user_standing.html +msgid "Students whose accounts have been disabled" +msgstr "学生账号已被停用" + +#: lms/templates/manage_user_standing.html +msgid "(reload your page to refresh)" +msgstr "(重新加载以刷新您的页面)" + +#: lms/templates/manage_user_standing.html +msgid "working" +msgstr "运行中" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +msgid "There has been an error on the {platform_name} servers" +msgstr "{platform_name} 平台的服务器发生了错误" + +#: lms/templates/module-error.html +#: lms/templates/courseware/courseware-error.html +#: lms/templates/courseware/error-message.html +msgid "" +"We're sorry, this module is temporarily unavailable. Our staff is working to" +" fix it as soon as possible. Please email us at {tech_support_email} to " +"report any problems or downtime." +msgstr "" +"非常抱歉,该模块暂时无法使用,我们的教员正在努力尽修复问题。要报告您发现的任何问题或遇到网站非正常,请向{tech_support_email}发送邮件" + +#: lms/templates/module-error.html +msgid "Raw data:" +msgstr "原始数据:" + +#: lms/templates/notes.html +msgid "You do not have any notes." +msgstr "您没有任何笔记。" + +#: lms/templates/preview_menu.html +msgid "Course View" +msgstr "课程内容查看" + +#: lms/templates/preview_menu.html +msgid "View this course as:" +msgstr "查看课程的身份:" + +#: lms/templates/preview_menu.html +msgid "Learner" +msgstr "学生" + +#: lms/templates/preview_menu.html +msgid "Specific learner" +msgstr "指定学生" + +#: lms/templates/preview_menu.html +msgid "Learner in {content_group}" +msgstr "{content_group}的学生" + +#: lms/templates/preview_menu.html +msgid "Username or email:" +msgstr "用户名或电子邮件:" + +#: lms/templates/preview_menu.html +msgid "Set preview mode" +msgstr "设为预览模式" + +#: lms/templates/preview_menu.html +msgid "You are now viewing the course as {i_start}{user_name}{i_end}." +msgstr "您正在以 {i_start}{user_name}{i_end} 身份查看课程。" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "You have used {num_used} of {num_total} attempt" +msgid_plural "You have used {num_used} of {num_total} attempts" +msgstr[0] "您已经尝试了{num_used}次(总共可以尝试{num_total}次)" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "" +"Some problems have options such as save, reset, hints, or show answer. These" +" options follow the Submit button." +msgstr "一些题目设有保存、重置、提示、显示答案等选项,点击提交后即会出现。" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "Hint" +msgstr "提示" + +#: lms/templates/problem.html lms/templates/word_cloud.html +#: themes/elitemba-theme/lms/templates/problem.html +msgid "Save" +msgstr "保存" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "Save your answer" +msgstr "保存答案" + +#: lms/templates/problem.html themes/elitemba-theme/lms/templates/problem.html +msgid "Reset your answer" +msgstr "重置答案" + +#: lms/templates/problem_notifications.html +msgid "Next Hint" +msgstr "下个提示" + +#: lms/templates/problem_notifications.html +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "Review" +msgstr "检查" + +#: lms/templates/provider_login.html +msgid "Log In" +msgstr "登录" + +#: lms/templates/provider_login.html +msgid "" +"Your username, email, and full name will be sent to {destination}, where the" +" collection and use of this information will be governed by their terms of " +"service and privacy policy." +msgstr "您的用户名、邮箱地址及全名将发送到 {destination},收集和使用这些信息将遵循他们的服务和隐私保护条款。" + +#: lms/templates/provider_login.html +#, python-format +msgid "Return To %s" +msgstr "返回%s" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "" +"We're sorry, but this version of your browser is not supported. Try again " +"using a different browser or a newer version of your browser." +msgstr "很抱歉,我们不支持您的浏览器版本。请使用不同的浏览器或您的浏览器的较新版本重试。" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "The following errors occurred while processing your registration:" +msgstr "在处理您的注册信息时发生了下列错误:" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Sign up with {provider_name}" +msgstr "使用 {provider_name} 账号登录" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Create your own {platform_name} account below" +msgstr "在下面创建您的 {platform_name} 账号" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "" +"Required fields are noted by bold text and an " +"asterisk (*)." +msgstr "必需的字段已经被粗体和星号(*)所标记。" + +#. Translators: selected_provider is the name of an external, third-party user +#. authentication service (like Google or LinkedIn). +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "You've successfully signed in with {selected_provider}." +msgstr "您已成功地以{selected_provider}账号登录。" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "" +"We just need a little more information before you start learning with " +"{platform_name}." +msgstr "您只需再多提供一点信息就可以开始在{platform_name}学习了。" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Please complete the following fields to register for an account. " +msgstr "请将以下字段补充完整以完成账号注册。" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Your legal name, used for any certificates you earn." +msgstr "将在您获得的所有证书上显示的法定姓名" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Will be shown in any discussions or forums you participate in" +msgstr "将会在您参加的任何讨论或论坛上显示" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "cannot be changed later" +msgstr "以后不能更改" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Welcome {username}" +msgstr "欢迎 {username}" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Enter a Public Display Name:" +msgstr "输入一个公开的显示名称:" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Public Display Name" +msgstr "公开显示名称" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Additional Personal Information" +msgstr "更多个人信息" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "example: New York" +msgstr "例:北京" + +#: lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Please share with us your reasons for registering with {platform_name}" +msgstr "请告诉我们您注册 {platform_name}的原因" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Account Acknowledgements" +msgstr "账号致谢" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "I agree to the {link_start}Terms of Service{link_end}" +msgstr "我同意{link_start}服务条款{link_end}" + +#: lms/templates/register-form.html lms/templates/register-shib.html +#: lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-form.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "I agree to the {link_start}Honor Code{link_end}" +msgstr "我同意{link_start}诚信准则{link_end}" + +#: lms/templates/register-form.html lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-form.html +msgid "Create My Account" +msgstr "创建我的账号" + +#: lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Preferences for {platform_name}" +msgstr "{platform_name}偏好设置" + +#: lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Update my {platform_name} Account" +msgstr "更新我的{platform_name}账号" + +#: lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Welcome {username}! Please set your preferences below" +msgstr "欢迎 {username}! 接下来请进行您的偏好设置" + +#: lms/templates/register-shib.html lms/templates/signup_modal.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Enter a public username:" +msgstr "输入用户昵称" + +#: lms/templates/register-shib.html +#: themes/stanford-style/lms/templates/register-shib.html +msgid "Update My Account" +msgstr "更新我的账号" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Registration Help" +msgstr "注册帮助" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Already registered?" +msgstr "已经注册过了?" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +#: wiki/templates/wiki/base.html wiki/templates/wiki/accounts/login.html +#: wiki/templates/wiki/accounts/signup.html +msgid "Log in" +msgstr "登录" + +#: lms/templates/register-sidebar.html +msgid "Welcome to {platform_name}" +msgstr "欢迎来到{platform_name}" + +#: lms/templates/register-sidebar.html +msgid "" +"Registering with {platform_name} gives you access to all of our current and " +"future free courses. Not ready to take a course just yet? Registering puts " +"you on our mailing list - we will update you as courses are added." +msgstr "" +"在 {platform_name} 注册之后, " +"您可以访问我们现有和将来所有的免费课程。现在还不想加入课程?注册后您将加入我们的收件人列表,您将通过邮件收到新课程的通知。" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Next Steps" +msgstr "下面的步骤" + +#: lms/templates/register-sidebar.html +msgid "" +"As part of joining {platform_name}, you will receive an email message with " +"instructions for activating your account. Don't see the email? Check your " +"spam folder and mark {platform_name} emails as 'not spam'. At " +"{platform_name}, we communicate mostly through email." +msgstr "" +"加入 {platform_name} 过程中,您将收到一封说明账号激活方法的电子邮件。如未收到邮件,请检查您的垃圾邮件文件夹并将 " +"{platform_name} 邮件标记为“非垃圾邮件”。在 {platform_name},电子邮件为主要沟通方式。" + +#: lms/templates/register-sidebar.html +msgid "Need help registering with {platform_name}?" +msgstr "注册{platform_name}账号遇到问题?" + +#: lms/templates/register-sidebar.html +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "View our FAQs for answers to commonly asked questions." +msgstr "查看我们的FAQ来获得常见问题的解答。" + +#: lms/templates/register-sidebar.html +msgid "" +"You can find the answers to most of your questions in our list of FAQs. " +"After you enroll in a course, you can also find answers in the course " +"discussions." +msgstr "在我们的常见问题解答列表中,您可以找到大多数问题的答案。加入课程后,您也可以在课程讨论中找到问题答案。" + +#: lms/templates/register.html +msgid "Register for {platform_name}" +msgstr "{platform_name} 注册" + +#: lms/templates/register.html +msgid "Create My {platform_name} Account" +msgstr "创建我的 {platform_name} 账号" + +#: lms/templates/register.html +msgid "Welcome!" +msgstr "欢迎!" + +#: lms/templates/register.html +msgid "Register below to create your {platform_name} account" +msgstr "在下面注册来创建您在 {platform_name}的账号" + +#: lms/templates/resubscribe.html +msgid "Re-subscribe Successful!" +msgstr "重新订阅成功!" + +#: lms/templates/resubscribe.html +msgid "" +"You have re-enabled forum notification emails from {platform_name}. You may " +"{dashboard_link_start}return to your dashboard{link_end}." +msgstr "" +"您已重新启用{platform_name}的论坛邮件提醒。您可以{dashboard_link_start}返回您的课程面板{link_end}。" + +#: lms/templates/secondary_email_change_failed.html +msgid "Secondary e-mail change failed" +msgstr "辅助邮箱变更失败" + +#: lms/templates/secondary_email_change_failed.html +msgid "We were unable to activate your secondary email {secondary_email}" +msgstr "我们无法激活您的辅助邮箱{secondary_email}" + +#: lms/templates/secondary_email_change_successful.html +msgid "Secondary e-mail change successful!" +msgstr "辅助邮箱变更成功!" + +#: lms/templates/secondary_email_change_successful.html +msgid "" +"Your secondary email has been activated. Please visit " +"{link_start}dashboard{link_end} for courses." +msgstr "您的辅助电子邮件已激活。请访问{link_start}面板{link_end}查看课程。" + +#: lms/templates/seq_module.html +msgid "Important!" +msgstr "重要事项!" + +#: lms/templates/seq_module.html +msgid "Previous" +msgstr "上一个" + +#: lms/templates/seq_module.html +msgid "Next" +msgstr "下一个" + +#: lms/templates/seq_module.html +msgid "Sequence" +msgstr "序列" + +#: lms/templates/signup_modal.html +msgid "Sign Up for {platform_name}" +msgstr "注册为{platform_name}平台的会员" + +#: lms/templates/signup_modal.html +msgid "e.g. yourname@domain.com" +msgstr "例如 yourname@domain.com" + +#: lms/templates/signup_modal.html +msgid "e.g. yourname (shown on forums)" +msgstr "例如:昵称(在论坛上显示的名称)" + +#: lms/templates/signup_modal.html +msgid "e.g. Your Name (for certificates)" +msgstr "例如:姓名(用于证书)" + +#: lms/templates/signup_modal.html +msgid "Welcome {name}" +msgstr "欢迎 {name}" + +#: lms/templates/signup_modal.html +msgid "Full Name *" +msgstr "全名 *" + +#: lms/templates/signup_modal.html +msgid "Ed. Completed" +msgstr "已完成" + +#: lms/templates/signup_modal.html +msgid "Year of birth" +msgstr "出生年份" + +#: lms/templates/signup_modal.html +msgid "Goals in signing up for {platform_name}" +msgstr "注册加入{platform_name}的目标" + +#: lms/templates/signup_modal.html +msgid "Already have an account?" +msgstr "已有账号?" + +#: lms/templates/signup_modal.html +msgid "Login." +msgstr "登录" + +#: lms/templates/split_test_author_view.html +msgid "" +"This content experiment uses group configuration " +"'{group_configuration_name}'." +msgstr "此内容实验使用了组配置“{group_configuration_name}”。" + +#: lms/templates/split_test_author_view.html +msgid "Active Groups" +msgstr "活跃小组" + +#: lms/templates/split_test_author_view.html +msgid "Inactive Groups" +msgstr "不活跃小组" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug Info" +msgstr "工作人员调试信息" + +#: lms/templates/staff_problem_info.html +msgid "Submission history" +msgstr "提交历史" + +#: lms/templates/staff_problem_info.html +msgid "{platform_name} Content Quality Assessment" +msgstr "{platform_name} 内容质量评估" + +#: lms/templates/staff_problem_info.html +msgid "Comment" +msgstr "注释" + +#: lms/templates/staff_problem_info.html +msgid "comment" +msgstr "注释" + +#: lms/templates/staff_problem_info.html +msgid "Tag" +msgstr "标签" + +#: lms/templates/staff_problem_info.html +msgid "Optional tag (eg \"done\" or \"broken\"):" +msgstr "可选标签(如:“done” 或 “broken”)" + +#: lms/templates/staff_problem_info.html +msgid "tag" +msgstr "标签" + +#: lms/templates/staff_problem_info.html +msgid "Add comment" +msgstr "添加评论" + +#: lms/templates/staff_problem_info.html +msgid "Staff Debug:" +msgstr "工作人员调试:" + +#: lms/templates/staff_problem_info.html +msgid "Score (for override only)" +msgstr "成绩(仅用于覆盖原来的成绩设置)" + +#: lms/templates/staff_problem_info.html +msgid "Reset Learner's Attempts to Zero" +msgstr "将学员的尝试次数置为0" + +#: lms/templates/staff_problem_info.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Delete Learner's State" +msgstr "删除学生状态" + +#: lms/templates/staff_problem_info.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Learner's Submission" +msgstr "对学生的提交记录重新评分" + +#: lms/templates/staff_problem_info.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Only If Score Improves" +msgstr "如果评分提高, 重新打分" + +#: lms/templates/staff_problem_info.html +msgid "Override Score" +msgstr "覆盖成绩" + +#: lms/templates/staff_problem_info.html +msgid "Module Fields" +msgstr "模块域" + +#: lms/templates/staff_problem_info.html +msgid "XML attributes" +msgstr "XML 属性" + +#: lms/templates/staff_problem_info.html +msgid "Submission History Viewer" +msgstr "提交历史查看器" + +#: lms/templates/staff_problem_info.html +msgid "User:" +msgstr "用户:" + +#: lms/templates/staff_problem_info.html +msgid "View History" +msgstr "查看历史记录" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "{course_number} Textbook" +msgstr "{course_number} 教材" + +#: lms/templates/static_htmlbook.html lms/templates/static_pdfbook.html +#: lms/templates/staticbook.html +msgid "Textbook Navigation" +msgstr "课本导航" + +#: lms/templates/staticbook.html lms/templates/courseware/gradebook.html +msgid "Page" +msgstr "页面" + +#: lms/templates/staticbook.html +msgid "Previous page" +msgstr "上一页" + +#: lms/templates/staticbook.html +msgid "Next page" +msgstr "下一页" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Sysadmin Dashboard" +msgstr "系统管理员面板" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Users" +msgstr "用户" + +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Staffing and Enrollment" +msgstr "教员配备及学生选课" + +#. Translators: refers to http://git-scm.com/docs/git-log +#: lms/templates/sysadmin_dashboard.html +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Logs" +msgstr "Git日志" + +#: lms/templates/sysadmin_dashboard.html +msgid "User Management" +msgstr "用户管理" + +#: lms/templates/sysadmin_dashboard.html +msgid "Email or username" +msgstr "电子邮件或名字" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete user" +msgstr "删除用户" + +#: lms/templates/sysadmin_dashboard.html +msgid "Create user" +msgstr "创建用户" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download list of all users (csv file)" +msgstr "下载所有用户列表 (csv 文件)" + +#: lms/templates/sysadmin_dashboard.html +msgid "Check and repair external authentication map" +msgstr "检查修复外部认证映射" + +#: lms/templates/sysadmin_dashboard.html +msgid "" +"Go to each individual course's Instructor dashboard to manage course " +"enrollment." +msgstr "进入每个课程的教师控制面板来管理课程选修信息。" + +#: lms/templates/sysadmin_dashboard.html +msgid "Manage course staff and instructors" +msgstr "管理课程工作人员与教师" + +#: lms/templates/sysadmin_dashboard.html +msgid "Download staff and instructor list (csv file)" +msgstr "下载教员与主讲教师列名单(csv 文件)" + +#: lms/templates/sysadmin_dashboard.html +msgid "Administer Courses" +msgstr "管理课程" + +#. Translators: Repo is short for git repository or source of +#. courseware; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Location" +msgstr "仓库位置" + +#. Translators: Repo is short for git repository (http://git-scm.com/about) or +#. source of +#. courseware and branch is a specific version within that repository +#: lms/templates/sysadmin_dashboard.html +msgid "Repo Branch (optional)" +msgstr "仓库分支(可选)" + +#. Translators: GitHub is a popular website for hosting code +#: lms/templates/sysadmin_dashboard.html +msgid "Load new course from GitHub" +msgstr "从github载入新的课程" + +#. Translators: 'dir' is short for 'directory' +#: lms/templates/sysadmin_dashboard.html +msgid "Course ID or dir" +msgstr "课程编号或目录" + +#: lms/templates/sysadmin_dashboard.html +msgid "Delete course from site" +msgstr "从网站中删除课程" + +#. Translators: A version number appears after this string +#: lms/templates/sysadmin_dashboard.html +msgid "Platform Version" +msgstr "平台版本" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "previous" +msgstr "上一项" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Page {current_page} of {total_pages}" +msgstr "第 {current_page} 页/ 共{total_pages}页" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "next" +msgstr "下一个" + +#. Translators: Git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Recent git load activity for {course_id}" +msgstr "近期 {course_id}的git加载活动" + +#: lms/templates/sysadmin_dashboard_gitlogs.html +#: lms/templates/ccx/schedule.html +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Date" +msgstr "日期" + +#. Translators: Git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "Git Action" +msgstr "Git动作" + +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded." +msgstr "无记载git导入日志。" + +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/sysadmin_dashboard_gitlogs.html +msgid "No git import logs have been recorded for this course." +msgstr "此课程无记载git导入日志。" + +#: lms/templates/text-me-the-app.html +msgid "Text Me The App" +msgstr "把App信息发送给我" + +#: lms/templates/tracking_log.html +msgid "Tracking Log" +msgstr "追踪记录" + +#: lms/templates/tracking_log.html +msgid "datetime" +msgstr "日期时间" + +#: lms/templates/tracking_log.html +msgid "ipaddr" +msgstr "IP地址" + +#: lms/templates/tracking_log.html +msgid "source" +msgstr "源" + +#: lms/templates/tracking_log.html +msgid "type" +msgstr "类型" + +#: lms/templates/unsubscribe.html +msgid "Unsubscribe Successful!" +msgstr "取消订阅成功!" + +#: lms/templates/unsubscribe.html +msgid "" +"You will no longer receive forum notification emails from {platform_name}. " +"You may {dashboard_link_start}return to your dashboard{link_end}. If you did" +" not mean to do this, {undo_link_start}you can re-subscribe{link_end}." +msgstr "" +"您不将再接收到{platform_name}论坛邮件提醒,请单击{dashboard_link_start}此处{link_end}返回您的课程面板。如果您不是有意取消,请单击{undo_link_start}此处{link_end}重新订阅消息。" + +#: lms/templates/user_dropdown.html lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Dashboard for:" +msgstr "课程面板:" + +#: lms/templates/user_dropdown.html +msgid "More options" +msgstr "更多选项" + +#: lms/templates/user_dropdown.html lms/templates/header/header.html +#: lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "More Options" +msgstr "更多选项" + +#: lms/templates/using.html +msgid "Using the system" +msgstr "使用系统" + +#: lms/templates/using.html +msgid "" +"During video playback, use the subtitles and the scroll bar to navigate. " +"Clicking the subtitles is a fast way to skip forwards and backwards by small" +" amounts." +msgstr "在视频回放期间,您可以使用字幕或者滚动条来操纵视频播放。点击字幕可以便捷地实现向前或向后跳跃一小段。" + +#: lms/templates/using.html +msgid "" +"If you are on a low-resolution display, the left navigation bar can be " +"hidden by clicking on the set of three left arrows next to it." +msgstr "如果您使用的是低分辨率的显示器,可以通过点击旁边的三个左箭头来隐藏左边的滚动条。" + +#: lms/templates/using.html +msgid "" +"If you need bigger or smaller fonts, use your browsers settings to scale " +"them up or down. Under Google Chrome, this is done by pressing ctrl-plus, or" +" ctrl-minus at the same time." +msgstr "" +"如果您需要改变字体大小,请使用浏览器设置实现缩放。以Google " +"Chrome浏览器为例,可以通过按键“Ctrl”和“+”,“Ctrl”和“-”来使用放大和缩小功能。" + +#: lms/templates/video.html +msgid "Loading video player" +msgstr "正在加载视频播放器" + +#: lms/templates/video.html +msgid "Play video" +msgstr "播放视频" + +#: lms/templates/video.html +msgid "No playable video sources found." +msgstr "未找到可播放的视频源。" + +#: lms/templates/video.html +msgid "" +"Your browser does not support this video format. Try using a different " +"browser." +msgstr "您的浏览器不支持此视频格式,请更换浏览器再尝试。" + +#: lms/templates/video.html +msgid "Downloads and transcripts" +msgstr "下载的文件及字幕" + +#: lms/templates/video.html +msgid "Download video file" +msgstr "下载视频文件" + +#: lms/templates/video.html +msgid "Transcripts" +msgstr "字幕" + +#: lms/templates/video.html +msgid "Download {file}" +msgstr "下载 {file}" + +#: lms/templates/video.html +msgid "Download transcript" +msgstr "下载字幕" + +#: lms/templates/video.html +msgid "Handouts" +msgstr "讲义" + +#: lms/templates/video.html +msgid "Download Handout" +msgstr "下载讲义" + +#: lms/templates/word_cloud.html +msgid "{num} of {total}" +msgstr "{num} / {total}" + +#: lms/templates/word_cloud.html +msgid "Your words were:" +msgstr "您的话是:" + +#: lms/templates/account_recovery/password_create_confirm.html +msgid "Create Your {platform_name} Password" +msgstr "创建您的 {platform_name} 密码" + +#: lms/templates/account_recovery/password_create_confirm.html +msgid "Invalid Password Create Link" +msgstr "无效的密码设置链接" + +#: lms/templates/api_admin/api_access_request_form.html +msgid "API Access Request" +msgstr "API 访问请求" + +#: lms/templates/api_admin/api_access_request_form.html +#: lms/templates/api_admin/status.html +msgid "{platform_name} API Access Request" +msgstr "{platform_name} API 访问请求" + +#: lms/templates/api_admin/api_access_request_form.html +msgid "Request API Access" +msgstr "请求 API 访问" + +#: lms/templates/api_admin/status.html +msgid "API Access Request Status" +msgstr "API 访问请求状态" + +#. Translators: "platform_name" is the name of this Open edX installation. +#: lms/templates/api_admin/status.html +msgid "" +"Your request to access the {platform_name} Course Catalog API is being " +"processed. You will receive a message at the email address in your profile " +"when processing is complete. You can also return to this page to see the " +"status of your API access request." +msgstr "" +"正在处理您访问 {platform_name} 课程目录 API " +"的请求。处理完成后,您写在用户资料中的电子邮箱将收到一条信息。您也可以返回到此页面查看您的 API 访问申请的状态。" + +#. Translators: "platform_name" is the name of this Open edX installation. +#. "api_support_email_link" is HTML for a link to email the API support staff. +#: lms/templates/api_admin/status.html +msgid "" +"Your request to access the {platform_name} Course Catalog API has been " +"denied. If you think this is an error, or for other questions about using " +"this API, contact {api_support_email_link}." +msgstr "" +"您申请访问 {platform_name} 课程目录 API 的请求未通过。如果您认为这是一个错误或有关于使用此 API 的其他问题,请联系 " +"{api_support_email_link}。" + +#: lms/templates/api_admin/status.html +msgid "" +"Your request to access the {platform_name} Course Catalog API has been " +"approved." +msgstr "您申请访问 {platform_name} 课程目录 API 的请求已通过。" + +#: lms/templates/api_admin/status.html +msgid "Application Name" +msgstr "应用名称" + +#: lms/templates/api_admin/status.html +msgid "API Client ID" +msgstr "API 客户端 ID" + +#: lms/templates/api_admin/status.html +msgid "API Client Secret" +msgstr "API 客户端密码" + +#: lms/templates/api_admin/status.html +msgid "Redirect URLs" +msgstr "重新定向 URL" + +#: lms/templates/api_admin/status.html +msgid "" +"If you would like to regenerate your API client information, please use the " +"form below." +msgstr "如果您想要重新生成您的 API 客户端信息,请使用以下表格。" + +#: lms/templates/api_admin/status.html +msgid "Generate API client credentials" +msgstr "生成 API 客户端凭证" + +#. Translators: "platform_name" is the name of this Open edX installation. +#. "link_start" and "link_end" are the HTML for a link to the API +#. documentation. "api_support_email_link" is HTML for a link to email the API +#. support staff. +#: lms/templates/api_admin/status.html +msgid "" +"To learn more about the {platform_name} Course Catalog API, visit " +"{link_start}our API documentation page{link_end}. For questions about using " +"this API, contact {api_support_email_link}." +msgstr "" +"要了解更多关于 {platform_name} 课程目录 API 的信息,请访问{link_start}我们的 API " +"文档页面{link_end}。关于使用此 API 的问题,请联系 {api_support_email_link}。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "API Terms of Service" +msgstr "API 服务条款" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Terms of Service for {platform_name} APIs" +msgstr "{platform_name} API 的服务条款" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Effective Date: May 24th, 2018" +msgstr "生效日期:2018年5月24日" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"Welcome to {platform_name}. Thank you for using {platform_name}'s Course " +"Discovery API, Enterprise API and/or any additional APIs that we may offer " +"from time to time (collectively, the \"APIs\"). Please read these Terms of " +"Service prior to accessing or using the APIs. These Terms of Service, any " +"additional terms within accompanying API documentation, and any applicable " +"policies and guidelines that {platform_name} makes available and/or updates " +"from time to time are agreements (collectively, the \"Terms\") between you " +"and {platform_name}. These Terms are issued under the enterprise product " +"agreement, member participation agreement, or other direct agreement " +"governing the purchase of {platform_name} products, if any (the " +"\"Agreement\"), executed by you or the party on whose behalf you are " +"accessing or using the APIs and {platform_name}. In the event that you have" +" such an Agreement that applies to your use of the APIs, the Agreement will " +"control in the event of any conflict between it and these Terms. By " +"accessing or using the APIs, you accept and agree to be legally bound by the" +" Terms, whether or not you are a registered user. If you are accessing or " +"using the APIs on behalf of a company, organization or other legal entity, " +"you are agreeing to these Terms for that entity and representing and " +"warranting to {platform_name} that you have full authority to accept and " +"agree to these Terms for such entity, in which case the terms \"you,\" " +"\"your\" or related terms herein shall refer to such entity on whose behalf " +"you are accessing or using the APIs. If you do not have such authority or if" +" you do not understand or do not wish to be bound by the Terms, you should " +"not use the APIs." +msgstr "" +"欢迎来到{platform_name}。感谢您使用{platform_name}的课程Discovery " +"API、企业API和/或任何我们不时可能会提供的其他API(统称为“API”)。请在访问或使用API前阅读这些服务条款。由{platform_name}不时公开且/或更新的这些服务条款、在随附的API文档中的任何其他条款、和任何适用政策和准则都是您与{platform_name}之间所签订的协议(统称为“条款”)。这些条款根据企业产品协议、成员参与协议、或其他调控由您所进行的、或由您访问或使用API和{platform_name}而代表的主体所进行的{platform_name}产品购买行为的直接协议(如有,则称为“协议”)进行颁发。如果您有适用您对API使用的此类协议,则该协议将控制其与这些条件之间的任何冲突。访问或使用API则表示您接受并同意受此些条款的法律约束,不管您是否为注册用户。如果您是代表一家公司、组织、或其他法人实体访问或使用API,那么您即代表该法人实体同意这些条款,并向{platform_name}代表且担保您全权代表该法人实体接受并同意此些条款,其中此处的“您”、“您的”、或相关术语指的是您访问或使用API所代表的法人实体。如果您不具有代表权,或如果您不理解此些条款,或您不希望接受此些条款的约束,则建议您勿使用API。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "API Access" +msgstr "API 访问" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"To access the APIs, you will need to create an {platform_name} user account " +"for your application (not for personal use). This account will provide you " +"with access to our API request page at {request_url}. On that page, you must" +" complete the API request form including a description of your proposed uses" +" for the APIs. Any account and registration information that you provide to " +"{platform_name} must be accurate and up to date, and you agree to inform us " +"promptly of any changes. {platform_name_capitalized} will review your API " +"request form and, upon approval in {platform_name}'s sole discretion, will " +"provide you with instructions for obtaining your API shared secret and " +"client ID." +msgstr "" +"要访问API,您需要创建一个 {platform_name} " +"应用程序的用户账号(非个人使用)。您将通过这个账号获得访问我们的API请求页面{request_url}的权限。在该页上,您必须完成API请求表单,其中包括对API的计划用途的描述。您提供给{platform_name}的任何账号和注册信息必须准确及保证时效,并且您同意在做任何更改时及时通知我们。{platform_name_capitalized}将审查您的API请求表单,并在得到{platform_name}的全权批准后,为您提供获取API共享秘密和客户ID的说明。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Permissible Use" +msgstr "允许的用途" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You agree to use the APIs solely for the purpose of delivering content that " +"is accessed through the APIs (the \"API Content\") to your own website, " +"mobile site, app, blog, email distribution list, or social media property " +"(\"Your Application\") or for another commercial use that you described in " +"your request for access and that {platform_name} has approved on a case-by-" +"case basis. {platform_name_capitalized} may monitor your use of the APIs for" +" compliance with the Terms and may deny your access or shut down your " +"integration if you attempt to go around or exceed the requirements and " +"limitations set by {platform_name}. Your Application or other approved use " +"of the API or the API Content must not prompt your end users to provide " +"their {platform_name} username, password or other {platform_name} user " +"credentials anywhere other than on the {platform_name} website at " +"{platform_url}." +msgstr "" +"您同意使用API只交付内容的目的是通过API访问(“API内容”)到您自己的网站,移动站点、应用,博客、电子邮件分发列表,或社交媒体属性(“您的应用程序”)或另一个商业用途,您描述的访问请求,{platform_name}在个案基础上批准。{platform_name_capitalized}可能会监视您对api的使用,以遵守条款,如果您试图绕过或超过{platform_name}设置的要求和限制,则可能会拒绝您的访问或关闭您的集成。除了在{platform_name}网站{platform_url}上,您的应用程序或其他已批准使用的API或API内容不得提示您的最终用户提供其{platform_name}用户名、密码或其他{platform_name}用户凭证。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Prohibited Uses and Activities" +msgstr "禁止的用途与活动" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} shall have the sole right to determine whether " +"or not any given use of the APIs is acceptable, and {platform_name} reserves" +" the right to revoke API access for any use that {platform_name} determines " +"at any time, in its sole discretion, does not benefit or serve the best " +"interests of {platform_name}, its users and its partners." +msgstr "" +"{platform_name_capitalized}唯一有权决定是否任何API的使用都是可以被接受的,和{platform_name}有权决定撤销在{platform_name}上任何时间的API访问使用,全权决定,{platform_name}上没有益处或拥有最佳利益的服务,用户和合作伙伴。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"The following activities are not acceptable when using the APIs (this is not" +" an exhaustive list):" +msgstr "不接受以下使用 API 时的行为(这并非详尽无遗的清单):" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"collecting or storing the names, passwords, or other credentials of " +"{platform_name} users;" +msgstr "收集或储存 {platform_name} 用户的姓名、密码或其他凭证;" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"scraping or similar techniques to aggregate or otherwise create permanent " +"copies of API Content;" +msgstr "搜集或以类似技术聚集或另外创建 API Content 的永久副本;" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"violating, misappropriating or infringing any copyright, trademark rights, " +"rights of privacy or publicity, confidential information or any other right " +"of any third party;" +msgstr "侵犯、滥用或侵害任何版权、商标权利、隐私权或宣传材料、机密信息或其他第三方的任何权利;" + +#: lms/templates/api_admin/terms_of_service.html +msgid "altering or editing any content or graphics in the API Content;" +msgstr "更改或编辑 API Content 中的任何内容或图表;" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"altering or removing any trademark, copyright or other proprietary or legal " +"notices contained in, or appearing on, the APIs or any API Content;" +msgstr "变更或去除包含在或出现在 API 或任何 API Content 中的任何商标、版权或其他所有权或法律声明;" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"sublicensing, re-distributing, renting, selling or leasing access to the " +"APIs or your client secret to any third party;" +msgstr "对 API 访问权限或您的客户密码进行许可转让、再分发、出租、销售或租赁给任何第三方;" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"distributing any virus, Trojan horse, spyware, adware, malware, bot, time " +"bomb, worm, or other harmful or malicious component; or" +msgstr "发布任何病毒、特洛伊木马、间谍软件、广告软件、恶意软件、bot 病毒、定时炸弹、蠕虫或其他有害或恶意组件;或" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"using the APIs for any purpose which or might overburden, impair or disrupt " +"the {platform_name} platform, servers or networks." +msgstr "将 API 用于某种可能超负荷、危害或破坏 {platform_name} 平台、服务器或网络的用途。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Usage and Quotas" +msgstr "使用和限制" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} reserves the right, in its discretion, to impose" +" reasonable restrictions and limitations on the number and frequency of " +"calls made by you or Your Application to the APIs. You must not attempt to " +"circumvent any restrictions or limitations imposed by {platform_name}." +msgstr "" +"基于其自行之考虑,{platform_name_capitalized}保留合理限制和管束由您或您的应用向API所发出呼叫数量和频率的权利。请勿试图避开{platform_name}的限制或管束。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Compliance" +msgstr "合规性" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You agree to comply with all applicable laws, regulations, and third party " +"rights (including without limitation laws regarding the import or export of " +"data or software, privacy, copyright, and local laws). You will not use the " +"APIs to encourage or promote illegal activity or violation of third party " +"rights. You will not violate any other terms of service with " +"{platform_name}. You will only access (or attempt to access) an API by the " +"means described in the documentation of that API. You will not misrepresent " +"or mask either your identity or Your Application's identity when using the " +"APIs." +msgstr "" +"您同意遵守所有适用法律、法规、和第三方权利(包括但不限于数据的导出与导入法律、或软件法律、隐私法律、版权法律、或当地法律)。您不得使用API来鼓励或促进非法行为或侵犯第三方权利的行为。您不得侵犯{platform_name}的任何其他服务条款。您仅可以通过API文档中所说明的方式进行访问(或试图访问)该API。您不得在使用API时误传或隐瞒您的身份或您应用程序的身份。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Ownership" +msgstr "管理员权限" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You acknowledge and agree that the APIs and all API Content contain valuable" +" intellectual property of {platform_name} and its partners. The APIs and all" +" API Content are protected by United States and foreign copyright, " +"trademark, and other laws. All rights in the APIs and the API Content, if " +"not expressly granted, are reserved. By using the APIs or any API Content, " +"you do not acquire ownership of any rights in the APIs or API Content. You " +"must not claim or attempt to claim ownership in the APIs or any API Content " +"or misrepresent yourself or your company or your Application as being the " +"source of any API Content. You may not modify, create derivative works of, " +"or attempt to use, license, or in any way exploit any API Content in whole " +"or in part on your own behalf or on behalf of any third party. You may not " +"distribute or modify the APIs or any API Content (including adaptation, " +"editing, excerpting, or creating derivative works)." +msgstr "" +"您确认并同意 API 和所有 API Content 都包含 {platform_name} 及其合作伙伴的有价值的知识产权。API 和所有 API " +"Content 均受美国和外国的版权、商标及其他法律的保护。如果未明确授权,则保留对 API 和 API Content 的所有权利。使用 API " +"或任何 API Content 并不意味着您拥有 API 或 API Content 的任何权利的所有权。您不得声称或试图声称您拥有 API 或任何 " +"API Content 的所有权,或误传您个人、您的公司或您的应用程序是来源于任何 API Content。您不得以您个人名义或以任何第三方的名义,对 " +"API Content 进行整体或部分修改、创作派生作品或尝试使用、注册或以任何方式利用。您不得分发或修改 API 或任何 API " +"Content(包括改编、编辑、引用或创作派生作品)。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"All names, logos and seals (\"Trademarks\") that appear in the APIs, API " +"Content, or on or through the services made available on or through the " +"APIs, if any, are the property of their respective owners. You may not " +"remove, alter, or obscure any copyright, Trademark, or other proprietary " +"rights notices incorporated in or accompanying the API Content. If any " +"{platform_name} Participant (as hereinafter defined) or other third party " +"revokes access to API Content owned or controlled by that {platform_name} " +"Participant or third party, including without limitation any Trademarks, you" +" must ensure that all API Content pertaining to that {platform_name} " +"Participant or third party is deleted from Your Application and your " +"networks, systems and servers as soon as reasonably possible. " +"\"{platform_name_capitalized} Participants\" means MIT, Harvard, and the " +"other entities providing information, API Content or services for the APIs, " +"the course instructors and their staffs." +msgstr "" +"所有出现在API、API内容或通过API提供的服务上的名称、标识和印章(“商标”)均为其各自所有者的财产。您不得删除、更改或模糊包含或伴随API内容的任何版权、商标或其他专有权利通知。如果任何{platform_name}参与者(如以下定义)或其他第三方撤销访问拥有者的API内容或控制{platform_name}参与者或第三方,包括但不限于任何商标,您必须确保从您的应用程序和您的网络、系统和服务器被删除的所有API内容属于{platform_name}参与者或第三方是合理可行的。“{platform_name_capitalized}参与者”是指麻省理工学院、哈佛大学以及其他为API、课程讲师及其工作人员提供信息、API内容或服务的实体。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"To the extent that you submit any content to {platform_name} in connection " +"with your use of the APIs or any API Content, you hereby grant to " +"{platform_name} a worldwide, non-exclusive, transferable, assignable, sub " +"licensable, fully paid-up, royalty-free, perpetual, irrevocable right and " +"license to host, transfer, display, perform, reproduce, modify, distribute, " +"re-distribute, relicense and otherwise use, make available and exploit such " +"content, in whole or in part, in any form and in any media formats and " +"through any media channels (now known or hereafter developed)." +msgstr "" +"针对您提交给 {platform_name} 的与您使用 API 或任何 API Content 有关的任何内容而言,可据此认为您授予 " +"{platform_name} " +"一个世界范围的、非独有、可转让、可分配、可转发许可、全部付讫、免版税、无期限、不可撤销的权力,并许可持有、转让、展示、执行、复制、修改、分配、再分配、再许可,以及以任何形式和用任何媒体格式并通过任何媒体渠道(现在已知的或今后开发的)使用、提供和利用此内容的部分或全部。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Privacy" +msgstr "隐私" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You agree to comply with all applicable privacy laws and regulations and to " +"be transparent with respect to any collection and use of end user data. You " +"will provide and adhere to a privacy policy for Your Application that " +"clearly and accurately describes to your end users what user information you" +" collect and how you may use and share such information (including for " +"advertising) with {platform_name} and other third parties." +msgstr "" +"您同意遵守所有适用的隐私法律和法规,并在收集和使用最终用户数据方面保持透明。您将为您的应用程序提供并遵守一个隐私策略,该策略清楚而准确地向您的最终用户描述您收集了哪些用户信息,以及您如何与{platform_name}和其他第三方使用和共享这些信息(包括用于广告)。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Right to Charge" +msgstr "收费权" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"Certain access to the APIs may be provided free of charge, but " +"{platform_name} reserves the right to charge fees for future use or access " +"to the APIs." +msgstr "可以免费提供对api的某些访问,但是{platform_name}保留对将来使用或访问api收取费用的权利。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} reserves the right to modify the Terms at any " +"time without advance notice. Any changes to the Terms will be effective " +"immediately upon posting on this page, with an updated effective date. By " +"accessing or using the APIs after any changes have been made, you signify " +"your agreement on a prospective basis to the modified Terms and all of the " +"changes. Be sure to return to this page periodically to ensure familiarity " +"with the most current version of the Terms." +msgstr "" +"{platform_name_capitalized}保留在不提前通知的情况下随时修改条款的权利。任何条款的变更将在本页面发布后立即生效,并更新生效日期。通过访问或使用在进行一些更改之后的api,您在预期的基础上表示您同意修改的条款和所有更改。请务必定期返回本页,以确保熟悉最新版本的术语。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} may also update or modify the APIs from time to " +"time without advance notice. These changes may affect your use of the APIs " +"or the way your integration interacts with the API. If we make a change " +"that is unacceptable to you, you should stop using the APIs. Continued use " +"of the APIs means you accept the change." +msgstr "" +"{platform_name_capitalized}也可以随时更新或修改api,无需事先通知。这些更改可能会影响您对API的使用或您的集成与API交互的方式。如果我们做出了您无法接受的更改,您应该停止使用api。继续使用api意味着您接受更改。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Confidentiality" +msgstr "机密性" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"Your credentials (such as client secret and IDs) are intended to be used " +"solely by you. You will keep your credentials confidential and prevent and " +"discourage others from using your credentials. Your credentials may not be " +"embedded in open source projects." +msgstr "您的凭证(如客户机密和IDs)仅供您使用。您将保持您的证书保密,并防止和劝阻他人使用您的证书。您的凭证可能不会嵌入到开源项目中。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"In the event that {platform_name} provides you with access to information " +"specific to {platform_name} and/or the APIs that is either marked as " +"\"Confidential\" or which a reasonable person would assume to be " +"confidential or proprietary given the terms of its disclosure " +"(\"Confidential Information\"), you agree to use this information only to " +"use and build with the APIs. You may not disclose the Confidential " +"Information to anyone without {platform_name}'s prior written consent, and " +"you agree to protect the Confidential Information from unauthorized use and " +"disclosure in the same way that you would protect your own confidential " +"information. Confidential Information does not include information that you " +"independently developed, that was rightfully given to you by a third party " +"without any confidentiality obligation, or that becomes public through no " +"fault of your own. You may disclose Confidential Information when compelled " +"to do so by law if you provide {platform_name} with reasonable prior notice," +" unless a court orders that {platform_name} not receive notice." +msgstr "" +"如果{platform_name}为您提供信息获取特定于{platform_name}和/或api,标记为“机密”或一个会认为是机密或专有的条款披露(“机密信息”)合理的人,您同意使用这个信息仅仅使用和构建api。未经{platform_name}事先书面同意,您不得向任何人披露机密信息,并且您同意以与您保护自己的机密信息相同的方式保护机密信息不被未经授权的使用和披露。保密信息不包括您自行开发的、未经任何保密义务而由第三方合法提供给您的、或因您自身的过错而公开的信息。除非法院命令{platform_name}不接收通知,否则如果您向{platform_name}提供合理的事先通知,您可以依法强制披露机密信息。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Disclaimer of Warranty / Limitation of Liabilities" +msgstr "担保免责声明 / 责任限制" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"THE APIS AND ANY INFORMATION, API CONTENT OR SERVICES MADE AVAILABLE ON OR " +"THROUGH THE APIS ARE PROVIDED \"AS IS\" AND \"AS AVAILABLE\" WITHOUT " +"WARRANTY OF ANY KIND (EXPRESS, IMPLIED OR OTHERWISE), INCLUDING, WITHOUT " +"LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A " +"PARTICULAR PURPOSE AND NON-INFRINGEMENT, EXCEPT INSOFAR AS ANY SUCH IMPLIED " +"WARRANTIES MAY NOT BE DISCLAIMED UNDER APPLICABLE LAW." +msgstr "" +"在(或通过) API 提供的 API 及任何信息、API Content " +"或服务以\"现状\"和\"可用状态\"提供,无任何形式(明示、暗示或其他形式)的担保,包括但不限于所有适销性默示担保、特定用途适用性及非侵权性,除非根据适用法律规定不得拒绝承认任何此类默示担保。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name} AND THE {platform_name} PARTICIPANTS DO NOT WARRANT THAT THE" +" APIS WILL OPERATE IN AN UNINTERRUPTED OR ERROR-FREE MANNER, THAT THE APIS " +"ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS, OR THAT THE APIS OR API " +"CONTENT PROVIDED WILL MEET YOUR NEEDS OR EXPECTATIONS. {platform_name} AND " +"THE {platform_name} PARTICIPANTS ALSO MAKE NO WARRANTY ABOUT THE ACCURACY, " +"COMPLETENESS, TIMELINESS, OR QUALITY OF THE APIS OR ANY API CONTENT, OR THAT" +" ANY PARTICULAR API CONTENT WILL CONTINUE TO BE MADE AVAILABLE." +msgstr "" +"{platform_name}和{platform_name}参与者不保证API将以不间断或无错误的方式运行,API没有病毒或其他有害组件,或者提供的API或API内容将满足您的需求或期望。{platform_name}和{platform_name}参与者也不保证API或任何API内容的准确性、完整性、及时性或质量,或任何特定API内容将继续提供。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"USE OF THE APIS, AND THE API CONTENT AND ANY SERVICES OBTAINED FROM OR " +"THROUGH THE APIS, IS AT YOUR OWN RISK. YOUR ACCESS TO OR DOWNLOAD OF " +"INFORMATION, MATERIALS OR DATA THROUGH THE APIS IS AT YOUR OWN DISCRETION " +"AND RISK, AND YOU WILL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY" +" (INCLUDING YOUR COMPUTER SYSTEM) OR LOSS OF DATA THAT RESULTS FROM THE " +"DOWNLOAD OR USE OF SUCH INFORMATION, MATERIALS OR DATA, UNLESS OTHERWISE " +"EXPRESSLY PROVIDED FOR IN THE {platform_name} PRIVACY POLICY." +msgstr "" +"使用API、API内容和从API获得或通过API获得的任何服务都由您自己承担风险。访问或下载信息、材料或数据通过api在自己的判断力和风险,并且您将单独负责任何损害您的财数据产(包括您的电脑系统)或损失的数据结果下载或使用这些信息,资料或数据,除非另有明确规定{platform_name}隐私政策。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, YOU AGREE THAT NEITHER " +"{platform_name} NOR ANY OF THE {platform_name} PARTICIPANTS WILL BE LIABLE " +"TO YOU FOR ANY LOSS OR DAMAGES, EITHER ACTUAL OR CONSEQUENTIAL, ARISING OUT " +"OF OR RELATING TO THE TERMS, OR YOUR (OR ANY THIRD PARTY'S) USE OF OR " +"INABILITY TO USE THE APIS OR ANY API CONTENT, OR YOUR RELIANCE UPON " +"INFORMATION OBTAINED FROM OR THROUGH THE APIS, WHETHER YOUR CLAIM IS BASED " +"IN CONTRACT, TORT, STATUTORY OR OTHER LAW." +msgstr "" +"适用法律允许的最大程度,您同意{platform_name}和{platform_name}的参与者将会承担您的任何损失或损害赔偿,实际或间接引起的或有关条款,或您(或任何第三方的)使用或无法使用API或任何API的内容,或者您的依赖来自或通过API的信息,您的要求是否在合同,侵权,法定或其他法律。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"IN PARTICULAR, TO THE FULLEST EXTENT PERMITTED BY APPLICABLE LAW, NEITHER " +"{platform_name} NOR ANY OF THE {platform_name} PARTICIPANTS WILL HAVE ANY " +"LIABILITY FOR ANY CONSEQUENTIAL, INDIRECT, PUNITIVE, SPECIAL, EXEMPLARY OR " +"INCIDENTAL DAMAGES, WHETHER FORESEEABLE OR UNFORESEEABLE AND WHETHER OR NOT " +"{platform_name} OR ANY OF THE {platform_name} PARTICIPANTS HAS BEEN " +"NEGLIGENT OR OTHERWISE AT FAULT (INCLUDING, BUT NOT LIMITED TO, CLAIMS FOR " +"DEFAMATION, ERRORS, LOSS OF PROFITS, LOSS OF DATA OR INTERRUPTION IN " +"AVAILABILITY OF DATA)." +msgstr "" +"特别地,在适用法律允许的最大范围内,无论是 {platform_name} 或任何 {platform_name} " +"参与者均不对任何继起的、间接的、惩罚性的、专门的、代表性的或附带的损害赔偿承担责任,无论这些损害是可预见或不可预见的,也无论 " +"{platform_name} 或任何 {platform_name} " +"参与者是否有过失或其他形式的过错(包括但不限于就诽谤、错误、利润损失、数据丢失或数据可用性中断提出索赔)。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"CERTAIN STATE LAWS DO NOT ALLOW LIMITATIONS ON IMPLIED WARRANTIES OR THE " +"EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME" +" OR ALL OF THE ABOVE DISCLAIMERS, EXCLUSIONS, OR LIMITATIONS MAY NOT APPLY " +"TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS." +msgstr "" +"某些州级法律不允许限制默示担保或不允许排除或限制某些损害赔偿。如果这些法律对您适用,部分或全部上诉免责声明、除外条款或限制可能对您不适用,因此您可能拥有额外权利。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"The APIs and API Content may include hyperlinks to sites maintained or " +"controlled by others and not affiliated with or under the control of " +"{platform_name}. {platform_name_capitalized} and the {platform_name} " +"Participants are not responsible for and do not routinely screen, approve, " +"review or endorse the contents of or use of any of the products or services " +"that may be offered at these third-party sites. If you decide to access " +"linked third-party websites, you do so at your own risk." +msgstr "" +"API和API内容可能包括到其他站点的超链接,这些站点由其他站点维护或控制,不隶属于{platform_name}或受其控制。{platform_name_capitalized}和{platform_name}参与者不负责,也不例行审查、批准、审查或批准在这些第三方网站上可能提供的任何产品或服务的内容或使用。如果您决定访问链接的第三方网站,您将承担风险。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"To the maximum extent permitted by applicable law, you agree to defend, hold" +" harmless and indemnify {platform_name} and the {platform_name} " +"Participants, and their respective subsidiaries, affiliates, officers, " +"faculty, students, fellows, governing board members, agents and employees " +"from and against any third-party claims, actions or demands arising out of, " +"resulting from or in any way related to your use of the APIs and any API " +"Content, including any liability or expense arising from any and all claims," +" losses, damages (actual and consequential), suits, judgments, litigation " +"costs and attorneys' fees, of every kind and nature. In such a case, " +"{platform_name} or one of the {platform_name} Participants will provide you " +"with written notice of such claim, action or demand." +msgstr "" +"在适用法律所允许的最大程度上,您同意保护,免责和赔偿{platform_name}和{platform_name}参与者,和各自的子公司,子公司、官员、教师、学生、同伴、董事会成员、代理和员工从和反对任何第三方索赔、行动或要求引起的,产生的或以任何方式与您使用API和任何API的内容,包括任何类型和性质的任何和所有索赔、损失、损害赔偿(实际的和相应的)、诉讼、判决、诉讼费用和律师费所产生的任何责任或费用。在这种情况下,{platform_name}或{platform_name}参与者之一将向您提供此类索赔、行动或要求的书面通知。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "General Legal Terms" +msgstr "一般性法律条款" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"The Terms constitute the entire agreement between you and {platform_name} " +"with respect to your use of the APIs and API Content, superseding any prior " +"agreements between you and {platform_name} regarding your use of the APIs " +"and API Content. The failure of {platform_name} to exercise or enforce any " +"right or provision of the Terms shall not constitute a waiver of such right " +"or provision. If any provision of the Terms is found by a court of competent" +" jurisdiction to be invalid, the parties nevertheless agree that the court " +"should endeavor to give effect to the parties' intentions as reflected in " +"the provision and the other provisions of the Terms shall remain in full " +"force and effect. The Terms do not create any third party beneficiary rights" +" or any agency, partnership, or joint venture. For any notice provided to " +"you by {platform_name} under these Terms, {platform_name} may notify you via" +" the email address associated with your {platform_name} account." +msgstr "" +"此条款构成您和 {platform_name} 之间与您使用 API 和 API Content 有关的完整协议,取代您和 " +"{platform_name} 之间与您使用 API 和 API Content 有关的所有事先协议。{platform_name} " +"未能行使或执行此条款的任何权利或规定并不得构成对此类权利或规定的弃权。如果具有合法管辖权的法院发现此条款的任何规定无效,但是各方一致同意法院应按照该条规定尽量让相关方的意愿生效,且此条款的其他规定仍然全面有效和生效。此条款不影响任何第三方受益权或任何代理、合作伙伴或合资企业。根据这些条款由" +" {platform_name} 为您提供的任何通知,{platform_name} 均可通过与您的 {platform_name} " +"账号关联的电子邮箱地址通知您。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You agree that the Terms, the APIs, and any claim or dispute arising out of " +"or relating to the Terms or the APIs will be governed by the laws of the " +"Commonwealth of Massachusetts, excluding its conflicts of law provisions. " +"You agree that all such claims and disputes will be heard and resolved " +"exclusively in the federal or state courts located in and serving Cambridge," +" Massachusetts, U.S.A. You consent to the personal jurisdiction of those " +"courts over you for this purpose, and you waive and agree not to assert any " +"objection to such proceedings in those courts (including any defense or " +"objection of lack of proper jurisdiction or venue or inconvenience of " +"forum). Notwithstanding the foregoing, you agree that {platform_name} shall " +"still be allowed to apply for injunctive remedies (or an equivalent type of " +"urgent legal relief) in any jurisdiction." +msgstr "" +"您同意,条款、api以及因条款或api而产生的或与之相关的任何索赔或争议将受马萨诸塞州法律管辖,不包括其法律条款冲突。您同意所有此类索赔和纠纷将会听到和解决只在联邦和州法院位于剑桥,马萨诸塞州,美国。为此目的,您同意上述法院对您的个人管辖权,并且您放弃并同意不对这些法院的此类诉讼提出任何异议(包括对缺乏适当管辖权、地点或论坛不便的任何辩护或异议)。尽管有上述规定,您同意{platform_name}仍可在任何司法管辖区申请禁令救济(或同等类型的紧急法律救济)。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "Termination" +msgstr "终止" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"You may stop using the APIs at any time. You agree that {platform_name}, in " +"its sole discretion and at any time, may terminate your use of the APIs or " +"any API Content for any reason or no reason, without prior notice or " +"liability." +msgstr "" +"您可以在任何时候停止使用api。您同意{platform_name}在其全权酌情决定并在任何时候,可以终止您对API或任何API内容的使用,而无需事先通知或承担任何责任。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"{platform_name_capitalized} and the {platform_name} Participants reserve the" +" right at any time in their sole discretion to cancel, delay, reschedule or " +"alter the format of any API or API Content offered through {platform_name}, " +"or to cease providing any part or all of the APIs or API Content or related " +"services, and you agree that neither {platform_name} nor any of the " +"{platform_name} Participants will have any liability to you for such an " +"action." +msgstr "" +"{platform_name_capitalized}和{platform_name}参与者保留权利在任何时候决定取消,延迟,重新安排或通过{platform_name}改变任何API或API的格式内容提供,或停止提供API或API的任何部分或全部内容或相关服务,您同意{platform_name}和{platform_name}的参与者将有责任对您采取这样的行动。" + +#: lms/templates/api_admin/terms_of_service.html +msgid "" +"Upon any termination of the Terms or discontinuation of your access to an " +"API for any reason, your right to use any API and API Content will " +"immediately cease. You will immediately stop using the APIs and delete any " +"cached or stored API Content from Your Application and your networks, " +"systems and servers as soon as reasonably possible. All provisions of the " +"Terms that by their nature should survive termination shall survive " +"termination, including, without limitation, ownership provisions, warranty " +"disclaimers, and limitations of liability. Termination of your access to and" +" use of the APIs and API Content shall not relieve you of any obligations " +"arising or accruing prior to such termination or limit any liability that " +"you otherwise may have to {platform_name}, including without limitation any " +"indemnification obligations contained herein." +msgstr "" +"在任何条款终止或以任何理由停止访问API时,您使用任何API和API内容的权利将立即终止。您将立即停止使用API,并尽快从您的应用程序和您的网络、系统和服务器中删除任何缓存或存储的API内容。条款的所有条款在终止后仍然有效,包括但不限于所有权条款、保证免责条款和责任限制。您对API和API内容的访问和使用的终止不应免除您在终止之前产生或产生的任何义务,也不应限制您对{platform_name}可能承担的任何责任,包括但不限于本协议中包含的任何赔偿义务。" + +#: lms/templates/api_admin/catalogs/edit.html +msgid "Edit {catalog_name}" +msgstr "编辑 {catalog_name}" + +#: lms/templates/api_admin/catalogs/edit.html +#: lms/templates/api_admin/catalogs/list.html +msgid "Download CSV" +msgstr "下载CSV文档" + +#: lms/templates/api_admin/catalogs/edit.html +msgid "Delete this catalog" +msgstr "删除此列表。" + +#: lms/templates/api_admin/catalogs/edit.html +msgid "Update Catalog" +msgstr "更新列表。" + +#: lms/templates/api_admin/catalogs/list.html +msgid "Catalogs for {username}" +msgstr "{username}的列表" + +#: lms/templates/api_admin/catalogs/list.html +msgid "Create new catalog:" +msgstr "创建新的劣币哦啊:" + +#: lms/templates/api_admin/catalogs/list.html +msgid "Create Catalog" +msgstr "创建列表" + +#: lms/templates/api_admin/catalogs/search.html +msgid "Catalog search" +msgstr "列表搜索" + +#: lms/templates/api_admin/catalogs/search.html +msgid "Catalog Search" +msgstr "列表搜索" + +#: lms/templates/api_admin/catalogs/search.html +msgid "Enter a username to view catalogs belonging to that user." +msgstr "输入用户名查看该用户的列表。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Open Calculator" +msgstr "开启计算器" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Enter equation" +msgstr "输入等式" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Calculator Input Field" +msgstr "计算器输入项" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Hints" +msgstr "提示" + +#: lms/templates/calculator/toggle_calculator.html +msgid "" +"Use the arrow keys to navigate the tips or use the tab key to return to the " +"calculator" +msgstr "使用方向键在提示中导航或者使用tab键返回到计算器" + +#: lms/templates/calculator/toggle_calculator.html +msgid "" +"For detailed information, see {math_link_start}Entering Mathematical and " +"Scientific Expressions{math_link_end} in the {guide_link_start}edX Guide for" +" Students{guide_link_end}." +msgstr "" +"更多详细信息, 请访问{guide_link_start}学生使用指南{guide_link_end} " +"里的{math_link_start}输入数学和科学表达式{math_link_end} 。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Tips" +msgstr "提示" + +#: lms/templates/calculator/toggle_calculator.html +msgid "" +"Use parentheses () to make expressions clear. You can use parentheses inside" +" other parentheses." +msgstr "使用括号()来明确表达式。您可以在括号内使用括号。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Do not use spaces in expressions." +msgstr "不要在表达式中使用空格。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "For constants, indicate multiplication explicitly (example: 5*c)." +msgstr "对于常数,表明乘法明确(例如:5*c)。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "For affixes, type the number and affix without a space (example: 5c)." +msgstr "对于词缀,输入数字和词组,不带空格(例:5c)。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "" +"For functions, type the name of the function, then the expression in " +"parentheses." +msgstr "对于函数,输入函数的名字,然后在括号中输入表达式。" + +#: lms/templates/calculator/toggle_calculator.html +msgid "To Use" +msgstr "来使用" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Type" +msgstr "类型" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Examples" +msgstr "例子" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Numbers" +msgstr "数字" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Integers" +msgstr "整数" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Fractions" +msgstr "分数" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Decimals" +msgstr "小数" + +#. Translators: This refers to mathematical operators such as `plus`, `minus`, +#. `division` and others. +#: lms/templates/calculator/toggle_calculator.html +msgid "Operators" +msgstr "操作" + +#: lms/templates/calculator/toggle_calculator.html +msgid "+ - * / (add, subtract, multiply, divide)" +msgstr "+ - * / (加,减,乘,除)" + +#. Translators: Please do not translate mathematical symbols. +#: lms/templates/calculator/toggle_calculator.html +msgid "^ (raise to a power)" +msgstr "^ (自乘)" + +#. Translators: Please do not translate mathematical symbols. +#: lms/templates/calculator/toggle_calculator.html +msgid "|| (parallel resistors)" +msgstr "|| (或运算)" + +#. Translators: This refers to symbols that are mathematical constants, such +#. as +#. "i" (square root of -1) +#: lms/templates/calculator/toggle_calculator.html +msgid "Constants" +msgstr "常量" + +#. Translators: This refers to symbols that appear at the end of a number, +#. such +#. as the percent sign (%) and metric affixes +#: lms/templates/calculator/toggle_calculator.html +msgid "Affixes" +msgstr "词缀" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Percent sign (%) and metric affixes (d, c, m, u, n, p, k, M, G, T)" +msgstr "百分比符号(%)和公制词缀(d,c,m,u,n,p,k,M,G,T)" + +#. Translators: This refers to basic mathematical functions such as "square +#. root" +#: lms/templates/calculator/toggle_calculator.html +msgid "Basic functions" +msgstr "基本功能" + +#. Translators: This refers to mathematical Sine, Cosine and Tan +#: lms/templates/calculator/toggle_calculator.html +msgid "Trigonometric functions" +msgstr "三角函数" + +#. Translators: Please see http://en.wikipedia.org/wiki/Scientific_notation +#: lms/templates/calculator/toggle_calculator.html +msgid "Scientific notation" +msgstr "科学记数法" + +#. Translators: 10^ is a mathematical symbol. Please do not translate. +#: lms/templates/calculator/toggle_calculator.html +msgid "10^ and the exponent" +msgstr "10^和指数" + +#. Translators: this is part of scientific notation. Please see +#. http://en.wikipedia.org/wiki/Scientific_notation#E_notation +#: lms/templates/calculator/toggle_calculator.html +msgid "e notation" +msgstr "e符号" + +#. Translators: 1e is a mathematical symbol. Please do not translate. +#: lms/templates/calculator/toggle_calculator.html +msgid "1e and the exponent" +msgstr "1e和指数" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Calculate" +msgstr "计算" + +#: lms/templates/calculator/toggle_calculator.html +msgid "Result" +msgstr "结果" + +#: lms/templates/ccx/coach_dashboard.html +msgid "CCX Coach Dashboard" +msgstr "CCX指导仪表盘" + +#: lms/templates/ccx/coach_dashboard.html +msgid "Name your CCX" +msgstr "为您的CCX命名" + +#: lms/templates/ccx/coach_dashboard.html +msgid "Create a new Custom Course for edX" +msgstr "创建一个新的 edX 自定义课程" + +#: lms/templates/ccx/coach_dashboard.html +#: lms/templates/ccx/grading_policy.html +msgid "Grading Policy" +msgstr "评分标准" + +#: lms/templates/ccx/coach_dashboard.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Enrollment" +msgstr "批量选课" + +#: lms/templates/ccx/coach_dashboard.html lms/templates/ccx/student_admin.html +msgid "Student Grades" +msgstr "学生评分" + +#: lms/templates/ccx/coach_dashboard.html +msgid "Please enter a valid CCX name." +msgstr "请输入一个有效的 CCX 名称。" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Email Addresses/Usernames" +msgstr "电子邮箱地址/用户名" + +#: lms/templates/ccx/enrollment.html +msgid "" +"Enter one or more email addresses or usernames separated by new lines or " +"commas." +msgstr "请输入一个或多个邮箱地址或用户名,用逗号隔开或新起一行。" + +#: lms/templates/ccx/enrollment.html +msgid "" +"Make sure you enter the information carefully. You will not receive " +"notification for invalid usernames or email addresses." +msgstr "请仔细输入您的信息,如果用户名或邮箱地址无效,那么您无法收到通知。" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Auto Enroll" +msgstr "自动选修" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is {em_start}checked{em_end}, users who have not yet " +"registered for {platform_name} will be automatically enrolled." +msgstr "如果此选项{em_start}已选{em_end},尚未注册 {platform_name} 的用户将自动入选此课。" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is left {em_start}unchecked{em_end}, users who have not yet " +"registered for {platform_name} will not be enrolled, but will be allowed to " +"enroll once they make an account." +msgstr "" +"如果此选项{em_start}未选{em_end},尚未注册 {platform_name} 的用户将不能入选,但只要他们注册了账号即可入选。" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Unenroll' is selected." +msgstr "如果选择了'放弃选修',本项选择将不会生效。" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Notify users by email" +msgstr "通过邮件通知用户" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is {em_start}checked{em_end}, users will receive an email " +"notification." +msgstr "如果此选项{em_start}已选{em_end},用户将收到一封电子邮件通知。" + +#: lms/templates/ccx/enrollment.html +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgctxt "someone" +msgid "Enroll" +msgstr "选修" + +#: lms/templates/ccx/enrollment.html +msgid "Student List Management" +msgstr "学生列表管理" + +#: lms/templates/ccx/enrollment.html +msgid "CCX student list management response message" +msgstr "CCX学生列表管理响应消息" + +#: lms/templates/ccx/enrollment.html +msgid "Revoke access" +msgstr "取消授权" + +#: lms/templates/ccx/grading_policy.html +msgid "WARNING" +msgstr "警告" + +#: lms/templates/ccx/grading_policy.html +msgid "" +"For advanced users only. Errors in the grading policy can lead to the course" +" failing to display. This form does not check the validity of the policy " +"before saving." +msgstr "仅供高级用户。分级政策中的错误会导致未能显示。这种形式不储蓄之前检查政策的有效性。" + +#: lms/templates/ccx/grading_policy.html +msgid "Most coaches should not need to make changes to the grading policy." +msgstr "大多数教师不应该更改评分标准。" + +#: lms/templates/ccx/grading_policy.html +msgid "Save Grading Policy" +msgstr "保存评分标准" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of YYYY-MM-DD +#: lms/templates/ccx/schedule.html +msgid "Date format four digit year dash two digit month dash two digit day" +msgstr "日期格式为四位年数两位月数和两位日数" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of HH:MM +#: lms/templates/ccx/schedule.html +msgid "Time format two digit hours colon two digit minutes" +msgstr "时间格式是两位时数和两位分钟数" + +#: lms/templates/ccx/schedule.html +msgid "Time" +msgstr "时间" + +#: lms/templates/ccx/schedule.html +msgid "Set date" +msgstr "设置日期" + +#: lms/templates/ccx/schedule.html +msgid "You have unsaved changes." +msgstr "您还有未保存的更改。" + +#: lms/templates/ccx/schedule.html +msgid "There was an error saving changes." +msgstr "保存更改时发生了错误。" + +#: lms/templates/ccx/schedule.html +msgid "Schedule a Unit" +msgstr "排定一个单元" + +#: lms/templates/ccx/schedule.html +msgid "Start Date" +msgstr "开始日期" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of YYYY-MM-DD +#: lms/templates/ccx/schedule.html +msgid "format four digit year dash two digit month dash two digit day" +msgstr "格式为四位年数两位月数和两位日数" + +#: lms/templates/ccx/schedule.html +msgid "yyyy-mm-dd" +msgstr "yyyy-mm-dd" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of HH:MM +#: lms/templates/ccx/schedule.html +msgid "Start time format two digit hours colon two digit minutes" +msgstr "开始时间的格式是两位时数和两位分钟数" + +#: lms/templates/ccx/schedule.html +msgid "time" +msgstr "时间" + +#: lms/templates/ccx/schedule.html +msgid "(Optional)" +msgstr "(可选的)" + +#. Translators: This explains to people using a screen reader how to interpret +#. the format of HH:MM +#: lms/templates/ccx/schedule.html +msgid "Due Time format two digit hours colon two digit minutes" +msgstr "截止时间格式是两位时数和两位分钟数" + +#: lms/templates/ccx/schedule.html +msgid "Add Unit" +msgstr "添加单元" + +#: lms/templates/ccx/schedule.html +msgid "Add All Units" +msgstr "添加所有单元" + +#: lms/templates/ccx/schedule.html +msgid "All units have been added." +msgstr "所有单元已经添加。" + +#: lms/templates/ccx/student_admin.html +msgid "View gradebook" +msgstr "查看记分册" + +#: lms/templates/ccx/student_admin.html +msgid "Download student grades" +msgstr "下载学生评分" + +#: lms/templates/certificates/_accomplishment-banner.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Print or share your certificate:" +msgstr "打印或分享您的证书:" + +#: lms/templates/certificates/_accomplishment-banner.html +msgid "Click the link to see my certificate." +msgstr "点击链接查看我的证书。" + +#: lms/templates/certificates/_accomplishment-banner.html +msgid "Post on Facebook" +msgstr "发布到Facebook" + +#: lms/templates/certificates/_accomplishment-banner.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Share on Twitter" +msgstr "分享到Twitter" + +#: lms/templates/certificates/_accomplishment-banner.html +msgid "Tweet this Accomplishment. Pop up window." +msgstr "推特该项成就。弹出窗口。" + +#: lms/templates/certificates/_accomplishment-banner.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Add to LinkedIn Profile" +msgstr "添加到LinkedIn的个人资料" + +#: lms/templates/certificates/_accomplishment-banner.html +msgid "Add to Mozilla Backpack" +msgstr "添加到Mozilla Backpack" + +#: lms/templates/certificates/_accomplishment-banner.html +#: themes/elitemba-theme/lms/templates/certificates/_accomplishment-banner.html +msgid "Print Certificate" +msgstr "打印证书" + +#: lms/templates/certificates/_accomplishment-header.html +msgid "{platform_name} Home" +msgstr "{platform_name} 主页" + +#: lms/templates/certificates/_accomplishment-rendering.html +msgid "Noted by" +msgstr "被标记" + +#: lms/templates/certificates/_accomplishment-rendering.html +msgid "Supported by the following organizations" +msgstr "被以下的组织支持" + +#: lms/templates/certificates/_accomplishment-rendering.html +msgid "Awarded to:" +msgstr "授予:" + +#: lms/templates/certificates/_edx-accomplishment-print-help.html +msgid "" +"For tips and tricks on printing your certificate, view the {link_start}Web " +"Certificates help documentation{link_end}." +msgstr "想要打印证书的建议技巧的话, 查看 {link_start} 网络证书帮助文档 {link_end}." + +#: lms/templates/certificates/invalid.html +msgid "Cannot Find Certificate" +msgstr "不能找到证书" + +#: lms/templates/certificates/invalid.html +msgid "" +"We cannot find a certificate with this URL or ID number. If you are trying " +"to validate a certificate, make sure that the URL or ID number is correct. " +"If you are sure that the URL or ID number is correct, contact support." +msgstr "" +"我们无法找到此 URL 或 ID 号码的证书。如果您尝试验证证书,请确认 URL 或 ID 号码是否正确。如果您确认 URL 或 ID " +"号码正确,请联系支持部门。" + +#: lms/templates/certificates/server-error.html +msgid "Invalid Certificate Configuration." +msgstr "无效证书配置。" + +#: lms/templates/certificates/server-error.html +msgid "There is a problem with this certificate." +msgstr "这个证书存在问题。" + +#: lms/templates/certificates/server-error.html +msgid "" +"To resolve the problem, your partner manager should verify that the " +"following information is correct." +msgstr "要解决此问题,您的合作伙伴经理应核实以下信息是否正确。" + +#: lms/templates/certificates/server-error.html +msgid "The institution's logo." +msgstr "机构LOGO。" + +#: lms/templates/certificates/server-error.html +msgid "The institution that is linked to the course." +msgstr "与课程相关联的机构。" + +#: lms/templates/certificates/server-error.html +msgid "The course information in the Course Administration tool." +msgstr "课程管理工具中的课程信息。" + +#: lms/templates/certificates/server-error.html +msgid "" +"If all of the information is correct and the problem persists, contact " +"technical support." +msgstr "如果所有信息正确但问题仍然存在,请联系技术支持团队。" + +#: lms/templates/certificates/valid.html +msgid "About edX Certificates" +msgstr "关于edX认证证书" + +#: lms/templates/commerce/checkout_cancel.html +msgid "Checkout Cancelled" +msgstr "付款已取消" + +#: lms/templates/commerce/checkout_cancel.html +msgid "" +"Your transaction has been cancelled. If you feel an error has occurred, " +"contact {email}." +msgstr "您的交易已被取消。如果您觉得发生了错误,请联系 {email} 。" + +#: lms/templates/commerce/checkout_error.html +msgid "Checkout Error" +msgstr "付款出错" + +#: lms/templates/commerce/checkout_error.html +msgid "" +"An error has occurred with your payment. You have not been charged. " +"Please try to submit your payment again. If this problem persists, contact " +"{email}." +msgstr "您的付款出现一个错误。您尚未付款。请重试再次付款。如果此问题仍然存在,请联系 {email}。" + +#: lms/templates/commerce/checkout_receipt.html +msgid "Loading Order Data..." +msgstr "加载订单信息..." + +#: lms/templates/commerce/checkout_receipt.html +msgid "Please wait while we retrieve your order details." +msgstr "请稍候,我们正在获取您的订单详情。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Enroll In {course_name} | Choose Your Track" +msgstr "选择 {course_name} | 选择您的方向" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Sorry, there was an error when trying to enroll you" +msgstr "抱歉,在录取您时发生了错误" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Pursue Academic Credit with the Verified Track" +msgstr "在已经过身份认证的的轨道上追求学术学分" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Pursue Academic Credit with a Verified Certificate" +msgstr "选择认证证书并获取专业学分。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Become eligible for academic credit and highlight your new skills and " +"knowledge with a verified certificate. Use this valuable credential to " +"qualify for academic credit, advance your career, or strengthen your school " +"applications." +msgstr "使用验证证书,让您有资格获得学分并突显您的新技能和新知识。使用这件有价值的凭证,帮助您获得学分、促进您的职业发展或增强您的学校申请竞争力。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Benefits of the Verified Track" +msgstr "已经过身份认证的轨道的好处" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Eligible for credit:{b_end} Receive academic credit after " +"successfully completing the course" +msgstr "{b_start}获取学分资格:{b_end} 成功完成课程后获取学分" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Unlimited Course Access: {b_end}Learn at your own pace, and access " +"materials anytime to brush up on what you've learned." +msgstr "{b_start}无限制的课程访问:{b_end}按照您自己的进度学习,并随时访问材料,以复习您所学到的内容。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Graded Assignments: {b_end}Build your skills through graded " +"assignments and projects." +msgstr "{b_start}分级作业:{b_end}通过分级作业和项目建立您的技能。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Easily Sharable: {b_end}Add the certificate to your CV or resume, " +"or post it directly on LinkedIn." +msgstr "{b_start}轻松分享:{b_end} 在您的简历中添加这份证书,或者直接将它传至领英Linkedln。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Benefits of a Verified Certificate" +msgstr "认证证书的优势" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Official:{b_end} Receive an instructor-signed certificate with the " +"institution's logo" +msgstr "{b_start}官方:{b_end} 获取带有机构徽章和导师签名的证书" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Easily shareable:{b_end} Add the certificate to your CV or resume, " +"or post it directly on LinkedIn" +msgstr "{b_start}轻松分享:{b_end} 在您的简历中加入这份证书,或者直接将它传至领英Linkedln" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Pursue a Verified Certificate" +msgstr "选择认证证书" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Pursue the Verified Track" +msgstr "跟踪已经过身份认证的的轨迹" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Highlight your new knowledge and skills with a verified certificate. Use " +"this valuable credential to improve your job prospects and advance your " +"career, or highlight your certificate in school applications." +msgstr "用您的认证证书突出您的新知识和技能。使用这件有价值的凭证来改善您的就业前景,推进您的职业发展,或者在申请学校时突出您的证书。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Official: {b_end}Receive an instructor-signed certificate with the " +"institution's logo" +msgstr "{b_start}官方:{b_end} 获取带有机构徽章和导师签名的证书" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Easily shareable: {b_end}Add the certificate to your CV or resume, " +"or post it directly on LinkedIn" +msgstr "{b_start}轻松分享:{b_end} 在您的简历中加入这份证书,或者直接将它传至领英Linkedln" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Motivating: {b_end}Give yourself an additional incentive to " +"complete the course" +msgstr "{b_start}激励: {b_end}给自己额外的动力去完成课程" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Audit This Course" +msgstr "旁听这门课程" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have complete access to all the course " +"material, activities, tests, and forums." +msgstr "免费旁听此课程并获得访问所有课程资料、活动、测试及论坛的所有权限。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "Audit This Course (No Certificate)" +msgstr "旁听此课程(无证书)" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have access to course materials and " +"discussions forums. {b_start}This track does not include graded assignments," +" or unlimited course access.{b_end}" +msgstr "免费旁听本课程,并可访问课程资料和讨论论坛。{b_start}此轨道不包括分级作业或无限制的课程访问.{b_end}。" + +#: lms/templates/course_modes/choose.html +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have complete access to all the course " +"material, activities, tests, and forums. {b_start}Please note that this " +"track does not offer a certificate for learners who earn a passing " +"grade.{b_end}" +msgstr "" +"免费旁听此课程并获得访问所有课程资料、活动、测试及论坛的所有权限。{b_start}请注意,此方向不为通过课程的学生颁发证书。{b_end}" + +#: lms/templates/courseware/accordion.html +msgid "{chapter} current chapter" +msgstr "{chapter} 当前章节" + +#: lms/templates/courseware/accordion.html +msgid "{span_start}current section{span_end}" +msgstr "{span_start}当前部分{span_end}" + +#: lms/templates/courseware/accordion.html +#: lms/templates/courseware/progress.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "due {date}" +msgstr "截止日期{date}" + +#: lms/templates/courseware/accordion.html +msgid "{section_format} due {{date}}" +msgstr "{section_format} 截止{{date}} " + +#: lms/templates/courseware/accordion.html +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "This content is graded" +msgstr "该内容计入总分。" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "An error occurred. Please try again later." +msgstr "出现错误,请稍后再试。" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "" +"The currently logged-in user account does not have permission to enroll in " +"this course. You may need to {start_logout_tag}log out{end_tag} then try the" +" enroll button again. Please visit the {start_help_tag}help page{end_tag} " +"for a possible solution." +msgstr "" +"当前登录用户账号无权限入选此课程。您可能需要在{start_logout_tag}退出登录{end_tag}后重试选课按钮。请访问{start_help_tag}帮助页面{end_tag}了解可能的解决方案。" + +#: lms/templates/courseware/course_about.html +msgid "You are enrolled in this course" +msgstr "您选修了本课程" + +#: lms/templates/courseware/course_about.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/shoppingcart/registration_code_receipt.html +#: openedx/features/journals/templates/journals/bundle_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Course" +msgstr "查看课程" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "This course is in your cart." +msgstr "这个课程已经进入您的 购物车。" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Course is full" +msgstr "该课程已满" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Enrollment in this course is by invitation only" +msgstr "该课程只能通过邀请选修" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Enrollment is Closed" +msgstr "选课已关闭" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Add {course_name} to Cart ({price} USD)" +msgstr "添加{course_name}到购物({price} USD)" + +#: lms/templates/courseware/course_about.html +msgid "Enroll in {course_name}" +msgstr "选修{course_name}" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "View About Page in studio" +msgstr "在职员界面查看课程简介页面" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Classes Start" +msgstr "课程开始" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Classes End" +msgstr "课程结束" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Estimated Effort" +msgstr "预计课时" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Prerequisites" +msgstr "预备知识" + +#: lms/templates/courseware/course_about.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You must successfully complete {link_start}{prc_display}{link_end} before " +"you begin this course." +msgstr "您必须先完成{link_start}{prc_display}{link_end}才能开始此课程。" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Additional Resources" +msgstr "额外资源" + +#: lms/templates/courseware/course_about.html +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "self" +msgid "enroll" +msgstr "选课" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html +msgid "Share with friends and family!" +msgstr "与亲朋好友分享!" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "I just enrolled in {number} {title} through {account}: {url}" +msgstr "我刚通过 {account}:{url} 选修了 {number} {title}" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "Take a course with {platform} online" +msgstr "在 {platform} 上在线学习课程" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "I just enrolled in {number} {title} through {platform} {url}" +msgstr "我刚通过 {platform} {url} 选修了 {number} {title}" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html +msgid "Tweet that you've enrolled in this course" +msgstr "在 Tweet 发布您已登记此课程的消息" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "Post a Facebook message to say you've enrolled in this course" +msgstr "在 Facebook 发布您已选修此课程的消息" + +#: lms/templates/courseware/course_about_sidebar_header.html +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +#: themes/stanford-style/lms/templates/courseware/course_about_sidebar_header.html +msgid "Email someone to say you've enrolled in this course" +msgstr "通过邮件告诉其他人您已选修此课程" + +#: lms/templates/courseware/course_navigation.html +msgid "current location" +msgstr "当前位置" + +#. Translators: 'needs attention' is an alternative string for the +#. notification image that indicates the tab "needs attention". +#: lms/templates/courseware/course_navigation.html +#: lms/templates/courseware/tabs.html +msgid "needs attention" +msgstr "需要注意" + +#: lms/templates/courseware/course_navigation.html +msgid "Course Material" +msgstr "课程资料" + +#: lms/templates/courseware/course_updates.html +msgid "Hide" +msgstr "隐藏" + +#: lms/templates/courseware/course_updates.html +msgid "Show" +msgstr "显示" + +#: lms/templates/courseware/course_updates.html +msgid "Show Earlier Course Updates" +msgstr "显示更早的课程更新" + +#: lms/templates/courseware/courses.html +#: themes/elitemba-theme/lms/templates/index.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +msgid "List of Courses" +msgstr "课程列表" + +#: lms/templates/courseware/courses.html +#: themes/elitemba-theme/lms/templates/courseware/courses.html +msgid "Refine Your Search" +msgstr "使您的搜索更精确" + +#: lms/templates/courseware/courseware-chromeless.html +#: lms/templates/courseware/courseware.html +#: openedx/features/course_bookmarks/templates/course_bookmarks/course-bookmarks.html +#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html +msgid "{course_number} Courseware" +msgstr "{course_number} 课程页面" + +#: lms/templates/courseware/courseware-chromeless.html +#: lms/templates/courseware/courseware.html +msgid "Course Utilities" +msgstr "课程工具" + +#: lms/templates/courseware/courseware-error.html +msgid "Courseware" +msgstr "课程页面" + +#: lms/templates/courseware/courseware.html +msgid "Course Search" +msgstr "搜索课程" + +#: lms/templates/courseware/courseware.html +msgid "No content has been added to this course" +msgstr "本课程未添加新内容" + +#: lms/templates/courseware/courseware.html +#, python-format +msgid "" +"To access course materials, you must score {required_score}% or higher on " +"this exam. Your current score is {current_score}%." +msgstr "如需访问课程材料,您此门考试的分数必须为{required_score}%或以上。您当前分数为{current_score}%。" + +#: lms/templates/courseware/courseware.html +msgid "Your score is {current_score}%. You have passed the entrance exam." +msgstr "您的分数为 {current_score}%,通过了入门测试" + +#: lms/templates/courseware/gradebook.html +msgid "Gradebook" +msgstr "成绩簿" + +#: lms/templates/courseware/gradebook.html +msgid "Search students" +msgstr "搜索学生" + +#: lms/templates/courseware/gradebook.html +msgid "previous page" +msgstr "上一页" + +#: lms/templates/courseware/gradebook.html +msgid "of" +msgstr "的" + +#: lms/templates/courseware/gradebook.html +msgid "next page" +msgstr "下一页" + +#: lms/templates/courseware/info.html +msgid "{course_number} Course Info" +msgstr "{course_number} 课程信息" + +#: lms/templates/courseware/info.html +msgid "You are not enrolled yet" +msgstr "您尚未选修" + +#: lms/templates/courseware/info.html +msgid "" +"You are not currently enrolled in this course. {link_start}Enroll " +"now!{link_end}" +msgstr "您现在未选这门课程。 {link_start}立刻选课!{link_end}" + +#: lms/templates/courseware/info.html +msgid "Welcome to {org}'s {course_title}!" +msgstr "欢迎来到{org}的{course_title}!" + +#: lms/templates/courseware/info.html +msgid "Welcome to {course_title}!" +msgstr "欢迎来到{course_title}!" + +#: lms/templates/courseware/info.html +#: lms/templates/dashboard/_dashboard_course_listing.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Resume Course" +msgstr "继续课程" + +#: lms/templates/courseware/info.html +msgid "View Updates in Studio" +msgstr "在Studio中查看更新" + +#: lms/templates/courseware/info.html +msgid "Course Updates and News" +msgstr "课程更新与新消息" + +#: lms/templates/courseware/info.html +msgid "Handout Navigation" +msgstr "讲义导航" + +#: lms/templates/courseware/info.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Course Tools" +msgstr "课程工具" + +#: lms/templates/courseware/news.html +msgid "News - MITx 6.002x" +msgstr "新闻 - MITx 6.002x" + +#: lms/templates/courseware/news.html +msgid "Updates to Discussion Posts You Follow" +msgstr "您关注的讨论帖的更新情况" + +#: lms/templates/courseware/program_marketing.html +msgid "Purchase the Program (" +msgstr "购买系列 (" + +#: lms/templates/courseware/program_marketing.html +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Original Price" +msgstr "原价" + +#: lms/templates/courseware/program_marketing.html +msgid "{currency}{oldPrice}" +msgstr "{currency}{oldPrice}" + +#: lms/templates/courseware/program_marketing.html +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Discounted Price" +msgstr "折扣价" + +#: lms/templates/courseware/program_marketing.html +msgid "{currency}{newPrice})" +msgstr "{currency}{newPrice})" + +#: lms/templates/courseware/program_marketing.html +msgid "Start Learning" +msgstr "开始学习" + +#: lms/templates/courseware/program_marketing.html +msgid "Play" +msgstr "播放" + +#: lms/templates/courseware/program_marketing.html +msgid "YouTube Video" +msgstr "YouTube 视频" + +#: lms/templates/courseware/program_marketing.html +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "View Courses" +msgstr "查看课程" + +#: lms/templates/courseware/program_marketing.html +msgid "Meet the Instructors" +msgstr "会面导师" + +#: lms/templates/courseware/program_marketing.html +msgid "Frequently Asked Questions" +msgstr "常见问题" + +#: lms/templates/courseware/program_marketing.html +msgid "Job Outlook" +msgstr "工作展望" + +#: lms/templates/courseware/program_marketing.html +msgid "Real Career Impact" +msgstr "职场冲击" + +#: lms/templates/courseware/program_marketing.html +msgid "What You'll Learn" +msgstr "您将学到" + +#: lms/templates/courseware/program_marketing.html +msgctxt "Program" +msgid "Length" +msgstr "预计周数" + +#: lms/templates/courseware/program_marketing.html +msgid "{weeks_to_complete} weeks per course" +msgstr "{weeks_to_complete} 周/课" + +#: lms/templates/courseware/program_marketing.html +msgctxt "Program" +msgid "Effort" +msgstr "课时" + +#: lms/templates/courseware/program_marketing.html +msgid "" +"{min_hours_effort_per_week}-{max_hours_effort_per_week} hours per week, per " +"course" +msgstr "{min_hours_effort_per_week}-{max_hours_effort_per_week} 小时 / 周 / 课" + +#: lms/templates/courseware/program_marketing.html +msgctxt "Program" +msgid "Courses" +msgstr "课程" + +#: lms/templates/courseware/program_marketing.html +msgid "{number_of_courses} courses in program" +msgstr "{number_of_courses} 专项课" + +#: lms/templates/courseware/program_marketing.html +msgctxt "Program" +msgid "Price" +msgstr "价格" + +#: lms/templates/courseware/program_marketing.html +msgid "Price ({currencyCode})" +msgstr "价格 ({currencyCode})" + +#: lms/templates/courseware/program_marketing.html +msgid "{currency}{newPrice}{htmlEnd} for entire program" +msgstr "整个系列 {currency}{newPrice}{htmlEnd} " + +#: lms/templates/courseware/program_marketing.html +msgid "You save " +msgstr "您已省下" + +#: lms/templates/courseware/program_marketing.html +msgid "{discount_value}" +msgstr "{discount_value}" + +#: lms/templates/courseware/program_marketing.html +msgid "{currency}{full_program_price} for entire program" +msgstr "整个系列{currency}{full_program_price}" + +#: lms/templates/courseware/program_marketing.html +msgid "Courses in the {}" +msgstr "{} 的课程" + +#: lms/templates/courseware/program_marketing.html +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Starts on {}" +msgstr "开始 {}" + +#: lms/templates/courseware/program_marketing.html +msgid "Enroll Now" +msgstr "现在加入" + +#: lms/templates/courseware/program_marketing.html +msgid "Not Currently Available" +msgstr "当前不可用" + +#: lms/templates/courseware/progress.html +msgid "{course_number} Progress" +msgstr "{course_number}课程进展" + +#: lms/templates/courseware/progress.html +msgid "View Grading in studio" +msgstr "在Studio中查看评分情况" + +#: lms/templates/courseware/progress.html +msgid "Course Progress for Student '{username}' ({email})" +msgstr "学生'{username}' ({email})的学习进度" + +#: lms/templates/courseware/progress.html +msgid "View Certificate" +msgstr "查看证书" + +#: lms/templates/courseware/progress.html +msgid "Opens in a new browser window" +msgstr "打开一个新的浏览器窗口" + +#: lms/templates/courseware/progress.html +msgid "Download Your Certificate" +msgstr "下载您的证书" + +#: lms/templates/courseware/progress.html +msgid "Request Certificate" +msgstr "申请证书" + +#: lms/templates/courseware/progress.html +msgid "Requirements for Course Credit" +msgstr "课程学分要求" + +#: lms/templates/courseware/progress.html +msgid "{student_name}, you are no longer eligible for credit in this course." +msgstr "{student_name},您已失去获得该课程学分的资格。" + +#: lms/templates/courseware/progress.html +msgid "" +"{student_name}, you have met the requirements for credit in this course. " +"{a_start}Go to your dashboard{a_end} to purchase course credit." +msgstr "{student_name},您已达到本课程的学分要求。{a_start}前往课程面板{a_end} 支付这门课程的学分费用。" + +#: lms/templates/courseware/progress.html +msgid "{student_name}, you have not yet met the requirements for credit." +msgstr "{student_name},您还未达到学分要求。" + +#: lms/templates/courseware/progress.html +msgid "Information about course credit requirements" +msgstr "课程的学分要求信息" + +#: lms/templates/courseware/progress.html +msgid "display_name" +msgstr "显示的名称" + +#: lms/templates/courseware/progress.html +msgid "Verification Submitted" +msgstr "验证已提交" + +#: lms/templates/courseware/progress.html +msgid "Verification Failed" +msgstr "认证失败" + +#: lms/templates/courseware/progress.html +msgid "Verification Declined" +msgstr "未通过验证" + +#: lms/templates/courseware/progress.html +msgid "Completed by {date}" +msgstr "在{date}之前完成" + +#: lms/templates/courseware/progress.html +msgid "Upcoming" +msgstr "即将到来" + +#: lms/templates/courseware/progress.html +msgid "Less" +msgstr "收起" + +#: lms/templates/courseware/progress.html +msgid "Details for each chapter" +msgstr "每章的详细信息" + +#: lms/templates/courseware/progress.html +msgid "{earned} of {total} possible points" +msgstr "从可能的总分{total} 中获得{earned} " + +#: lms/templates/courseware/progress.html +msgid "" +"Suspicious activity detected during proctored exam review. Exam score 0." +msgstr "监测到监考模式考试中可疑作弊行为,考试分数为0。" + +#: lms/templates/courseware/progress.html +msgid "Section grade has been overridden." +msgstr "章成绩已被覆盖。" + +#: lms/templates/courseware/progress.html +msgid "Problem Scores: " +msgstr "问题得分:" + +#: lms/templates/courseware/progress.html +msgid "Practice Scores: " +msgstr "练习得分:" + +#: lms/templates/courseware/progress.html +msgid "Problem scores are hidden until the due date." +msgstr "截止日期前不显示题目分数。" + +#: lms/templates/courseware/progress.html +msgid "Practice scores are hidden until the due date." +msgstr "在截止日期前不显示模拟考成绩。" + +#: lms/templates/courseware/progress.html +msgid "Problem scores are hidden." +msgstr "不显示题目分数。" + +#: lms/templates/courseware/progress.html +msgid "Practice scores are hidden." +msgstr "不显示联系成绩。" + +#: lms/templates/courseware/progress.html +msgid "No problem scores in this section" +msgstr "这部分中没有问题得分" + +#: lms/templates/courseware/syllabus.html +msgid "{course.display_number_with_default} Course Info" +msgstr "{course.display_number_with_default}课程信息" + +#: lms/templates/courseware/welcome-back.html +msgid "" +"You were most recently in {section_link}. If you're done with that, choose " +"another section on the left." +msgstr "您最近在{section_link}。如果您已经完成此章节,请选择左侧的另一个章节。" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "Hi {name}," +msgstr "{name} 您好," + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "Hi," +msgstr "您好," + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"Congratulations! You are now eligible to receive course credit from " +"{providers} for successfully completing your {platform_name} course! " +"{link_start}Purchase credit now.{link_end}" +msgstr "" +"恭喜!您已完成{platform_name}课程,已获得从{providers}获取课程学分的资格!{link_start}马上购买学分{link_end}" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"Congratulations! You are now eligible to receive course credit for " +"successfully completing your {platform_name} course! {link_start}Purchase " +"credit now.{link_end}" +msgstr "恭喜您!您已完成 {platform_name} 课程,已获得资格获得课程学分!{link_start}马上购买学分{link_end}" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"Course credit can help you get a jump start on your university degree, " +"finish a degree already started, or fulfill requirements at a different " +"academic institution." +msgstr "课程学分可以极大地帮助您申请大学,完成您的大学学位,或者满足另外一个学术机构的要求。" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "There are 2 steps to getting course credit." +msgstr "2步获取学分。" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"Purchase credit by going to your {link_start}{platform_name} " +"dashboard{link_end} and clicking the {bold_start}Get Credit{bold_end} button" +" below the course title." +msgstr "" +"前往 " +"{link_start}{platform_name}面板{link_end}并点击课程标题下方的{bold_start}获取学分{bold_end}按钮以购买学分。" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"When your payment is complete, return to the dashboard and click the " +"{bold_start}Request Credit{bold_end} button under the course title to " +"request an official academic transcript at the institution that granted the " +"credit." +msgstr "" +"当完成支付后,返回面板并点击课程标题下方的{bold_start}请求学分{bold_end}按钮来请求一份官方学术成绩单,由赋予学分的机构发放。" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"We hope you enjoyed the course, and we hope to see you in future " +"{platform_name} courses!" +msgstr "我们希望您享受这门课程,我们希望在{platform_name}的新课程中见到您。" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +#: lms/templates/emails/activation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "The {platform_name} Team" +msgstr "{platform_name} 团队" + +#: lms/templates/credit_notifications/credit_eligibility_email.html +msgid "" +"{link_start}Click here for more information on credit at " +"{platform_name}{link_end}." +msgstr "{link_start}点击这里了解更多 {platform_name}平台上的学分信息{link_end}." + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your certificate will be available on or before {date}" +msgstr "您可申请证书的日期为或早于{date}" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your final grade:" +msgstr "您的最终成绩:" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required for a {cert_name_short}:" +msgstr "评定{cert_name_short}所需要的成绩:" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Grade required to pass this course:" +msgstr "通过这门课程的成绩:" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your verified {cert_name_long} is being held pending confirmation that the " +"issuance of your {cert_name_short} is in compliance with strict U.S. " +"embargoes on Iran, Cuba, Syria and Sudan. If you think our system has " +"mistakenly identified you as being connected with one of those countries, " +"please let us know by contacting {email}. If you would like a refund on your" +" {cert_name_long}, please contact our billing address {billing_email}" +msgstr "" +"由于向您颁发{cert_name_short}需要遵从美国对伊朗、古巴、叙利亚和苏丹的官方禁令政策,您的已认证的{cert_name_long}正处在等待确认状态。如果您认为我们的系统错误地将您与上述国家相关联,请通过{email}联系我们。如果您希望为{cert_name_long}获取退款,请通过{billing_email}联系我们。" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your {cert_name_long} is being held pending confirmation that the issuance " +"of your {cert_name_short} is in compliance with strict U.S. embargoes on " +"Iran, Cuba, Syria and Sudan. If you think our system has mistakenly " +"identified you as being connected with one of those countries, please let us" +" know by contacting {email}." +msgstr "" +"由于向您颁发您的{cert_name_short}需要遵从美国对伊朗、古巴、叙利亚和苏丹的严格禁运政策,您的已认证的{cert_name_long}正处在等待确认状态。如果您认为我们的系统错误地将您与上述国家相关联,请联系{email}让我们了解相关情况。" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Your certificate was not issued because you do not have a current verified " +"identity with {platform_name}. " +msgstr "我们未向您颁发证书,是因为您未在当前的{platform_name}平台上验证您的身份。" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Verify your identity now." +msgstr "立刻验证您的身份。" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Your {cert_name_short} is Generating" +msgstr "您的{cert_name_short}生成中" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open the certificate web view" +msgstr "该链接将打开证书的网络版式视图" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "View {cert_name_short}" +msgstr "查看{cert_name_short}" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "This link will open/download a PDF document" +msgstr "点击此链接打开或下载PDF文件" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download {cert_name_short} (PDF)" +msgstr "下载 {cert_name_short} (PDF)" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your {cert_name_short} (PDF)" +msgstr "下载认证{cert_name_short}(PDF)" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"This link will open/download a PDF document of your verified " +"{cert_name_long}." +msgstr "此链接会以PDF格式打开或下载您验证过的{cert_name_long}证书。" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Download Your ID Verified {cert_name_short} (PDF)" +msgstr "下载您的已认证的 {cert_name_short} (PDF)" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Complete our course feedback survey" +msgstr "填写课程反馈问卷" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Add Certificate to LinkedIn Profile" +msgstr "将证书添加到LinkedIn的个人资料" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "Share on LinkedIn" +msgstr "分享到领英" + +#: lms/templates/dashboard/_dashboard_certificate_information.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid "" +"Since we did not have a valid set of verification photos from you when your " +"{cert_name_long} was generated, we could not grant you a verified " +"{cert_name_short}. An honor code {cert_name_short} has been granted instead." +msgstr "" +"由于在生成您的{cert_name_long}时我们没有一套您的有效的身份认证照片,因此无法授予您认证的{cert_name_short};我们已授予您标有诚信准则的{cert_name_short}" +" 。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course details" +msgstr "课程详细信息" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Home Page" +msgstr "{course_number} {course_name} 主页" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "{course_number} {course_name} Cover Image" +msgstr "{course_number} {course_name} 封面图片" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Enrolled as: " +msgstr "选修为:" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/static_templates/help.html +msgid "Coming Soon" +msgstr "即将上线" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Ended - {date}" +msgstr "已经结课 - {date}" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Started - {date}" +msgstr "已经开课 - {date}" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Starts - {date}" +msgstr "开课日期 - {date}" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "for {course_display_name}" +msgstr "为了{course_display_name}" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You must select a session by {expiration_date} to access the course." +msgstr "您必须在{expiration_date}前选择会话来访问课程。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You must select a session to access the course." +msgstr "必须选择一个学期才能访问课程。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Change or Leave Session" +msgstr "更改或离开会话" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You can no longer change sessions." +msgstr "您已无法更改会话。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You can change sessions until {entitlement_expiration_date}." +msgstr "您可在{entitlement_expiration_date}前更改会话。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "View Archived Course" +msgstr "查看存档的课程" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "I'm taking {course_name} online with {facebook_brand}. Check it out!" +msgstr "我正在{facebook_brand}学习网络课程{course_name},了解一下!" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Share {course_name} on Facebook" +msgstr "分享{course_name}至Facebook" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Share on Facebook" +msgstr "分享到Facebook" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "I'm taking {course_name} online with {twitter_brand}. Check it out!" +msgstr "我正在{twitter_brand}学习网络课程{course_name},了解一下!" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Share {course_name} on Twitter" +msgstr "分享{course_name}至Twitter" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Course options for" +msgstr "课程选项,关于" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_entitlement_actions.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Available Actions" +msgstr "可用的操作" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: lms/templates/dashboard/_dashboard_entitlement_actions.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Email Settings" +msgstr "电子邮件设置" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Related Programs" +msgstr "相关课程" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can no longer access this course because payment has not yet been " +"received. You can contact the account holder to request payment, or you can " +"unenroll from this course" +msgstr "由于未收到支付款,您无法访问此课程。您可以联系账号持有者来请求支付,或退出此门课程。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You can no longer access this course because payment has not yet been " +"received. You can {contact_link_start}contact the account " +"holder{contact_link_end} to request payment, or you can " +"{unenroll_link_start}unenroll{unenroll_link_end} from this course" +msgstr "" +"由于尚未收到您的付款,您将无法访问该课程。您可以{contact_link_start}联系账号持有人{contact_link_end}请求付款,也可以{unenroll_link_start}放弃选修{unenroll_link_end}该课程" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Verification not yet complete." +msgstr "认证尚不完整" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You only have {days} day left to verify for this course." +msgid_plural "You only have {days} days left to verify for this course." +msgstr[0] "您还有 {days} 天时间认证此课程。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Almost there!" +msgstr "马上就好了!" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You still need to verify for this course." +msgstr "您仍需为此课程进行认证" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Verify Now" +msgstr "认证" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "You have submitted your verification information." +msgstr "您已提交认证信息。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You will see a message on your dashboard when the verification process is " +"complete (usually within 1-2 days)." +msgstr "当认证过程结束后,您会在您的课程面板中看到一条消息(通常在1-2天内)。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Your current verification will expire soon!" +msgstr "您的现时验证将马上过期!" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"You have submitted your reverification information. You will see a message " +"on your dashboard when the verification process is complete (usually within " +"1-2 days)." +msgstr "您已提交重新认证信息,认证完成后将会在您面板中显示一条消息(一般1-2天内完成)。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +msgid "You have successfully verified your ID with edX" +msgstr "您已经成功向edX验证了您的身份!" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Your current verification is effective until {date}." +msgstr "在{date}之前您的验证状态都有效" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Your current verification will expire soon." +msgstr "您的现时验证将马上过期" + +#. Translators: start_link and end_link will be replaced with HTML tags; +#. please do not translate these. +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Your current verification will expire in {days} days. {start_link}Re-verify " +"your identity now{end_link} using a webcam and a government-issued photo ID." +msgstr "您当前认证会在{days}天后过期,立即使用网络摄像头和政府发行的图片ID来{start_link}重新认证身份{end_link}。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"Pursue a {cert_name_long} to highlight the knowledge and skills you gain in " +"this course." +msgstr "获取一个{cert_name_long}来突显您在此课程中获得的知识和技能。" + +#: lms/templates/dashboard/_dashboard_course_listing.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "" +"It's official. It's easily shareable. It's a proven motivator to complete " +"the course. {line_break}{link_start}Learn more about the verified " +"{cert_name_long}{link_end}." +msgstr "" +"证书由官方正式颁发,易于分享,已证明能激励学生完成课程。{line_break}{link_start}了解更多关于认证{cert_name_long}的信息{link_end}。" + +#. Translators: provider_name is the name of a credit provider or university +#. (e.g. State University) +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"You have completed this course and are eligible to purchase course credit. " +"Select Get Credit to get started." +msgstr "您已完成此课程并有资格购买课程学分。选择获得学分开始。" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "You are now eligible for credit from {provider}. Congratulations!" +msgstr "现在,您有资格从 {provider} 获得学分。恭喜您!" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "Get Credit" +msgstr "获得学分" + +#. Translators: link_to_provider_site is a link to an external webpage. The +#. text of the link will be the name of a credit provider, such as 'State +#. University' or 'Happy Fun Company'. +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"Thank you for your payment. To receive course credit, you must now request " +"credit at the {link_to_provider_site} website. Select Request Credit " +"to get started." +msgstr "感谢您的付款。要获得课程学分,您现在必须在 {link_to_provider_site} 网站申请学分。选择申请学分开始。" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "Request Credit" +msgstr "申请学分" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"{provider_name} has received your course credit request. We will update you " +"when credit processing is complete." +msgstr "{provider_name} 已收到您的课程学分申请。完成学分处理后我们将通知您。" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "View Details" +msgstr "查看详情" + +#. Translators: link_to_provider_site is a link to an external webpage. The +#. text of the link will be the name of a credit provider, such as 'State +#. University' or 'Happy Fun Company'. provider_name is the name of credit +#. provider. +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"Congratulations! {provider_name} has approved your request for course" +" credit. To see your course credit, visit the {link_to_provider_site} " +"website." +msgstr "" +"恭喜您! {provider_name} 已批准您的课程学分申请。要查看您的课程学分,请访问 " +"{link_to_provider_site} 网站。" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "View Credit" +msgstr "查看认证" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"{provider_name} did not approve your request for course credit. For more " +"information, contact {link_to_provider_site} directly." +msgstr "{provider_name} 未批准您的课程学分申请。欲了解更多信息,请直接联系 {link_to_provider_site}。" + +#: lms/templates/dashboard/_dashboard_credit_info.html +msgid "" +"An error occurred with this transaction. For help, contact {support_email}." +msgstr "本次交易出错了。联系{support_email}寻求帮助。" + +#: lms/templates/dashboard/_dashboard_entitlement_actions.html +msgid "Course options for {courseName}" +msgstr "{courseName}的课程选项" + +#: lms/templates/dashboard/_dashboard_show_consent.html +msgid "Consent to share your data" +msgstr "批准分享您的数据" + +#: lms/templates/dashboard/_dashboard_show_consent.html +msgid "" +"To access this course, you must first consent to share your learning " +"achievements with {enterprise_customer_name}." +msgstr "您必须允许与{enterprise_customer_name}分享您的学习成就,才能访问此课程" + +#: lms/templates/dashboard/_dashboard_show_consent.html +msgid "View Consent" +msgstr "查看批准" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Current Verification Status: Approved" +msgstr "当前认证状态:已批准" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your edX verification has been approved. Your verification is effective for " +"one year after submission." +msgstr "您的edX认证已通过,提交后一年内有效。" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Current Verification Status: Pending" +msgstr "当前认证状态:待处理" + +#: lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your edX ID verification is pending. Your verification information has been " +"submitted and will be reviewed shortly." +msgstr "您的身份认证正在进行中,您的认证信息已提交,我们会尽快审查您的认证。" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Current Verification Status: Denied" +msgstr "当前认证状态:未通过" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification submission was not accepted. To receive a verified " +"certificate, you must submit a new photo of yourself and your government-" +"issued photo ID before the verification deadline for your course." +msgstr "您的认证提交未被接受。您必须在您课程认证的截止日期前提交一张新照片和政府签发的身份证件,才可以收到认证证书。" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Your verification was denied for the following reasons:" +msgstr "您认证未通过的理由如下:" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Resubmit Verification" +msgstr "重新提交认证" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "Current Verification Status: Expired" +msgstr "当前认证状态:已过期" + +#: lms/templates/dashboard/_dashboard_status_verification.html +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your verification has expired. To receive a verified certificate, you must " +"submit a new photo of yourself and your government-issued photo ID before " +"the verification deadline for your course." +msgstr "您的认证已过期,您必须在您课程的认证截止日期前提交新照片和政府发行的身份证明,才可以获取认证证书。" + +#: lms/templates/dashboard/_dashboard_third_party_error.html +msgid "Could Not Link Accounts" +msgstr "无法关联账号" + +#. Translators: this message is displayed when a user tries to link their +#. account with a third-party authentication provider (for example, Google or +#. LinkedIn) with a given edX account, but their third-party account is +#. already +#. associated with another edX account. provider_name is the name of the +#. third-party authentication provider, and platform_name is the name of the +#. edX deployment. +#: lms/templates/dashboard/_dashboard_third_party_error.html +msgid "" +"The {provider_name} account you selected is already linked to another " +"{platform_name} account." +msgstr "您选择的{provider_name}账号已经和{platform_name}账号相关联。" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "" +"We're sorry to see you go! Please share your main reason for unenrolling." +msgstr "很遗憾您要退选课程!希望您可以告诉我们退选课程的主要原因。" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I just wanted to browse the material" +msgstr "我只想浏览材料" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "This won't help me reach my goals" +msgstr "此门课程无法帮助我达到学习目标" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I don't have the time" +msgstr "没时间" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I don't have the academic or language prerequisites" +msgstr "我不具备学术或语言先修条件" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I don't have enough support" +msgstr "我不具备足够的支持条件" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "I am not happy with the quality of the content" +msgstr "我对内容质量不满意" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "The course material was too hard" +msgstr "课程材料太难" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "The course material was too easy" +msgstr "课程材料太简单" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Something was broken" +msgstr "出错了" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Other" +msgstr "其他" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Thank you for sharing your reasons for unenrolling." +msgstr "感谢您告知我们原因。" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "You are unenrolled from" +msgstr "您已退选" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Return To Dashboard" +msgstr "返回面板" + +#: lms/templates/dashboard/_entitlement_reason_survey.html +#: lms/templates/dashboard/_reason_survey.html +msgid "Browse Courses" +msgstr "浏览课程" + +#: lms/templates/debug/run_python_form.html +msgid "Results:" +msgstr "结果:" + +#: lms/templates/discussion/_discussion_inline.html +msgid "Topic:" +msgstr "主题:" + +#: lms/templates/discussion/_discussion_inline.html +msgid "Show Discussion" +msgstr "显示讨论" + +#: lms/templates/discussion/_discussion_inline_studio.html +msgid "To view live discussions, click Preview or View Live in Unit Settings." +msgstr "要查看现场讨论,请在单元设置中点击“预览”或“现场查看”" + +#: lms/templates/discussion/_discussion_inline_studio.html +msgid "Discussion ID: {discussion_id}" +msgstr "讨论区用户名:{discussion_id}" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "Discussion topics list" +msgstr "讨论主题列表" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "Filter Topics" +msgstr "过滤主题" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "filter topics" +msgstr "过滤主题" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "All Discussions" +msgstr "所有讨论" + +#: lms/templates/discussion/_filter_dropdown.html +#: themes/elitemba-theme/lms/templates/discussion/_filter_dropdown.html +msgid "Posts I'm Following" +msgstr "我关注的讨论帖" + +#. Translators: This labels a filter menu in forum navigation +#: lms/templates/discussion/_thread_list_template.html +msgid "Filter:" +msgstr "过滤器:" + +#. Translators: This is a menu option for showing all forum threads unfiltered +#: lms/templates/discussion/_thread_list_template.html +msgid "Show all posts" +msgstr "显示所有帖子" + +#. Translators: This is a menu option for showing only unread forum threads +#: lms/templates/discussion/_thread_list_template.html +msgid "Unread posts" +msgstr "未读讨论帖" + +#. Translators: This is a menu option for showing only unanswered forum +#. question threads +#: lms/templates/discussion/_thread_list_template.html +msgid "Unanswered posts" +msgstr "未答复的讨论帖" + +#. Translators: This is a menu option for showing only forum threads flagged +#. for abuse +#: lms/templates/discussion/_thread_list_template.html +msgid "Flagged" +msgstr "已标记" + +#. Translators: This labels a group menu in forum navigation +#: lms/templates/discussion/_thread_list_template.html +msgid "Group:" +msgstr "分组:" + +#: lms/templates/discussion/_thread_list_template.html +msgid "in all groups" +msgstr "在所有分组中" + +#. Translators: This labels a sort menu in forum navigation +#: lms/templates/discussion/_thread_list_template.html +msgid "Sort:" +msgstr "排序:" + +#. Translators: This is a menu option for sorting forum threads +#: lms/templates/discussion/_thread_list_template.html +msgid "by recent activity" +msgstr "近期活动" + +#. Translators: This is a menu option for sorting forum threads +#: lms/templates/discussion/_thread_list_template.html +msgid "by most activity" +msgstr "活跃度" + +#. Translators: This is a menu option for sorting forum threads +#: lms/templates/discussion/_thread_list_template.html +msgid "by most votes" +msgstr "最多票数" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Student Notes" +msgstr "学生笔记" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Highlights and notes you've made in course content" +msgstr "您在课程内容里高亮和笔记的内容" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Search notes for:" +msgstr "搜索笔记:" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Search notes for..." +msgstr "搜索笔记..." + +#: lms/templates/edxnotes/edxnotes.html +msgid "View notes by:" +msgstr "浏览笔记:" + +#: lms/templates/edxnotes/edxnotes.html +msgid "" +"You have not made any notes in this course yet. Other students in this " +"course are using notes to:" +msgstr "您在本课中尚未做任何笔记。其他学生在本课程中使用笔记:" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Mark a passage or concept so that it's easy to find later." +msgstr "标记一段文章或一个概念,以便日后查找。" + +#: lms/templates/edxnotes/edxnotes.html +msgid "Record thoughts about a specific passage or concept." +msgstr "记录有关具体文章或概念的想法。" + +#: lms/templates/edxnotes/edxnotes.html +msgid "" +"Highlight important information to review later in the course or in future " +"courses." +msgstr "在此课或者未来的课程中突出重要信息以便日后回顾。" + +#: lms/templates/edxnotes/edxnotes.html +msgid "" +"Get started by making a note in something you just read, like " +"{section_link}." +msgstr "开始,在您刚读的东西,如{section_link}。" + +#: lms/templates/edxnotes/toggle_notes.html +msgid "Hide notes" +msgstr "隐藏注释" + +#: lms/templates/edxnotes/toggle_notes.html +msgid "Show notes" +msgstr "显示注释" + +#: lms/templates/emails/activation_email.txt +msgid "" +"You're almost there! Use the link to activate your account to access " +"engaging, high-quality {platform_name} courses. Note that you will not be " +"able to log back into your account until you have activated it." +msgstr "注册差不多完成啦!点击链接激活您的账号,体验{platform_name}的精品课程。注意,您必须激活账号才可以登录。" + +#: lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "Enjoy learning with {platform_name}." +msgstr "享受您在{platform_name}上的学习之旅。" + +#: lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "" +"If you need help, please use our web form at {support_url} or email " +"{support_email}." +msgstr "如需帮助,请访问我们的网站{support_url} 或发邮件至{support_email} 。" + +#: lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "" +"This email message was automatically sent by {lms_url} because someone " +"attempted to create an account on {platform_name} using this email address." +msgstr "这是一封由{lms_url} 自动发送的邮件,通知您有人使用此邮箱地址注册{platform_name}账号。" + +#: lms/templates/emails/activation_email_subject.txt +msgid "Action Required: Activate your {platform_name} account" +msgstr "您必须激活您的{platform_name}账号" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Thank you for your purchase of " +msgstr "谢谢您购买" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Your payment was successful." +msgstr "您已成功付款。" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "" +"If you have billing questions, please read the FAQ ({faq_url}) or contact " +"{billing_email}." +msgstr "如果您对账单有疑问,请阅读FAQ({faq_url} )或给{billing_email} 发邮件。" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "If you have billing questions, please contact {billing_email}." +msgstr "如果您对账单有疑问,请给{billing_email}发邮件。" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"{order_placed_by} placed an order and mentioned your name as the " +"Organization contact." +msgstr "{order_placed_by}下了一个订单并将您添加为机构联系人。" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"{order_placed_by} placed an order and mentioned your name as the additional " +"receipt recipient." +msgstr "{order_placed_by}下了一个订单,并将您添加为额外的收据收件人 " + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "The items in your order are:" +msgstr "您的订单细目为:" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "Quantity - Description - Price" +msgstr "数量 - 描述 - 价格" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "Total billed to credit/debit card: {currency_symbol}{total_cost}" +msgstr "信用卡/借记卡总支付额为: {currency_symbol}{total_cost}" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Company Name:" +msgstr "公司名称:" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Purchase Order Number:" +msgstr "订单号" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Company Contact Name:" +msgstr "公司联系人姓名" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Company Contact Email:" +msgstr "公司联系邮箱" + +#. Translators: this will be the name of a person receiving an email +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Recipient Name:" +msgstr "收件人姓名" + +#. Translators: this will be the email address of a person receiving an email +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Recipient Email:" +msgstr "收件人邮箱" + +#: lms/templates/emails/business_order_confirmation_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "#:" +msgstr "#:" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Order Number: {order_number}" +msgstr "订单号: {order_number}" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"A CSV file of your registration URLs is attached. Please distribute " +"registration URLs to each student planning to enroll using the email " +"template below." +msgstr "包含您注册URL的CSV文件已附上。请使用以下邮件模板将注册URL分发给每个计划招收的学生。" + +#. Translators: This is followed by the instructor or course team name (so +#. could be singular or plural) +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Warm regards," +msgstr "诚挚的问候," + +#. Translators: The
    is a line break (empty line), please keep this html +#. in +#. the string after the sign off. +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Warm regards,
    The {platform_name} Team" +msgstr "诚挚的问候,
    {platform_name} 团队" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Dear [[Name]]" +msgstr "亲爱的[[名字]]" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"To enroll in {course_names} we have provided a registration URL for you. " +"Please follow the instructions below to claim your access." +msgstr "我们为您提供了一个注册URL来选修{course_names}。请按照以下说明来获得您的权限。" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "Your redeem url is: [[Enter Redeem URL here from the attached CSV]]" +msgstr "您的兑换URL是:[[在此输入从附件CSV中找到的兑换链接]]" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "(1) Register for an account at {site_name}" +msgstr "(1) 在 {site_name}注册一个账号" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"(2) Once registered, copy the redeem URL and paste it in your web browser." +msgstr "(2)注册完成后,复制兑换URL地址并且粘帖到您的web浏览器地址栏" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"(3) On the enrollment confirmation page, Click the 'Activate Enrollment " +"Code' button. This will show the enrollment confirmation." +msgstr "(3) 在选课确认页面,点击“激活选课码”按钮,您将看到选课确认信息。" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"(4) You should be able to click on 'view course' button or see your course " +"on your student dashboard at {url}" +msgstr "(4)您可以点击“查看课程”按钮或者通过{url} 处的学生课程面板查看您的课程。" + +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "" +"(5) Course materials will not be available until the course start date." +msgstr "(5) 课程开始后课程资料才可用。" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. Please also keep the

    and

    HTML +#. tags in place. +#: lms/templates/emails/business_order_confirmation_email.txt +msgid "

    Sincerely,

    [[Your Signature]]

    " +msgstr "

    诚挚的,

    [[您的签名]]

    " + +#: lms/templates/emails/confirm_email_change.txt +#: themes/elitemba-theme/lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us immediately. Contact information is listed at:" +msgstr "" +"这封邮件是为了确认您和 {platform_name} 之间的电子邮件关联由 {old_email} 变更为 " +"{new_email}。如果您并没有发出该请求,请立即联系我们。联系信息已在以下页面中列出:" + +#: lms/templates/emails/confirm_email_change.txt +#: themes/elitemba-theme/lms/templates/emails/confirm_email_change.txt +#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt +msgid "" +"We keep a log of old e-mails, so if this request was unintentional, we can " +"investigate." +msgstr "我们保存着旧电子邮件信息的日志,所以如果该请求并非是您有意发出的,我们可以对此进行调查。" + +#: lms/templates/emails/email_change_subject.txt +msgid "Request to change {platform_name} account e-mail" +msgstr "变更 {platform_name} 账号电子邮件的请求" + +#: lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +msgid "" +"Sorry! The photos you submitted for ID verification were not accepted, for " +"the following reason(s):" +msgstr "对不起!您为ID验证提供的照片没有通过,原因(或多个)如下:" + +#: lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +msgid "The photo(s) of you:" +msgstr "您的照片(多张):" + +#: lms/templates/emails/failed_verification_email.txt +msgid "The photo of you:" +msgstr "您的照片:" + +#: lms/templates/emails/failed_verification_email.txt +msgid "The photo of your ID:" +msgstr "拍摄一张您身份证件的照片" + +#: lms/templates/emails/failed_verification_email.txt +msgid "Other Reasons:" +msgstr "其他原因:" + +#: lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +msgid "Resubmit Verification: {reverify_url}" +msgstr "重新认证: {reverify_url}" + +#: lms/templates/emails/failed_verification_email.txt +msgid "ID Verification FAQ: {faq_url}" +msgstr "身份验证 FAQ:{faq_url}" + +#: lms/templates/emails/failed_verification_email.txt +#: lms/templates/emails/order_confirmation_email.txt +#: lms/templates/emails/passed_verification_email.txt +#: lms/templates/emails/photo_submission_confirmation.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/photo_submission_review.txt +msgid "Thank you," +msgstr "谢谢," + +#: lms/templates/emails/failed_verification_email.txt +#: lms/templates/emails/passed_verification_email.txt +#: lms/templates/emails/photo_submission_confirmation.txt +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/photo_submission_review.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "The {platform_name} team" +msgstr "{platform_name}团队" + +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "" +"Your payment was successful. You will see the charge below on your next " +"credit or debit card statement under the company name {merchant_name}." +msgstr "您已付款成功。您最近一期的信用卡或储蓄卡结单将会包括来自公司名{merchant_name}的扣款。" + +#: lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +msgid "Your order number is: {order_number}" +msgstr "您的订单号为:{order_number}" + +#: lms/templates/emails/passed_verification_email.txt +msgid "Hi {full_name}" +msgstr " {full_name} 您好" + +#: lms/templates/emails/passed_verification_email.txt +msgid "Congratulations! Your ID verification process was successful." +msgstr "恭喜您的身份ID认证成功。" + +#: lms/templates/emails/passed_verification_email.txt +msgid "" +"Your verification is effective for one year. It will expire on {expiry_date}" +msgstr "您的验证有效期为一年。它将在{expiry_date}过期" + +#: lms/templates/emails/photo_submission_confirmation.txt +msgid "Hi {full_name}," +msgstr "{full_name}您好," + +#: lms/templates/emails/photo_submission_confirmation.txt +msgid "Thanks for submitting your photos!" +msgstr "谢谢您的照片提交!" + +#: lms/templates/emails/photo_submission_confirmation.txt +msgid "" +"We've received your information and the ID verification process has " +"begun.Check for an email from us in the next few days to confirm whether " +"your verification was successful.You can also check the status of the " +"verification process on your dashboard." +msgstr "" +"我们已收到您的信息,并且身份认证流程已开始。请在接下来几天内查看我们给您发的一封邮件,以确认您认证是否成功。您也可以在面板中查看您的认证状态。" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "Thank you for purchasing enrollments in {course_name}." +msgstr "感谢您购买{course_name}。" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"An invoice for {currency_symbol}{total_price} is attached. Payment is due " +"upon receipt. You can find information about payment methods on the invoice." +msgstr "{currency_symbol}{total_price}的发票已附上。您在收到发票后需立即付款。您可以在发票里找到付款方式。" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"A .csv file that lists your enrollment codes is attached. You can use the " +"email template below to distribute enrollment codes to your students. Each " +"student must use a separate enrollment code." +msgstr "附件中是带有您的选课码的.csv文件。您可以使用下面的邮件模板将选课码分发给您的学生。每个学生必须使用一个单独的选课码。" + +#. Translators: This is the signature of an email. "\n" is a newline +#. character +#. and should be placed between the closing word and the signature. +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"Thanks,\n" +"The {platform_name} Team" +msgstr "" +"谢谢,\n" +"{platform_name}团队" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "Dear [[Name]]:" +msgstr "亲爱的 [[Name]]:" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"We have provided a course enrollment code for you in {course_name}. To " +"enroll in the course, click the following link:" +msgstr "我们为您提供了一个{course_name}选课码。参加该课程,请点击以下链接:" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "HTML link from the attached CSV file" +msgstr "附件CSV文件中的html链接" + +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"After you enroll, you can see the course on your student dashboard. You can " +"see course materials after the course start date." +msgstr "在您选课之后,您可以在您的学生课程面板中看到该课程。在课程开始后,您就可以看到课程的相关资料。" + +#. Translators: please translate the text inside [[ ]]. This is meant as a +#. template for course teams to use. +#. This is the signature of an email. "\n" is a newline character +#. and should be placed between the closing word and the signature. +#: lms/templates/emails/registration_codes_sale_email.txt +msgid "" +"Sincerely,\n" +"[[Your Signature]]" +msgstr "" +"诚挚的,\n" +"[[您的签名]]" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "INVOICE" +msgstr "发票" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Invoice No: {invoice_number}" +msgstr "发票号码: {invoice_number}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Terms: Due Upon Receipt" +msgstr "条款:收到付款" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Due Date: {date}" +msgstr "截止日期: {date}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Bill to:" +msgstr "付款给:" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Customer Reference Number: {reference_number}" +msgstr "客户参考编码: {reference_number}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Balance Due: {currency_symbol}{sale_price}" +msgstr "应付金额: {currency_symbol}{sale_price}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Course: {course_name}" +msgstr "课程名称: {course_name}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "" +"Price: {currency_symbol}{course_price} Quantity: {quantity} " +"Sub-Total: {currency_symbol}{sub_total} Discount: " +"{currency_symbol}{discount}" +msgstr "" +"价格: {currency_symbol}{course_price} 数量: {quantity} 小计: " +"{currency_symbol}{sub_total} 折扣: {currency_symbol}{discount}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Total: {currency_symbol}{sale_price}" +msgstr "总计: {currency_symbol}{sale_price}" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "Payment Instructions" +msgstr "支付说明" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "" +"If we do not receive payment, the learner enrollments that use these codes " +"will be canceled and learners will not be able to access course materials. " +"All purchases are final. For more information, see the {site_name} " +"cancellation policy." +msgstr "" +"如果我们没有收到付款,使用这些选课码的学生将被取消上课资格并无法访问课程资料。所有付款都无法退换。欲了解更多信息,请参见{site_name}取消政策。" + +#: lms/templates/emails/registration_codes_sale_invoice_attachment.txt +msgid "For payment questions, contact {contact_email}" +msgstr "支付问题请联系{contact_email}" + +#: lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the course staff at {email}." +msgstr "" +"我们很抱歉。我们的课程工作人员没有批准您的名字请求改变:从{old_name} " +"改变至{new_name}。如果您需要进一步的帮助,请给课程工作人员发邮件:{email}。" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"We have successfully verified your identity for the {assessment} assessment " +"in the {course_name} course." +msgstr "我们已经为您在课程{course_name}中的{assessment} 评估成功地验证了您的身份。" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"We could not verify your identity for the {assessment} assessment in the " +"{course_name} course. You have used {used_attempts} out of " +"{allowed_attempts} attempts to verify your identity." +msgstr "" +"我们无法为您在课程 " +"{course_name}中的评估{assessment}验证身份。您已经使用了{allowed_attempts}次允许的中的{used_attempts}" +" 试图验证您的身份。" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"You must verify your identity before the assessment closes on {due_date}." +msgstr "您必须核实您的身份在评估关闭{due_date}。" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "To try to verify your identity again, select the following link:" +msgstr "尝试再次核实您的身份,选择下面的链接:" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"We could not verify your identity for the {assessment} assessment in the " +"{course_name} course. You have used {used_attempts} out of " +"{allowed_attempts} attempts to verify your identity, and verification is no " +"longer possible." +msgstr "" +"我们无法验证为您在课程{course_name}中的评估{assessment}验证身份。您已尝试了{used_attempts} " +"次,验证身份尝试次数最多为{allowed_attempts}次。" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "To go to the courseware, select the following link:" +msgstr "去看课件,选择以下链接:" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"If you have any questions, you can contact student support at " +"{support_link}." +msgstr "如果您有任何问题,您可以联系学生支持团队{support_link}。" + +#: lms/templates/emails/reverification_processed.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "Thanks," +msgstr "谢谢," + +#: lms/templates/embargo/default_courseware.html +#: lms/templates/embargo/default_enrollment.html +#: lms/templates/static_templates/embargo.html +#: themes/stanford-style/lms/templates/embargo/default_courseware.html +#: themes/stanford-style/lms/templates/embargo/default_enrollment.html +#: themes/stanford-style/lms/templates/static_templates/embargo.html +msgid "This Course Unavailable In Your Country" +msgstr "这门课程未在您的国家开设" + +#: lms/templates/embargo/default_courseware.html +msgid "" +"Our system indicates that you are trying to access this {platform_name} " +"course from a country or region in which it is not currently available." +msgstr "我们的系统显示您想选修的{platform_name}课程在您所在的国家或地区没有开设。" + +#: lms/templates/embargo/default_enrollment.html +msgid "" +"Our system indicates that you are trying to enroll in this {platform_name} " +"course from a country or region in which it is not currently available." +msgstr "我们的系统检测到您尝试注册{platform_name}的课程,它目前在您所在的国家或地区没有开设。" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "Enrollment Successful" +msgstr "选课成功" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "" +"Thank you for enrolling in {course_names}. We hope you enjoy the course." +msgstr "感谢您报名{course_names},希望您学习旅途愉快。" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "Thank you for enrolling in:" +msgstr "感谢您报名:" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "We hope you enjoy the course." +msgstr "祝您学习愉快。" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "" +"{platform_name} is a nonprofit bringing high-quality education to everyone, " +"everywhere. Your help allows us to continuously improve the learning " +"experience for millions and make a better future one learner at a time." +msgstr "" +"{platform_name}是一个非营利性组织,给任何地方的任何人带来高质量的教育。您的帮助使我们能够一步一个脚印、不断地为成千上万的学习者改善学习体验,创造美好的未来。" + +#: lms/templates/enrollment/course_enrollment_message.html +msgid "Donation Actions" +msgstr "捐赠行为" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Financial Assistance Application" +msgstr "经济援助申请" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "A Note to Learners" +msgstr "学员须知" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "Dear edX Learner," +msgstr "亲爱的 edX 学员:" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "" +"EdX Financial Assistance is a program we created to give learners in all " +"financial circumstances a chance to earn a Verified Certificate upon " +"successful completion of an edX course." +msgstr "edX 经济援助项目旨在让各种经济状况的学员都有一个在成功完成 edX 课程后获得验证证书的机会。" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"If you are interested in working toward a Verified Certificate, but cannot " +"afford to pay the fee, please apply now. Please note that financial " +"assistance is limited and may not be awarded to all eligible candidates." +msgstr "如果您对获得验证证书感兴趣但无法承担费用,请现在就来提出申请。请注意,经济援助是有限的且可能无法授予所有符合条件的申请者。" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "" +"In order to be eligible for edX Financial Assistance, you must demonstrate " +"that paying the Verified Certificate fee would cause you economic hardship. " +"To apply, you will be asked to answer a few questions about why you are " +"applying and how the Verified Certificate will benefit you." +msgstr "" +"要符合 edX " +"经济援助的资格条件,您必须证明支付验证证书费用会导致您经济困难。为了进行申请,您可能会被要求回答一些关于您为何申请验证证书以及验证证书会给您带来哪些好处的问题。" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "" +"If your application is approved, we'll give you instructions for verifying " +"your identity on edx.org so you can start working toward completing your edX" +" course." +msgstr "如果您的申请被批准,我们将为您提供在 edx.org 上验证您的身份的相关说明,以便您可以开始着手完成您的 edX 课程。" + +#: lms/templates/financial-assistance/financial-assistance.html +msgid "" +"EdX is committed to making it possible for you to take high quality courses " +"from leading institutions regardless of your financial situation, earn a " +"Verified Certificate, and share your success with others." +msgstr "无论您的经济状况如何,EdX 都致力于让您从各领先机构获得高质量的课程,让您获得验证证书并与他人分享您的成功。" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Sincerely, Anant" +msgstr "Anant 谨上" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Back to Student FAQs" +msgstr "返回至学生常见问题解答" + +#: lms/templates/financial-assistance/financial-assistance.html +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Apply for Financial Assistance" +msgstr "申请经济资助" + +#: lms/templates/header/brand.html +#: lms/templates/header/navbar-logo-header.html +#: lms/templates/navigation/navbar-logo-header.html +#: lms/templates/navigation/bootstrap/navbar-logo-header.html +#: themes/elitemba-theme/lms/templates/header/navbar-logo-header.html +msgid "{platform_name} Home Page" +msgstr "{platform_name} 主页" + +#: lms/templates/header/header.html lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Options Menu" +msgstr "选项栏" + +#: lms/templates/header/header.html lms/templates/navigation/navigation.html +msgid "" +"{begin_strong}Warning:{end_strong} Your browser is not fully supported. We " +"strongly recommend using {chrome_link} or {ff_link}." +msgstr "" +"{begin_strong}警告:{end_strong}并不完全支持您的浏览器。我们强烈推荐使用 {chrome_link} 或 {ff_link}。" + +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/learner_dashboard/programs.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Programs" +msgstr "系列" + +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Journals" +msgstr "文章" + +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/header/user_dropdown.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Profile" +msgstr "用户资料" + +#: lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Discover New" +msgstr "发现课程" + +#. Translators: This is short for "System administration". +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Sysadmin" +msgstr "系统管理员" + +#: lms/templates/header/navbar-authenticated.html +#: lms/templates/navigation/navbar-authenticated.html +#: lms/templates/navigation/bootstrap/navbar-authenticated.html +#: lms/templates/shoppingcart/shopping_cart.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Shopping Cart" +msgstr "购物车" + +#: lms/templates/header/navbar-not-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Supplemental Links" +msgstr "补充内容链接" + +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "How it Works" +msgstr "运行机制" + +#: lms/templates/header/navbar-not-authenticated.html +#: lms/templates/navigation/navbar-not-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Schools" +msgstr "学校" + +#: lms/templates/header/user_dropdown.html +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "Resume your last course" +msgstr "继续上门课程学习" + +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Add Coupon Code" +msgstr "添加优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +msgid "Enter information about the coupon code below." +msgstr "在下面输入优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +msgid "Discount Percentage" +msgstr "折扣率" + +#: lms/templates/instructor/instructor_dashboard_2/add_coupon_modal.html +msgid "Add expiration date" +msgstr "添加过期时间" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Example Certificates" +msgstr "示例证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Generate example certificates for the course." +msgstr "为课程生成示例证书。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Generate Example Certificates" +msgstr "生成示例证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Status:" +msgstr "状态:" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Generating example {name} certificate" +msgstr "生成示例 {name} 证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Error generating example {name} certificate: {error}" +msgstr "生成证书{name}示例出错了:{error}" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "View {name} certificate" +msgstr "查看{name}证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Refresh Status" +msgstr "刷新状态" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Student-Generated Certificates" +msgstr "学生生成证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Disable Student-Generated Certificates" +msgstr "禁止学生生成证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Enable Student-Generated Certificates" +msgstr "允许学生发行的证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"You must successfully generate example certificates before you enable " +"student-generated certificates." +msgstr "前您必须成功地生成示例证书使学生证书。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Generate Certificates" +msgstr "生成证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"Course certificate generation requires an activated web certificate " +"configuration." +msgstr "课程证书生成操作要求有一个已激活的网络证书配置。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"When you are ready to generate certificates for your course, click Generate " +"Certificates. You do not need to do this if you have set the certificate " +"mode to on-demand generation." +msgstr "当您准备好为您的课程生成证书时,请单击“生成证书”。如果您已将证书模式设置为按需生成,则无需进行此操作。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Pending Tasks" +msgstr "待处理的任务" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "The status for any active tasks appears in a table below." +msgstr "下表显示所有活动任务的状态。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate Certificates" +msgstr "重新生成证书" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"To regenerate certificates for your course, choose the learners who will " +"receive regenerated certificates and click Regenerate Certificates." +msgstr "要重新生成您的课程证书,请选择将要接收重新生成证书的学员并单击“重新生成证书”。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Choose learner types for regeneration" +msgstr "选择要学习者类型以进行重新生成" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"Regenerate for learners who have already received certificates. ({count})" +msgstr "为已获得证书的学员重新生成。({count})" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate for learners who have not received certificates. ({count})" +msgstr "为未获得证书的学员重新生成。({count})" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate for learners with audit passing state. ({count})" +msgstr "给课程旁听及格的学员重新生成证书。({count})" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate for learners with audit not passing state. ({count})" +msgstr "给课程旁听不及格的学员重新生成证书。({count})" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Regenerate for learners in an error state. ({count})" +msgstr "为错误状态的学员重新生成。({count})" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Certificate Generation History" +msgstr "证书生成历史" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Task name" +msgstr "任务名称" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "SET CERTIFICATE EXCEPTIONS" +msgstr "设置证书特殊处理" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "" +"Set exceptions to generate certificates for learners who did not qualify for" +" a certificate but have been given an exception by the course team. After " +"you add learners to the exception list, click Generate Exception " +"Certificates below." +msgstr "为无资格获得证书但获得课程组例外批准的学员设置生成证书的特殊处理。在您将学员添加至特殊处理列表后,请单击以下“生成特例证书”。" + +#: lms/templates/instructor/instructor_dashboard_2/certificates.html +msgid "Invalidate Certificates" +msgstr "无效证书" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Enrollment Information" +msgstr "选课信息" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Number of enrollees (admins, staff, and students) by track" +msgstr "总参与人数(包括管理员、员工和学生)" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Basic Course Information" +msgstr "基本课程信息" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Name:" +msgstr "课程名称:" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Start Date:" +msgstr "课程开始日期:" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course End Date:" +msgstr "课程结束日期:" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No end date set" +msgstr "未设置结束日期" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course started?" +msgstr "课程开始了吗?" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Yes" +msgstr "是的" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "No" +msgstr "尚未" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Has the course ended?" +msgstr "课程结束了吗?" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Number of sections:" +msgstr "章节数量:" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Grade Cutoffs:" +msgstr "分数线:" + +#. Translators: git is a version-control system; see http://git-scm.com/about +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "" +"View detailed Git import logs for this course {link_start}by clicking " +"here{link_end}." +msgstr "查看本课程的详细Git导入日志,请点击{link_start}这里{link_end}。" + +#: lms/templates/instructor/instructor_dashboard_2/course_info.html +msgid "Course Warnings" +msgstr "课程警告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to display the grading configuration for the course. The grading " +"configuration is the breakdown of graded subsections of the course (such as " +"exams and problem sets), and can be changed on the 'Grading' page (under " +"'Settings') in Studio." +msgstr "" +"点击显示该课程的评分配置。所谓评分配置是指对课程评分子项的分解(可以分解为考试和回答问题两类),评分配置可以在职员界面的‘设置’项下个‘评分’进行调整。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Grading Configuration" +msgstr "评分标准设置" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Click to download a CSV of anonymized student IDs:" +msgstr "点击下载匿名学生的CSV(逗号分隔值的文本)编号清单:" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Get Student Anonymized IDs CSV" +msgstr "获取学生匿名ID CSV文件" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Reports" +msgstr "报告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"For large courses, generating some reports can take several hours. When " +"report generation is complete, a link that includes the date and time of " +"generation appears in the table below. These reports are generated in the " +"background, meaning it is OK to navigate away from this page while your " +"report is generating." +msgstr "" +"对于大型课程,生成报告可能需要几个小时。当报告生成完成后,在下面的表格里会出现一个包含生成日期和时间的链接。这些报告会在后台生成,也就是说在生成报告的时候您可以离开当前页面。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Please be patient and do not click these buttons multiple times. Clicking " +"these buttons multiple times will significantly slow the generation process." +msgstr "请耐心等待,不要多次单击这些按钮。多次点击这些按钮将大大减缓生成过程。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to generate a CSV file of all students enrolled in this course, along " +"with profile information such as email address and username:" +msgstr "点击来生成一个CSV文件,里面包含所有选此课的学生的用户信息,比如电子邮件及用户名:" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Download profile information as a CSV" +msgstr "以CSV格式下载用户资料" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to generate a CSV file that lists learners who can enroll in the " +"course but have not yet done so." +msgstr "点击生成一个CSV文件,列出有资格选修此课但还未选修的学生。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Download a CSV of learners who can enroll" +msgstr "下载一个列出有资格选修的学生名单的CSV文件" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to generate a CSV file of all proctored exam results in this course." +msgstr "点击导出包含这门课程所有考试结果的CSV格式的文件" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Proctored Exam Results Report" +msgstr "生成监考考试成绩报告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Click to generate a CSV file of survey results for this course." +msgstr "点击导出包含这门课程所有调查结果的 CSV 文件" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Survey Results Report" +msgstr "生成调查结果报告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Select a problem to generate a CSV file that lists all student answers to " +"the problem. You also select a section or chapter to include results of all " +"problems in that section or chapter." +msgstr "生成列有所有学员对某个题目的作答的CSV文件,您也可以选择章节以将所有题目作答结果包含在文件内。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "NOTE" +msgstr "注意" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The generated report is limited to {max_entries} responses. If you expect " +"more than {max_entries} responses, try generating the report on a chapter-" +"by-chapter, or problem-by-problem basis, or contact your site administrator " +"to increase the limit." +msgstr "" +"生成的报告包含不得超过{max_entries}个回答。如果您希望包含超过{max_entries}个回答,请以章或问题为单位来生成报告,或者联系您的网站管理员来修改限制数量。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Download a CSV of problem responses" +msgstr "下载包含问题答案的CSV文件" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Click to list certificates that are issued for this course:" +msgstr "单击列出为此课程颁发的证书:" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "View Certificates Issued" +msgstr "查看已颁发证书" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Download CSV of Certificates Issued" +msgstr "下载已颁发证书的 CSV" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"For smaller courses, click to list profile information for enrolled students" +" directly on this page:" +msgstr "对于学员规模较小的课程,可以直接在此页面点击查看选课学生的用户资料信息:" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "List enrolled students' profile information" +msgstr "列出选课学生个人资料信息" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"Click to generate a CSV grade report for all currently enrolled students." +msgstr "点击导出包含当前所有选修学生的成绩报告的CSV文件。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Grade Report" +msgstr "生成成绩报告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate Problem Grade Report" +msgstr "生成问题得分报告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Generate ORA Data Report" +msgstr "生成 ORA 数据报告" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "Reports Available for Download" +msgstr "报告已可供下载" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The reports listed below are available for download. A link to every report " +"remains available on this page, identified by the UTC date and time of " +"generation. Reports are not deleted, so you will always be able to access " +"previously generated reports from this page." +msgstr "" +"您可以下载以下列出的报告。每一份报告由生成的UTC日期和时间来标识,它们的链接将保留在本页面。报告不会被删除,所以您总是可以从本页访问以前生成的报告。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"The answer distribution report listed below is generated periodically by an " +"automated background process. The report is cumulative, so answers submitted" +" after the process starts are included in a subsequent report. The report is" +" generated several times per day." +msgstr "下面所列的作答分布报告由后台程序定期自动生成。报告是累计式的,后台处理程序启动后提交的作答将在后续的报告中体现。报告每天生成多次。" + +#: lms/templates/instructor/instructor_dashboard_2/data_download.html +msgid "" +"{strong_start}Note{strong_end}: To keep student data secure, you cannot save" +" or email these links for direct access. Copies of links expire within 5 " +"minutes." +msgstr "" +"{strong_start}注{strong_end}:为了确保学生数据的安全性,您无法保存或者用邮件发送这些有直接访问权的链接。复制的链接将在5分钟后失效。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enrollment Codes" +msgstr "选课码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Create one or more pre-paid course enrollment codes. Students can use these " +"codes to enroll in the course." +msgstr "创建一个或者多个课程的预付费选课码。学生可以使用这些选课码选修该课程。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Create Enrollment Codes" +msgstr "生成选课码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Cancel, restore, or mark an enrollment code as unused." +msgstr "取消、恢复或将一个选课码标记为未使用。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Change Enrollment Code Status" +msgstr "改变选课码状态" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download a .csv file of all enrollment codes for this course." +msgstr "下载一个包含本课所有选课码的.csv文件" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download All Enrollment Codes" +msgstr "下载所有选课码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download a .csv file of all unused enrollment codes for this course." +msgstr "下载一个包含本课中所有未使用选课码的.csv文件。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download Unused Enrollment Codes" +msgstr "下载未使用的选课码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download a .csv file of all used enrollment codes for this course." +msgstr "下载一个包含本课中所有使用过的选课码的.csv文件。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download Used Enrollment Codes" +msgstr "下载使用过的选课码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Course Price" +msgstr "课程价格" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Course price per seat: " +msgstr "每位学生需付的课程价格:" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Edit Price" +msgstr "编辑价格" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Course Seat Purchases" +msgstr "购买课程" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Total Credit Card Purchases: " +msgstr "所有的信用卡订单:" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Download a .csv file for all credit card purchases or for all invoices, " +"regardless of status." +msgstr "下载一个包含所有信用卡消费记录或所有收据的.csv文件。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download All Invoices" +msgstr "下载所有收据" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download All Credit Card Purchases" +msgstr "下载所有信用卡消费记录" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "To cancel or resubmit an invoice, enter the invoice number below." +msgstr "要取消或者重新提交一张收据,请在下面输入收据号码。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Invoice Number" +msgstr "收据单号" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Cancel Invoice" +msgstr "取消收据" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Resubmit Invoice" +msgstr "重新提交收据" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Create a .csv file that contains enrollment information for your course." +msgstr "创建一个包含您的课程的选修信息的.csv文件" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Create Enrollment Report" +msgstr "生成选课报告" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Create an HTML file that contains an executive summary for this course." +msgstr "创建一个包含这门课程执行摘要的HTML文件" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Create Executive Summary" +msgstr "创建执行摘要" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Available Reports" +msgstr "可用报告" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"The following reports are available for download. Reports are not deleted. A" +" link to every report remains available on this page, identified by the date" +" and time (in UTC) that the report was generated." +msgstr "您可以下载以下列出的报告。每一份报告由生成的日期和时间(UTC)来标识,它们的链接将保留在本页面。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"{strong_start}Note{strong_end}: To help protect learner data, links to these" +" reports that you save outside of this page or that you send or receive in " +"email expire after five minutes." +msgstr "" +"{strong_start}注{strong_end}:为了确保学生数据的安全性,您在本页外保存的报告链接或者您通过电子邮件发送或收到的报告链接将在5分钟后失效。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Coupon Code List" +msgstr "优惠券代码列表" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download a .csv file of all coupon codes for this course." +msgstr "下载一个包含所有这门课的优惠券代码的.csv文件。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Download Coupon Codes" +msgstr "下载优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Coupon Codes" +msgstr "优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Coupon (%)" +msgstr "优惠券(%)" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Number Redeemed" +msgstr "兑换数量" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "{code}" +msgstr "{code}" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "{description}" +msgstr "{description}" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "{discount}" +msgstr "{discount}" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The Invoice Number field cannot be empty." +msgstr "发票号码字段不能为空。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "No Expiration Date" +msgstr "无截止日期" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the company name." +msgstr "输入公司名字" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The company name cannot be a number." +msgstr "公司名不能为数字" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the company contact name." +msgstr "输入公司联系人名字" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The company contact name cannot be a number." +msgstr "公司联系人名字不能为数字" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the email address for the company contact." +msgstr "输入公司联系人的电子邮件地址。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter a valid email address." +msgstr "输入一个有效的电子邮件地址" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the recipient name." +msgstr "输入收件人名字" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The recipient name cannot be a number." +msgstr "收件人名字不能为数字" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the recipient email address." +msgstr "输入收件人电子邮件地址" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the billing address." +msgstr "输入账单地址" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the price per course seat." +msgstr "输入每个学位的价格" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Enter a numeric value for the price per course seat. Do not include currency" +" symbols." +msgstr "为每一个课程座席价格输入一个数值。请不要输入货币符号。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter the number of enrollment codes." +msgstr "输入选课码的数量" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter a numeric value for the number of enrollment codes." +msgstr "输入选课码的数量值。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Select a currency." +msgstr "选择一种货币。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "Enter a coupon code." +msgstr "输入一个优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "The discount percentage must be less than or equal to 100." +msgstr "折扣百分比必须小于或等于100。" + +#: lms/templates/instructor/instructor_dashboard_2/e-commerce.html +msgid "" +"Enter a numeric value for the discount amount. Do not include the percent " +"sign." +msgstr "输入一个折扣的数量值。请不要输入百分符号。" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Edit Coupon Code" +msgstr "编辑优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Edit Coupon Code Information" +msgstr "编辑优惠券代码信息" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Code" +msgstr "代码" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "example: A123DS" +msgstr "例如: A123DS" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Percentage Discount" +msgstr "折扣率" + +#: lms/templates/instructor/instructor_dashboard_2/edit_coupon_modal.html +msgid "Update Coupon Code" +msgstr "更新优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Executive Summary for {display_name}" +msgstr " {display_name} 执行摘要" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Report Creation Date" +msgstr "报告创建日期" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of Seats" +msgstr "座席数量" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of Enrollments" +msgstr "选课人数" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Gross Revenue Collected" +msgstr "进账总收入" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Gross Revenue Pending" +msgstr "待处理总收入" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of Enrollment Refunds" +msgstr "课程退款数" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Amount Refunded" +msgstr "退还金额" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Average Price per Seat" +msgstr "每个座席的平均价格" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Frequently Used Coupon Codes" +msgstr "经常使用的优惠券代码" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of seats purchased using coupon codes" +msgstr "使用优惠券代码购买的座席数" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Rank" +msgstr "排名" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Percent Discount" +msgstr "折扣率" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Times Used" +msgstr "已用时间" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Bulk and Single Seat Purchases" +msgstr "大批和单座采购" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of seats purchased individually" +msgstr "单独购买的座位数" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of seats purchased in bulk" +msgstr "批量购买的座位数" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Number of seats purchased with invoices" +msgstr "带发票的购买座位数" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Unused bulk purchase seats (revenue at risk)" +msgstr "未使用批量购买席位(收入有风险)" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Percentage of seats purchased individually" +msgstr "单座购买数量所占比例" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Percentage of seats purchased in bulk" +msgstr "批量购买座位数目所占比例" + +#: lms/templates/instructor/instructor_dashboard_2/executive_summary.html +msgid "Percentage of seats purchased with invoices" +msgstr "带发票购买座位数目所占比例" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Individual due date extensions" +msgstr "延长个别截止日期" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"In this section, you have the ability to grant extensions on specific units " +"to individual students. Please note that the latest date is always taken; " +"you cannot use this tool to make an assignment due earlier for a particular " +"student." +msgstr "在这个部分,您可以在特定单元里给特定的学生延长截止日期。请注意,您不能选择最近的一日;您不能使用这个工具让某个学生的作业截止日期提早。" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the {platform_name} email address or username of a student here:" +msgstr "在这可以查看{platform_name}的邮件地址以及学生的用户名:" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Student Email or Username" +msgstr "学生e-mail或者用户名" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Choose the graded unit:" +msgstr "请选择评分单元" + +#. Translators: "format_string" is the string MM/DD/YYYY HH:MM, as that is the +#. format the system requires. +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Specify the extension due date and time (in UTC; please specify " +"{format_string})." +msgstr "请输入新的截止日期和时间(UTC 时间,请以 {format_string} 格式输入)。" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Change due date for student" +msgstr "修改学生的截止日期" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Viewing granted extensions" +msgstr "查看已授权的宽限期" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Here you can see what extensions have been granted on particular units or " +"for a particular student." +msgstr "这里您可以查看已经授权给特别学生或者特殊单元的宽限期" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Choose a graded unit and click the button to obtain a list of all students " +"who have extensions for the given unit." +msgstr "请选择一个评分单元,单击获得当前单元中获得宽限期的学生列表" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List all students with due date extensions" +msgstr "列出所有获得宽限期的学生" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Specify a student to see all of that student's extensions." +msgstr "指定一个学生来查看该学生获得的所有宽限期。" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "List date extensions for student" +msgstr "为学生列出宽限期" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Resetting extensions" +msgstr "重设宽限期" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "" +"Resetting a problem's due date rescinds a due date extension for a student " +"on a particular unit. This will revert the due date for the student back to " +"the problem's original due date." +msgstr "重设一个问题的截止日期,将取消学生在指定单元上的宽限期,使学生的截止日期还原为问题的原始截止日期。" + +#: lms/templates/instructor/instructor_dashboard_2/extensions.html +msgid "Reset due date for student" +msgstr "重置学生的截止日期" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Generate Registration Code Modal" +msgstr "生成形态上的注册码" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "* Required Information" +msgstr "* 必填信息" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The organization that purchased enrollments in the course" +msgstr "购买了本课程的机构" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +#: lms/templates/shoppingcart/billing_details.html +msgid "Organization Contact" +msgstr "机构联系人" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Organization Contact Name" +msgstr "机构联系人姓名" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The primary contact at the organization" +msgstr "机构中的主要联系人" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Invoice Recipient" +msgstr "收据接受者" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The contact who should receive the invoice" +msgstr "接收收据的联系人信息" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Organization Billing Address" +msgstr "机构账单地址" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Address Line 1" +msgstr "地址行1" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Address Line 2" +msgstr "地址行2" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Address Line 3" +msgstr "地址行3" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "State/Province" +msgstr "州/省" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Zip" +msgstr "邮编" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Unit Price" +msgstr "单价" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The price per enrollment purchased" +msgstr "单人选课价格" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Number of Enrollment Codes" +msgstr "选课码数量" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "The total number of enrollment codes to create" +msgstr "待创建的选课码总数" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Course Team Internal Reference" +msgstr "课程团队内部参考" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Internal reference information for the sale" +msgstr "内部销售参考信息" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Customer Reference" +msgstr "客户参考" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Customer's purchase order or other reference information" +msgstr "客户的订单或其他参考信息" + +#: lms/templates/instructor/instructor_dashboard_2/generate_registarion_codes_modal.html +msgid "Send me a copy of the invoice" +msgstr "请给我一张收据复印件" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_analytics.html +msgid "" +"For analytics about your course, go to " +"{link_start}{analytics_dashboard_name}{link_end}." +msgstr "关于您的课程的分析数据,请进入 {link_start}{analytics_dashboard_name}{link_end}。" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "Instructor Dashboard" +msgstr "教师面板" + +#: lms/templates/instructor/instructor_dashboard_2/instructor_dashboard_2.html +msgid "View Course in Studio" +msgstr "在Studio中查看课程" + +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +msgid "Enrollment Code Status" +msgstr "选课码状态" + +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +msgid "Change the status of an enrollment code." +msgstr "改变选课码的状态" + +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +#: lms/templates/shoppingcart/receipt.html +msgid "Enrollment Code" +msgstr "选课码" + +#: lms/templates/instructor/instructor_dashboard_2/invalidate_registration_code_modal.html +msgid "Find Enrollment Code" +msgstr "搜索选课码" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter email addresses and/or usernames separated by new lines or commas." +msgstr "输入电子邮箱地址与/或 用户名,以逗号分割或重启一行。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"You will not get notification for emails that bounce, so please double-check" +" spelling." +msgstr "对该类问题您不会受到提示邮件,因此请仔细检查,确保拼写无误。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Role of the users being enrolled." +msgstr "用户报名的角色。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Enter the reason why the students are to be manually enrolled or unenrolled." +msgstr "输入学生需被手动加入选课或手动取消选课的原因。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"This cannot be left blank and will be recorded and presented in Enrollment " +"Reports." +msgstr "此处不能为空,将被记录并呈现在选课报告中。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Therefore, please give enough detail to account for this action." +msgstr "因此,请提供足够的信息来解释这个操作。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +#: lms/templates/support/feature_based_enrollments.html +msgid "Reason" +msgstr "原因" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Register/Enroll Students" +msgstr "注册/录取学生" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"To register and enroll a list of users in this course, choose a CSV file " +"that contains the following columns in this exact order: email, username, " +"name, and country. Please include one student per row and do not include any" +" headers, footers, or blank lines." +msgstr "" +"如果想在这门课程中批量注册并录取学生,请选择一个CSV文件,包含E-" +"mail、用户名、姓名和国家(严格按照此顺序)。每行包含一个学生,请不要添加任何页眉、页脚以及空行。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Upload a CSV for bulk enrollment" +msgstr "为批量注册上传一个CSV文件" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Upload CSV" +msgstr "上传CSV" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Batch Beta Tester Addition" +msgstr "批量添加Beta测试员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Note: Users must have an activated {platform_name} account before they can " +"be enrolled as beta testers." +msgstr "注:用户必须首先拥有已激活的{platform_name}账号方可成为Beta测试员。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"If this option is {em_start}checked{em_end}, users who have not enrolled in " +"your course will be automatically enrolled." +msgstr "如果{em_start}勾选{em_end}此项,那么已报名您课程的用户将会自动报名。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Checking this box has no effect if 'Remove beta testers' is selected." +msgstr "如果“删除Beta测试员”被选中,勾选本项并无效果。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add beta testers" +msgstr "添加beta测试人员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Remove beta testers" +msgstr "删除beta测试人员" + +#. Translators: an "Administration List" is a list, such as Course Staff, that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Course Team Management" +msgstr "课程团队管理" + +#. Translators: an "Administrator Group" is a group, such as Course Staff, +#. that +#. users can be added to. +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Select a course team role:" +msgstr "选择一个课程团队角色:" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Getting available lists..." +msgstr "正在获取可用列表……" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Staff cannot modify these lists. To manage course team membership, a course " +"Admin must give you the Admin role to add Staff or Beta Testers, or the " +"Discussion Admin role to add discussion moderators and TAs." +msgstr "" +"工作人员无法修改这些列表。若想管理课程团队成员,课程管理员必须授予您管理员角色来添加工作人员和Beta测试员,或者给予您论坛管理员角色来添加讨论区版主和助教。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course team members with the Staff role help you manage your course. Staff " +"can enroll and unenroll learners, as well as modify their grades and access " +"all course data. Staff also have access to your course in Studio and " +"Insights. You can only give course team roles to enrolled users." +msgstr "" +"拥有工作人员权限的课程团队成员帮助您管理您的课程。工作人员可以帮您录取或移除学生,修改成绩和访问所有课程数据。工作人员也可以在Studio和Insights中访问您的课程。您只能授予已选课的用户课程团队成员职责。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Staff" +msgstr "添加工作人员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Admin" +msgstr "管理员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Course team members with the Admin role help you manage your course. They " +"can do all of the tasks that Staff can do, and can also add and remove the " +"Staff and Admin roles, discussion moderation roles, and the beta tester role" +" to manage course team membership. You can only give course team roles to " +"enrolled users." +msgstr "" +"拥有管理员权限的课程团队成员帮助您管理您的课程。他们能做所有工作人员可以做的任务,并且添加和移除工作人员、管理员和论坛版主。您只能将课程团队成员职责授予已选课的用户。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Admin" +msgstr "添加管理员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Beta Testers" +msgstr "Beta测试者" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Beta Testers can see course content before other learners. They can make " +"sure that the content works, but have no additional privileges. You can only" +" give course team roles to enrolled users." +msgstr "Beta测试者可以比其他学生先看到课程内容。他们可以确保内容正常运行,但没有额外特权。您只能将课程团队角色授予已选课的用户。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Beta Tester" +msgstr "添加beta测试人员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Admins" +msgstr "论坛管理员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion Admins can edit or delete any post, clear misuse flags, close and" +" re-open threads, endorse responses, and see posts from all groups. Their " +"posts are marked as 'staff'. They can also add and remove the discussion " +"moderation roles to manage course team membership. Only enrolled users can " +"be added as Discussion Admins." +msgstr "" +"讨论区管理员可编辑或删除任何帖子、清除误用标记、关闭并重开帖子、赞同回复、并查看所有分组的帖子。他们的帖子带有“员工”标记,他们也可以添加并移除讨论区版主角色,以此管理课程团队的成员。仅已报名用户可被设置为讨论区管理员。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Discussion Admin" +msgstr "添加论坛管理员" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Discussion Moderators" +msgstr "版主" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Discussion Moderators can edit or delete any post, clear misuse flags, close" +" and re-open threads, endorse responses, and see posts from all groups. " +"Their posts are marked as 'staff'. They cannot manage course team membership" +" by adding or removing discussion moderation roles. Only enrolled users can " +"be added as Discussion Moderators." +msgstr "" +"讨论区版主可编辑或删除任何帖子、清除误用标记、关闭并重开帖子、赞同回复、并查看所有分组的帖子,他们的帖子都被标记为“工作人员”。他们不能够通过添加或删除讨论区版主角色来管理课程团队成员。仅已报名学员可被设置为讨论区版主。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Moderator" +msgstr "添加版主" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Group Community TA" +msgstr "分组社区助教" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Group Community TAs are members of the community who help course teams " +"moderate discussions. Group Community TAs see only posts by learners in " +"their assigned group. They can edit or delete posts, clear flags, close and " +"re-open threads, and endorse responses, but only for posts by learners in " +"their group. Their posts are marked as 'Community TA'. Only enrolled " +"learners can be added as Group Community TAs." +msgstr "" +"分组社区助教帮助社区中课程团队维护讨论。分组社区助教只能查看他们所分配组的学员的帖子。他们可对自己分组中学员所发的帖子,进行编辑或删除帖子、清除标记、关闭并重新打开主题、批准回复。他们的帖子被标记为“社区助教”,仅已报名学员可被设为分组社区助教。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Group Community TA" +msgstr "添加分组社区助教" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"Community TAs are members of the community who help course teams moderate " +"discussions. They can see posts by learners in their assigned cohort or " +"enrollment track, and can edit or delete posts, clear flags, close or re-" +"open threads, and endorse responses. Their posts are marked as 'Community " +"TA'. Only enrolled learners can be added as Community TAs." +msgstr "" +"分组社区助教帮助社区中课程团队管理讨论。分组社区助教只能查看他们所分配组的学员的帖子。他们可对自己分组中学员所发的帖子,进行编辑或删除帖子、清除标记、关闭并重新打开主题、批准回复。他们的帖子被标记为“社区助教”,仅已报名学员可被设为分组社区助教。" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add Community TA" +msgstr "添加社区助教" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "CCX Coaches" +msgstr "CCX指导" + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "" +"CCX Coaches are able to create their own Custom Courses based on this " +"course, which they can use to provide personalized instruction to their own " +"students based in this course material." +msgstr "CCX指导可以根据本课程创建自己的定制课程,利用本课程的资料给自己的学生提供个性化指导。 " + +#: lms/templates/instructor/instructor_dashboard_2/membership.html +msgid "Add CCX Coach" +msgstr "增加CCX指导" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There is no data available to display at this time." +msgstr "目前没有可用的数据" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Use Reload Graphs to refresh the graphs." +msgstr "使用重新加载图片来刷新" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Reload Graphs" +msgstr "重新载入图片" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Subsection Data" +msgstr "小节数据" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Each bar shows the number of students that opened the subsection." +msgstr "每个条形图显示了打开小节的学生数量" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"You can click on any of the bars to list the students that opened the " +"subsection." +msgstr "您可以点击任一栏目去查看打开小节的学生名单" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "You can also download this data as a CSV file." +msgstr "您也可以以CSV文件下载这些数据" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Subsection Data for all Subsections as a CSV" +msgstr "所有的小节数据以CSV文件下载" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution Data" +msgstr "成绩分布数据" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Each bar shows the grade distribution for that problem." +msgstr "每个条形图显示该问题的成绩分布区间" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "" +"You can click on any of the bars to list the students that attempted the " +"problem, along with the grades they received." +msgstr "您可以点击任一每个条形图去查看所有尝试回答问题的学生名单以及他们获得的成绩" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Problem Data for all Problems as a CSV" +msgstr "以CSV文件下载所有问题数据" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Grade Distribution per Problem" +msgstr "每个问题的成绩分布" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Opened as a CSV" +msgstr "以CSV格式下载学生开放数据" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "Download Student Grades as a CSV" +msgstr "以CSV格式下载被评分的学生信息" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "This is a partial list, to view all students download as a csv." +msgstr "这是一个部分列表,查看所有以CSV格式下载的学生信息" + +#: lms/templates/instructor/instructor_dashboard_2/metrics.html +msgid "There are no problems in this section." +msgstr "本章没有问题" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send to:" +msgstr "发至:" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Myself" +msgstr "我自己" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Staff and Administrators" +msgstr "工作人员和管理员" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "All Learners" +msgstr "所有学习者" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Cohort: " +msgstr "群组:" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Learners not explicitly assigned to a cohort)" +msgstr "(没有被分到特定群组的学生)" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Learners in the {track_name} Track" +msgstr "在{track_name}里的学员跟踪" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Subject: " +msgstr "主题:" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "(Maximum 128 characters)" +msgstr "(最多128个字符)" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Message:" +msgstr "消息:" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"We recommend sending learners no more than one email message per week. " +"Before you send your email, review the text carefully and send it to " +"yourself first, so that you can preview the formatting and make sure " +"embedded images and links work correctly." +msgstr "我们建议您给学生发送邮件不多于一周一封。在您发送之前,仔细地检查文本,并先发送给自己,预览邮件格式,确保嵌入的图片和链接显示或运行正常。" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "CAUTION!" +msgstr "注意!" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"When you select Send Email, your email message is added to the queue for " +"sending, and cannot be cancelled." +msgstr "当您选择“发送邮件”,您的邮件将被加入发送队列,任务无法被取消。" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Send Email" +msgstr "发送邮件" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"Email actions run in the background. The status for any active tasks - " +"including email tasks - appears in a table below." +msgstr "电子邮件操作在后台执行。任何当前正在执行的任务状态 - 包括电子邮件任务 - 都在下表中列出。" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Email Task History" +msgstr "邮件任务历史" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "To see the content of previously sent emails, click this button:" +msgstr "查看之前发送的邮件内容,点击这个按钮:" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Sent Email History" +msgstr "显示已发送邮件历史" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "To read a sent email message, click its subject." +msgstr "阅读已发送的邮件,点击它的主题。" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "" +"To see the status for all email tasks submitted for this course, click this " +"button:" +msgstr "查看这个课程中所有提交的邮件任务,点击这个按钮:" + +#: lms/templates/instructor/instructor_dashboard_2/send_email.html +msgid "Show Email Task History" +msgstr "显示邮件任务历史" + +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Set Course Mode Price" +msgstr "设置课程模式价格" + +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Please enter Course Mode detail below" +msgstr "请在下面输入课程模式详情" + +#: lms/templates/instructor/instructor_dashboard_2/set_course_mode_price_modal.html +msgid "Set Price" +msgstr "设置价格" + +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Allowance Section" +msgstr "默认章节" + +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Student Special Exam Attempts" +msgstr "学生特殊考试尝试" + +#: lms/templates/instructor/instructor_dashboard_2/special_exams.html +msgid "Review Dashboard" +msgstr "查看面板" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View gradebook for enrolled learners" +msgstr "查看注册学员成绩单" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Note: This feature is available only to courses with a small number of " +"enrolled learners." +msgstr "注意:此功能仅在少学员报名的课程中可用。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View Gradebook" +msgstr "查看成绩单" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View a specific learner's enrollment status" +msgstr "查看特定员的选课状态" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Learner's {platform_name} email address or username *" +msgstr "学员的{platform_name}邮箱地址或用户名*" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Learner email address or username" +msgstr "学员邮箱地址或用户名" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View Enrollment Status" +msgstr "查课选课状态" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View a specific learner's grades and progress" +msgstr "阅览个别学生的评分和进度" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Learner's {platform_name} email address or username" +msgstr "学员的{platform_name}邮箱地址或用户名" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "View Progress Page" +msgstr "阅览学生进度页面" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Adjust a learner's grade for a specific problem" +msgstr "调整学员在特定题目的得分" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Location of problem in course" +msgstr "题目在课程中的位置" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Example" +msgstr "例子" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem location" +msgstr "问题所在位置" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Attempts" +msgstr "尝试次数" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Allow a learner who has used up all attempts to work on the problem again." +msgstr "允许使用完所有尝试次数的学员继续完成此题目。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Reset Attempts to Zero" +msgstr "重置学生的尝试次数为零" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore" +msgstr "重新评分" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"For the specified problem, rescore the learner's responses. The 'Rescore " +"Only If Score Improves' option updates the learner's score only if it " +"improves in the learner's favor." +msgstr "调整学员在特定题目的得分,“以高分为准”选项只会在学员得分提高时更改成最高的得分。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Score Override" +msgstr "覆盖分数" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "For the specified problem, override the learner's score." +msgstr "重新评分学员在某个题目的分数。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"New score for problem, out of the total points available for the problem" +msgstr "题目的新分数,不可超过总分。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Override Learner's Score" +msgstr "覆盖学员分数" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Problem History" +msgstr "问题记录" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"For the specified problem, permanently and completely delete the learner's " +"answers and scores from the database." +msgstr "将学员某一问题的答案和得分从数据库中永久且完全地删除。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Task Status" +msgstr "任务状态" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Show the status for the rescoring tasks that you submitted for this learner " +"and problem." +msgstr "显示您提交的此学员和题目的调整分数任务状态。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show Task Status" +msgstr "显示任务状态" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Adjust a learner's entrance exam results" +msgstr "调整一位学员入学考试结果" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Allow the learner to take the exam again." +msgstr "允许学员重考。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Allow Skip" +msgstr "允许跳过" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Waive the requirement for the learner to take the exam." +msgstr "移除学员考试的要求。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Let Learner Skip Entrance Exam" +msgstr "允许学员跳过入学考试" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescore any responses that have been submitted. The 'Rescore All Problems " +"Only If Score Improves' option updates the learner's scores only if it " +"improves in the learner's favor." +msgstr "调整所有已提交的回答。“调整至更高分”选项只会在学员得分提高时更改显示分数。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore All Problems" +msgstr "为所有问题重新打分" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore All Problems Only If Score Improves" +msgstr "如果评分提高, 重新打分所有问题" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Entrance Exam History" +msgstr "入学考试历史记录" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"For the entire entrance exam, permanently and completely delete the " +"learner's answers and scores from the database." +msgstr "将学员整个入学考试从数据库中永久且完全地删除。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Show the status for the rescoring tasks that you submitted for this learner " +"and entrance exam." +msgstr "显示您提交的此学员和入学考试的调整分数任务状态。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Adjust all enrolled learners' grades for a specific problem" +msgstr "调整所有已报名学员在特定题目的得分" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Allows all learners to work on the problem again." +msgstr "允许所有学生再次回答问题" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "" +"Rescore submitted responses. The 'Rescore Only If Scores Improve' option " +"updates a learner's score only if it improves in the learner's favor." +msgstr "调整已提交的题目回答得分,“调整至更高分”选项只会在学员得分提高时更改成最高的得分。" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore All Learners' Submissions" +msgstr "对所有学生的提交记录重新评分" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Rescore Only If Scores Improve" +msgstr "仅提高分数时重新评分" + +#: lms/templates/instructor/instructor_dashboard_2/student_admin.html +msgid "Show the status for the tasks that you submitted for this problem." +msgstr "显示此题目您已提交的任务状态。" + +#: lms/templates/learner_dashboard/_dashboard_navigation_courses.html +#: themes/edx.org/lms/templates/dashboard.html +msgid "My Courses" +msgstr "我的课程" + +#: lms/templates/learner_dashboard/_dashboard_navigation_journals.html +msgid "My Journals" +msgstr "我的文章" + +#: lms/templates/learner_dashboard/program_details.html +msgid "Program Details" +msgstr "系列详情" + +#: lms/templates/learner_dashboard/text-me-fragment.html +msgid "Get the {platform_name} Mobile App!" +msgstr "下载{platform_name}移动App! " + +#: lms/templates/learner_dashboard/text-me-fragment.html +msgid "We'll send you a one time SMS with a link to download the app." +msgstr "我们会给您发送短信,请点击短信中链接下载App。" + +#: lms/templates/learner_dashboard/text-me-fragment.html +msgid "Mobile phone number" +msgstr "电话号码" + +#: lms/templates/learner_dashboard/text-me-fragment.html +msgid "Send me a text with the link" +msgstr "发送带链接的短信给我" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Change Preferred Language" +msgstr "更改常用语言" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Please choose your preferred language" +msgstr "请选择您偏好的语言" + +#: lms/templates/modal/_modal-settings-language.html +msgid "Save Language Settings" +msgstr "保存语言设置" + +#: lms/templates/modal/_modal-settings-language.html +msgid "" +"Don't see your preferred language? {link_start}Volunteer to become a " +"translator!{link_end}" +msgstr "没找到您的常用语言?{link_start}欢迎成为一个翻译志愿者!{link_end}" + +#: lms/templates/navigation/navbar-not-authenticated.html +#: membership/templates/membership/index.html +msgid "Explore Courses" +msgstr "发现课程" + +#: lms/templates/navigation/navigation.html +msgid "Global" +msgstr "全球" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"\n" +"{p_tag}You currently do not have any peer grading to do. In order to have peer grading to do:\n" +"{ul_tag}\n" +"{li_tag}You need to have submitted a response to a peer grading problem.{end_li_tag}\n" +"{li_tag}The course team needs to score the essays that are used to help you better understand the grading\n" +"criteria.{end_li_tag}\n" +"{li_tag}There must be submissions that are waiting for grading.{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" +msgstr "" +"\n" +"{p_tag}您目前没有同伴互评要做。若要参与互评:\n" +"{ul_tag}\n" +"{li_tag}您需要回复一个同伴互评问题。{end_li_tag}\n" +"{li_tag}课程团队需要提供一些打分样本以帮助您更好的理解评分标准。{end_li_tag}\n" +"{li_tag}必须存在带评分的作业。{end_li_tag}\n" +"{end_ul_tag}\n" +"{end_p_tag}\n" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/peer_grading/peer_grading_closed.html +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Peer Grading" +msgstr "同伴互评" + +#: lms/templates/peer_grading/peer_grading.html +msgid "" +"Here is a list of problems that need to be peer graded for this course." +msgstr "这是本课程中需要同伴互评的问题列表" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Problem Name" +msgstr "问题名称" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Due date" +msgstr "截止日期" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Graded" +msgstr "已评分" + +#: lms/templates/peer_grading/peer_grading.html +#: lms/templates/shoppingcart/receipt.html +msgid "Available" +msgstr "可评价" + +#: lms/templates/peer_grading/peer_grading.html +msgid "Required" +msgstr "必要的" + +#: lms/templates/peer_grading/peer_grading.html +msgid "No due date" +msgstr "没有截止日期" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "" +"The due date has passed, and peer grading for this problem is closed at this" +" time." +msgstr "截止日期已过,这个问题的同伴互评现已关闭。" + +#: lms/templates/peer_grading/peer_grading_closed.html +msgid "The due date has passed, and peer grading is closed at this time." +msgstr "截止日期已过,同伴互评现已关闭。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to Grade" +msgstr "学习如何评分" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Hide Question" +msgstr "隐藏问题" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Student Response" +msgstr "学生回复" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Written Feedback" +msgstr "书面反馈意见" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Please include some written feedback as well." +msgstr "请也给出一些书面反馈。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"This submission has explicit, offensive, or (I suspect) plagiarized content." +" " +msgstr "这个答复中包含淫秽的、有攻击性的或者(我猜测)抄袭的内容。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "How did I do?" +msgstr "我应该怎么做?" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Ready to grade!" +msgstr "已经准备好进行评分!" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You have finished learning to grade, which means that you are now ready to " +"start grading." +msgstr "您已完成了评分学习,这意味着现在您可以开始评分了。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start Grading!" +msgstr "开始评分!" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Learning to grade" +msgstr "学习如何进行评分" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "You have not yet finished learning to grade this problem." +msgstr "您尚未完成学习如何对此问题进行评分。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You will now be shown a series of instructor-scored essays, and will be " +"asked to score them yourself." +msgstr "一系列由导师打分的文章将展示给您,您将被要求自行给它们打分。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"Once you can score the essays similarly to an instructor, you will be ready " +"to grade your peers." +msgstr "一旦您对这些文章的判分尺度接近主讲教师的水准,您就可以给同学评分了。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Start learning to grade" +msgstr "开始学习如何进行评分" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Are you sure that you want to flag this submission?" +msgstr "您确定要标记这部分提交的内容吗?" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "" +"You are about to flag a submission. You should only flag a submission that " +"contains explicit, offensive, or (suspected) plagiarized content. If the " +"submission is not addressed to the question or is incorrect, you should give" +" it a score of zero and accompanying feedback instead of flagging it." +msgstr "" +"您即将标记一个意见。只有您发现内容中包括了淫秽的、有攻击性的或者(您猜测)抄袭的内容才标记一个意见。如果答案与问题不合或者不正确,您应该判为零分并给出反馈意见,而不是标记它。" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Remove Flag" +msgstr "取消举报" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Keep Flag" +msgstr "维持举报" + +#: lms/templates/peer_grading/peer_grading_problem.html +msgid "Go Back" +msgstr "返回" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "" +"{start_strong}{application_name}{end_strong} would like to access your data " +"with the following permissions:" +msgstr "{start_strong}{application_name}{end_strong} 想要凭借以下权限访问您的数据:" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read your user ID" +msgstr "查看您的用户ID" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read your user profile" +msgstr "查看您的用户资料" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read your email address" +msgstr "查看您的邮箱地址" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read the list of courses in which you are a staff member." +msgstr "查看您是工作人员的课程列表" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Read the list of courses in which you are an instructor." +msgstr "查看您是教师的课程列表" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "To see if you are a global staff user" +msgstr "查看您是否是全球工作人员" + +#: lms/templates/provider/authorize.html +#: themes/elitemba-theme/lms/templates/provider/authorize.html +msgid "Manage your data: {permission}" +msgstr "管理您的数据:{permission}" + +#: lms/templates/registration/account_activation_sidebar_notice.html +msgid "Account Activation Info" +msgstr "账号激活信息" + +#: lms/templates/registration/password_reset_complete.html +msgid "Your Password Reset is Complete" +msgstr "您的密码重置已完成" + +#: lms/templates/registration/password_reset_complete.html +msgid "Password Reset Complete" +msgstr "密码重置已完成" + +#: lms/templates/registration/password_reset_complete.html +msgid "" +"Your password has been reset. {start_link}Sign-in to your account.{end_link}" +msgstr "您的密码已重置。{start_link}登录您的账号{end_link}。" + +#: lms/templates/registration/password_reset_confirm.html +#: themes/elitemba-theme/lms/templates/registration/password_reset_confirm.html +msgid "Reset Your {platform_name} Password" +msgstr "重置您的 {platform_name} 密码" + +#: lms/templates/registration/password_reset_confirm.html +#: themes/elitemba-theme/lms/templates/registration/password_reset_confirm.html +msgid "Invalid Password Reset Link" +msgstr "无效的密码重置链接" + +#: lms/templates/registration/password_reset_done.html +msgid "Password reset successful" +msgstr "密码重设成功" + +#: lms/templates/registration/password_reset_done.html +msgid "" +"We've e-mailed you instructions for setting your password to the e-mail " +"address you submitted. You should be receiving it shortly." +msgstr "我们已经给您的邮箱发送邮件,您应该能够很快收到,请按照邮件里的指示设置密码。" + +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Billing Details" +msgstr "账单详情" + +#: lms/templates/shoppingcart/billing_details.html +msgid "" +"You can proceed to payment at any point in time. Any additional information " +"you provide will be included in your receipt." +msgstr "您可以在任何时间前往支付页面。您提供的任何额外信息将收录在您的收据里。" + +#: lms/templates/shoppingcart/billing_details.html +msgid "Purchasing Organizational Details" +msgstr "采购机构的详细信息" + +#: lms/templates/shoppingcart/billing_details.html +msgid "Purchasing organization" +msgstr "采购机构" + +#: lms/templates/shoppingcart/billing_details.html +msgid "Purchase order number (if any)" +msgstr "订单号(如果存在)" + +#: lms/templates/shoppingcart/billing_details.html +msgid "email@example.com" +msgstr "email@example.com" + +#: lms/templates/shoppingcart/billing_details.html +msgid "Additional Receipt Recipient" +msgstr "额外收据收件人" + +#: lms/templates/shoppingcart/billing_details.html +msgid "" +"If no additional billing details are populated the payment confirmation will" +" be sent to the user making the purchase." +msgstr "如果没有额外的账单信息,支付确认信息将发送给下订单的用户。 " + +#: lms/templates/shoppingcart/billing_details.html +msgid "Payment processing occurs on a separate secure site." +msgstr "支付过程在另一个安全的网站上完成。" + +#: lms/templates/shoppingcart/billing_details.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Your Shopping cart is currently empty." +msgstr "您的购物车目前是空的。" + +#: lms/templates/shoppingcart/cybersource_form.html +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "Payment" +msgstr "付款" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Reports" +msgstr "下载CSV报告" + +#: lms/templates/shoppingcart/download_report.html +msgid "Download CSV Data" +msgstr "下载CSV数据" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"There was an error in your date input. It should be formatted as YYYY-MM-DD" +msgstr "您输入的日期有误。其格式应为YYYY-MM-DD" + +#: lms/templates/shoppingcart/download_report.html +msgid "These reports are delimited by start and end dates." +msgstr "这些报告按开始和结束日期分隔。" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Date: " +msgstr "开始日期:" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Date: " +msgstr "结束日期:" + +#: lms/templates/shoppingcart/download_report.html +msgid "" +"These reports are delimited alphabetically by university name. i.e., " +"generating a report with 'Start Letter' A and 'End Letter' C will generate " +"reports for all universities starting with A, B, and C." +msgstr "" +"这些报告是根据大学名字的字母划分的。例如,要生成一份“开始字母”为 A、“结束字母”为 C 的报告,就会生成包括所有名字以 A、B、C " +"开头的大学的报告。" + +#: lms/templates/shoppingcart/download_report.html +msgid "Start Letter: " +msgstr "开始字母:" + +#: lms/templates/shoppingcart/download_report.html +msgid "End Letter: " +msgstr "结束字母:" + +#: lms/templates/shoppingcart/error.html +msgid "Payment Error" +msgstr "支付错误" + +#: lms/templates/shoppingcart/error.html +msgid "There was an error processing your order!" +msgstr "处理您的订单时出现了一个错误!" + +#: lms/templates/shoppingcart/receipt.html +msgid "Thank you for your purchase!" +msgstr "感谢惠顾!" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "View Dashboard" +msgstr "查看课程面板" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"You have successfully been enrolled for {course_names}. The following " +"receipt has been emailed to {receipient_emails}" +msgstr "您已经成功注册了{course_names}。以下发票已电邮给{receipient_emails}" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"You have successfully purchased {number} course registration code for" +" {course_names}." +msgid_plural "" +"You have successfully purchased {number} course registration codes " +"for {course_names}." +msgstr[0] "您已成功购买了 {course_names} 的 {number} 个选课码。" + +#: lms/templates/shoppingcart/receipt.html +msgid "The following receipt has been emailed to {receipient_emails}" +msgstr "以下收据已通过电子邮件发送至{receipient_emails}。" + +#: lms/templates/shoppingcart/receipt.html +msgid "" +"Please send each professional one of these unique registration codes to " +"enroll into the course. The confirmation/receipt email you will receive has " +"an example email template with directions for the individuals enrolling." +msgstr "请将每个专业的其中一个独特的注册码注册到课程。确认/收据邮件您会收到一个电子邮件模板示例说明个人报名。" + +#: lms/templates/shoppingcart/receipt.html +msgid "Enrollment Link" +msgstr "选课链接" + +#: lms/templates/shoppingcart/receipt.html +msgid "Used" +msgstr "已使用" + +#: lms/templates/shoppingcart/receipt.html +msgid "Invalid" +msgstr "无效的" + +#: lms/templates/shoppingcart/receipt.html +msgid "Date of purchase" +msgstr "购买日期" + +#: lms/templates/shoppingcart/receipt.html +msgid "Print Receipt" +msgstr "打印单据" + +#: lms/templates/shoppingcart/receipt.html +msgid "Billed To Details" +msgstr "账单详情" + +#: lms/templates/shoppingcart/receipt.html +msgid "N/A" +msgstr "不适用" + +#: lms/templates/shoppingcart/receipt.html +msgid "Purchase Order Number" +msgstr "订单号" + +#: lms/templates/shoppingcart/receipt.html +msgid "Company Contact Name" +msgstr "公司联系人姓名" + +#: lms/templates/shoppingcart/receipt.html +msgid "Company Contact Email" +msgstr "公司联系邮箱" + +#: lms/templates/shoppingcart/receipt.html +msgid "Recipient Name" +msgstr "收件人姓名" + +#: lms/templates/shoppingcart/receipt.html +msgid "Recipient Email" +msgstr "收件人邮箱" + +#: lms/templates/shoppingcart/receipt.html +msgid "Card Type" +msgstr "卡类型" + +#: lms/templates/shoppingcart/receipt.html +msgid "Credit Card Number" +msgstr "信用卡号" + +#: lms/templates/shoppingcart/receipt.html +msgid "Address 1" +msgstr "地址1" + +#: lms/templates/shoppingcart/receipt.html +msgid "Address 2" +msgstr "地址2" + +#: lms/templates/shoppingcart/receipt.html +msgid "State" +msgstr "状态" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Registration for:" +msgstr "注册:" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Price per student:" +msgstr "每位学生的费用:" + +#: lms/templates/shoppingcart/receipt.html +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Discount Applied:" +msgstr "已使用的折扣:" + +#: lms/templates/shoppingcart/receipt.html +msgid "Students" +msgstr "学生" + +#. Translators: Please keep the "" and "" tags around your +#. translation of the word "this" in your translation. +#: lms/templates/shoppingcart/receipt.html +msgid "Note: items with strikethough like this have been refunded." +msgstr "提示:带删除线的项目如this 已经退款" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "Confirm Enrollment" +msgstr "确认选课" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "{site_name} - Confirm Enrollment" +msgstr "{site_name}—确认选课" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "{course_number} {course_title} Cover Image" +msgstr "{course_number} {course_title}封面图片" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "Confirm your enrollment for: {span_start}course dates{span_end}" +msgstr "确认您的选课:{span_start}课程日期{span_end}" + +#: lms/templates/shoppingcart/registration_code_receipt.html +msgid "{course_name}" +msgstr "{course_name}" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "" +"You've clicked a link for an enrollment code that has already been used. " +"Check your {link_start}course dashboard{link_end} to see if you're enrolled " +"in the course, or contact your company's administrator." +msgstr "" +"您点击的这个选课码的链接已经使用过了。检查您的{link_start}课程面板{link_end}查看您是否已经注册了这们课程,或者联系您公司的管理员。" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "" +"You have successfully enrolled in {course_name}. This course has now been " +"added to your dashboard." +msgstr "您已经成功的选修了 {course_name},这门课程现已添加到您的课程面板中。" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "" +"You're already enrolled for this course. Visit your " +"{link_start}dashboard{link_end} to see the course." +msgstr "您已经选修了这门课程,请前往您的{link_start}课程面板{link_end}查看该课程。" + +#: lms/templates/shoppingcart/registration_code_receipt.html +msgid "The course you are enrolling for is full." +msgstr "您登记的课程人数已满" + +#: lms/templates/shoppingcart/registration_code_receipt.html +msgid "The course you are enrolling for is closed." +msgstr "您登记的课程已关闭" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "There was an error processing your redeem code." +msgstr "处理您的兑换码时出现了一个错误。" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "" +"You're about to activate an enrollment code for {course_name} by " +"{site_name}. This code can only be used one time, so you should only " +"activate this code if you're its intended recipient." +msgstr "您要激活一个 {site_name}上的{course_name}的选课码。这个选课码只能使用一次,所以只有当您是它的既定接收人才激活它。" + +#: lms/templates/shoppingcart/registration_code_receipt.html +#: lms/templates/shoppingcart/registration_code_redemption.html +msgid "Activate Course Enrollment" +msgstr "激活选课" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "" +"{course_names} has been removed because the enrollment period has closed." +msgid_plural "" +"{course_names} have been removed because the enrollment period has closed." +msgstr[0] "因选课时限已关闭,{course_names} 已被移除。" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Cover Image" +msgstr "封面图片" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Students:" +msgstr "学生:" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Input quantity and press enter." +msgstr "输入数量然后按回车" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Increase" +msgstr "增加" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Decrease" +msgstr "减少" + +#: lms/templates/shoppingcart/shopping_cart.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "Remove" +msgstr "删除" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Discount or activation code" +msgstr "折扣或激活码" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "discount or activation code" +msgstr "折扣或激活码" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Apply" +msgstr "应用" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "code has been applied" +msgstr "代码已被应用" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "TOTAL:" +msgstr "总价:" + +#. Translators: currency_symbol is a symbol indicating type of currency, ex +#. "$". currency_abbr is +#. an abbreviation for the currency, ex "USD". This string would look like +#. this +#. when all variables are in: +#. "$500.00 USD" +#: lms/templates/shoppingcart/shopping_cart.html +msgid "{currency_symbol}{price} {currency_abbr}" +msgstr "{currency_symbol}{price} {currency_abbr}" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "" +"After this purchase is complete, a receipt is generated with relative " +"billing details and registration codes for students." +msgstr "付款完成后,我们会为学生们生成一张包含费用明细和注册码的收据。" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "" +"After this purchase is complete, {username} will be enrolled in this course." +msgstr "付款完成后,{username}的选课将会生效。" + +#: lms/templates/shoppingcart/shopping_cart.html +msgid "Empty Cart" +msgstr "清空购物车" + +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "Shopping cart" +msgstr "购物车" + +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "{platform_name} - Shopping Cart" +msgstr "{platform_name} - 购物车" + +#: lms/templates/shoppingcart/shopping_cart_flow.html +msgid "Confirmation" +msgstr "确认" + +#: lms/templates/static_templates/404.html +#: themes/elitemba-theme/lms/templates/static_templates/404.html +msgid "" +"The page that you were looking for was not found. Go back to the " +"{link_start}homepage{link_end} or let us know about any pages that may have " +"been moved at {email}." +msgstr "未能找到您查找的页面。返回到{link_start}主页{link_end}或发电子邮件至{email}告诉我们可能被移除的页面。" + +#: lms/templates/static_templates/about.html +#: lms/templates/static_templates/blog.html +#: lms/templates/static_templates/contact.html +#: lms/templates/static_templates/donate.html +#: lms/templates/static_templates/faq.html +#: lms/templates/static_templates/help.html +#: lms/templates/static_templates/honor.html +#: lms/templates/static_templates/jobs.html +#: lms/templates/static_templates/media-kit.html +#: lms/templates/static_templates/news.html +#: lms/templates/static_templates/press.html +#: lms/templates/static_templates/privacy.html +#: lms/templates/static_templates/tos.html +#: themes/elitemba-theme/lms/templates/static_templates/privacy_policy.html +msgid "This page left intentionally blank. Feel free to add your own content." +msgstr "这个页面是有意留空的。欢迎您添加自己的评论。" + +#: lms/templates/static_templates/embargo.html +msgid "" +"Our system indicates that you are trying to access this {platform_name} " +"course from a country or region currently subject to U.S. economic and trade" +" sanctions.Unfortunately, because {platform_name} is required to comply with" +" export controls,we cannot allow you to access this course at this time." +msgstr "" +"我们的系统表明您所在的国家或地区正在受到美国经济贸易制裁,非常抱歉,{platform_name}必须接受出口管制,所以我们暂时无法允许您访问此{platform_name}课程。" + +#: lms/templates/static_templates/faq.html +msgid "FAQ" +msgstr "常见问题" + +#: lms/templates/static_templates/jobs.html +msgid "Jobs" +msgstr "招才纳贤" + +#: lms/templates/static_templates/news.html +#: lms/templates/static_templates/press.html +msgid "In the Press" +msgstr "新闻" + +#: lms/templates/static_templates/server-down.html +msgid "Currently the {platform_name} servers are down" +msgstr "目前{platform_name} 平台的服务器非正常运行" + +#: lms/templates/static_templates/server-down.html +#: lms/templates/static_templates/server-overloaded.html +msgid "" +"Our staff is currently working to get the site back up as soon as possible. " +"Please email us at {tech_support_email} to report any problems or downtime." +msgstr "" +"我们的工作人员正在努力尽快恢复网站的正常运行。要报告您发现的任何问题或遇到网站非正常运行,请发送邮件至{tech_support_email}。" + +#: lms/templates/static_templates/server-error.html +#: themes/elitemba-theme/lms/templates/static_templates/server-error.html +msgid "There has been a 500 error on the {platform_name} servers" +msgstr "{platform_name} 平台的服务器发生代码为500的错误" + +#: lms/templates/static_templates/server-error.html +#: themes/elitemba-theme/lms/templates/static_templates/server-error.html +msgid "" +"Please wait a few seconds and then reload the page. If the problem persists," +" please email us at {email}." +msgstr "请等待几秒钟后再刷新该页面。如果问题照旧,请向{email}发邮件。" + +#: lms/templates/static_templates/server-overloaded.html +msgid "Currently the {platform_name} servers are overloaded" +msgstr " 目前{platform_name}平台的服务器已经超负荷" + +#: lms/templates/student_account/account_settings.html +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Account Settings" +msgstr "账号设置" + +#: lms/templates/student_account/finish_auth.html +#: themes/elitemba-theme/lms/templates/student_account/finish_auth.html +msgid "Please Wait" +msgstr "请稍候" + +#: lms/templates/student_account/login_and_register.html +msgid "Sign in or Register" +msgstr "登录或注册" + +#: lms/templates/support/certificates.html lms/templates/support/index.html +msgid "Student Support" +msgstr "学生支持" + +#: lms/templates/support/certificates.html +msgid "Student Support: Certificates" +msgstr "学生支持:证书" + +#: lms/templates/support/contact_us.html +msgid "Contact {platform_name} Support" +msgstr "联系{platform_name}支持" + +#: lms/templates/support/enrollment.html +msgid "Student Support: Enrollment" +msgstr "学生支持:选课" + +#: lms/templates/support/feature_based_enrollments.html +msgid "Student Support: Feature Based Enrollments" +msgstr "学生支持:基于功能的注册" + +#: lms/templates/support/feature_based_enrollments.html +msgid "Is Enabled" +msgstr "已启用" + +#: lms/templates/support/feature_based_enrollments.html +msgid "No results found" +msgstr "未找到结果" + +#: lms/templates/support/manage_user.html +msgid "Student Support: Manage User" +msgstr "学生支持:管理用户" + +#: lms/templates/support/refund.html +msgid "About to refund this order:" +msgstr "准备就该订单退费" + +#: lms/templates/support/refund.html +msgid "Order Id:" +msgstr "订单标识:" + +#: lms/templates/support/refund.html +msgid "Enrollment:" +msgstr "选课:" + +#: lms/templates/support/refund.html +msgid "enrolled" +msgstr "已选修" + +#: lms/templates/support/refund.html +msgid "unenrolled" +msgstr "已弃选" + +#: lms/templates/support/refund.html +msgid "Cost:" +msgstr "费用:" + +#: lms/templates/support/refund.html +msgid "CertificateItem Status:" +msgstr "证书状态:" + +#: lms/templates/support/refund.html +msgid "Order Status:" +msgstr "订单状态:" + +#: lms/templates/support/refund.html +msgid "Fulfilled Time:" +msgstr "完成时间:" + +#: lms/templates/support/refund.html +msgid "Refund Request Time:" +msgstr "退费申请时间:" + +#: lms/templates/survey/survey.html +msgid "User Survey" +msgstr "用户调查" + +#: lms/templates/survey/survey.html +msgid "Pre-Course Survey" +msgstr "课前调查" + +#: lms/templates/survey/survey.html +msgid "" +"You can begin your course as soon as you complete the following form. " +"Required fields are marked with an asterisk (*). This information is for the" +" use of {platform_name} only. It will not be linked to your public profile " +"in any way." +msgstr "" +"您完成下表后可立刻开始您的课程。必填的字段标有星号(*)。此信息仅用于{platform_name}的使用。它将不以任何形式与您的公开用户资料相关联。" + +#: lms/templates/survey/survey.html +msgid "You are missing the following required fields:" +msgstr "您遗漏了以下必填字段:" + +#: lms/templates/survey/survey.html +msgid "Cancel and Return to Dashboard" +msgstr "取消并返回到课程面板" + +#: lms/templates/survey/survey.html +msgid "Why do I need to complete this information?" +msgstr "我为什么要完成填写这些信息?" + +#: lms/templates/survey/survey.html +msgid "" +"We use the information you provide to improve our course for both current " +"and future students. The more we know about your specific needs, the better " +"we can make your course experience." +msgstr "我们使用您提供的信息来改善当前和未来的学生的课程学习体验。我们越了解您的具体需求,我们可以为您提供更好的课程体验。" + +#: lms/templates/survey/survey.html +msgid "Who can I contact if I have questions?" +msgstr "如果我碰到问题可以联系谁?" + +#: lms/templates/survey/survey.html +msgid "" +"If you have any questions about this course or this form, you can contact " +"{link_start}{mail_to_link}{link_end}." +msgstr "如果您对此门课程或此表格有任何问题,请联系{link_start}{mail_to_link}{link_end}。" + +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +msgid "Skeleton Page" +msgstr "框架页面" + +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +#: openedx/features/course_search/templates/course_search/course-search-fragment.html +msgid "Search the course" +msgstr "搜索课程" + +#: lms/templates/ux/reference/bootstrap/course-skeleton.html +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Start Course" +msgstr "开始学习课程" + +#: lms/templates/verify_student/_verification_help.html +msgid "Have questions?" +msgstr "有疑问?" + +#: lms/templates/verify_student/_verification_help.html +msgid "" +"Please read {a_start}our FAQs to view common questions about our " +"certificates{a_end}." +msgstr "请阅读{a_start}我们的 FAQ 中关于证书的常见问题{a_end}。" + +#: lms/templates/verify_student/incourse_reverify.html +msgid "Re-Verify for {course_name}" +msgstr "请重新验证{course_name}" + +#: lms/templates/verify_student/missed_deadline.html +msgid "Verification Deadline Has Passed" +msgstr "认证期限已过" + +#: lms/templates/verify_student/missed_deadline.html +msgid "Upgrade Deadline Has Passed" +msgstr "升级截止日期已过" + +#: lms/templates/verify_student/missed_deadline.html +msgid "" +"The verification deadline for {course_name} was {{date}}. Verification is no" +" longer available." +msgstr "已超过{course_name}的认证截止日期 {{date}}。" + +#: lms/templates/verify_student/missed_deadline.html +msgid "" +"The deadline to upgrade to a verified certificate for this course has " +"passed." +msgstr "这门课程申请认证证书的截止日期已经过了。" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Upgrade Your Enrollment For {course_name}." +msgstr "为{course_name}更新您的选课信息。" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Receipt For {course_name}" +msgstr "{course_name}的收据" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Verify For {course_name}" +msgstr "为{course_name}认证" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Enroll In {course_name}" +msgstr "选修{course_name}" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "Technical Requirements" +msgstr "技术要求" + +#: lms/templates/verify_student/pay_and_verify.html +#: themes/elitemba-theme/lms/templates/verify_student/pay_and_verify.html +msgid "" +"Please make sure your browser is updated to the {strong_start}{a_start}most " +"recent version possible{a_end}{strong_end}. Also, please make sure your " +"{strong_start}webcam is plugged in, turned on, and allowed to function in " +"your web browser (commonly adjustable in your browser settings).{strong_end}" +msgstr "" +"请确认您的浏览器已更新至{strong_start}{a_start}最新的可用版本{a_end}{strong_end}。同时,请确保您的{strong_start}网络摄像头已插好、已开启且在您的网络浏览器(通常可在您的浏览器设置中进行调节)中可正常使用。{strong_end}" + +#: lms/templates/verify_student/reverify.html +msgid "Re-Verification" +msgstr "重新认证" + +#: lms/templates/verify_student/reverify_not_allowed.html +msgid "Identity Verification" +msgstr "身份验证" + +#: lms/templates/verify_student/reverify_not_allowed.html +msgid "" +"You have already submitted your verification information. You will see a " +"message on your dashboard when the verification process is complete (usually" +" within 1-2 days)." +msgstr "您已提交了认证信息。当认证过程结束后,您会在您的课程面板中看到一条消息(通常在1-2天内)。" + +#: lms/templates/verify_student/reverify_not_allowed.html +msgid "You cannot verify your identity at this time." +msgstr "您不能在此时验证您的身份。" + +#: lms/templates/verify_student/reverify_not_allowed.html +msgid "Return to Your Dashboard" +msgstr "返回您的课程面板" + +#: lms/templates/widgets/cookie-consent.html +msgid "" +"This website uses cookies to ensure you get the best experience on our " +"website. If you continue browsing this site, we understand that you accept " +"the use of cookies." +msgstr "本站使用cookie给您提供最佳体验,如果您继续浏览本站,那么我们将认为您同意使用cookie。" + +#: lms/templates/widgets/cookie-consent.html +msgid "Got it!" +msgstr "成功了!" + +#: lms/templates/widgets/cookie-consent.html +msgid "Learn more" +msgstr "了解更多" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}(active){span_end}" +msgstr "{span_start}(激活){span_end}" + +#: lms/templates/wiki/includes/article_menu.html +#: wiki/templates/wiki/includes/article_menu.html +msgid "Changes" +msgstr "变更" + +#: lms/templates/wiki/includes/article_menu.html +msgid "{span_start}active{span_end}" +msgstr "{span_start}激活{span_end}" + +#: lms/templates/wiki/includes/breadcrumbs.html +msgid "Course Wiki" +msgstr "课程百科" + +#: lms/templates/wiki/includes/breadcrumbs.html wiki/templates/wiki/dir.html +msgid "Add article" +msgstr "添加文章" + +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +msgid "Preview Language Setting" +msgstr "预览语言设置" + +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +msgid "Language Code" +msgstr "语言代码" + +#: openedx/core/djangoapps/dark_lang/templates/dark_lang/preview-language-fragment.html +msgid "e.g. en for English" +msgstr "例如:en即英语" + +#: openedx/core/djangoapps/theming/templates/theming/theming-admin-fragment.html +msgid "Preview Theme" +msgstr "预览主题" + +#: openedx/core/lib/license/templates/license.html +msgid "All Rights Reserved" +msgstr "保留所有权利" + +#: openedx/core/lib/license/templates/license.html +msgid "Attribution" +msgstr "署名" + +#: openedx/core/lib/license/templates/license.html +msgid "Noncommercial" +msgstr "非商业的" + +#: openedx/core/lib/license/templates/license.html +msgid "No Derivatives" +msgstr "无相关派生" + +#: openedx/core/lib/license/templates/license.html +msgid "Share Alike" +msgstr "相同方式共享" + +#: openedx/core/lib/license/templates/license.html +msgid "Creative Commons licensed content, with terms as follow:" +msgstr "知识共享许可内容,条款如下:" + +#: openedx/core/lib/license/templates/license.html +msgid "Some Rights Reserved" +msgstr "保留部分权利" + +#: openedx/features/course_experience/templates/course_experience/course-dates-fragment.html +msgid "Important Course Dates" +msgstr "重要课程日期" + +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Goal: " +msgstr "学习目标:" + +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Edit your course goal:" +msgstr "编辑您的课程目标:" + +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Pursue a verified certificate" +msgstr "考取认证证书" + +#: openedx/features/course_experience/templates/course_experience/course-home-fragment.html +msgid "Upgrade ({price})" +msgstr "升级({price})" + +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "Expand All" +msgstr "展开全部" + +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "Prerequisite: " +msgstr "先修条件:" + +#: openedx/features/course_experience/templates/course_experience/course-outline-fragment.html +msgid "{subsection_format} due {{date}}" +msgstr "{subsection_format} 截止{{date}}" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Learn About Verified Certificates" +msgstr "认证证书是什么?" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "{platform_name} Verified Certificate" +msgstr "{platform_name}认证证书" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Why upgrade?" +msgstr "为什么要升级?" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Official proof of completion" +msgstr "已完成的官方证明" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Easily shareable certificate" +msgstr "易于分享的证书" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Proven motivator to complete the course" +msgstr "完成课程的有效激励因素" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "" +"Certificate purchases help {platform_name} continue to offer free courses" +msgstr "您对证书的购买,是{platform_name}持续推出免费课程的动力" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "How it works" +msgstr "具体流程" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Pay the Verified Certificate upgrade fee" +msgstr "支付认证证书升级奋勇" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Verify your identity with a webcam and government-issued ID" +msgstr "使用网络摄像头和政府签发的身份证来认证您的身份" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Study hard and pass the course" +msgstr "努力学习课程不挂科" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Share your certificate with friends, employers, and others" +msgstr "分享您的证书给朋友、同事、所有人" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "edX Learner Stories" +msgstr "edX学员故事" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "" +"My certificate has helped me showcase my knowledge on my" +" resume - I feel like this certificate could " +"really help me land my dream job!" +msgstr "证书在我的简历上添了一笔 - 努力的收获让我离梦想的事业更近一部!" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "{learner_name}, EliteMBA Learner" +msgstr "{learner_name},EliteMBA学员" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "" +"I wanted to include a verified certificate on my resume and my profile to" +" illustrate that I am working towards this goal " +"I have and that I have achieved something while " +"I was unemployed." +msgstr "我想要在简历和资料上添上一份认证证书,表明我有学习目标,并且不在职期间也收益颇丰。" + +#: openedx/features/course_experience/templates/course_experience/course-sock-fragment.html +msgid "Upgrade ({course_price})" +msgstr "升级({course_price})" + +#: openedx/features/course_experience/templates/course_experience/course-updates-fragment.html +msgid "This course does not have any updates." +msgstr "此门课程没有任何更新。" + +#: openedx/features/course_experience/templates/course_experience/dates-summary.html +msgid "Today is {date}" +msgstr "今天是 {date}" + +#: openedx/features/course_experience/templates/course_experience/latest-update-fragment.html +msgid "Latest Update" +msgstr "最近更新" + +#: openedx/features/course_search/templates/course_search/course-search-fragment.html +msgid "Search Results" +msgstr "搜索结果" + +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Purchase the Bundle (" +msgstr "购买套餐(" + +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Courses included" +msgstr "所包含课程" + +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "Journals included" +msgstr "所包含文章" + +#: openedx/features/journals/templates/journals/bundle_about.html +msgid "{access_length} Day Access" +msgstr "访问{access_length}天" + +#: openedx/features/journals/templates/journals/bundle_about.html +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "View Journal" +msgstr "查看文章" + +#: openedx/features/journals/templates/journals/bundle_card.html +msgid "Bundle" +msgstr "套餐" + +#: openedx/features/journals/templates/journals/journal_card.html +msgid "Journal" +msgstr "文章" + +#: openedx/features/journals/templates/journals/journal_card.html +msgid "{num_months} month" +msgid_plural "{num_months} months" +msgstr[0] "{num_months}个月" + +#: openedx/features/journals/templates/journals/journal_card.html +msgid "unlimited" +msgstr "无限" + +#: openedx/features/journals/templates/journals/journal_card.html +msgid "Access Length" +msgstr "访问时长" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Journal Dashboard" +msgstr "文章面板" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "{journal_title} Cover Image" +msgstr "{journal_title}封面图片" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Access Expired: {date}" +msgstr "访问于{date}已过期" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Access Expires: {date}" +msgstr "访问将于{date}过期" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Renew Access" +msgstr "续访" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "You have not purchased access to any journals yet." +msgstr "您尚未购买此文章的访问权。" + +#: openedx/features/journals/templates/journals/learner_dashboard/journal_dashboard.html +msgid "Explore journals and courses" +msgstr "探索文章和课程" + +#: openedx/features/learner_analytics/templates/learner_analytics/dashboard.html +msgid "My Stats (Beta)" +msgstr "我的统计数据(Beta)" + +#. Translators: this section lists all the third-party authentication +#. providers +#. (for example, Google and LinkedIn) the user can link with or unlink from +#. their edX account. +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Connected Accounts" +msgstr "已关联的账号" + +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Linked" +msgstr "已关联" + +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Not Linked" +msgstr "未关联" + +#. Translators: clicking on this removes the link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Unlink" +msgstr "取消关联" + +#. Translators: clicking on this creates a link between a user's edX account +#. and their account with an external authentication provider (like Google or +#. LinkedIn). +#: openedx/features/learner_profile/static/learner_profile/templates/third_party_auth.html +msgid "Link" +msgstr "关联" + +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +msgid "Completed {completion_date_html}" +msgstr "已完成{completion_date_html}" + +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +msgid "{course_mode} certificate" +msgstr "{course_mode}证书" + +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +msgid "You haven't earned any certificates yet." +msgstr "您尚未获得证书。" + +#: openedx/features/learner_profile/templates/learner_profile/learner-achievements-fragment.html +#: themes/edx.org/lms/templates/dashboard.html +msgid "Explore New Courses" +msgstr "探索新课程" + +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "View My Records" +msgstr "查看我的记录" + +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "My Profile" +msgstr "我的用户资料" + +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "" +"Build out your profile to personalize your identity on {platform_name}." +msgstr "自定义您的{platform_name}身份。" + +#: openedx/features/learner_profile/templates/learner_profile/learner_profile.html +msgid "An error occurred. Try loading the page again." +msgstr "出现一个错误。尝试重试加载页面。" + +#: cms/templates/404.html +msgid "The page that you were looking for was not found." +msgstr "您查找的页面无法找到。" + +#: cms/templates/404.html +msgid "" +"Go back to the {homepage} or let us know about any pages that may have been " +"moved at {email}." +msgstr "返回到{homepage}或发电子邮件至{email}告诉我们被移动的页面。" + +#: cms/templates/500.html +msgid "{studio_name} Server Error" +msgstr "{studio_name}服务器错误" + +#: cms/templates/500.html +msgid "The {em_start}{studio_name}{em_end} servers encountered an error" +msgstr "{em_start}{studio_name}{em_end} 服务器出现一个错误" + +#: cms/templates/500.html +msgid "" +"An error occurred in {studio_name} and the page could not be loaded. Please " +"try again in a few moments." +msgstr "{studio_name}出现错误,页面无法加载,请稍后再试。" + +#: cms/templates/500.html +msgid "" +"We've logged the error and our staff is currently working to resolve this " +"error as soon as possible." +msgstr "我们已经记录下这个错误,我们的员工正在试图尽快解决这个问题。" + +#: cms/templates/500.html +msgid "If the problem persists, please email us at {email_link}." +msgstr "如果问题仍然存在,请发送电子邮件至{email_link}。" + +#: cms/templates/accessibility.html +msgid "Studio Accessibility Policy" +msgstr "Studio开放政策" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +#: cms/templates/activation_invalid.html +msgid "{studio_name} Account Activation" +msgstr "{studio_name}账号激活" + +#: cms/templates/activation_active.html +msgid "Your account is already active" +msgstr "您的账号已经激活" + +#: cms/templates/activation_active.html +msgid "" +"This account, set up using {email}, has already been activated. Please sign " +"in to start working within {studio_name}." +msgstr "通过{email}注册的这个账号已被激活,请登录以开始在{studio_name}中工作。" + +#: cms/templates/activation_active.html cms/templates/activation_complete.html +msgid "Sign into {studio_name}" +msgstr "登录{studio_name}" + +#: cms/templates/activation_complete.html +msgid "Your account activation is complete!" +msgstr "您的账号激活已经完成!" + +#: cms/templates/activation_complete.html +msgid "" +"Thank you for activating your account. You may now sign in and start using " +"{studio_name} to author courses." +msgstr "谢谢您激活了您的账号,您现在可以登录 {studio_name}并开始创建课程了。" + +#: cms/templates/activation_invalid.html +msgid "Your account activation is invalid" +msgstr "您的账号激活是无效的" + +#: cms/templates/activation_invalid.html +msgid "" +"We're sorry. Something went wrong with your activation. Check to make sure " +"the URL you went to was correct, as e-mail programs will sometimes split it " +"into two lines." +msgstr "很抱歉,您的激活中出现了一些错误。请核对以确保您进入了正确的 URL,因为某些时候电子邮件程序会将其分割成两行。" + +#: cms/templates/activation_invalid.html +msgid "" +"If you still have issues, contact {platform_name} Support. In the meantime, " +"you can also return to {link_start}the {studio_name} homepage.{link_end}" +msgstr "" +"如果您仍然有问题,请联系{platform_name}支持。同时,您也可以返回到{link_start}{studio_name}主页{link_end}。" + +#: cms/templates/asset_index.html cms/templates/widgets/header.html +msgid "Files & Uploads" +msgstr "文件&上传" + +#: cms/templates/certificates.html +msgid "This module is not enabled." +msgstr "此模块不可用。" + +#: cms/templates/certificates.html +msgid "This course does not use a mode that offers certificates." +msgstr "本课程不提供证书。" + +#: cms/templates/certificates.html +msgid "Working with Certificates" +msgstr "使用证书" + +#: cms/templates/certificates.html +msgid "" +"Specify a course title to use on the certificate if the course's official " +"title is too long to be displayed well." +msgstr "当因课程正式名称过长而不易展示在证书上时,可使用特定的缩写。" + +#: cms/templates/certificates.html +msgid "" +"For verified certificates, specify between one and four signatories and " +"upload the associated images." +msgstr "对于验证的证书,指定1到4个簽署国,并上传了相关图片。" + +#: cms/templates/certificates.html +msgid "" +"To edit or delete a certificate before it is activated, hover over the top " +"right corner of the form and select {em_start}Edit{em_end} or the delete " +"icon." +msgstr "编辑或删除证书之前,它被激活,将鼠标悬停在表的右上角,然后选择{em_start}修改{em_end}或删除图标。" + +#: cms/templates/certificates.html +msgid "" +"To view a sample certificate, choose a course mode and select " +"{em_start}Preview Certificate{em_end}." +msgstr "要查看样品证书,选择课程模式,并选择{em_start}预览证书{em_end}。" + +#: cms/templates/certificates.html +msgid "Issuing Certificates to Learners" +msgstr "为课程学习者提供证书" + +#: cms/templates/certificates.html +msgid "" +"To begin issuing course certificates, a course team member with either the " +"Staff or Admin role selects {em_start}Activate{em_end}. Only course team " +"members with these roles can edit or delete an activated certificate." +msgstr "" +"员工或管理员身份的课程团队成员选择{em_start}激活{em_end},可以开始颁发课程证书。只有此两种身份的课程团队成员才能编辑或删除已激活的证书。" + +#: cms/templates/certificates.html +msgid "" +"{em_start}Do not{em_end} delete certificates after a course has started; " +"learners who have already earned certificates will no longer be able to " +"access them." +msgstr "{em_start}不要{em_end}删除证书后,课程开始;谁已经获得了证书,学生将不再能够访问它们。" + +#: cms/templates/certificates.html +msgid "Learn more about certificates" +msgstr "了解更多关于证书的信息" + +#: cms/templates/certificates.html cms/templates/settings_graders.html +msgid "Details & Schedule" +msgstr "细节&日程" + +#: cms/templates/checklists.html cms/templates/widgets/header.html +msgid "Checklists" +msgstr "核对表" + +#: cms/templates/checklists.html cms/templates/export.html +#: cms/templates/export_git.html cms/templates/import.html +#: cms/templates/widgets/header.html +msgid "Tools" +msgstr "工具" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +msgid "Duplicate" +msgstr "复制" + +#: cms/templates/component.html +msgid "Duplicate this component" +msgstr "复制该组件" + +#: cms/templates/component.html cms/templates/studio_xblock_wrapper.html +msgid "Move" +msgstr "移动" + +#: cms/templates/component.html +msgid "Delete this component" +msgstr "删除此组件" + +#: cms/templates/component.html cms/templates/edit-tabs.html +#: cms/templates/studio_xblock_wrapper.html +msgid "Drag to reorder" +msgstr "拖动以重排序" + +#: cms/templates/container.html cms/templates/course-create-rerun.html +#: cms/templates/course_info.html cms/templates/course_outline.html +#: cms/templates/edit-tabs.html cms/templates/index.html +#: cms/templates/library.html cms/templates/manage_users.html +#: cms/templates/manage_users_lib.html cms/templates/textbooks.html +#: cms/templates/videos_index.html +msgid "Page Actions" +msgstr "页面操作" + +#: cms/templates/container.html +msgid "Open the courseware in the LMS" +msgstr "在LMS中打开课件" + +#: cms/templates/container.html +msgid "View Live Version" +msgstr "观看在线版本" + +#: cms/templates/container.html +msgid "Preview the courseware in the LMS" +msgstr "在LMS中预览课件" + +#: cms/templates/container.html +msgid "Adding components" +msgstr "添加组件" + +#: cms/templates/container.html +msgid "" +"Select a component type under {strong_start}Add New Component{strong_end}. " +"Then select a template." +msgstr "选择一个组件类型在{strong_start}之下,并新增新的组件{strong_end}。然后选择一个範本。" + +#: cms/templates/container.html +msgid "" +"The new component is added at the bottom of the page or group. You can then " +"edit and move the component." +msgstr "新建的组件会添加到页面或组的底部,然后您可以编辑或移动该组件。" + +#: cms/templates/container.html +msgid "Editing components" +msgstr "编辑组件" + +#: cms/templates/container.html +msgid "" +"Click the {strong_start}Edit{strong_end} icon in a component to edit its " +"content." +msgstr "从组件中,点击{strong_start}编辑{strong_end}图示,编辑内容。" + +#: cms/templates/container.html +msgid "Reorganizing components" +msgstr "重新组织组件" + +#: cms/templates/container.html +msgid "Drag components to new locations within this component." +msgstr "在该组件中将组件拖动到新位置。" + +#: cms/templates/container.html +msgid "For content experiments, you can drag components to other groups." +msgstr "对于内容实验,您可以拖拽组件到其他组里。" + +#: cms/templates/container.html +msgid "Working with content experiments" +msgstr "使用内容实验" + +#: cms/templates/container.html +msgid "" +"Confirm that you have properly configured content in each of your experiment" +" groups." +msgstr "确认您的每个实验组中都有正确配置的内容。" + +#: cms/templates/container.html +msgid "Learn more about component containers" +msgstr "了解更多关于组件容器的信息" + +#: cms/templates/container.html +msgid "Unit Location" +msgstr "单元位置" + +#: cms/templates/container.html +msgid "Location ID" +msgstr "位置 ID" + +#: cms/templates/container.html +msgid "" +"To create a link to this unit from an HTML component in this course, enter " +"\"/jump_to_id/\" as the URL value." +msgstr "如需创建此课程HTML组件与单元的链接,请输入“/jump_to_id/”作为URL值。" + +#: cms/templates/container.html +msgid "Location in Course Outline" +msgstr "在课程大纲中的位置" + +#: cms/templates/course-create-rerun.html +msgid "Create a Course Rerun of:" +msgstr "创建课程重启:" + +#: cms/templates/course-create-rerun.html +msgid "Create a re-run of a course" +msgstr "创建一次课程重启" + +#: cms/templates/course-create-rerun.html +msgid "You are creating a re-run from:" +msgstr "您正在为以下课程创建一次重启:" + +#: cms/templates/course-create-rerun.html +msgid "" +"Provide identifying information for this re-run of the course. The original " +"course is not affected in any way by a re-run." +msgstr "请为该重启的课程提供识别信息,原来的课程不会受重启的影响。" + +#: cms/templates/course-create-rerun.html +msgid "" +"Note: Together, the organization, course number, and course run must " +"uniquely identify this new course instance." +msgstr "注意:机构名称、课程编号以及开课时间三者合在一起必须能够唯一标识此新建的课程实例。" + +#: cms/templates/course-create-rerun.html +msgid "Required Information to Create a re-run of a course" +msgstr "创建一次课程重启所必需的信息" + +#. Translators: This is an example name for a new course, seen when +#. filling out the form to create a new course. +#: cms/templates/course-create-rerun.html cms/templates/index.html +msgid "e.g. Introduction to Computer Science" +msgstr "例如,计算机科学导论" + +#: cms/templates/course-create-rerun.html +msgid "" +"The public display name for the new course. (This name is often the same as " +"the original course name.)" +msgstr "新课程的公开显示名称。(该名字通常与原始的课程名称相同。)" + +#. Translators: This is an example for the name of the organization sponsoring +#. a course, seen when filling out the form to create a new course. The +#. organization name cannot contain spaces. +#. Translators: "e.g. UniversityX or OrganizationX" is a placeholder displayed +#. when user put no data into this field. +#: cms/templates/course-create-rerun.html cms/templates/index.html +msgid "e.g. UniversityX or OrganizationX" +msgstr "例如:UniversityX 或 OrganizationX" + +#: cms/templates/course-create-rerun.html +msgid "" +"The name of the organization sponsoring the new course. (This name is often " +"the same as the original organization name.)" +msgstr "资助该新课程的机构的名称。(该名字通常与原始的机构名称相同。)" + +#: cms/templates/course-create-rerun.html +msgid "Note: No spaces or special characters are allowed." +msgstr "注意:不允许有空格或特殊字符。" + +#. Translators: This is an example for the number used to identify a course, +#. seen when filling out the form to create a new course. The number here is +#. short for "Computer Science 101". It can contain letters but cannot contain +#. spaces. +#: cms/templates/course-create-rerun.html cms/templates/index.html +msgid "e.g. CS101" +msgstr "例如: CS101" + +#: cms/templates/course-create-rerun.html +msgid "" +"The unique number that identifies the new course within the organization. " +"(This number will be the same as the original course number and cannot be " +"changed.)" +msgstr "用于识别组织内新课程的唯一编号。(此编号与原来的课程编号一致,无法更改)" + +#. Translators: This is an example for the "run" used to identify different +#. instances of a course, seen when filling out the form to create a new +#. course. +#: cms/templates/course-create-rerun.html cms/templates/index.html +msgid "e.g. 2014_T1" +msgstr "例如:2014_T1" + +#: cms/templates/course-create-rerun.html +msgid "" +"The term in which the new course will run. (This value is often different " +"than the original course run value.)" +msgstr "将开设该新课程的学期。(该值通常与原始开课时间的值不同。)" + +#: cms/templates/course-create-rerun.html +msgid "Create Re-run" +msgstr "创建重启" + +#: cms/templates/course-create-rerun.html +msgid "When will my course re-run start?" +msgstr "我的课程何时可以重启?" + +#: cms/templates/course-create-rerun.html +msgid "The new course is set to start on January 1, 2030 at midnight (UTC)." +msgstr "新课程设置为将于2030年1月1日午夜开始(UTC)。" + +#: cms/templates/course-create-rerun.html +msgid "What transfers from the original course?" +msgstr "原始课程中的哪些内容会复制过来?" + +#: cms/templates/course-create-rerun.html +msgid "" +"The new course has the same course outline and content as the original " +"course. All problems, videos, announcements, and other files are duplicated " +"to the new course." +msgstr "新课程与原始课程具有相同的课程大纲,所有的问题、视频、通知以及其他文件都复制到了新课程中。" + +#: cms/templates/course-create-rerun.html +msgid "What does not transfer from the original course?" +msgstr "原始课程中的哪些内容不会复制过来?" + +#: cms/templates/course-create-rerun.html +msgid "" +"You are the only member of the new course's staff. No students are enrolled " +"in the course, and there is no student data. There is no content in the " +"discussion topics or wiki." +msgstr "您是新课程的唯一课程员工。没有学生选修该课程,没有学生数据,论坛或Wiki里也没有内容。" + +#: cms/templates/course-create-rerun.html +msgid "Learn more about Course Re-runs" +msgstr "了解更多关于课程重启的信息" + +#: cms/templates/course_info.html +msgid "Course Updates" +msgstr "课程更新" + +#: cms/templates/course_info.html +msgid "New Update" +msgstr "新的更新" + +#: cms/templates/course_info.html +msgid "" +"Use course updates to notify students of important dates or exams, highlight" +" particular discussions in the forums, announce schedule changes, and " +"respond to student questions. You add or edit updates in HTML." +msgstr "使用课程更新来通知学生重要的日期或者考试,高亮显示论坛中的特别讨论,发布进度变更,以及回复学生问题。您可以用HTML来编辑更新。" + +#: cms/templates/course_outline.html +msgid "" +"This course was created as a re-run. Some manual configuration is needed." +msgstr "本课程已作为重启创建,需要进行一些必要的手动配置。" + +#: cms/templates/course_outline.html +msgid "" +"No course content is currently visible, and no learners are enrolled. Be " +"sure to review and reset all dates, including the Course Start Date; set up " +"the course team; review course updates and other assets for dated material; " +"and seed the discussions and wiki." +msgstr "" +"当前没有可见的课程内容,也没有学生选修。请确保已检查和重置包括课程开始日期在内的所有的日期,设置好课程团队,检查课程更新和其他资料中的过期内容,并设置好论坛和Wiki。" + +#: cms/templates/course_outline.html +msgid "Warning" +msgstr "警告" + +#: cms/templates/course_outline.html +msgid "This course uses features that are no longer supported." +msgstr "该课程使用了不再支持的特性。" + +#: cms/templates/course_outline.html +msgid "You must delete or replace the following components." +msgstr "您必须删除或替换下面这些组件。" + +#: cms/templates/course_outline.html +msgid "Unsupported Components" +msgstr "不支持的组件" + +#: cms/templates/course_outline.html +msgid "Deprecated Component" +msgstr "被弃用的组件" + +#: cms/templates/course_outline.html +msgid "" +"To avoid errors, {platform_name} strongly recommends that you remove " +"unsupported features from the course advanced settings. To do this, go to " +"the {link_start}Advanced Settings page{link_end}, locate the \"Advanced " +"Module List\" setting, and then delete the following modules from the list." +msgstr "" +"为了避免出现错误,{platform_name}强烈建议您从课程的高级设置中移除不支持的特性。为此,您可以去往{link_start}高级设置网页{link_end},找到“高级模块列表”设置,然后从列表中删除下面的模块。" + +#: cms/templates/course_outline.html +msgid "Unsupported Advance Modules" +msgstr "不支持的高级模块" + +#: cms/templates/course_outline.html +msgid "Click to add a new section" +msgstr "点击添加新的一章" + +#: cms/templates/course_outline.html +msgid "New Section" +msgstr "添加新章节" + +#: cms/templates/course_outline.html +msgid "Reindex current course" +msgstr "重新索引当前课程" + +#: cms/templates/course_outline.html +msgid "Reindex" +msgstr "重新索引" + +#: cms/templates/course_outline.html +msgid "Collapse All Sections" +msgstr "折叠所有章节" + +#: cms/templates/course_outline.html +msgid "Expand All Sections" +msgstr "展开所有章" + +#: cms/templates/course_outline.html +msgid "Click to open the courseware in the LMS in a new tab" +msgstr "点击以在新的标签页中使用LMS打开课件" + +#: cms/templates/course_outline.html cms/templates/edit-tabs.html +msgid "View Live" +msgstr "在线查看" + +#: cms/templates/course_outline.html +msgid "Creating your course organization" +msgstr "创建您的课程组织" + +#: cms/templates/course_outline.html +msgid "You add sections, subsections, and units directly in the outline." +msgstr "您可以直接在大纲中添加章、节和单元。" + +#: cms/templates/course_outline.html +msgid "" +"Create a section, then add subsections and units. Open a unit to add course " +"components." +msgstr "创建一个章,然后添加节和单元;打开一个单元以添加课程组件。" + +#: cms/templates/course_outline.html +msgid "Reorganizing your course" +msgstr "重新组织您的课程" + +#: cms/templates/course_outline.html +msgid "Drag sections, subsections, and units to new locations in the outline." +msgstr "在大纲中拖动章、节和单元到新的位置。" + +#: cms/templates/course_outline.html +msgid "Learn more about the course outline" +msgstr "了解更多关于课程大纲的信息" + +#: cms/templates/course_outline.html +msgid "Setting release dates and grading policies" +msgstr "设置课程公开日期和评分策略" + +#: cms/templates/course_outline.html +msgid "" +"Select the Configure icon for a section or subsection to set its release " +"date. When you configure a subsection, you can also set the grading policy " +"and due date." +msgstr "选择配置图标来为章、节设置公开日期。在对节进行配置时,您还可以设置评分策略及截止日期。" + +#: cms/templates/course_outline.html +msgid "Learn more about grading policy settings" +msgstr "了解更多关于评分标准的事" + +#: cms/templates/course_outline.html +msgid "Changing the content learners see" +msgstr "正在更改学员可见的内容" + +#: cms/templates/course_outline.html +msgid "" +"To publish draft content, select the Publish icon for a section, subsection," +" or unit." +msgstr "请选择章、节或单元中的发布图标以发布草稿内容。" + +#: cms/templates/course_outline.html +msgid "" +"To make a section, subsection, or unit unavailable to learners, select the " +"Configure icon for that level, then select the appropriate " +"{em_start}Hide{em_end} option. Grades for hidden sections, subsections, and " +"units are not included in grade calculations." +msgstr "" +"可以点击“设置 > {em_start}隐藏{em_end}”按钮对该层级的章、节、单元进行对学员隐藏。隐藏的章、节、单元的分数不计入总分。" + +#: cms/templates/course_outline.html +msgid "" +"To hide the content of a subsection from learners after the subsection due " +"date has passed, select the Configure icon for a subsection, then select " +"{em_start}Hide content after due date{em_end}. Grades for the subsection " +"remain included in grade calculations." +msgstr "" +"如需在截止日期过后对学员隐藏节的内容,可以点击该节的“设置 > {em_start}隐藏已过期内容到期日{em_end}”按钮,该节分数仍计入总分。" + +#: cms/templates/course_outline.html +msgid "Learn more about content visibility settings" +msgstr "了解更多关于内容可见性设置的信息" + +#. Translators: Pages refer to the tabs that appear in the top navigation of +#. each course. +#: cms/templates/edit-tabs.html cms/templates/export.html +#: cms/templates/widgets/header.html +msgid "Pages" +msgstr "页面" + +#: cms/templates/edit-tabs.html +msgid "New Page" +msgstr "新的页面" + +#: cms/templates/edit-tabs.html +msgid "" +"Note: Pages are publicly visible. If users know the URL of a page, they can " +"view the page even if they are not registered for or logged in to your " +"course." +msgstr "注意:页面是公开可见的,知道该页面链接的用户可以直接查看,即使他们尚未注册或者登录到您的课程。" + +#: cms/templates/edit-tabs.html +msgid "Show this page" +msgstr "显示该页面" + +#: cms/templates/edit-tabs.html +msgid "Show/hide page" +msgstr "显示/隐藏页面" + +#: cms/templates/edit-tabs.html +msgid "This page cannot be reordered" +msgstr "该页面无法重新排序" + +#: cms/templates/edit-tabs.html +msgid "You can add additional custom pages to your course." +msgstr "您可以在课程中添加额外的自定义页面" + +#: cms/templates/edit-tabs.html +msgid "Add a New Page" +msgstr "添加新的页面" + +#: cms/templates/edit-tabs.html +msgid "What are pages?" +msgstr "什么是页面?" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages are listed horizontally at the top of your course. Default pages " +"(Home, Course, Discussion, Wiki, and Progress) are followed by textbooks and" +" custom pages that you create." +msgstr "课程页面顶部水平列有默认页面 (课件,课程信息,讨论,维基和进度),之后是教材和自定义页面。" + +#: cms/templates/edit-tabs.html +msgid "Custom pages" +msgstr "自定义页面" + +#: cms/templates/edit-tabs.html +msgid "" +"You can create and edit custom pages to provide students with additional " +"course content. For example, you can create pages for the grading policy, " +"course slides, and a course calendar. " +msgstr "您可以通过创建个性化页面来为学生提供额外的课程内容。例如,您可以为评分策略、课程幻灯片、课程日历等创建自定义页面。" + +#: cms/templates/edit-tabs.html +msgid "How do pages look to students in my course?" +msgstr "学生看到的课程页面会是什么样子?" + +#: cms/templates/edit-tabs.html +msgid "" +"Students see the default and custom pages at the top of your course and use " +"these links to navigate." +msgstr "学生将会看到水平列于您课程主页上方的缺省页面及自定义页面的链接,并通过这些链接来漫游整个课程。" + +#: cms/templates/edit-tabs.html +msgid "See an example" +msgstr "查看例子" + +#: cms/templates/edit-tabs.html +msgid "Pages in Your Course" +msgstr "课程中的页面" + +#: cms/templates/edit-tabs.html +msgid "Preview of Pages in your course" +msgstr "课程页面预览" + +#: cms/templates/edit-tabs.html +msgid "" +"Pages appear in your course's top navigation bar. The default pages (Home, " +"Course, Discussion, Wiki, and Progress) are followed by textbooks and custom" +" pages." +msgstr "您课程页面顶部导航栏,默认标签页为(主页、课程、讨论、Wiki、进度),之后是教材和自定义标签页。" + +#: cms/templates/edit-tabs.html cms/templates/howitworks.html +msgid "close modal" +msgstr "关闭模式对话框" + +#: cms/templates/error.html +msgid "Internal Server Error" +msgstr "内部服务器错误" + +#: cms/templates/error.html +msgid "The Page You Requested Page Cannot be Found" +msgstr "您请求的页面无法找到" + +#: cms/templates/error.html +msgid "" +"We're sorry. We couldn't find the {studio_name} page you're looking for. You" +" may want to return to the {studio_name} Dashboard and try again. If you are" +" still having problems accessing things, please feel free to " +"{link_start}contact {studio_name} support{link_end} for further help." +msgstr "" +"很抱歉,我们无法找到您请求的{studio_name}页面。您可能希望返回至{studio_name}课程面板后重新尝试。如果您仍遇到问题,请随时{link_start}联系{studio_name}支持{link_end}以获取更多帮助。" + +#: cms/templates/error.html +msgid "The Server Encountered an Error" +msgstr "服务器发生错误" + +#: cms/templates/error.html +msgid "" +"We're sorry. There was a problem with the server while trying to process " +"your last request. You may want to return to the {studio_name} Dashboard or " +"try this request again. If you are still having problems accessing things, " +"please feel free to {link_start}contact {studio_name} support{link_end} for " +"further help." +msgstr "" +"很抱歉,服务器在处理您的上一个请求时遇到问题。您可能希望返回至{studio_name}课程面板或重新提交请求。如果您仍遇到问题,请随时{link_start}联系{studio_name}支持{link_end}以寻求帮助。" + +#: cms/templates/error.html +msgid "Back to dashboard" +msgstr "回到课程面板" + +#: cms/templates/export.html +msgid "Library Export" +msgstr "知识库导出" + +#: cms/templates/export.html +msgid "Course Export" +msgstr "导出课程" + +#: cms/templates/export.html +msgid "About Exporting Libraries" +msgstr "关于导出知识库" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export libraries and edit them outside of {studio_name}. The " +"exported file is a .tar.gz file (that is, a .tar file compressed with GNU " +"Zip) that contains the library structure and content. You can also re-import" +" libraries that you've exported." +msgstr "" +"您可以导出知识库并在{studio_name}之外编辑它们。导出的文件是一个包含知识库结构和内容的 .tar.gz 文件(即,使用GNU Zip压缩的 " +".tar 文件)。您也可以再次导入这些已经导出的知识库。" + +#: cms/templates/export.html +msgid "About Exporting Courses" +msgstr "关于导出课程" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"You can export courses and edit them outside of {studio_name}. The exported " +"file is a .tar.gz file (that is, a .tar file compressed with GNU Zip) that " +"contains the course structure and content. You can also re-import courses " +"that you've exported." +msgstr "" +"您可以导出课程并在{studio_name}之外编辑它们。导出的文件是一个包含课程结构和内容的 .tar.gz 文件(即,使用GNU Zip压缩的 " +".tar 文件)。您也可以再次导入这些已经导出的课程。" + +#: cms/templates/export.html +msgid "" +"{em_start}Caution:{em_end} When you export a course, information such as " +"MATLAB API keys, LTI passports, annotation secret token strings, and " +"annotation storage URLs are included in the exported data. If you share your" +" exported files, you may also be sharing sensitive or license-specific " +"information." +msgstr "" +"{em_start}注意{em_end}:当您导出一门课程时,像MATLAB API密钥、LTI通行证、批注秘密令牌以及批注存储 URL " +"等信息都包含在导出的数据中。如果您分享了导出的文件,就等于您同时也分享了敏感的或者与许可证相关的信息。" + +#: cms/templates/export.html +msgid "Export My Library Content" +msgstr "导出我的知识库内容" + +#: cms/templates/export.html +msgid "Export My Course Content" +msgstr "导出我的课程内容" + +#: cms/templates/export.html +msgid "Export Library Content" +msgstr "导出知识库内容" + +#: cms/templates/export.html +msgid "Export Course Content" +msgstr "导出课程内容" + +#: cms/templates/export.html +msgid "Library Export Status" +msgstr "知识库导出状态" + +#: cms/templates/export.html +msgid "Course Export Status" +msgstr "课程导出状态" + +#: cms/templates/export.html +msgid "Preparing" +msgstr "正在准备" + +#: cms/templates/export.html +msgid "Preparing to start the export" +msgstr "正在准备导出" + +#: cms/templates/export.html +msgid "Exporting" +msgstr "正在导出" + +#: cms/templates/export.html +msgid "" +"Creating the export data files (You can now leave this page safely, but " +"avoid making drastic changes to content until this export is complete)" +msgstr "正在创建导出数据文件(您现在可以安全离开此页面,但请在导出结束前不要对内容进行重大更改)" + +#: cms/templates/export.html +msgid "Compressing" +msgstr "正在压缩" + +#: cms/templates/export.html +msgid "Compressing the exported data and preparing it for download" +msgstr "正在压缩已导出数据并正在准备下载" + +#: cms/templates/export.html +msgid "Your exported library can now be downloaded" +msgstr "您现在可以下载已导出的知识库" + +#: cms/templates/export.html +msgid "Your exported course can now be downloaded" +msgstr "您现在可以下载已导出的课程" + +#: cms/templates/export.html +msgid "Download Exported Library" +msgstr "下载已导出的知识库" + +#: cms/templates/export.html +msgid "Download Exported Course" +msgstr "下载已导出课程" + +#: cms/templates/export.html +msgid "Data {em_start}exported with{em_end} your course:" +msgstr "随课程{em_start} 导出 {em_end} 数据:" + +#: cms/templates/export.html +msgid "" +"Values from Advanced Settings, including MATLAB API keys and LTI passports" +msgstr "来自高级设置中的值,包括 MATLAB API 密钥和 LTI 通行证" + +#: cms/templates/export.html +msgid "Course Content (all Sections, Sub-sections, and Units)" +msgstr "课程内容 (所有章节,小节和单元)" + +#: cms/templates/export.html +msgid "Course Structure" +msgstr "课程结构" + +#: cms/templates/export.html +msgid "Individual Problems" +msgstr "个别问题" + +#: cms/templates/export.html +msgid "Course Assets" +msgstr "课程资源" + +#: cms/templates/export.html +msgid "Course Settings" +msgstr "课程设置" + +#: cms/templates/export.html +msgid "Data {em_start}not exported{em_end} with your course:" +msgstr "不随课程{em_start} 导出 {em_end} 的数据:" + +#: cms/templates/export.html +msgid "User Data" +msgstr "用户数据" + +#: cms/templates/export.html +msgid "Course Team Data" +msgstr "课程团队数据" + +#: cms/templates/export.html +msgid "Forum/discussion Data" +msgstr "论坛/讨论数据" + +#: cms/templates/export.html +msgid "Why export a library?" +msgstr "为何要导出知识库?" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your library directly, outside of " +"{studio_name}. You may want to create a backup copy of your library. Or, you" +" may want to create a copy of your library that you can later import into " +"another library instance and customize." +msgstr "" +"您可能想在{studio_name}之外直接编辑知识库的XML,或为您的知识库建立备份,或者您是想创建一份知识库的副本以便日后导入进另一个知识库实例并进行自定义。" + +#: cms/templates/export.html +msgid "Opening the downloaded file" +msgstr "打开下载的文件" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the library.xml file, as well as subfolders that contain " +"library content." +msgstr "使用归档程序从该 .tar.gz 中文件解压数据,解压后的数据包含了一个 library.xml 文件,以及一些存放了知识库内容的子目录。" + +#: cms/templates/export.html +msgid "Learn more about exporting a library" +msgstr "了解更多关于知识库导出的信息" + +#: cms/templates/export.html +msgid "Why export a course?" +msgstr "为什么导出课程?" + +#: cms/templates/export.html +msgid "" +"You may want to edit the XML in your course directly, outside of " +"{studio_name}. You may want to create a backup copy of your course. Or, you " +"may want to create a copy of your course that you can later import into " +"another course instance and customize." +msgstr "" +"您可能想在{studio_name}之外直接编辑课程的XML,或为您的课程建立备份,或者您是想创建一份课程的副本以便日后导入进另一个课程实例并进行自定义。" + +#: cms/templates/export.html +msgid "What content is exported?" +msgstr "哪些内容被导出了?" + +#: cms/templates/export.html +msgid "The following content is exported." +msgstr "以下内容已导出。" + +#: cms/templates/export.html cms/templates/import.html +msgid "Course content and structure" +msgstr "课程内容和结构" + +#: cms/templates/export.html cms/templates/import.html +msgid "Course dates" +msgstr "课程日期" + +#: cms/templates/export.html cms/templates/import.html +msgid "Grading policy" +msgstr "评分政策" + +#: cms/templates/export.html cms/templates/import.html +msgid "Any group configurations" +msgstr "任何小组配置项" + +#: cms/templates/export.html cms/templates/import.html +msgid "" +"Settings on the Advanced Settings page, including MATLAB API keys and LTI " +"passports" +msgstr "高级设置页面的设置项,包括MATLAB API keys和LTI通行证" + +#: cms/templates/export.html +msgid "The following content is not exported." +msgstr "以下内容未导出。" + +#: cms/templates/export.html cms/templates/import.html +msgid "" +"Learner-specific content, such as learner grades and discussion forum data" +msgstr "关于学员的信息,比如学员的成绩和论坛数据" + +#: cms/templates/export.html cms/templates/import.html +msgid "The course team" +msgstr "课程团队" + +#. Translators: ".tar.gz" is a file extension, and should not be translated +#: cms/templates/export.html +msgid "" +"Use an archive program to extract the data from the .tar.gz file. Extracted " +"data includes the course.xml file, as well as subfolders that contain course" +" content." +msgstr "使用档案工具解压.tar.gz中的文件。解压后的数据包含coursex.xml,还有一些子目录,存放了课程内容。" + +#: cms/templates/export.html +msgid "Learn more about exporting a course" +msgstr "了解更多关于课程导出的信息" + +#: cms/templates/export_git.html +msgid "Export Course to Git" +msgstr "导出课程到Git" + +#: cms/templates/export_git.html cms/templates/widgets/header.html +msgid "Export to Git" +msgstr "导出到Git" + +#: cms/templates/export_git.html +msgid "About Export to Git" +msgstr "关于导出课程到Git" + +#: cms/templates/export_git.html +msgid "Use this to export your course to its git repository." +msgstr "使用这个来导出您的课程到Git源。" + +#: cms/templates/export_git.html +msgid "" +"This will then trigger an automatic update of the main LMS site and update " +"the contents of your course visible there to students if automatic git " +"imports are configured." +msgstr "这将触发主LMS站点的自动更新,若自动Git导入已配置好,学生可见的课程内容也会被自动更新。" + +#: cms/templates/export_git.html +msgid "Export Course to Git:" +msgstr "导出课程到Git:" + +#: cms/templates/export_git.html +msgid "" +"giturl must be defined in your course settings before you can export to git." +msgstr "在您导出到Git之前必须在课程设置里定义Git地址。" + +#: cms/templates/export_git.html +msgid "Export Failed" +msgstr "导出失败" + +#: cms/templates/export_git.html +msgid "Export Succeeded" +msgstr "导出成功" + +#: cms/templates/export_git.html +msgid "Your course:" +msgstr "您的课程:" + +#: cms/templates/export_git.html +msgid "Course git url:" +msgstr "课程Git地址:" + +#: cms/templates/group_configurations.html +msgid "Experiment Group Configurations" +msgstr "实验组配置" + +#: cms/templates/group_configurations.html +msgid "This module is disabled at the moment." +msgstr "这个模块目前被禁用。" + +#: cms/templates/group_configurations.html +msgid "" +"Enrollment track groups allow you to offer different course content to " +"learners in each enrollment track. Learners enrolled in each enrollment " +"track in your course are automatically included in the corresponding " +"enrollment track group." +msgstr "注册跟踪组允许您在每个注册跟踪中为学习者提供不同的课程内容。在您课程的每个注册轨道上注册的学员将自动加入相应的注册轨道组。" + +#: cms/templates/group_configurations.html +msgid "" +"On unit pages in the course outline, you can restrict access to components " +"to learners based on their enrollment track." +msgstr "在课程概述的单元页面上,您可以根据学习者的注册轨迹限制对组件的访问。" + +#: cms/templates/group_configurations.html +msgid "" +"You cannot edit enrollment track groups, but you can expand each group to " +"view details of the course content that is designated for learners in the " +"group." +msgstr "您不能编辑注册跟踪组,但是您可以扩展每个组去查看组中学习者指定的课程内容的详细信息。" + +#: cms/templates/group_configurations.html +msgid "" +"If you have cohorts enabled in your course, you can use content groups to " +"create cohort-specific courseware. In other words, you can customize the " +"content that particular cohorts see in your course." +msgstr "如果您在您的课程中启用了群组,您可以使用内容组来创建群组特定的课件。换句话说,您可以在您课程中的自定义内容使得特定的群组才能看到这些内容。" + +#: cms/templates/group_configurations.html +msgid "" +"Each content group that you create can be associated with one or more " +"cohorts. In addition to making course content available to all learners, you" +" can restrict access to some content to learners in specific content groups." +" Only learners in the cohorts that are associated with the specified content" +" groups see the additional content." +msgstr "" +"您创建的每个内容组都可以与一个或多个群组相关联。可以将课程内容对所有学员开放,您还可以设置某些内容为仅某内容组的学员可见。只有在与某个内容组相关联的群组内的学员可查看额外内容。" + +#: cms/templates/group_configurations.html +msgid "" +"Click {em_start}New content group{em_end} to add a new content group. To " +"edit the name of a content group, hover over its box and click " +"{em_start}Edit{em_end}. You can delete a content group only if it is not in " +"use by a unit. To delete a content group, hover over its box and click the " +"delete icon." +msgstr "" +"点击{em_start}新建内容组{em_end}来添加一个新的内容组;如果要编辑某个内容组的名称,请点击该内容组的{em_start}编辑{em_end}按钮;一个内容组只有在未被任何一个单元使用的情况下可以被删除,请点击某个内容组的删除图标以删除该内容组。" + +#: cms/templates/group_configurations.html +msgid "" +"Use experiment group configurations if you are conducting content " +"experiments, also known as A/B testing, in your course. Experiment group " +"configurations define how many groups of learners are in a content " +"experiment. When you create a content experiment for a course, you select " +"the group configuration to use." +msgstr "" +"如果您正在您的课程中开展群组实验,也称A/B测试,您可以使用实验组配置。实验组配置决定在一个内容实验中有多少组学生。在您创建一个课程内容实验的时候,您可以选择要使用的组配置。" + +#: cms/templates/group_configurations.html +msgid "" +"Click {em_start}New Group Configuration{em_end} to add a new configuration. " +"To edit a configuration, hover over its box and click " +"{em_start}Edit{em_end}. You can delete a group configuration only if it is " +"not in use in an experiment. To delete a configuration, hover over its box " +"and click the delete icon." +msgstr "" +"点击{em_start}新建组配置{em_end}来添加一个新的配置;如果要编辑某个配置,请点击该配置的{em_start}编辑{em_end}按钮;一个组配置只有在未被任何一个实验使用的情况下可以被删除,请点击某个组配置的删除图标以删除该组配置。" + +#: cms/templates/group_configurations.html +#: cms/templates/settings_advanced.html +msgid "Details & Schedule" +msgstr "细节与日程" + +#: cms/templates/howitworks.html +msgid "Welcome" +msgstr "欢迎" + +#: cms/templates/howitworks.html +msgid "Welcome to {studio_name}" +msgstr "欢迎来到{studio_name}" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} helps manage your online courses, so you can focus on teaching" +" them" +msgstr "{studio_name}帮助您管理您的线上课程,这样您就可以专注于教学" + +#: cms/templates/howitworks.html +msgid "{studio_name}'s Many Features" +msgstr "{studio_name}的许多特性" + +#: cms/templates/howitworks.html +msgid "{studio_name} Helps You Keep Your Courses Organized" +msgstr "{studio_name}帮助您保持课程有序组织" + +#: cms/templates/howitworks.html +msgid "Enlarge image" +msgstr "放大图片" + +#: cms/templates/howitworks.html +msgid "Keeping Your Course Organized" +msgstr "保持您的课程有序组织" + +#: cms/templates/howitworks.html +msgid "" +"The backbone of your course is how it is organized. {studio_name} offers an " +"{strong_start}Outline{strong_end} editor, providing a simple hierarchy and " +"easy drag and drop to help you and your students stay organized." +msgstr "" +"课程的关键在于如何组织其结构。在{studio_name}您可以编辑{strong_start}“教学大纲”{strong_end},为您提供简单易用的层级结构来确保课程组织有序。" + +#: cms/templates/howitworks.html +msgid "Simple Organization For Content" +msgstr "简单地组织内容" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} uses a simple hierarchy of {strong_start}sections{strong_end} " +"and {strong_start}subsections{strong_end} to organize your content." +msgstr "" +"{studio_name}使用简单层级结构管理内容:{strong_start}章{strong_end}和{strong_start}节{strong_end}。" + +#: cms/templates/howitworks.html +msgid "Change Your Mind Anytime" +msgstr "随时改变您的思路" + +#: cms/templates/howitworks.html +msgid "" +"Draft your outline and build content anywhere. Simple drag and drop tools " +"let you reorganize quickly." +msgstr "您可以在任意位置起草大纲并创建内容。简单的拖放工具使您可以快速地重新组织课程内容。" + +#: cms/templates/howitworks.html +msgid "Go A Week Or A Semester At A Time" +msgstr "按星期或学期发布内容" + +#: cms/templates/howitworks.html +msgid "" +"Build and release {strong_start}sections{strong_end} to your students " +"incrementally. You don't have to have it all done at once." +msgstr "逐渐创建并发布{strong_start}章{strong_end}。您不必一次完成所有事情。" + +#: cms/templates/howitworks.html +msgid "Learning is More than Just Lectures" +msgstr "学习不仅仅是听课" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} lets you weave your content together in a way that reinforces " +"learning. Insert videos, discussions, and a wide variety of exercises with " +"just a few clicks." +msgstr "" +"{studio_name}使您可以将您的课程内容以有助于巩固学习效果的形式组织在一起。您只需通过几次点击就可以插入视频、讨论区以及各种各样的练习题。" + +#: cms/templates/howitworks.html +msgid "Create Learning Pathways" +msgstr "创建学习路径" + +#: cms/templates/howitworks.html +msgid "" +"Help your students understand one concept at a time with multimedia, HTML, " +"and exercises." +msgstr "通过多媒体、HTML和练习帮助您的学生每次理解一个概念。" + +#: cms/templates/howitworks.html +msgid "Work Visually, Organize Quickly" +msgstr "可视化地工作,快速地组织" + +#: cms/templates/howitworks.html +msgid "" +"Work visually and see exactly what your students will see. Reorganize all " +"your content with drag and drop." +msgstr "可视化地工作并且随时预览您的学生将要看的内容。通过拖放操作重新组织您的课程内容。" + +#: cms/templates/howitworks.html +msgid "A Broad Library of Problem Types" +msgstr "丰富的平台库可以支持各种问题类型" + +#: cms/templates/howitworks.html +msgid "" +"It's more than just multiple choice. {studio_name} supports more than a " +"dozen types of problems to challenge your learners." +msgstr "不只是选择题,{studio_name}支持各种各样的题型来挑战您的学生们。" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} Gives You Simple, Fast, and Incremental Publishing. With " +"Friends." +msgstr "{studio_name}给您和您的朋友提供简单、快速、增量式的发布体验。" + +#: cms/templates/howitworks.html +msgid "Simple, Fast, and Incremental Publishing. With Friends." +msgstr "与其他人一起合作,体验简单、快速、增量式的内容发布过程" + +#: cms/templates/howitworks.html +msgid "" +"{studio_name} works like web applications you already know, yet understands " +"how you build curriculum. Instant publishing to the web when you want it, " +"incremental release when it makes sense. And with co-authors, you can have a" +" whole team building a course, together." +msgstr "" +"{studio_name}的工作方式与您熟知的网页应用类似,只是您还需要了解一下如何创建课程。您可以根据需要在网页上一次性地发布信息,或者采用增量式的发布形式。如果您有合作者,您们还可以作为一个团队来共同创建课程。" + +#: cms/templates/howitworks.html +msgid "Instant Changes" +msgstr "即时修改" + +#: cms/templates/howitworks.html +msgid "" +"Caught a bug? No problem. When you want, your changes go live when you click" +" Save." +msgstr "发现了一个错误?没有问题。只要您需要,点击保存按钮就可以将您的更改上线。" + +#: cms/templates/howitworks.html +msgid "Release-On Date Publishing" +msgstr "定期发布课程" + +#: cms/templates/howitworks.html +msgid "" +"When you've finished a {strong_start}section{strong_end}, pick when you want" +" it to go live and {studio_name} takes care of the rest. Build your course " +"incrementally." +msgstr "" +"当您完成了一个{strong_start}章{strong_end},指定上线时间,{studio_name}届时会自行发布。逐步创建您的课程。" + +#: cms/templates/howitworks.html +msgid "Work in Teams" +msgstr "参与团队协作" + +#: cms/templates/howitworks.html +msgid "" +"Co-authors have full access to all the same authoring tools. Make your " +"course better through a team effort." +msgstr "合作者有权访问相同的创作工具。团队协作将提高您的课程质量。" + +#: cms/templates/howitworks.html +msgid "Sign Up for {studio_name} Today!" +msgstr "立即在{studio_name}注册!" + +#: cms/templates/howitworks.html +msgid "Sign Up & Start Making Your {platform_name} Course" +msgstr "注册并开始打造您自己的{platform_name}课程" + +#: cms/templates/howitworks.html +msgid "Already have a {studio_name} Account? Sign In" +msgstr "已经有一个{studio_name}账号?请登录" + +#: cms/templates/howitworks.html +msgid "Outlining Your Course" +msgstr "列出您的课程大纲" + +#: cms/templates/howitworks.html +msgid "" +"Simple two-level outline to organize your course. Drag and drop, and see " +"your course at a glance." +msgstr "简洁的两级教学大纲、简单的拖放工具、清晰了然的课程显示。" + +#: cms/templates/howitworks.html +msgid "More than Just Lectures" +msgstr "不仅仅是课程讲座" + +#: cms/templates/howitworks.html +msgid "" +"Quickly create videos, text snippets, inline discussions, and a variety of " +"problem types." +msgstr "快速创建视频、文本片段、内部讨论和各种问题类型。" + +#: cms/templates/howitworks.html +msgid "Publishing on Date" +msgstr "发布时间" + +#: cms/templates/howitworks.html +msgid "" +"Simply set the date of a section or subsection, and {studio_name} will " +"publish it to your students for you." +msgstr "只需简单地设置章节的发布时间,{studio_name}会按照设定的时间为您发布这些内容给学生。" + +#: cms/templates/html_error.html +msgid "We're having trouble rendering your component" +msgstr "渲染组件时遇到问题" + +#: cms/templates/html_error.html +msgid "" +"Students will not be able to access this component. Re-edit your component " +"to fix the error." +msgstr "学生无法访问这个组件。请重新编辑您的组件以修复错误。" + +#: cms/templates/import.html +msgid "Library Import" +msgstr "知识库导入" + +#: cms/templates/import.html +msgid "Course Import" +msgstr "课程导入" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a library before continuing. The contents of the " +"imported library will replace the contents of the existing library. " +"{em_start}You cannot undo a library import{em_end}. Before you proceed, we " +"recommend that you export the current library, so that you have a backup " +"copy of it." +msgstr "" +"在继续之前,请确认您想要导入一个知识库。当前知识库的所有内容会被导入的内容所取代,{em_start}您无法撤销该导入操作 " +"{em_end}。我们建议您在继续操作之前先将当前知识库导出,以便有个备份。" + +#: cms/templates/import.html +msgid "" +"The library that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a library.xml file." +" It may also contain other files." +msgstr "" +"您导入的知识库必须是一个 .tar.gz 格式的文件(即,使用 GNU Zip 压缩的 .tar 文件)。该文件中必须包含一个 library.xml " +"文件,同时也可以包含其他文件。" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your library until the import operation has completed." +msgstr "" +"导入过程有五个步骤。在前两个步骤进行时,请勿离开本页面;在“解压”步骤完成之后,您可以离开本页面。但是我们建议,在导入操作完成之前请不要对您的知识库做出重要改动。" + +#: cms/templates/import.html +msgid "" +"Be sure you want to import a course before continuing. The contents of the " +"imported course will replace the contents of the existing course. " +"{em_start}You cannot undo a course import{em_end}. Before you proceed, we " +"recommend that you export the current course, so that you have a backup copy" +" of it." +msgstr "" +"在继续之前,请确认您想要导入一门课程。当前课程的所有内容会被导入的内容所取代,{em_start}您无法撤销该导入操作 " +"{em_end}。我们建议您在继续操作之前先将当前课程导出,以便有个备份。" + +#: cms/templates/import.html +msgid "" +"The course that you import must be in a .tar.gz file (that is, a .tar file " +"compressed with GNU Zip). This .tar.gz file must contain a course.xml file. " +"It may also contain other files." +msgstr "" +"您导入的课程必须是一个 .tar.gz 格式的文件(即,使用 GNU Zip 压缩的 .tar 文件)。该文件中必须包含一个 library.xml " +"文件,同时也可以包含其他文件。" + +#: cms/templates/import.html +msgid "" +"The import process has five stages. During the first two stages, you must " +"stay on this page. You can leave this page after the Unpacking stage has " +"completed. We recommend, however, that you don't make important changes to " +"your course until the import operation has completed." +msgstr "" +"导入过程有五步。在前两步中,您必须停留在当前页面。而在解压步骤结束后您可以离开当前页面。不过,我们建议在导入操作结束前您都不要对课程做任何更改调整。" + +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Library Content" +msgstr "请选择一个用于替换您的知识库内容的 .tar.gz 文件" + +#: cms/templates/import.html +msgid "Select a .tar.gz File to Replace Your Course Content" +msgstr "选择一个.tar.gz 文件以覆盖当前课程内容" + +#: cms/templates/import.html +msgid "Choose a File to Import" +msgstr "选择要导入的文件" + +#: cms/templates/import.html +msgid "File Chosen:" +msgstr "选中的文件:" + +#: cms/templates/import.html +msgid "Replace my library with the selected file" +msgstr "用所选的文件替换我的知识库" + +#: cms/templates/import.html +msgid "Replace my course with the selected file" +msgstr "用所选的文件替换我的课程" + +#: cms/templates/import.html +msgid "Library Import Status" +msgstr "知识库导入状态" + +#: cms/templates/import.html +msgid "Course Import Status" +msgstr "课程导入状态" + +#: cms/templates/import.html +msgid "Transferring your file to our servers" +msgstr "正在传输您的文件至服务器" + +#: cms/templates/import.html +msgid "Unpacking" +msgstr "正在解压" + +#: cms/templates/import.html +msgid "" +"Expanding and preparing folder/file structure (You can now leave this page " +"safely, but avoid making drastic changes to content until this import is " +"complete)" +msgstr "展开预定义的目录/文件结构(您现在可以安全地离开这个页面了,但在内容导入完成之前请尽量避免不必要的修改)" + +#: cms/templates/import.html +msgid "Verifying" +msgstr "正在校验" + +#: cms/templates/import.html +msgid "Reviewing semantics, syntax, and required data" +msgstr "正在复查语义、语法和必要数据" + +#: cms/templates/import.html +msgid "Updating Library" +msgstr "正在更新知识库" + +#: cms/templates/import.html +msgid "Updating Course" +msgstr "正在更新课程" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this library. This process might take" +" longer with larger libraries." +msgstr "正在整合您导入的内容到该知识库。如果知识库较大,这一过程可能花费较多时间。" + +#: cms/templates/import.html +msgid "" +"Integrating your imported content into this course. This process might take " +"longer with larger courses." +msgstr "正在整合您导入的内容到该课程。如果课程较大,这一过程可能花费较多时间。" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this library" +msgstr "您导入的内容已经被整合进该知识库" + +#: cms/templates/import.html +msgid "Your imported content has now been integrated into this course" +msgstr "您导入的内容已经被整合进课程" + +#: cms/templates/import.html +msgid "View Updated Library" +msgstr "查看更新后的知识库" + +#: cms/templates/import.html +msgid "View Updated Outline" +msgstr "查看更新后的课程大纲" + +#: cms/templates/import.html +msgid "Why import a library?" +msgstr "为什么要导入知识库?" + +#: cms/templates/import.html +msgid "" +"You might want to update an existing library to a new version, or replace an" +" existing library entirely. You might also have developed a library outside " +"of {studio_name}." +msgstr "您可能想为现有的知识库创建新版本,或者完全替换现有的知识库。您也可能已在{studio_name}之外创建了一个知识库。" + +#: cms/templates/import.html +msgid "Note: Library content is not automatically updated in courses" +msgstr "请注意:知识库的内容并不会在课程中自动更新" + +#: cms/templates/import.html +msgid "" +"If you change and import a library that is referenced by randomized content " +"blocks in one or more courses, those courses do not automatically use the " +"updated content. You must manually refresh the randomized content blocks to " +"bring them up to date with the latest library content." +msgstr "" +"如果您更新或导入一个知识库,并且该知识库由一门或多门课程中的随机内容块所引用,则这些课程将不会自动使用知识库中已更新的内容。相反,您必须手动刷新这些随机内容块以使其与最新的知识库内容相一致。" + +#: cms/templates/import.html +msgid "Learn more about importing a library" +msgstr "了解更多关于导入知识库的信息" + +#: cms/templates/import.html +msgid "Why import a course?" +msgstr "为什么导入课程?" + +#: cms/templates/import.html +msgid "" +"You may want to run a new version of an existing course, or replace an " +"existing course altogether. Or, you may have developed a course outside " +"{studio_name}." +msgstr "您可能想为现有的课程创建新版本,或者完全替换现有的课程。您也可能已在{studio_name}之外创建了一个课程。" + +#: cms/templates/import.html +msgid "What content is imported?" +msgstr "哪些内容被导入了?" + +#: cms/templates/import.html +msgid "The following content is imported." +msgstr "以下内容已导入。" + +#: cms/templates/import.html +msgid "The following content is not imported." +msgstr "以下内容未导入。" + +#: cms/templates/import.html +msgid "Warning: Importing while a course is running" +msgstr "注意:导入发生于课程进行中" + +#: cms/templates/import.html +msgid "" +"If you perform an import while your course is running, and you change the " +"URL names (or url_name nodes) of any Problem components, the student data " +"associated with those Problem components may be lost. This data includes " +"students' problem scores." +msgstr "" +"如果您在课程进行中执行了导入,并更改了任意问题组件的URL名字(或url名字节点) ,与此问题组件相关的学生数据将可能丢失。这些数据包括学生问题得分。" + +#: cms/templates/import.html +msgid "Learn more about importing a course" +msgstr "了解更多关于导入课程的信息" + +#: cms/templates/index.html cms/templates/widgets/user_dropdown.html +msgid "{studio_name} Home" +msgstr "{studio_name}主页" + +#: cms/templates/index.html +msgid "New Course" +msgstr "新建课程" + +#: cms/templates/index.html +msgid "Email staff to create course" +msgstr "发邮件给教员来创建课程" + +#: cms/templates/index.html +msgid "New Library" +msgstr "新建知识库" + +#: cms/templates/index.html +msgid "Please correct the highlighted fields below." +msgstr "请改正下面高亮的字段。" + +#: cms/templates/index.html +msgid "Create a New Course" +msgstr "创建一个新课程" + +#: cms/templates/index.html +msgid "Required Information to Create a New Course" +msgstr "创建一个新课程的必要信息" + +#: cms/templates/index.html +msgid "" +"The public display name for your course. This cannot be changed, but you can" +" set a different display name in Advanced Settings later." +msgstr "课程的公开显示名称,无法修改。但您可以稍后在高级设置中设置一个不同的显示名称。" + +#: cms/templates/index.html +msgid "" +"The name of the organization sponsoring the course. {strong_start}Note: The " +"organization name is part of the course URL.{strong_end} This cannot be " +"changed, but you can set a different display name in Advanced Settings " +"later." +msgstr "" +"开设这门课程的组织的名称。{strong_start}注意:课程URL包含该组织名称。{strong_end}无法更改此名称,但过后可以在高级设置中设另外一个显示名称。" + +#: cms/templates/index.html +msgid "" +"The unique number that identifies your course within your organization. " +"{strong_start}Note: This is part of your course URL, so no spaces or special" +" characters are allowed and it cannot be changed.{strong_end}" +msgstr "" +"在您组织内课程的唯一编号,{strong_start}注意:这是您课程URL的一部分,无法更改并且请勿使用空格或特殊字符。{strong_end}" + +#: cms/templates/index.html +msgid "" +"The term in which your course will run. {strong_start}Note: This is part of " +"your course URL, so no spaces or special characters are allowed and it " +"cannot be changed.{strong_end}" +msgstr "" +"关于您课程开课的学期,{strong_start}注意:这是您课程URL的一部分,无法更改并且请勿使用空格或特殊字符。{strong_end}" + +#: cms/templates/index.html +msgid "Create" +msgstr "创建" + +#: cms/templates/index.html +msgid "Create a New Library" +msgstr "创建一个新的知识库" + +#: cms/templates/index.html +msgid "Required Information to Create a New Library" +msgstr "创建一个新知识库的必要信息" + +#: cms/templates/index.html +msgid "Library Name" +msgstr "知识库名称" + +#. Translators: This is an example name for a new content library, seen when +#. filling out the form to create a new library. +#. (A library is a collection of content or problems.) +#: cms/templates/index.html +msgid "e.g. Computer Science Problems" +msgstr "例如,计算机科学问题" + +#: cms/templates/index.html +msgid "The public display name for your library." +msgstr "知识库的公开显示名称。" + +#: cms/templates/index.html +msgid "The public organization name for your library." +msgstr "知识库的公开机构名称。" + +#: cms/templates/index.html +msgid "This cannot be changed." +msgstr "在确定后无法更改。" + +#: cms/templates/index.html +msgid "Library Code" +msgstr "知识库代码" + +#. Translators: This is an example for the "code" used to identify a library, +#. seen when filling out the form to create a new library. This example is +#. short +#. for "Computer Science Problems". The example number may contain letters +#. but must not contain spaces. +#: cms/templates/index.html +msgid "e.g. CSPROB" +msgstr "例如,CSPROB" + +#: cms/templates/index.html +msgid "" +"The unique code that identifies this library. {strong_start}Note: This is " +"part of your library URL, so no spaces or special characters are " +"allowed.{strong_end} This cannot be changed." +msgstr "" +"此知识库的唯一标识码。{strong_start}注意:知识库URL包含此标识码,请勿输入空格或特殊字符。{strong_end}并且无法更改。" + +#: cms/templates/index.html +msgid "Organization and Library Settings" +msgstr "组织和知识库设置" + +#: cms/templates/index.html +msgid "Show all courses in organization:" +msgstr "显示组织内所有课程:" + +#: cms/templates/index.html +msgid "For example, MITx" +msgstr "例如,MITx" + +#: cms/templates/index.html +msgid "Courses Being Processed" +msgstr "正在处理的课程" + +#: cms/templates/index.html +msgid "This course run is currently being created." +msgstr "正在创建该课程的本次运行。" + +#. Translators: This is a status message, used to inform the user of +#. what the system is doing. This status means that the user has +#. requested to re-run an existing course, and the system is currently +#. in the process of duplicating and configuring the existing course +#. so that it can be re-run. +#: cms/templates/index.html +msgid "Configuring as re-run" +msgstr "配置为重启" + +#: cms/templates/index.html +msgid "" +"The new course will be added to your course list in 5-10 minutes. Return to " +"this page or {link_start}refresh it{link_end} to update the course list. The" +" new course will need some manual configuration." +msgstr "" +"新的课程将在5-10分钟内添加到您的课程列表里中。返回到该页或者{link_start}刷新该页{link_end}以更新课程列表。新的课程将需要一些手动配置。" + +#. Translators: This is a status message for the course re-runs feature. +#. When a course admin indicates that a course should be re-run, the system +#. needs to process the request and prepare the new course. The status of +#. the process will follow this text. +#: cms/templates/index.html +msgid "This re-run processing status:" +msgstr "这重新运行处理状态:" + +#: cms/templates/index.html +msgid "Configuration Error" +msgstr "配置错误" + +#: cms/templates/index.html +msgid "" +"A system error occurred while your course was being processed. Please go to " +"the original course to try the re-run again, or contact your PM for " +"assistance." +msgstr "在处理您的课程过程中发生了系统错误。请回到原始课程里尝试再次重启,或向您的 PM 求助。" + +#: cms/templates/index.html +msgid "Archived Courses" +msgstr "存档课程" + +#: cms/templates/index.html +msgid "Libraries" +msgstr "知识库" + +#: cms/templates/index.html +msgid "Are you staff on an existing {studio_name} course?" +msgstr "您是否是一个{studio_name}现有课程的工作人员?" + +#: cms/templates/index.html +msgid "" +"The course creator must give you access to the course. Contact the course " +"creator or administrator for the course you are helping to author." +msgstr "课程的创建者必须授予您该课程的访问权限。如果您想帮助编写该课程,请联系课程的创建者或者管理员。" + +#: cms/templates/index.html +msgid "Create Your First Course" +msgstr "创建您的第一个课程" + +#: cms/templates/index.html +msgid "Your new course is just a click away!" +msgstr "您的新课程只需点击即可!" + +#: cms/templates/index.html +msgid "Becoming a Course Creator in {studio_name}" +msgstr "成为{studio_name}中的课程创建者" + +#: cms/templates/index.html +msgid "" +"{studio_name} is a hosted solution for our xConsortium partners and selected" +" guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by {platform_name}. Our " +"team will evaluate your request and provide you feedback within 24 hours " +"during the work week." +msgstr "" +"{studio_name}是一个为我们X-" +"联盟的合作者以及特定顾客提供的托管解决方案。您作为团队成员的课程已在上面列出供您编辑,而创建新课程的权限则需要由{platform_name}授予。我们的团队会评估您的请求,并会在工作日的24小时之内给予您反馈。" + +#: cms/templates/index.html +msgid "Your Course Creator Request Status:" +msgstr "您的课程创建者资格请求状态:" + +#: cms/templates/index.html +msgid "Request the Ability to Create Courses" +msgstr "请求创建课程的权限" + +#: cms/templates/index.html +msgid "Your Course Creator Request Status" +msgstr "您的课程创建者资格请求状态" + +#: cms/templates/index.html +msgid "" +"{studio_name} is a hosted solution for our xConsortium partners and selected" +" guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by {platform_name}. Our " +"team is has completed evaluating your request." +msgstr "" +"{studio_name}是一个为我们X-" +"联盟的合作者以及特定顾客提供的托管解决方案。您作为团队成员的课程已在上面列出供您编辑,而创建新课程的权限则需要由{platform_name}授予。我们的团队已经完成了对您的请求的评估。" + +#: cms/templates/index.html +msgid "Your Course Creator request is:" +msgstr "您的课程创建者资格的请求是:" + +#: cms/templates/index.html +msgid "" +"Your request did not meet the criteria/guidelines specified by " +"{platform_name} Staff." +msgstr "您的请求不符合由{platform_name}员工指定的准则/方针。" + +#: cms/templates/index.html +msgid "" +"{studio_name} is a hosted solution for our xConsortium partners and selected" +" guests. Courses for which you are a team member appear above for you to " +"edit, while course creator privileges are granted by {platform_name}. Our " +"team is currently evaluating your request." +msgstr "" +"{studio_name}是一个为我们X-" +"联盟的合作者以及特定顾客提供的托管解决方案。您作为团队成员的课程已在上面列出供您编辑,而创建新课程的权限则需要由{platform_name}授予。我们的团队目前正在评估您的请求。" + +#: cms/templates/index.html +msgid "" +"Your request is currently being reviewed by {platform_name} staff and should" +" be updated shortly." +msgstr "您的请求正在由{platform_name}员工评审,应该很快会有更新。" + +#: cms/templates/index.html +msgid "Were you expecting to see a particular library here?" +msgstr "您是否曾期待在这里看到一个特定的知识库?" + +#: cms/templates/index.html +msgid "" +"The library creator must give you access to the library. Contact the library" +" creator or administrator for the library you are helping to author." +msgstr "知识库的创建者必须授予您该知识库的访问权限。如果您想帮助编写该知识库,请联系知识库的创建者或者管理员。" + +#: cms/templates/index.html +msgid "Create Your First Library" +msgstr "创建您的第一个知识库" + +#: cms/templates/index.html +msgid "" +"Libraries hold a pool of components that can be re-used across multiple " +"courses. Create your first library with the click of a button!" +msgstr "知识库容纳了一组可以在多个课程中重复利用的组件。点击按钮以创建您的第一个知识库!" + +#: cms/templates/index.html +msgid "New to {studio_name}?" +msgstr "刚刚接触{studio_name}?" + +#: cms/templates/index.html +msgid "" +"Click Help in the upper-right corner to get more information about the " +"{studio_name} page you are viewing. You can also use the links at the bottom" +" of the page to access our continually updated documentation and other " +"{studio_name} resources." +msgstr "" +"点击右上角的的帮助按钮以获得更多关于{studio_name}当前页面的信息。您也可以使用页面底部的帮助链接访问我们持续更新的文档以及其他{studio_name}资源。" + +#: cms/templates/index.html +msgid "Getting Started with {studio_name}" +msgstr "{studio_name}入门" + +#: cms/templates/index.html +msgid "Can I create courses in {studio_name}?" +msgstr "我能在{studio_name}中创建课程吗?" + +#: cms/templates/index.html +msgid "" +"In order to create courses in {studio_name}, you must {link_start}contact " +"{platform_name} staff to help you create a course{link_end}." +msgstr "" +"您必须{link_start}联系{platform_name}工作人员{link_end}以帮助您在{studio_name}创建中课程。" + +#: cms/templates/index.html +msgid "" +"In order to create courses in {studio_name}, you must have course creator " +"privileges to create your own course." +msgstr "您必须获得课程创建者资格才能在{studio_name}中创建课程。" + +#: cms/templates/index.html +msgid "" +"Your request to author courses in {studio_name} has been denied. Please " +"{link_start}contact {platform_name} Staff with further questions{link_end}." +msgstr "" +"您在{studio_name}上申请成为课程创建者的请求已被拒绝,请{link_start}联系{platform_name}工作人员进一步了解问题{link_end}。" + +#: cms/templates/index.html +msgid "Thanks for signing up, {name}!" +msgstr "感谢注册,{name}!" + +#: cms/templates/index.html +msgid "We need to verify your email address" +msgstr "我们需要验证您的电子邮箱地址" + +#: cms/templates/index.html +msgid "" +"Almost there! In order to complete your sign up we need you to verify your " +"email address ({email}). An activation message and next steps should be " +"waiting for you there." +msgstr "注册快完成啦!您现在需要验证您的邮箱地址({email}),已发送激活邮件至此邮箱,请按照步骤完成注册。" + +#: cms/templates/index.html +msgid "Need help?" +msgstr "需要帮助?" + +#: cms/templates/index.html +msgid "" +"Please check your Junk or Spam folders in case our email isn't in your " +"INBOX. Still can't find the verification email? Request help via the link " +"below." +msgstr "请检查您的垃圾邮件,以防我们的邮件不在您的收件箱中。仍然不能找到确认邮件?通过下面的链接获得帮助。" + +#: cms/templates/library.html +msgid "Content Library" +msgstr "内容知识库" + +#: cms/templates/library.html +msgid "Add Component" +msgstr "添加组件" + +#: cms/templates/library.html +msgid "Adding content to your library" +msgstr "向您的知识库中添加内容" + +#: cms/templates/library.html +msgid "" +"Add components to your library for use in courses, using Add New Component " +"at the bottom of this page." +msgstr "请使用本页面底部的添加新组件按钮为您的知识库添加可在课程中使用的组件" + +#: cms/templates/library.html +msgid "" +"Components are listed in the order in which they are added, with the most " +"recently added at the bottom. Use the pagination arrows to navigate from " +"page to page if you have more than one page of components in your library." +msgstr "组件会按照添加的顺序升序排列(最近添加的在最底部)。当知识库中的组件超过一页时,请使用分页箭头来切换不同页面。" + +#: cms/templates/library.html +msgid "Using library content in courses" +msgstr "在课程中使用知识库内容" + +#: cms/templates/library.html +msgid "" +"Use library content in courses by adding the " +"{em_start}library_content{em_end} policy key to the Advanced Module List in " +"the course's Advanced Settings, then adding a Randomized Content Block to " +"your courseware. In the settings for each Randomized Content Block, select " +"this library as the source library, and specify the number of problems to be" +" randomly selected and displayed to each student." +msgstr "" +"要使用知识库,首先向课程高级设置页面中的“高级模块列表”项中添加{em_start}library_content{em_end}策略键,然后在课件中加入一个或多个“随机内容块”组件。在每个“随机内容块”组件的设置中,选择一个知识库作为源库,并指定要被随机选择并呈现给每个学生的问题的数量。" + +#: cms/templates/library.html +msgid "Learn more about content libraries" +msgstr "了解更多关于内容知识库的信息" + +#: cms/templates/login.html +msgid "Sign In to {studio_name}" +msgstr "登录{studio_name}" + +#: cms/templates/login.html +msgid "Don't have a {studio_name} Account? Sign up!" +msgstr "还没有{studio_name}账号?现在就注册!" + +#: cms/templates/login.html +msgid "Required Information to Sign In to {studio_name}" +msgstr "登录{studio_name}所必须的信息" + +#: cms/templates/manage_users.html +msgid "Course Team Settings" +msgstr "课程团队设置" + +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +msgid "New Team Member" +msgstr "新的团队成员" + +#: cms/templates/manage_users.html +msgid "Add a User to Your Course's Team" +msgstr "向您的课程团队中添加一个用户" + +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +msgid "New Team Member Information" +msgstr "新团队成员信息" + +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +msgid "User's Email Address" +msgstr "用户邮箱地址" + +#: cms/templates/manage_users.html +msgid "Provide the email address of the user you want to add as Staff" +msgstr "请提供您想要添加成为员工的用户的电子邮件地址" + +#: cms/templates/manage_users.html cms/templates/manage_users_lib.html +msgid "Add User" +msgstr "添加用户" + +#: cms/templates/manage_users.html +msgid "Add Team Members to This Course" +msgstr "向该课程添加团队成员" + +#: cms/templates/manage_users.html +msgid "" +"Adding team members makes course authoring collaborative. Users must be " +"signed up for {studio_name} and have an active account." +msgstr "添加团队成员使得课程编写可以协作完成,用户必须已经注册了{studio_name}并拥有一个已激活的账号。" + +#: cms/templates/manage_users.html +msgid "Add a New Team Member" +msgstr "添加一个团队成员" + +#: cms/templates/manage_users.html +msgid "Course Team Roles" +msgstr "课程团队角色" + +#: cms/templates/manage_users.html +msgid "" +"Course team members with the Staff role are course co-authors. They have " +"full writing and editing privileges on all course content." +msgstr "课程团队成员中员工角色是课程的共同作者。他们对课程内容具有完全的写作和编辑权限。" + +#: cms/templates/manage_users.html +msgid "" +"Admins are course team members who can add and remove other course team " +"members." +msgstr "管理员是课程团队成员中可以添加和移除其他课程团队成员的用户。" + +#: cms/templates/manage_users.html +msgid "" +"All course team members can access content in Studio, the LMS, and Insights," +" but are not automatically enrolled in the course." +msgstr "" +"All course team members can access content in Studio, the LMS, and Insights," +" but are not automatically enrolled in the course." + +#: cms/templates/manage_users.html +msgid "Transferring Ownership" +msgstr "移交所有权" + +#: cms/templates/manage_users.html +msgid "" +"Every course must have an Admin. If you are the Admin and you want to " +"transfer ownership of the course, click Add admin access to" +" make another user the Admin, then ask that user to remove you from the " +"Course Team list." +msgstr "" +"每门课程必须有一名管理员。如过您当前是管理员,且希望转让管理员身份,点击添加管理权限来赋予其他管理员权限,并请求他们将您从课程团队列表中删除。" + +#: cms/templates/manage_users_lib.html +msgid "Library User Access" +msgstr "知识库用户访问权限" + +#: cms/templates/manage_users_lib.html cms/templates/widgets/header.html +msgid "User Access" +msgstr "用户访问权限" + +#: cms/templates/manage_users_lib.html +msgid "Grant Access to This Library" +msgstr "授予对该知识库的访问权限" + +#: cms/templates/manage_users_lib.html +msgid "Provide the email address of the user you want to add" +msgstr "请提供您想添加的用户的邮件地址" + +#: cms/templates/manage_users_lib.html +msgid "Add More Users to This Library" +msgstr "添加更多用户到该知识库中" + +#: cms/templates/manage_users_lib.html +msgid "" +"Grant other members of your course team access to this library. New library " +"users must have an active {studio_name} account." +msgstr "向您课程团队的其他成员授予该知识库的访问权限。新的知识库用户必须有一个已激活的{studio_name}账号。" + +#: cms/templates/manage_users_lib.html +msgid "Add a New User" +msgstr "添加一个新用户" + +#: cms/templates/manage_users_lib.html +msgid "Library Access Roles" +msgstr "知识库访问角色" + +#: cms/templates/manage_users_lib.html +msgid "There are three access roles for libraries: User, Staff, and Admin." +msgstr "有三种知识库用户访问角色:用户、教员和管理员。" + +#: cms/templates/manage_users_lib.html +msgid "" +"Library Users can view library content and can reference or use library " +"components in their courses, but they cannot edit the contents of a library." +msgstr "知识库用户可以查看知识库内容,可以在他们的课程中参考或使用知识库组件,但不能够编辑知识库的内容。" + +#: cms/templates/manage_users_lib.html +msgid "" +"Library Staff are content co-authors. They have full editing privileges on " +"the contents of a library." +msgstr "知识库员工是内容的共同作者,他们对知识库的内容具有完全的编辑权限。" + +#: cms/templates/manage_users_lib.html +msgid "" +"Library Admins have full editing privileges and can also add and remove " +"other team members. There must be at least one user with the Admin role in a" +" library." +msgstr "知识库管理员具有完全的编辑权限,也可以添加和修改其他团队成员。一个知识库至少有一个用户担任管理员角色。" + +#: cms/templates/settings.html +msgid "Contact your edX partner manager to update these settings." +msgstr "联系您的edX合作伙伴以更新这些设置项。" + +#: cms/templates/settings_advanced.html +msgid "Your policy changes have been saved." +msgstr "您的策略调整已保存。" + +#: cms/templates/settings_advanced.html +msgid "There was an error saving your information. Please see below." +msgstr "保存您的信息时出现错误,详情见下。" + +#: cms/templates/settings_advanced.html +msgid "Manual Policy Definition" +msgstr "手工策略定义" + +#: cms/templates/settings_advanced.html +msgid "" +"{strong_start}Warning{strong_end}: Do not modify these policies unless you " +"are familiar with their purpose." +msgstr "{strong_start}警告{strong_end}:除非您熟悉这些政策的目的,否则请勿修改。" + +#: cms/templates/settings_advanced.html +msgid "Show Deprecated Settings" +msgstr "显示已过时的设置" + +#: cms/templates/settings_advanced.html +msgid "What do advanced settings do?" +msgstr "高级设置有何作用?" + +#: cms/templates/settings_advanced.html +msgid "" +"Advanced settings control specific course functionality. On this page, you " +"can edit manual policies, which are JSON-based key and value pairs that " +"control specific course settings." +msgstr "高级设置控制特定的课程功能。在本页面,您可以手工编辑基于JSON键值对的策略,控制特定的课程设置。" + +#: cms/templates/settings_advanced.html +msgid "" +"Any policies you modify here override all other information you've defined " +"elsewhere in {studio_name}. Do not edit policies unless you are familiar " +"with both their purpose and syntax." +msgstr "您在这里所做的任何更改都会覆盖您在{studio_name}其他地方定义的信息。请只在您已经熟悉某个策略的目的和语法之后再修改它。" + +#: cms/templates/settings_advanced.html +msgid "" +"{em_start}Note:{em_end} When you enter strings as policy values, ensure that" +" you use double quotation marks (\") around the string. Do not use single " +"quotation marks (')." +msgstr "{em_start}注意:{em_end}当您输入政策值的字符串时,请在字符串两端使用双引号(\"),请勿使用单引号(')。" + +#: cms/templates/settings_graders.html +msgid "Grading Settings" +msgstr "评分设置" + +#: cms/templates/settings_graders.html +msgid "Overall Grade Range" +msgstr "整体评分范围" + +#: cms/templates/settings_graders.html +msgid "Your overall grading scale for student final grades" +msgstr "您对学生最终得分的整体评分范围" + +#: cms/templates/settings_graders.html +msgid "Add grade" +msgstr "添加成绩" + +#: cms/templates/settings_graders.html +msgid "Credit Eligibility" +msgstr "学分合格" + +#: cms/templates/settings_graders.html +msgid "Settings for course credit eligibility" +msgstr "为课程学分合格设置" + +#: cms/templates/settings_graders.html +msgid "Minimum Credit-Eligible Grade:" +msgstr "最小合格学分成绩" + +#: cms/templates/settings_graders.html +msgid "Must be greater than or equal to the course passing grade" +msgstr "必须大于或等于课程及格分数" + +#: cms/templates/settings_graders.html +msgid "Grading Rules & Policies" +msgstr "评分规则&策略" + +#: cms/templates/settings_graders.html +msgid "Deadlines, requirements, and logistics around grading student work" +msgstr "对学生作业进行评分的截止日期,要求和流程" + +#: cms/templates/settings_graders.html +msgid "Grace Period on Deadline:" +msgstr "截止日期的宽限期:" + +#: cms/templates/settings_graders.html +msgid "Leeway on due dates" +msgstr "截止日期余量" + +#: cms/templates/settings_graders.html +msgid "Assignment Types" +msgstr "作业类型" + +#: cms/templates/settings_graders.html +msgid "Categories and labels for any exercises that are gradable" +msgstr "所有可打分的练习的种类和标签" + +#: cms/templates/settings_graders.html +msgid "New Assignment Type" +msgstr "添加新的作业类型" + +#: cms/templates/settings_graders.html +msgid "What can I do on this page?" +msgstr "我在这个页面能做什么?" + +#: cms/templates/settings_graders.html +msgid "" +"You can use the slider under Overall Grade Range to specify whether your " +"course is pass/fail or graded by letter, and to establish the thresholds for" +" each grade." +msgstr "您可以使用全局评价范围下面的滑动条来指定您的课程评分是合格/不合格或者字母评价等级,并且建立每个评价等级的阈值。" + +#: cms/templates/settings_graders.html +msgid "" +"You can specify whether your course offers students a grace period for late " +"assignments." +msgstr "您可以指定您的课程是否给学生提供迟交作业的宽限期。" + +#: cms/templates/settings_graders.html +msgid "" +"You can also create assignment types, such as homework, labs, quizzes, and " +"exams, and specify how much of a student's grade each assignment type is " +"worth." +msgstr "您也可以创建作业类型,比如家庭作业、实验、测验、以及考试,并且指定每个作业是否计入最终的成绩及其评价分值。" + +#: cms/templates/studio_xblock_wrapper.html +msgid "Expand or Collapse" +msgstr "展开或折叠" + +#: cms/templates/studio_xblock_wrapper.html +msgid "Access Settings" +msgstr "访问设置" + +#: cms/templates/studio_xblock_wrapper.html +msgid "Set Access" +msgstr "设置访问限制" + +#: cms/templates/studio_xblock_wrapper.html +msgid "This block contains multiple components." +msgstr "本块包含多个组件。" + +#: cms/templates/textbooks.html +msgid "New Textbook" +msgstr "新教材" + +#: cms/templates/textbooks.html +msgid "Why should I break my textbook into chapters?" +msgstr "我什么我应该将教材拆分为章节?" + +#: cms/templates/textbooks.html +msgid "" +"Breaking your textbook into multiple chapters reduces loading times for " +"students, especially those with slow Internet connections. Breaking up " +"textbooks into chapters can also help students more easily find topic-based " +"information." +msgstr "将您的教材拆分为多个章节将有助于学生降低内容加载时间,特别是对于网速较慢的学生很有帮助。同时有助于学生按主题找到他们所需的信息。" + +#: cms/templates/textbooks.html +msgid "What if my book isn't divided into chapters?" +msgstr "如果我的教材没有拆分成章节会怎么样?" + +#: cms/templates/textbooks.html +msgid "" +"If your textbook doesn't have individual chapters, you can upload the entire" +" text as a single chapter and enter a name of your choice in the Chapter " +"Name field." +msgstr "如果您的教材没有独立的章节,您可以上传整个文本作为一个章节,并在章节名称字段中输入您所选择的名称。" + +#: cms/templates/textbooks.html +msgid "Learn more about textbooks" +msgstr "了解更多关于教材的信息" + +#: cms/templates/videos_index.html cms/templates/widgets/header.html +msgid "Video Uploads" +msgstr "视频上传" + +#: cms/templates/videos_index.html +msgid "Course Video Settings" +msgstr "课程视频设置" + +#: cms/templates/videos_index_pagination.html +msgid "Changing.." +msgstr "修改中..." + +#: cms/templates/videos_index_pagination.html +msgid "Videos per page:" +msgstr "每页视频:" + +#: cms/templates/visibility_editor.html +msgid "Access is not restricted" +msgstr "没有访问限制" + +#: cms/templates/visibility_editor.html +msgid "" +"Access to this unit is not restricted, but visibility might be affected by " +"inherited settings." +msgstr "此单元的访问不设有限制,但可视性可能会被所沿用的设置所影响。" + +#: cms/templates/visibility_editor.html +msgid "" +"Access to this component is not restricted, but visibility might be affected" +" by inherited settings." +msgstr "不禁止访问此组件,但可视性可能会被所沿用的设置影响。" + +#: cms/templates/visibility_editor.html +msgid "" +"You can restrict access to this unit to learners in specific enrollment " +"tracks or content groups." +msgstr "您可以限制访问本单元的学习者在特定的注册轨道或内容组。" + +#: cms/templates/visibility_editor.html +msgid "" +"You can restrict access to this component to learners in specific enrollment" +" tracks or content groups." +msgstr "您可以将此组件的访问限制在特定的注册跟踪或内容组中。" + +#: cms/templates/visibility_editor.html +msgid "" +"You can restrict access to this unit to learners in specific content groups." +msgstr "您可设置此单元仅供某内容组学员可访问。" + +#: cms/templates/visibility_editor.html +msgid "" +"You can restrict access to this component to learners in specific content " +"groups." +msgstr "您可限制特定内容组的学员对此组件的访问。" + +#: cms/templates/visibility_editor.html +msgid "Manage content groups" +msgstr "管理内容组" + +#. Translators: Any text between {screen_reader_start} and {screen_reader_end} +#. is only read by screen readers and never shown in the browser. +#: cms/templates/visibility_editor.html +msgid "" +"{screen_reader_start}Warning:{screen_reader_end} The unit that contains this" +" component is hidden from learners. The unit setting overrides the component" +" access settings defined here." +msgstr "" +"{screen_reader_start}警告:{screen_reader_end}包含此组件的单元对学员隐藏,单元设置覆盖此处所设置的组件访问设置。" + +#: cms/templates/visibility_editor.html +msgid "Access is restricted to:" +msgstr "访问开放人群:" + +#: cms/templates/visibility_editor.html +msgid "Restrict access to:" +msgstr "可访问人群;" + +#: cms/templates/visibility_editor.html +msgid "Select a group type" +msgstr "选择分组类型" + +#: cms/templates/visibility_editor.html +msgid "All Learners and Staff" +msgstr "所有学生与教员" + +#: cms/templates/visibility_editor.html +msgid "Select one or more groups:" +msgstr "选择一或者多个群组" + +#: cms/templates/visibility_editor.html +msgid "" +"This group no longer exists. Choose another group or remove the access " +"restriction." +msgstr "此组已不存在,请选择其他分组并撤销访问限制。" + +#: cms/templates/emails/activation_email_subject.txt +msgid "Your account for {studio_name}" +msgstr "您的{studio_name}账号" + +#: cms/templates/emails/course_creator_admin_subject.txt +msgid "{email} has requested {studio_name} course creator privileges on edge" +msgstr "{email} 已在边缘站点上发出要求获得{studio_name}上课程创建者权限的请求" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "" +"User '{user}' with e-mail {email} has requested {studio_name} course creator" +" privileges on edge." +msgstr "用户“{user}”(电子邮件地址:{email})已在边缘站点上发出要求获得{studio_name}上课程创建者权限的请求。" + +#: cms/templates/emails/course_creator_admin_user_pending.txt +msgid "To grant or deny this request, use the course creator admin table." +msgstr "要授予或拒绝这一请求,请使用课程创建者管理表。" + +#: cms/templates/emails/course_creator_denied.txt +msgid "" +"Your request for course creation rights to {studio_name} have been denied. " +"If you believe this was in error, please contact {email}" +msgstr "您在{studio_name}上请求的课程创建权限已被拒绝。如果您觉得有问题,请联系 {email}" + +#: cms/templates/emails/course_creator_granted.txt +msgid "" +"Your request for course creation rights to {studio_name} have been granted. To create your first course, visit\n" +"\n" +"{url}" +msgstr "" +"已授予您在{studio_name}上创建课程的权限。要创建您的第一门课程,请访问\n" +"\n" +"{url}" + +#: cms/templates/emails/course_creator_revoked.txt +msgid "" +"Your course creation rights to {studio_name} have been revoked. If you " +"believe this was in error, please contact {email}" +msgstr "您在{studio_name}上的课程创建权限已被撤销。如果您觉得有问题,请联系 {email}" + +#: cms/templates/emails/course_creator_subject.txt +msgid "Your course creator status for {studio_name}" +msgstr "您在{studio_name}上的课程创建者状态" + +#: cms/templates/emails/user_task_complete_email.txt +msgid "" +"Your {task_name} task has completed with the status '{task_status}'. Use " +"this URL to view task details or download any files created: {detail_url}" +msgstr "您的{task_name}任务状态是{task_status},请使用此URL查看任务详情或下载已创建的文件:{detail_url}" + +#: cms/templates/emails/user_task_complete_email.txt +msgid "" +"Your {task_name} task has completed with the status '{task_status}'. Sign in" +" to view the details of your task or download any files created." +msgstr "您的任务:{task_name}已超过“{task_status}”状态,请登录后查看任务详情或下载已创建文件。" + +#: cms/templates/emails/user_task_complete_email_subject.txt +msgid "{platform_name} {studio_name}: Task Status Update" +msgstr "{platform_name} {studio_name}:任务状态更新" + +#: cms/templates/maintenance/_force_publish_course.html +msgid "Required data to force publish course." +msgstr "强制发布课程所需的数据。" + +#: cms/templates/maintenance/_force_publish_course.html +msgid "course-v1:edX+DemoX+Demo_Course" +msgstr "course-v1:edX+DemoX+Demo_Course" + +#: cms/templates/maintenance/_force_publish_course.html +msgid "Reset values" +msgstr "重设值" + +#: cms/templates/maintenance/base.html cms/templates/maintenance/index.html +msgid "Maintenance Dashboard" +msgstr "维护面板" + +#: cms/templates/registration/activation_complete.html +msgid "Thanks for activating your account." +msgstr "谢谢您激活账号。" + +#: cms/templates/registration/activation_complete.html +msgid "This account has already been activated." +msgstr "本账号已经被激活" + +#: cms/templates/registration/activation_complete.html +msgid "Visit your {link_start}dashboard{link_end} to see your courses." +msgstr "访问您的{link_start}课程面板{link_end}来查看课程。" + +#: cms/templates/registration/activation_complete.html +msgid "You can now {link_start}sign in{link_end}." +msgstr "您现在可以{link_start}登录{link_end}。" + +#: cms/templates/registration/activation_invalid.html +msgid "Activation Invalid" +msgstr "激活无效" + +#: cms/templates/registration/activation_invalid.html +msgid "" +"Something went wrong. Email programs sometimes split URLs into two lines, so" +" make sure the URL you're using is formatted correctly. If you still have " +"issues, send us an email message at {email_start}{email}{email_end}." +msgstr "" +"发生了错误。电子邮件程序有时会将 URL 分成两行,因此请确保您使用的 URL 格式正确。如果您仍然有问题,请通过以下地址向我们发送电子邮件: " +"{email_start}{email}{email_end}。" + +#: cms/templates/registration/activation_invalid.html +msgid "Return to the {link_start}home page{link_end}." +msgstr "返回到{link_start}主页{link_end}。" + +#: cms/templates/registration/reg_complete.html +msgid "" +"We've sent an email message to {email} with instructions for activating your" +" account." +msgstr "我们已向您的邮箱{email}发送了一封邮件,其中包含有关激活账号的说明" + +#: cms/templates/widgets/footer.html +msgid "Policies" +msgstr "政策" + +#: cms/templates/widgets/footer.html +msgid "Accessibility Accommodation Request" +msgstr "可访问的住宿申请" + +#: cms/templates/widgets/footer.html +msgid "LMS" +msgstr "LMS" + +#. Translators: 'EdX', 'edX', 'Studio', and 'Open edX' are trademarks of 'edX +#. Inc.'. Please do not translate any of these trademarks and company names. +#: cms/templates/widgets/footer.html +msgid "" +"EdX, Open edX, Studio, and the edX and Open edX logos are registered " +"trademarks or trademarks of {link_start}edX Inc.{link_end}" +msgstr "" +"“EdX”、“Open edX”、“Studio”和 edX、Open edX 图标是 {link_start}edX 公司{link_end} " +"的(注册)商标。" + +#: cms/templates/widgets/header.html +msgid "Current Course:" +msgstr "当前课程" + +#: cms/templates/widgets/header.html +msgid "Course Navigation" +msgstr "课程导航" + +#: cms/templates/widgets/header.html +msgid "Outline" +msgstr "大纲" + +#: cms/templates/widgets/header.html +msgid "Import" +msgstr "导入" + +#: cms/templates/widgets/header.html +msgid "Export" +msgstr "导出" + +#: cms/templates/widgets/header.html +msgid "Current Library:" +msgstr "当前知识库:" + +#: cms/templates/widgets/header.html +msgid "Language preference" +msgstr "语言首选项" + +#: cms/templates/widgets/header.html +msgid "Account Navigation" +msgstr "账号导航" + +#: cms/templates/widgets/header.html +msgid "Contextual Online Help" +msgstr "相关在线帮助" + +#: cms/templates/widgets/metadata-edit.html +msgid "Launch Latex Source Compiler" +msgstr "启动 Latex 源编译器" + +#: cms/templates/widgets/problem-edit.html +msgid "Heading" +msgstr "标题" + +#: cms/templates/widgets/problem-edit.html +msgid "Insert a heading" +msgstr "插入一个标题" + +#: cms/templates/widgets/problem-edit.html +msgid "Add a multiple choice question" +msgstr "新增一个单选的问题" + +#: cms/templates/widgets/problem-edit.html +msgid "Add a question with checkboxes" +msgstr "新增一个可复选的问题" + +#: cms/templates/widgets/problem-edit.html +msgid "Insert a text response" +msgstr "插入一个文字的回应" + +#: cms/templates/widgets/problem-edit.html +msgid "Insert a numerical response" +msgstr "插入一个数字的回应" + +#: cms/templates/widgets/problem-edit.html +msgid "Insert a dropdown response" +msgstr "插入一个下拉式的回应" + +#: cms/templates/widgets/problem-edit.html +msgid "Explanation" +msgstr "解析" + +#: cms/templates/widgets/problem-edit.html +msgid "Add an explanation for this question" +msgstr "新增此章节的说明" + +#: cms/templates/widgets/problem-edit.html +msgid "Advanced Editor" +msgstr "高级编辑器" + +#: cms/templates/widgets/problem-edit.html +msgid "Toggle Cheatsheet" +msgstr "切换速记" + +#: cms/templates/widgets/problem-edit.html +msgid "Label" +msgstr "标签" + +#: cms/templates/widgets/sock_links.html +msgid "Access the Open edX Portal" +msgstr "访问 Open edX Portal" + +#: cms/templates/widgets/sock_links.html +msgid "Open edX Portal" +msgstr "Open edX Portal" + +#: cms/templates/widgets/user_dropdown.html +msgid "Currently signed in as:" +msgstr "当前登录用户:" + +#: cms/templates/widgets/user_dropdown.html +msgid "Maintenance" +msgstr "维护" + +#: wiki/apps.py +msgid "Wiki notifications" +msgstr "Wiki通知" + +#: wiki/apps.py +msgid "Wiki images" +msgstr "Wiki图片" + +#: wiki/apps.py +msgid "Wiki attachments" +msgstr "Wiki附件" + +#: wiki/forms.py +msgid "Only localhost... muahahaha" +msgstr "只有localhost……哇哈哈哈" + +#: wiki/forms.py +msgid "Initial title of the article. May be overridden with revision titles." +msgstr "文章的原始标题,可能会被修正版本的标题所覆盖。" + +#: wiki/forms.py +msgid "Type in some contents" +msgstr "请键入一些内容" + +#: wiki/forms.py +msgid "" +"This is just the initial contents of your article. After creating it, you " +"can use more complex features like adding plugins, meta data, related " +"articles etc..." +msgstr "这只是您文章的初稿。在创建了文章以后,您可以使用更复杂的特性,比如增加插件、元数据、相关文章,等等……" + +#: wiki/forms.py +msgid "Contents" +msgstr "内容" + +#: wiki/forms.py +msgid "Summary" +msgstr "概要" + +#: wiki/forms.py +msgid "" +"Give a short reason for your edit, which will be stated in the revision log." +msgstr "给出您编辑本文章的简短说明,它将会被写入修订日志中。" + +#: wiki/forms.py +msgid "" +"While you were editing, someone else changed the revision. Your contents " +"have been automatically merged with the new contents. Please review the text" +" below." +msgstr "当您在编辑时,别人进行了修改,您的内容已自动与其合并,请检查以下的文字。" + +#: wiki/forms.py +msgid "No changes made. Nothing to save." +msgstr "没有变更,不需要保存。" + +#: wiki/forms.py wiki/templates/wiki/dir.html +msgid "Slug" +msgstr "固定链接地址" + +#: wiki/forms.py +msgid "" +"This will be the address where your article can be found. Use only " +"alphanumeric characters and - or _. Note that you cannot change the slug " +"after creating the article." +msgstr "" +"这个地址将用于定位您的文档。请使用由数字、字母、-(减号)、_(下划线)组成的字符串。注意:一旦文档创建完毕将不能再对此固定链接地址进行修改。" + +#: wiki/forms.py +msgid "Write a brief message for the article's history log." +msgstr "为文章的历史记录写一个简短的报告" + +#: wiki/forms.py +msgid "A slug may not begin with an underscore." +msgstr "不能使用下划线作为固定链接地址的起始字符。" + +#: wiki/forms.py +#, python-format +msgid "A deleted article with slug \"%s\" already exists." +msgstr "已经存在一个固定链接地址为“%s”的已删除文档。" + +#: wiki/forms.py +#, python-format +msgid "A slug named \"%s\" already exists." +msgstr "以“%s”命名的固定链接地址已经存在。" + +#: wiki/forms.py +msgid "Yes, I am sure" +msgstr "是的,我确定" + +#: wiki/forms.py wiki/templates/wiki/deleted.html +msgid "Purge" +msgstr "清除" + +#: wiki/forms.py +msgid "" +"Purge the article: Completely remove it (and all its contents) with no undo." +" Purging is a good idea if you want to free the slug such that users can " +"create new articles in its place." +msgstr "清除文档:完全删除它(以及其中的内容)且无法恢复。当您需要释放该固定链接地址以便可以创建一个新文档继承使用该固定链接地址时选择清除操作。" + +#: wiki/forms.py wiki/plugins/attachments/forms.py +#: wiki/plugins/images/forms.py +msgid "You are not sure enough!" +msgstr "您还不够确定!" + +#: wiki/forms.py +msgid "While you tried to delete this article, it was modified. TAKE CARE!" +msgstr "在您试图删除该文章期间,它已经被修改。请特别注意!" + +#: wiki/forms.py +msgid "Lock article" +msgstr "锁定文章" + +#: wiki/forms.py +msgid "Deny all users access to edit this article." +msgstr "不允许其他用户编辑该文章。" + +#: wiki/forms.py +msgid "Permissions" +msgstr "权限" + +#: wiki/forms.py +msgid "Owner" +msgstr "所有者" + +#: wiki/forms.py +msgid "Enter the username of the owner." +msgstr "请输入所有者用户名。" + +#: wiki/forms.py +msgid "(none)" +msgstr "(空)" + +#: wiki/forms.py +msgid "Inherit permissions" +msgstr "继承权限" + +#: wiki/forms.py +msgid "" +"Check here to apply the above permissions recursively to articles under this" +" one." +msgstr "选择此项将使上述权限对以下的文档递归生效。" + +#: wiki/forms.py +msgid "Permission settings for the article were updated." +msgstr "文档的权限设置已更新。" + +#: wiki/forms.py +msgid "Your permission settings were unchanged, so nothing saved." +msgstr "您的权限设置没有变更,不需要保存。" + +#: wiki/forms.py +msgid "No user with that username" +msgstr "找不到此用户名所对应的用户" + +#: wiki/forms.py +msgid "Article locked for editing" +msgstr "文章在编辑中,已被锁定" + +#: wiki/forms.py +msgid "Article unlocked for editing" +msgstr "文章已解锁,可以编辑" + +#: wiki/forms.py +msgid "Filter" +msgstr "过滤" + +#: wiki/core/plugins/base.py +msgid "Settings for plugin" +msgstr "插件设置" + +#: wiki/models/article.py wiki/models/pluginbase.py +#: wiki/plugins/attachments/models.py +msgid "current revision" +msgstr "当前版本" + +#: wiki/models/article.py +msgid "" +"The revision being displayed for this article. If you need to do a roll-" +"back, simply change the value of this field." +msgstr "显示该文档的对应版本。如果您需要回滚到历史版本,请修改空格里的值。" + +#: wiki/models/article.py +msgid "modified" +msgstr "已修改" + +#: wiki/models/article.py +msgid "Article properties last modified" +msgstr "最后修改的文章属性" + +#: wiki/models/article.py +msgid "owner" +msgstr "所有者" + +#: wiki/models/article.py +msgid "" +"The owner of the article, usually the creator. The owner always has both " +"read and write access." +msgstr "文章的所有者,通常是创建者。所有者总是拥有读写权限。" + +#: wiki/models/article.py +msgid "group" +msgstr "分组" + +#: wiki/models/article.py +msgid "" +"Like in a UNIX file system, permissions can be given to a user according to " +"group membership. Groups are handled through the Django auth system." +msgstr "类似UNIX文件系统,权限可以根据用户的用户组授予。用户组通过Django的认证系统管理。" + +#: wiki/models/article.py +msgid "group read access" +msgstr "用户组读访问权限" + +#: wiki/models/article.py +msgid "group write access" +msgstr "用户组写访问权限" + +#: wiki/models/article.py +msgid "others read access" +msgstr "其他用户读访问权限" + +#: wiki/models/article.py +msgid "others write access" +msgstr "其他用户写访问权限" + +#: wiki/models/article.py +#, python-format +msgid "Article without content (%(id)d)" +msgstr "文档中没有内容(%(id)d)" + +#: wiki/models/article.py +msgid "content type" +msgstr "内容类型" + +#: wiki/models/article.py +msgid "object ID" +msgstr "对象ID" + +#: wiki/models/article.py +msgid "Article for object" +msgstr "对象的文档" + +#: wiki/models/article.py +msgid "Articles for object" +msgstr "对象的文档" + +#: wiki/models/article.py +msgid "revision number" +msgstr "版本修订号" + +#: wiki/models/article.py +msgid "IP address" +msgstr "IP地址" + +#: wiki/models/article.py +msgid "user" +msgstr "用户" + +#: wiki/models/article.py wiki/templates/wiki/article.html +#: wiki/templates/wiki/includes/revision_info.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "locked" +msgstr "已锁定" + +#: wiki/models/article.py wiki/models/pluginbase.py +msgid "article" +msgstr "文档" + +#: wiki/models/article.py +msgid "article contents" +msgstr "文档内容" + +#: wiki/models/article.py +msgid "article title" +msgstr "文档标题" + +#: wiki/models/article.py +msgid "" +"Each revision contains a title field that must be filled out, even if the " +"title has not changed" +msgstr "每一次版本修订都必须包含有标题,即使标题本身并没有发生变化" + +#: wiki/models/pluginbase.py +msgid "original article" +msgstr "原始文档" + +#: wiki/models/pluginbase.py +msgid "Permissions are inherited from this article" +msgstr "从该文档继承的权限" + +#: wiki/models/pluginbase.py +msgid "A plugin was changed" +msgstr "一个插件被变更" + +#: wiki/models/pluginbase.py +msgid "" +"The revision being displayed for this plugin.If you need to do a roll-back, " +"simply change the value of this field." +msgstr "显示插件修订版本信息。如果您需要回滚到历史版本,请修改此处的值。" + +#: wiki/models/urlpath.py +msgid "Cache lookup value for articles" +msgstr "缓存文档的查找值" + +#: wiki/models/urlpath.py +msgid "slug" +msgstr "固定链接地址" + +#: wiki/models/urlpath.py +msgid "(root)" +msgstr "(root)" + +#: wiki/models/urlpath.py +msgid "URL path" +msgstr "URL路径" + +#: wiki/models/urlpath.py +msgid "URL paths" +msgstr "URL路径" + +#: wiki/models/urlpath.py +msgid "Sorry but you cannot have a root article with a slug." +msgstr "抱歉,您无法对根文档设置固定链接地址。" + +#: wiki/models/urlpath.py +msgid "A non-root note must always have a slug." +msgstr "非根节点必须有固定链接地址。" + +#: wiki/models/urlpath.py +#, python-format +msgid "There is already a root node on %s" +msgstr "在%s已经存在一个根节点" + +#: wiki/models/urlpath.py +msgid "" +"Articles who lost their parents\n" +"===============================\n" +"\n" +"The children of this article have had their parents deleted. You should probably find a new home for them." +msgstr "" +"丢失父链接的文档\n" +"===============================\n" +"\n" +"该子文档的父链接已经被删除。您可以可以重新为他们寻找一个新的链接点。" + +#: wiki/models/urlpath.py +msgid "Lost and found" +msgstr "失物招领" + +#: wiki/plugins/attachments/forms.py +msgid "A short summary of what the file contains" +msgstr "该文档包含内容的简要说明" + +#: wiki/plugins/attachments/forms.py +msgid "Yes I am sure..." +msgstr "是的我很确定…" + +#: wiki/plugins/attachments/markdown_extensions.py +msgid "Click to download file" +msgstr "点击以下载文件" + +#: wiki/plugins/attachments/models.py +msgid "" +"The revision of this attachment currently in use (on all articles using the " +"attachment)" +msgstr "该附件的修订版本正在使用中(适用于所有使用该附件的文档)" + +#: wiki/plugins/attachments/models.py +msgid "original filename" +msgstr "原始文件名" + +#: wiki/plugins/attachments/models.py +msgid "attachment" +msgstr "附件" + +#: wiki/plugins/attachments/models.py +msgid "attachments" +msgstr "附件" + +#: wiki/plugins/attachments/models.py +msgid "file" +msgstr "文件" + +#: wiki/plugins/attachments/models.py +msgid "attachment revision" +msgstr "附件修订版本" + +#: wiki/plugins/attachments/models.py +msgid "attachment revisions" +msgstr "附件修订版本" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "%s was successfully added." +msgstr "%s已经成功添加。" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "Your file could not be saved: %s" +msgstr "您的文件无法被保存:%s" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your file could not be saved, probably because of a permission error on the " +"web server." +msgstr "您的文件无法被保存,可能是由于或者Web服务器的权限异常。" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "%s uploaded and replaces old attachment." +msgstr "%s上传成功并覆盖原有附件。" + +#: wiki/plugins/attachments/views.py +msgid "" +"Your new file will automatically be renamed to match the file already " +"present. Files with different extensions are not allowed." +msgstr "您的新文件将被自动重命名以匹配已经存在的文件。不允许使用不同的文件扩展名。" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "Current revision changed for %s." +msgstr "对%s当前修订版本的变更。" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "Added a reference to \"%(att)s\" from \"%(art)s\"." +msgstr "从“%(art)s”添加一个引用到“%(att)s”。" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "The file %s was deleted." +msgstr "文档%s被删除。" + +#: wiki/plugins/attachments/views.py +#, python-format +msgid "This article is no longer related to the file %s." +msgstr "该文档与文件%s不再关联。" + +#: wiki/plugins/attachments/wiki_plugin.py +#, python-format +msgid "A file was changed: %s" +msgstr "文件被修改:%s" + +#: wiki/plugins/attachments/wiki_plugin.py +#, python-format +msgid "A file was deleted: %s" +msgstr "文件被删除:%s" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "" +"The file may be referenced on other articles. Deleting it means that they " +"will loose their references to this file. The following articles reference " +"this file:" +msgstr "该文件也许在其他文字内被引用。删除他意味着在文章内将无法引用该文件。以下文章引用了该文件:" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "Delete it!" +msgstr "删除!" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "" +"You can remove a reference to a file, but it will retain its references on " +"other articles." +msgstr "您可移除一个文件的引用,但其他文章仍保留此引用。" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/delete.html +msgid "Remove reference" +msgstr "移除引用" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +msgid "History of" +msgstr "历史" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +msgid "User" +msgstr "用户" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "File" +msgstr "文件" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Action" +msgstr "操作" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "No description" +msgstr "无描述" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Download" +msgstr "下载" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/history.html +msgid "Use this!" +msgstr "使用!" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#, python-format +msgid "" +"Replacing an attachment means adding a new file that will be used in its " +"place. All references to the file will be replaced by the one you upload and" +" the file will be downloaded as %(filename)s. Please note " +"that this attachment is in use on other articles, you may distort contents. " +"However, do not hestitate to take advantage of this and make replacements " +"for the listed articles where necessary. This way of working is more " +"efficient...." +msgstr "" +"替换附件意味着将在其位置添加一个新文件。所有对该文件的引用将被您上传的文件所取代,该文件将以%(filename)s的形式下载。请注意,此附件在其他文章中使用,您可能会对其内容造成影响。不过我们鼓励您在必要时替换所列的文件。这种工作方式更高效...." + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +msgid "Articles using" +msgstr "文章使用" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#, python-format +msgid "" +"Replacing an attachment means adding a new file that will be used in its " +"place. All references to the file will be replaced by the one you upload and" +" the file will be downloaded as %(filename)s." +msgstr "" +"替换附件意味着在其位置添加一个新文件。所有对该文件的引用将被您上传的文件所取代,该文件将以%(filename)s形式下载。" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/replace.html +#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html +msgid "Upload replacement" +msgstr "上传替换文件" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Add file to" +msgstr "添加文件至" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Add attachment from other article" +msgstr "添加来自其他文章的附件" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Main article" +msgstr "主文章" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Add to article" +msgstr "添加至文章" + +#: wiki/plugins/attachments/templates/wiki/plugins/attachments/search.html +msgid "Your search did not return any results" +msgstr "您的搜索没有结果" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "Adding new articles" +msgstr "正在添加新文章" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "An external link" +msgstr "一个外部链接" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "Headers" +msgstr "标题" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "" +"Use these codes for headers and to automatically generate Tables of " +"Contents." +msgstr "在表头中使用这些码,并且自动生成目录。" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "Typography" +msgstr "排版" + +#: wiki/plugins/help/templates/wiki/plugins/help/sidebar.html +msgid "Lists" +msgstr "列表" + +#: wiki/plugins/images/forms.py +#, python-format +msgid "" +"New image %s was successfully uploaded. You can use it by selecting it from " +"the list of available images." +msgstr "新图片%s已经成功上传,您可以从图片库中选择使用它。" + +#: wiki/plugins/images/forms.py +msgid "Are you sure?" +msgstr "您确定?" + +#: wiki/plugins/images/models.py +msgid "image" +msgstr "图片" + +#: wiki/plugins/images/models.py +msgid "images" +msgstr "图片" + +#: wiki/plugins/images/models.py +#, python-format +msgid "Image: %s" +msgstr "图片:%s" + +#: wiki/plugins/images/models.py +msgid "Current revision not set!!" +msgstr "尚未设置当前的修订版本!!" + +#: wiki/plugins/images/models.py +msgid "image revision" +msgstr "图片修订版本" + +#: wiki/plugins/images/models.py +msgid "image revisions" +msgstr "图片修订版本" + +#: wiki/plugins/images/models.py +#, python-format +msgid "Image Revsion: %d" +msgstr "图片修订版本:%d" + +#: wiki/plugins/images/views.py +#, python-format +msgid "%s has been restored" +msgstr "%s已经被恢复" + +#: wiki/plugins/images/views.py +#, python-format +msgid "%s has been marked as deleted" +msgstr "%s已经被标注为已删除" + +#: wiki/plugins/images/views.py +#, python-format +msgid "%(file)s has been changed to revision #%(revision)d" +msgstr "%(file)s已经被变更到修订版本#%(revision)d" + +#: wiki/plugins/images/views.py +#, python-format +msgid "%(file)s has been saved." +msgstr "%(file)s已经被保存。" + +#: wiki/plugins/images/wiki_plugin.py +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Images" +msgstr "图片" + +#: wiki/plugins/images/wiki_plugin.py +#, python-format +msgid "An image was added: %s" +msgstr "已经添加图片:%s" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "" +"The following images are available for this article. Copy the markdown tag " +"to directly refer to an image from the article text." +msgstr "此文章可使用以下图片,复制标签直接引用文章文字中的图片。" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Back to edit page" +msgstr "返回编辑页面" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "No file" +msgstr "没有文件" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Upload new image" +msgstr "上传新图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Restore image" +msgstr "恢复图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Remove image" +msgstr "移除图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Completely delete" +msgstr "彻底删除" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "Revert to this version" +msgstr "恢复至此版本" + +#: wiki/plugins/images/templates/wiki/plugins/images/index.html +msgid "There are no images for this article." +msgstr "此文章没有图片。" + +#: wiki/plugins/images/templates/wiki/plugins/images/purge.html +#: wiki/templates/wiki/deleted.html +msgid "Purge deletion" +msgstr "清除" + +#: wiki/plugins/images/templates/wiki/plugins/images/purge.html +msgid "Purge image: Completely remove image file and all revisions." +msgstr "清除:彻底移除图片文件。" + +#: wiki/plugins/images/templates/wiki/plugins/images/purge.html +msgid "Remove it completely!" +msgstr "完全移除" + +#: wiki/plugins/images/templates/wiki/plugins/images/render.html +msgid "Image not found" +msgstr "未发现图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html +msgid "Replace image" +msgstr "替换图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/revision_add.html +msgid "Choose an image file to replace current image." +msgstr "选择一张图片来替换当前图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Image id" +msgstr "图片编号" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "Insert" +msgstr "插入" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "No images found for this article" +msgstr "这篇文章中未找到图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Manage images" +msgstr "管理图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Add new image" +msgstr "添加新的图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "Add image" +msgstr "添加图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "You do not have permissions to add images." +msgstr "您没有权限添加图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "How to use images" +msgstr "如何使用图片" + +#: wiki/plugins/images/templates/wiki/plugins/images/sidebar.html +msgid "" +"After uploading an image, it is attached to this particular artice and can " +"be used only here. Other users may replace the image, but older versions are" +" kept. You probably want to show the image with a nice caption. To achieve " +"this, press the Insert button and fill in the caption fields and possibly " +"choose to have you image floating right or left of the content. You can use " +"Markdown in the caption. The markdown code syntax for images looks like " +"this, possible values for align are left/center/right:" +msgstr "" +"上传一张图片后,图片会附属于此文章,并且仅供此文章使用。其他用户可替换此图片,但旧版本会保留。您可加字幕描述图片,步骤如下:点击嵌入按钮并输入字幕,然后可选择图片浮在内容的左方还是右方。您可在字幕中使用标签,图片的标签码语法像这样,对线可可以取值“left/center/right”。" + +#: wiki/plugins/links/wiki_plugin.py +msgid "Links" +msgstr "链接" + +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "Link to another wiki page" +msgstr "链接至另一个wiki页面" + +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "" +"Type in something from another wiki page's title and auto-complete will help" +" you create a tag for you wiki link. Tags for links look like this:" +msgstr "参考输入其他Wiki页面标题,自动完成功能会帮助您创建Wiki链接的标签。链接标签如下:" + +#: wiki/plugins/links/templates/wiki/plugins/links/sidebar.html +msgid "" +"You can link to another website simply by inserting an address example.com " +"or http://example.com or by using the markdown syntax:" +msgstr "插入example.com或http://example.com,或使用以下标记语法来轻松关联网站:" + +#: wiki/plugins/notifications/forms.py +msgid "Notifications" +msgstr "通知" + +#: wiki/plugins/notifications/forms.py +msgid "When this article is edited" +msgstr "当这篇文章被编辑" + +#: wiki/plugins/notifications/forms.py +msgid "Also receive emails about article edits" +msgstr "接收关于该文档编辑的电子邮件" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were updated." +msgstr "您的通知设置已经更新。" + +#: wiki/plugins/notifications/forms.py +msgid "Your notification settings were unchanged, so nothing saved." +msgstr "您的通知设置没有变更,因此无需保存。" + +#: wiki/plugins/notifications/models.py +#, python-format +msgid "%(user)s subscribing to %(article)s (%(type)s)" +msgstr "%(user)s订阅%(article)s(%(type)s)" + +#: wiki/plugins/notifications/models.py +#, python-format +msgid "Article deleted: %s" +msgstr "被删除的文档:%s" + +#: wiki/plugins/notifications/models.py +#, python-format +msgid "Article modified: %s" +msgstr "被修改文档:%s" + +#: wiki/plugins/notifications/models.py +#, python-format +msgid "New article created: %s" +msgstr "创建的新文档:%s" + +#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html +msgid "notifications" +msgstr "通知" + +#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html +msgid "No notifications" +msgstr "没有通知" + +#: wiki/plugins/notifications/templates/wiki/plugins/notifications/menubaritem.html +msgid "Clear notifications list" +msgstr "清除通知列表" + +#: wiki/templates/wiki/base.html +msgid "Search..." +msgstr "搜索" + +#: wiki/templates/wiki/base.html wiki/templates/wiki/accounts/login.html +#: wiki/templates/wiki/accounts/signup.html +msgid "Sign up" +msgstr "注册" + +#: wiki/templates/wiki/deleted.html +msgid "Article deleted" +msgstr "文章已删除" + +#: wiki/templates/wiki/deleted.html +msgid "Article Deleted" +msgstr "文章已删除" + +#: wiki/templates/wiki/deleted.html +msgid "The article you were looking for has been deleted." +msgstr "您寻找的文章已被删除。" + +#: wiki/templates/wiki/deleted.html +msgid "You may restore this article and its children by clicking restore." +msgstr "您可点击恢复按钮来恢复此文章及其子项。" + +#: wiki/templates/wiki/deleted.html +msgid "" +"You may remove this article and any children permanently and free their " +"slugs by clicking the below button. This action cannot be undone." +msgstr "您可永久性移除此文章及其任何子项,并点击以下按钮来解绑其固定地址。操作无法撤销。" + +#: wiki/templates/wiki/dir.html +msgid "Listing articles in" +msgstr "文章清单" + +#: wiki/templates/wiki/dir.html +msgid "Up one level" +msgstr "返回上一级" + +#: wiki/templates/wiki/dir.html +msgid "clear" +msgstr "清除" + +#: wiki/templates/wiki/dir.html +msgid "article,articles" +msgstr "文章" + +#: wiki/templates/wiki/dir.html +msgid "matches,match" +msgstr "匹配,匹配" + +#: wiki/templates/wiki/dir.html +#, python-format +msgid "%(cnt)s %(articles_plur)s in this level %(match_plur)s your search." +msgstr "%(cnt)s%(articles_plur)s该等级中有%(match_plur)s符合您的搜索。" + +#: wiki/templates/wiki/dir.html +msgid "is,are" +msgstr "是,是" + +#: wiki/templates/wiki/dir.html +#, python-format +msgid "There %(articles_plur_verb)s %(cnt)s %(articles_plur)s in this level." +msgstr "此等级中共有%(articles_plur_verb)s%(cnt)s%(articles_plur)s篇文章" + +#: wiki/templates/wiki/dir.html +msgid "Last modified" +msgstr "上一次修改" + +#: wiki/templates/wiki/history.html +msgid "no log message" +msgstr "没有日志信息" + +#: wiki/templates/wiki/permission_denied.html +msgid "Sorry, you don't have permission to view this page." +msgstr "抱歉,您没有权限访问该页面" + +#: wiki/templates/wiki/preview_inline.html +msgid "Previewing revision" +msgstr "预览修改" + +#: wiki/templates/wiki/preview_inline.html +msgid "Previewing merge between" +msgstr "预览合并效果:" + +#: wiki/templates/wiki/preview_inline.html +msgid "and" +msgstr "和" + +#: wiki/templates/wiki/source.html +msgid "Source of" +msgstr "来源" + +#: wiki/templates/wiki/source.html +msgid "This article is currently locked for editing." +msgstr "此文章已锁定,暂时无法编辑。" + +#: wiki/templates/wiki/accounts/login.html +msgid "Log me in..." +msgstr "登录" + +#: wiki/templates/wiki/accounts/login.html +msgid "Don't have an account?" +msgstr "没有账号?" + +#: wiki/templates/wiki/accounts/signup.html +msgid "Sign me up..." +msgstr "注册" + +#: wiki/templates/wiki/article/create_root.html +msgid "Create root article" +msgstr "创建源文章" + +#: wiki/templates/wiki/article/create_root.html +msgid "Congratulations!" +msgstr "恭喜!" + +#: wiki/templates/wiki/article/create_root.html +msgid "" +"You have django-wiki installed... but there are no articles. So it's time to" +" create the first one, the root article. In the beginning, it will only be " +"editable by administrators, but you can define permissions after." +msgstr "您已安装django-wiki,但没有文章。建议您现在创建首篇源文章,刚开始仅管理员可编辑,但过后您也可以分配编辑权限给其他用户。" + +#: wiki/templates/wiki/article/create_root.html +msgid "Root article" +msgstr "源文章" + +#: wiki/templates/wiki/article/create_root.html +msgid "Create root" +msgstr "创建根目录" + +#: wiki/templates/wiki/includes/anonymous_blocked.html +msgid "You need to log in og sign up to use this function." +msgstr "如需使用此功能,请先登录或注册。" + +#: wiki/templates/wiki/includes/article_menu.html +msgid "View Source" +msgstr "查看文章源" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "Sub-articles for" +msgstr "子文章" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "No sub-articles" +msgstr "无子文章" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "...and more" +msgstr "...更多" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "Browse articles in this level" +msgstr "浏览此等级中的文章" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "New article next to" +msgstr "下一篇新的文章" + +#: wiki/templates/wiki/includes/breadcrumbs.html +msgid "New article below" +msgstr "下面的新文章" + +#: wiki/templates/wiki/includes/revision_info.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "by" +msgstr "由" + +#: wiki/templates/wiki/includes/revision_info.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "restored" +msgstr "恢复" + +#: wiki/templates/wiki/includes/revision_info.html +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "unlocked" +msgstr "解锁" + +#: wiki/views/accounts.py +msgid "You are now sign up... and now you can sign in!" +msgstr "您正在注册……现在您可以登录了!" + +#: wiki/views/accounts.py +msgid "You are no longer logged in. Bye bye!" +msgstr "您已经退出。再见!" + +#: wiki/views/accounts.py +msgid "You are now logged in! Have fun!" +msgstr "您已经登录!好好体验吧!" + +#: wiki/views/article.py +#, python-format +msgid "New article '%s' created." +msgstr "新文章“%s”已经创建。" + +#: wiki/views/article.py +#, python-format +msgid "There was an error creating this article: %s" +msgstr "该文档创建过程中出错:%s" + +#: wiki/views/article.py +msgid "There was an error creating this article." +msgstr "在文档创建过程中出错了。" + +#: wiki/views/article.py +msgid "" +"This article cannot be deleted because it has children or is a root article." +msgstr "这篇文章不能被删除,因为它有子类或是根文章。" + +#: wiki/views/article.py +msgid "" +"This article together with all its contents are now completely gone! Thanks!" +msgstr "文档及其所有内容已经删除!谢谢!" + +#: wiki/views/article.py +#, python-format +msgid "" +"The article \"%s\" is now marked as deleted! Thanks for keeping the site " +"free from unwanted material!" +msgstr "文档“%s”现在已被标记为删除了!感谢您为网站清除不必要的材料!" + +#: wiki/views/article.py +msgid "Your changes were saved." +msgstr "您的更改已被保存。" + +#: wiki/views/article.py +msgid "A new revision of the article was successfully added." +msgstr "成功添加了这篇文章的新的版本" + +#: wiki/views/article.py +msgid "Restoring article" +msgstr "恢复文档" + +#: wiki/views/article.py +#, python-format +msgid "The article \"%s\" and its children are now restored." +msgstr "文档“%s”及其子链接已经被恢复。" + +#: wiki/views/article.py +#, python-format +msgid "" +"The article %(title)s is now set to display revision #%(revision_number)d" +msgstr "文章“%(title)s”当前已设置为显示修订版本 #%(revision_number)d" + +#: wiki/views/article.py +msgid "New title" +msgstr "新标题" + +#: wiki/views/article.py +#, python-format +msgid "Merge between Revision #%(r1)d and Revision #%(r2)d" +msgstr "合并修订版本#%(r1)d与#%(r2)d" + +#: wiki/views/article.py +#, python-format +msgid "" +"A new revision was created: Merge between Revision #%(r1)d and Revision " +"#%(r2)d" +msgstr "产生新的修订版本:合并修订版本#%(r1)d与#%(r2)d" + +#: membership/models.py +msgid "1 Month" +msgstr "一个月会员" + +#: membership/models.py +msgid "3 Months" +msgstr "三个月会员" + +#: membership/models.py +msgid "6 Months" +msgstr "半年会员" + +#: membership/models.py +msgid "12 Months" +msgstr "全年会员" + +#: membership/models.py +msgid "24 Months" +msgstr "二年会员" + +#: membership/models.py +msgid "Awaiting for payment" +msgstr "等待付款" + +#: membership/models.py +msgid "Paid" +msgstr "已付款" + +#: membership/models.py +msgid "Refunded" +msgstr "已退款" + +#: membership/models.py +msgid "Offline" +msgstr "线下" + +#: membership/models.py membership/templates/membership/card.html +#: membership/templates/membership/result.html +#: membership/templates/membership/wechat_paying.html +msgid "WeChat" +msgstr "微信" + +#: membership/models.py membership/templates/membership/card.html +msgid "Alipay" +msgstr "支付宝" + +#: membership/models.py +msgid "Union pay" +msgstr "银联" + +#: membership/models.py +msgid "Apple Pay" +msgstr "Apple Pay" + +#: membership/models.py +msgid "Apple Inpurasing" +msgstr "苹果内购" + +#: membership/models.py +msgid "WeChat App" +msgstr "微信APP" + +#: membership/models.py +msgid "WeChat H5" +msgstr "微信H5" + +#: membership/models.py +msgid "Alipay App" +msgstr "支付宝" + +#: membership/models.py +msgid "subscribe normal" +msgstr "常规订阅" + +#: membership/models.py +msgid "subscribe pay" +msgstr "收费订阅" + +#: membership/templates/membership/card.html +msgid "VIP membership" +msgstr "会员资格" + +#: membership/templates/membership/card.html +msgid "EliteMBA VIP Membership" +msgstr "英荔商学院VIP会员" + +#: membership/templates/membership/card.html +msgid "View Introduction" +msgstr "查看介绍" + +#: membership/templates/membership/card.html +msgid "Select a Course" +msgstr "加入课程" + +#: membership/templates/membership/card.html +msgid "Choose a payment method" +msgstr "选择支付方式" + +#: membership/templates/membership/card.html +msgid "Membership Valid in " +msgstr "会员有效期:" + +#: membership/templates/membership/card.html +msgid " days" +msgstr "天" + +#: membership/templates/membership/card.html +msgid "Tuition: " +msgstr "学费:" + +#: membership/templates/membership/card.html +msgid "Go to Payment" +msgstr "去支付" + +#: membership/templates/membership/card.html +msgid "Complete Payment in a New Page" +msgstr "请在新页面完成支付" + +#: membership/templates/membership/card.html +msgid "" +"{span_start}Please do not close the page.{span_end} Please click the button " +"below accordingly after completing the payment." +msgstr "{span_start}请不要关闭页面,{span_end}完成支付后请根据情况点击下面按钮。" + +#: membership/templates/membership/card.html +msgid "Choose Another Payment Method" +msgstr "重选支付方式" + +#: membership/templates/membership/card.html +msgid "Payment Completed" +msgstr "支付完成" + +#: membership/templates/membership/card.html +msgid "Encounter a problem?" +msgstr "遇到问题?" + +#: membership/templates/membership/card.html +msgid "Go to payment" +msgstr "去支付" + +#: membership/templates/membership/index.html +msgid "Membership of Prestige EMBA Courses in America" +msgstr "美国名校MBA精华课程会员资格" + +#: membership/templates/membership/index.html +msgid "Six Main Areas for Administration Learning" +msgstr "英荔商学院六大课程方向" + +#: membership/templates/membership/index.html +msgid "Activate your potential to become a versatile leader" +msgstr "激活全能商业基因,您就是一个团队" + +#: membership/templates/membership/index.html +msgid "Business Administration" +msgstr "商业管理" + +#: membership/templates/membership/index.html +msgid "Innovation and Entrepreneurship" +msgstr "创新创业" + +#: membership/templates/membership/index.html +msgid "Statistical Analysis" +msgstr "统计分析" + +#: membership/templates/membership/index.html +msgid "Information Technology" +msgstr "信息技术" + +#: membership/templates/membership/index.html +msgid "Sales and Marketing" +msgstr "市场销售" + +#: membership/templates/membership/index.html +msgid "Retail Management" +msgstr "零售管理" + +#: membership/templates/membership/index.html +msgid "More Excellent Courses Coming Soon" +msgstr "更多重磅课程即将上线" + +#: membership/templates/membership/index.html +msgid "International Business Law" +msgstr "国际商法" + +#: membership/templates/membership/index.html +msgid "Dr. Ling Zhu" +msgstr "朱灵 博士" + +#: membership/templates/membership/index.html +msgid "PhD in Management Information Systems, the University of Arizona, USA" +msgstr "美国亚利桑那大学管理信息系统博士" + +#: membership/templates/membership/index.html +msgid "J.D., Fordham University, USA" +msgstr "美国福特汉姆大学法律博士" + +#: membership/templates/membership/index.html +msgid "Marketing Management and Applications" +msgstr "营销管理与应用" + +#: membership/templates/membership/index.html +msgid "Dr. Tung-lung Steven Chang" +msgstr "张东隆 博士" + +#: membership/templates/membership/index.html +msgid "" +"PhD. in International Business/Marketing, the George Washington University, " +"USA" +msgstr "美国乔治·华盛顿大学国际商务/市场营销博士" + +#: membership/templates/membership/index.html +msgid "PhD. in Management, National Chengchi University, Taiwan" +msgstr "台湾政治大学管理学博士" + +#: membership/templates/membership/index.html +msgid "Macroeconomics" +msgstr "宏观经济学" + +#: membership/templates/membership/index.html +msgid "(Davidson College)" +msgstr "(美国戴维森学院)" + +#: membership/templates/membership/index.html +msgid "Dr. Clark Ross" +msgstr "克拉克·罗斯 博士" + +#: membership/templates/membership/index.html +msgid "PhD. in Economics, Boston College, USA" +msgstr "美国波士顿学院经济学博士" + +#: membership/templates/membership/index.html +msgid "" +"*EliteMBA reserves the right of final interpretation for all course updates." +msgstr "*英荔商学院保留所有课程更新的最终解释权。" + +#: membership/templates/membership/index.html +msgid "World-Class Faculty" +msgstr "超强师资 —— 精英式教学" + +#: membership/templates/membership/index.html +msgid "Professors from leading Business Schools in America" +msgstr "美国名校商学院教授" + +#: membership/templates/membership/index.html +msgid "" +"Learn systematically, create a full knowledge matrix of administration from " +"zero to one" +msgstr "构建全方位的商科知识矩阵,从0到1,系统学习" + +#: membership/templates/membership/index.html +msgid "Dr. Baichun Xiao" +msgstr "萧柏春 博士" + +#: membership/templates/membership/index.html +msgid "" +"Tenured Professor and Chairman of the Department of Management at LIU Post, " +"USA" +msgstr "美国长岛大学商学院管理系终身教授、系主任" + +#: membership/templates/membership/index.html +msgid "Lloyd Shefsky" +msgstr "谢洛德 博士" + +#: membership/templates/membership/index.html +msgid "" +"Former Clinical Professor of Family Enterprises at Kellogg School of " +"Management at NU, USA" +msgstr "原美国西北大学凯洛格商学院创业专业教授" + +#: membership/templates/membership/index.html +msgid "Tim Smithe" +msgstr "蒂姆·塞米特 教授" + +#: membership/templates/membership/index.html +msgid "" +"Vice President & CMO of International Finance Education Association (IFEA)" +msgstr "国际金融教育协会副会长及首席营销官" + +#: membership/templates/membership/index.html +msgid "Dr. Wei Yang" +msgstr "杨威 博士" + +#: membership/templates/membership/index.html +msgid "Tenured Professor of the School of Business at LIU Post, USA" +msgstr "美国长岛大学商学院终身教授" + +#: membership/templates/membership/index.html +msgid "Dr. Weichun Zhu" +msgstr "朱伟春 博士" + +#: membership/templates/membership/index.html +msgid "" +"Former Assistant Professor of School of Labor and Employment Relations at " +"Penn State, USA" +msgstr "美国长岛大学商学院终身教授" + +#: membership/templates/membership/index.html +msgid "Dr. Jiamin Wang" +msgstr "汪嘉旻 博士" + +#: membership/templates/membership/index.html +msgid "Dr. Tianning Li" +msgstr "李天宁 博士" + +#: membership/templates/membership/index.html +msgid "Associate Professor of Finance at Hood College, USA" +msgstr "原美国宾夕法尼亚州立大学劳动力研究与雇佣关系学院助理教授" + +#: membership/templates/membership/index.html +msgid "Dr. Jianjun Shi" +msgstr "施建军 博士" + +#: membership/templates/membership/index.html +msgid "Former President and Professor at UIBE" +msgstr "原对外经济贸易大学校长、教授" + +#: membership/templates/membership/index.html +msgid "" +"The Frontis W. Johnston Professor of Economics at Davidson College, USA" +msgstr "美国戴维森学院经济学教授" + +#: membership/templates/membership/index.html +msgid "Dr. Elia Kacapyr" +msgstr "伊利亚·卡克皮尔 博士" + +#: membership/templates/membership/index.html +msgid "Professor of Economics at Ithaca College, USA" +msgstr "美国伊萨卡学院经济学教授" + +#: membership/templates/membership/index.html +msgid "Dr. Robert Graham" +msgstr "罗伯特·格雷厄姆 博士" + +#: membership/templates/membership/index.html +msgid "Professor of Economics at Hanover College, USA" +msgstr "美国汉诺威学院经济学教授" + +#: membership/templates/membership/index.html +msgid "View More" +msgstr "查看更多" + +#: membership/templates/membership/index.html +msgid "Join EliteMBA Membership" +msgstr "成为英荔商学院会员" + +#: membership/templates/membership/index.html +msgid "Choose a membership plan that fits your needs" +msgstr "根据您的需求选择合适的学习时长 " + +#: membership/templates/membership/index.html +msgid "" +"Have unlimited access to all courses at EliteMBA during membership period, " +"including newly released courses" +msgstr "学习期内享有英荔商学院所有课程的学习权益,新课上线亦可马上加入学习" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "Full Year" +msgstr "一年" + +#: membership/templates/membership/index.html +msgid "average per month" +msgstr "月均" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "Professional" +msgstr "全栈职场修炼" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "Half-Year" +msgstr "半年" + +#: membership/templates/membership/index.html +msgid "Senior" +msgstr "能力高效提升" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "Three-Month" +msgstr "三个月" + +#: membership/templates/membership/index.html +msgid "Explorer" +msgstr "系列课程畅学" + +#: membership/templates/membership/index.html +msgctxt "Membership" +msgid "One-Month" +msgstr "一个月" + +#: membership/templates/membership/index.html +msgid "Beginner" +msgstr "多门课程体验" + +#: membership/templates/membership/index.html +msgid "" +"*Sign up NOW and get the most of your membership. More info on the payment " +"page." +msgstr "*现在报名可享以上优惠,具体详情请前往购买页。" + +#: membership/templates/membership/index.html +msgid "Learning Feature" +msgstr "学习特色" + +#: membership/templates/membership/index.html +msgid "Group Chat" +msgstr "群内互动" + +#: membership/templates/membership/index.html +msgid "Live Lecture" +msgstr "直播讲座" + +#: membership/templates/membership/index.html +msgid "Exam" +msgstr "习题测试" + +#: membership/templates/membership/index.html +msgid "Credential" +msgstr "结课证书" + +#: membership/templates/membership/index.html +msgid "Become a Member" +msgstr "加入会员" + +#: membership/templates/membership/index.html +msgid "" +"Self-disciplined learning off work decides how competitive you are. Let’s " +"discipline ourselves and gain advantage!" +msgstr "有一种差距,叫8小时以外的自律,和英荔一起出发,成为自律的全栈职场人!" + +#: membership/templates/membership/result.html +#: membership/templates/membership/wechat_paying.html +msgid "EliteMBA school cashier" +msgstr "英荔商学院收银台" + +#: membership/templates/membership/result.html +msgid "EliteMBA school cashier payment success" +msgstr "英荔商学院收银台支付成功" + +#: membership/templates/membership/result.html +#: membership/templates/membership/wechat_paying.html +msgid "Return to EliteMBA school in 3 seconds" +msgstr "3秒后返回英荔商学院" + +#: membership/templates/membership/result.html +#: membership/templates/membership/wechat_paying.html +msgid "Return Now" +msgstr "立即返回" + +#: membership/templates/membership/wechat_paying.html +msgid "Amount paid: " +msgstr "实付金额:" + +#: membership/templates/membership/wechat_paying.html +msgid "" +"Please complete the payment within 2 hours, otherwise the purchase may fail." +msgstr "请在2小时内完成支付,否则可能导致购买失败。" + +#: membership/templates/membership/wechat_paying.html +msgid "Please scan Wechat QR code" +msgstr "请使用微信扫描二维码" + +#: membership/templates/membership/wechat_paying.html +msgid "to complete payment" +msgstr "以完成支付" + +#: membership/templates/membership/wechat_paying.html +msgid "Payment Success" +msgstr "支付成功" + +msgid "email address" +msgstr "邮箱" + +msgid "English" +msgstr "英语" + +msgid "Chinese" +msgstr "中文" + +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/base_body.html +#: themes/elitemba-theme/lms/templates/footer.html +msgid "" +"Guangdong Elite International Education & Technology Co., Ltd. All Rights" +" Reserved" +msgstr "广东英荔国际教育科技有限公司 版权所有" + +#: themes/elitemba-theme/lms/templates/ace_common/edx_ace/common/return_to_course_cta.html +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +#: themes/elitemba-theme/lms/templates/emails/confirm_email_change.txt +#: themes/elitemba-theme/lms/templates/emails/failed_verification_email.txt +#: themes/elitemba-theme/lms/templates/emails/order_confirmation_email.txt +#: themes/elitemba-theme/lms/templates/emails/photo_submission_review.txt +#: themes/elitemba-theme/lms/templates/emails/reverification_processed.txt +msgid "" +"(If the link is invalid, try to copy and paste it into the address bar of " +"your web browser, and press \"Enter\" to open the page.)" +msgstr "(如链接点击无效,请手动复制链接并粘贴到浏览器地址栏中,然后按“回车”打开页面即可)" + +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.html +#: themes/elitemba-theme/lms/templates/instructor/edx_ace/allowedunenroll/email/body.txt +#, python-format +msgid "" +"You have been unenrolled from the course %(course_name)s by a member of the " +"course staff. Please ignore the invitation previously sent." +msgstr "您已被课程工作人员从 %(course_name)s课程移除。请忽略之前向您发出的所有请求。" + +#: themes/elitemba-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s, and other courses on " +"EliteMBA.cn? We do, and we’re glad to have you! Come see what everyone is " +"learning." +msgstr "" +"您还记得在EliteMBA.cn上报名了%(course_name)s和其他课程吗?很高兴您选择了我们的课程!赶紧来看看大家都在学习什么吧。" + +#: themes/elitemba-theme/lms/templates/schedules/edx_ace/recurringnudge_day3/email/body.txt +#, python-format +msgid "" +"Remember when you enrolled in %(course_name)s on EliteMBA.cn? We do, and " +"we’re glad to have you! Come see what everyone is learning." +msgstr "您还记得在EliteMBA.cn上报名了%(course_name)s课程吗?很高兴您选择了我们的课程!赶紧来看看大家都在学习什么吧。" + +#: themes/elitemba-theme/lms/templates/wiki/history.html +msgid "anonymous (IP not logged)" +msgstr "匿名(IP未记录)" + +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "" +"Access Course Staff Support on the Partner Portal to submit or review " +"support tickets" +msgstr "在合作伙伴网站上访问“课程人员支持”来提交或查看支持工作单" + +#: themes/edx.org/cms/templates/widgets/sock.html +msgid "edX Partner Portal" +msgstr "edX 合作伙伴网站" + +#: themes/edx.org/lms/templates/dashboard.html +msgid "" +"Browse recently launched courses and see what's new in your favorite " +"subjects." +msgstr "浏览最新开办的课程,看看您最喜欢的科目中有了什么新内容" + +#: themes/edx.org/lms/templates/footer.html +msgid "Page Footer" +msgstr "页脚" + +#: themes/edx.org/lms/templates/footer.html +msgid "edX Home Page" +msgstr "edX首页" + +#: themes/edx.org/lms/templates/footer.html +msgid "© 2012–{year} edX Inc. " +msgstr "© 2012–{year} edX股份有限公司 " + +#: themes/edx.org/lms/templates/footer.html +msgid "EdX, Open edX, and MicroMasters are registered trademarks of edX Inc. " +msgstr "EdX、Open edX以及MicroMaster是edX股份有限公司的商标。" + +#: themes/edx.org/lms/templates/certificates/_about-accomplishments.html +msgid "About edX Verified Certificates" +msgstr "关于edX认证证书" + +#: themes/edx.org/lms/templates/certificates/_about-accomplishments.html +msgid "" +"An edX Verified Certificate signifies that the learner has agreed to abide " +"by the edX honor code and completed all of the required tasks of this course" +" under its guidelines, as well as having their photo ID checked to verify " +"their identity." +msgstr "edX认证证书可证明学员已同意遵守edX荣誉准则,并已按照准则完成所有所需任务、已通过提交身份证明至审查完成了认证身份。" + +#: themes/edx.org/lms/templates/certificates/_about-edx.html +msgid "About edX" +msgstr "关于 edX" + +#: themes/edx.org/lms/templates/certificates/_about-edx.html +msgid "" +"{link_start}edX{link_end} offers interactive online classes and MOOCs from " +"the world's best universities, including MIT, Harvard, Berkeley, University " +"of Texas, and many others. edX is a non-profit online initiative created by " +"founding partners Harvard and MIT." +msgstr "" +"{link_start}edX{link_end}提供互动式在线课堂和来自世界顶级大学的MOOC,包括麻省理工、哈佛大学、伯克利大学、 " +"德克萨斯大学等;edX是由创始合伙人哈佛大学和麻省理工创办的非营利性在线教育先驱。" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Congratulations, {user_name}!" +msgstr "恭喜,{user_name}!" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "" +"You worked hard to earn your certificate from " +"{accomplishment_copy_course_org} {dash} share it with colleagues, friends, " +"and family to get the word out about what you mastered in " +"{accomplishment_course_title}." +msgstr "" +"您刻苦学习考取了{accomplishment_copy_course_org}的证书 {dash} " +"与同事、朋友、家人分享吧,告诉大家您学习了{accomplishment_course_title}。" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Share this certificate on Facebook (opens a new tab/window)" +msgstr "分享此证书至Facebook(打开新标签页/窗口)" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Tweet this certificate (opens a new tab/window)" +msgstr "在Twitter上分享此证书(打开新标签页/窗口)" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Add this certificate to your LinkedIn profile (opens a new tab/window)" +msgstr "添加此证书至您的LinkedIn资料(打开新标签页/窗口)" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Print" +msgstr "打印" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-banner.html +msgid "Print this certificate" +msgstr "打印此证书" + +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +msgid "edX Inc." +msgstr "edX Inc." + +#: themes/edx.org/lms/templates/certificates/_accomplishment-footer.html +msgid "" +"All rights reserved except where noted. edX, Open edX and the edX and Open " +"edX logos are registered trademarks or trademarks of edX Inc." +msgstr "" +"© edX Inc. 保留所有权利(特别标注除外)。EdX、Open edX、edX 和 Open EdX 标识均为注册商标或 edX Inc. " +"的商标。" + +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Support our Mission: {b_end}EdX, a non-profit, relies on verified " +"certificates to help fund affordable education to everyone globally." +msgstr "{b_start}支持我们的使命:{b_end} EdX 是一个非营利组织,依靠已经过身份认证的证书来来资助人人可享的全球免费教育" + +#: themes/edx.org/lms/templates/course_modes/choose.html +msgid "" +"{b_start}Support our Mission: {b_end} EdX, a non-profit, relies on verified " +"certificates to help fund free education for everyone globally" +msgstr "{b_start}支持我们的使命:{b_end} EdX 是一个非营利组织,依靠认证证书来来资助人人可享的全球免费教育" + +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have access to course materials and " +"discussions forums. {b_start}This track does not include graded " +"assignments.{b_end}" +msgstr "免费旁听该课程,并可访问课程材料和讨论论坛。 {b_start}此方法不包含评分作业。{b_end}" + +#: themes/edx.org/lms/templates/course_modes/choose.html +#: themes/elitemba-theme/lms/templates/course_modes/choose.html +msgid "" +"Audit this course for free and have access to course materials and " +"discussions forums. {b_start}This track does not include unlimited course " +"access.{b_end}" +msgstr "免费旁听本课程,并可访问课程资料和讨论论坛。{b_start}此轨道不包括无限制的课程访问。{b_end}" + +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +msgid "Find Courses" +msgstr "查找课程" + +#: themes/edx.org/lms/templates/header/navbar-authenticated.html +msgid "Schools & Partners" +msgstr "学校 & 伙伴" + +#: themes/elitemba-theme/cms/templates/settings.html +msgid "Contact your EliteMBA partner manager to update these settings." +msgstr "联系您的EliteMBA合作经理以更新这些设置项。" + +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "VIP Expiry Date" +msgstr "会员有效期" + +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Subscription will soon be overdue. Please recharge in time." +msgstr "订阅期满,请及时充值" + +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "" +"Sorry, your EliteMBA VIP has expired. In order not to disrupt your learning " +"schedule, please recharge in time." +msgstr "您好,您购买的英荔商学院 VIP 会员已到期,为了不影响您的学习进度,请及时充值" + +#: themes/elitemba-theme/lms/templates/dashboard.html +msgid "Renew VIP" +msgstr "会员续费" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Learn to Change · Change to Improve" +msgstr "学则变 · 变则进" + +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "About Us" +msgstr "关于我们" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Join Us" +msgstr "加入我们" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "About Platform" +msgstr "关于平台" + +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "Manual" +msgstr "使用手册" + +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/static_templates/help.html +msgid "Help and Complaint" +msgstr "帮助与投诉" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Terms Description" +msgstr "条款说明" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Partners" +msgstr "合作伙伴" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "NetEase Study" +msgstr "网易云课堂" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Tencent Classroom" +msgstr "腾讯课堂" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "iQIYI Knowledge" +msgstr "爱奇艺知识" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Scan WeChat QR Code" +msgstr "微信扫一扫" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "to find out more" +msgstr "关注名师开课动态" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "" +"edX and Open edX are registered trademarks of edX Inc. All Rights Reserved." +msgstr "edX 和 Open edX 为 edX Inc. 的注册商标,版权所有。" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Bind Your Account to Your Mobile Number" +msgstr "绑定手机号" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Mobile number" +msgstr "手机号码" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Verify" +msgstr "获取验证码" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "incorrect cellphone number format" +msgstr "手机号码格式不正确" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "Reminder" +msgstr "提示" + +#: themes/elitemba-theme/lms/templates/footer.html +msgid "" +"To meet the requirements of national policies and regulations of using a " +"real legal name, please bind your account to your cellphone number before " +"proceeding." +msgstr "应国家法规对于账号实名的要求,请您在进行下一步操作前,先完成手机绑定。" + +#: themes/elitemba-theme/lms/templates/footer.html +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Bind Mobile" +msgstr "绑定手机" + +#. Translators: 'Open edX' is a registered trademark, please keep this +#. untranslated. See http://open.edx.org for more information. +#: themes/elitemba-theme/lms/templates/index_overlay.html +msgid "Learn to Change · Change to Improve —— EliteMBA" +msgstr "学则变 · 变则进 —— 英荔商学院" + +#. Translators: 'Open edX' is a registered trademark, please keep this +#. untranslated. See http://open.edx.org for more information. +#: themes/elitemba-theme/lms/templates/index_overlay.html +msgid "Enjoy high-value MBA curriculum with ¥99.84 monthly payment!" +msgstr "月均99.84元,畅学高价值MBA课程!" + +#: themes/elitemba-theme/lms/templates/problem.html +msgid "Answers are displayed within the problem" +msgstr "答案已在问题中显示" + +#: themes/elitemba-theme/lms/templates/certificates/_accomplishment-banner.html +msgid "Download Certificate" +msgstr "下载证书" + +#: themes/elitemba-theme/lms/templates/certificates/_accomplishment-rendering.html +msgid ":" +msgstr "" + +#: themes/elitemba-theme/lms/templates/certificates/_accomplishment-rendering.html +msgid "Verification Address:" +msgstr "验证地址:" + +#: themes/elitemba-theme/lms/templates/certificates/valid.html +msgid "About EliteMBA Certificates" +msgstr "关于EliteMBA证书" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Trustworthy Certificate" +msgstr "该证书真实有效" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Certificated Learner" +msgstr "持证学员" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Certificate No." +msgstr "证书编号" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Affiliation" +msgstr "所属机构" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Learning Time" +msgstr "学习时间" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Learning Type" +msgstr "学习类型" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Certificate Issuing Date" +msgstr "发证时间" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgid "Electronic Certificate" +msgstr "电子证书" + +#: themes/elitemba-theme/lms/templates/certificates/verify.html +msgctxt "Certificate" +msgid "View" +msgstr "点击查看" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Enroll {price}" +msgstr "选修此课程 {price}" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "Free Enroll Course" +msgid "Enroll" +msgstr "选修此课程" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Enrolled" +msgstr "已报名" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgid "Free Enrollment for VIP" +msgstr "VIP会员免费选修此课程" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "CourseAbout" +msgid "Description" +msgstr "课程简介" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "CourseAbout" +msgid "Instructor" +msgstr "课程导师" + +#: themes/elitemba-theme/lms/templates/courseware/course_about.html +msgctxt "CourseAbout" +msgid "Outline" +msgstr "课程大纲" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "" +"A wonderful course is rare to find and must be shared! I'm taking {title} on" +" EliteMBA. Check it out! {url}" +msgstr "难得的优质好课绝不能独享,我正在学习英荔商学院的{title},您也看看吧!{url}" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "weibo" +msgstr "微博" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "qq" +msgstr "QQ" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "weixin" +msgstr "微信" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "WeChat Scan Code" +msgstr "微信扫一扫" + +#: themes/elitemba-theme/lms/templates/courseware/course_about_sidebar_header.html +msgid "" +"Share your experience by clicking the button on the above right corner of " +"the screen" +msgstr "点击屏幕右上角分享按钮" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_certificate_information.html +msgid ". " +msgstr "" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "Subscription Due" +msgstr "订阅期满" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_course_listing.html +msgid "EliteMBA has verified your identity!" +msgstr "英荔已经成功验证了您的身份!" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your EliteMBA verification has been approved. Your verification is effective" +" for one year after submission." +msgstr "您的EliteMBA认证已通过,提交后一年内有效。" + +#: themes/elitemba-theme/lms/templates/dashboard/_dashboard_status_verification.html +msgid "" +"Your EliteMBA ID verification is pending. Your verification information has " +"been submitted and will be reviewed shortly." +msgstr "您的身份认证正在进行中,您的认证信息已提交,我们会尽快审查您的认证。" + +#: themes/elitemba-theme/lms/templates/elitemba/hmm.html +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Harvard ManageMentor" +msgstr "哈佛管理导师" + +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "" +"You're almost there! Use the link to activate your account to access high-" +"quality {platform_name} courses. Note that you will not be able to log back " +"into your account until you have activated it." +msgstr "注册差不多完成啦!点击链接激活您的账号,体验{platform_name}的精品课程。注意,您必须激活账号才可以登录。" + +#: themes/elitemba-theme/lms/templates/emails/activation_email.txt +msgid "Initial password:{third_party_auth_pw}" +msgstr "初始密码:{third_party_auth_pw}" + +#: themes/elitemba-theme/lms/templates/emails/photo_submission_review.txt +msgid "Review ID Verification Photos" +msgstr "查看身份证件照片" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "Dear EliteMBA Learner," +msgstr "亲爱的 EliteMBA 学员:" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"EliteMBA Financial Assistance is a program we created to give learners in " +"all financial circumstances a chance to earn a Verified Certificate upon " +"successful completion of an EliteMBA course." +msgstr "EliteMBA 经济援助项目旨在让各种经济状况的学员都有一个在成功完成 EliteMBA 课程后获得验证证书的机会。" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"In order to be eligible for EliteMBA Financial Assistance, you must " +"demonstrate that paying the Verified Certificate fee would cause you " +"economic hardship. To apply, you will be asked to answer a few questions " +"about why you are applying and how the Verified Certificate will benefit " +"you." +msgstr "" +"要符合 EliteMBA " +"经济援助的资格条件,您必须证明支付验证证书费用会导致您经济困难。为了进行申请,您可能会被要求回答一些关于您为何申请验证证书以及验证证书会给您带来哪些好处的问题。" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"If your application is approved, we'll give you instructions for verifying " +"your identity on EliteMBA.cn so you can start working toward completing your" +" EliteMBA course." +msgstr "" +"如果您的申请被批准,我们将为您提供在 EliteMBA.cn 上验证您的身份的相关说明,以便您可以开始着手完成您的 EliteMBA 课程。" + +#: themes/elitemba-theme/lms/templates/financial-assistance/financial-assistance.html +msgid "" +"EliteMBA is committed to making it possible for you to take high quality " +"courses from leading institutions regardless of your financial situation, " +"earn a Verified Certificate, and share your success with others." +msgstr "无论您的经济状况如何,EliteMBA 都致力于让您从各领先机构获得高质量的课程,让您获得验证证书并与他人分享您的成功。" + +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +#: themes/elitemba-theme/lms/templates/header/navbar-not-authenticated.html +msgid "Professors" +msgstr "教授" + +#: themes/elitemba-theme/lms/templates/header/navbar-authenticated.html +msgid "Expiry: " +msgstr "有效期至:" + +#: themes/elitemba-theme/lms/templates/header/user_dropdown.html +msgid "VIP Center" +msgstr "会员中心" + +#: themes/elitemba-theme/lms/templates/professors/detail.html +msgid "Professor details" +msgstr "教授详情" + +#: themes/elitemba-theme/lms/templates/professors/detail.html +msgctxt "Professor" +msgid "View Courses" +msgstr "讲授课程" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "Professors List" +msgstr "教授列表" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "Purpose of Education" +msgstr "教育的目的" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "" +"Education is much more than teaching and learning. It also involves " +"inspiring learners to dig deep into their potential. Not only do we present " +"practical knowledge of administration, we’re also dedicated to the " +"cultivation of wisdom -- the ability to apply knowledge in real life." +msgstr "教育不是生搬硬套的知识灌输,而是对学习者自由发展潜力的启发。 智慧是运用知识的能力。英荔教育不仅传播知识,更注重智慧的培养。" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "" +"We sincerely invite all remarkable professionals in business management to " +"join us in developing excellent courses, and educating more learners into " +"business professionals." +msgstr "我们诚挚地向所有深耕于商业管理学科的精英教授、学者和专家发出邀请,让我们共同将无形的智慧实化为可典藏的课程,以此培养更多杰出的商业人才。" + +#: themes/elitemba-theme/lms/templates/professors/index.html +msgid "More" +msgstr "详情" + +#: themes/elitemba-theme/lms/templates/registration/password_reset_confirm.html +msgid "" +"This password reset link is invalid. It may have been used already. To reset" +" your password, go to the {start_link}sign-in{end_link} page and select " +"{start_strong}Forgot password{end_strong}." +msgstr "" +"密码重置链接无效。此链接可能已被使用。如需重置您的密码,请进入{start_link}登录页面{end_link} " +"并点击{start_strong}忘记密码{end_strong}。" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"EliteMBA (www.EliteMBA.cn) is a sub-brand of Guangdong Elite International " +"Education & Technology Co., Ltd. focusing on the development of MBA online " +"classroom." +msgstr "英荔商学院(www.EliteMBA.cn)是广东英荔国际教育科技有限公司旗下的商业管理类互联网课堂。" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"EliteMBA teams up with senior professors and experts in business management " +"academics at home and abroad to design and produce high quality and " +"knowledgeable systematic online courses. At the same time, we select and " +"introduce high-quality foreign educational content to provide learners with " +"a localized learning experience created by EliteMBA." +msgstr "" +"英荔与国内外商业管理学术界资深的教授和专家联手,精心设计并制作高质量且极具知识价值的体系化在线课程。同时,筛选并引进国外优质教育内容,向学习者提供经英荔团队打造后的本土化版本。" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"It is the common pursuit of educators to transfer knowledge to more learners" +" as much as possible. EliteMBA expects to provide educators with more " +"effective means of transmission and increase the reach of knowledge. Here, " +"we would like to offer sincere invitations to experts and professors, and " +"look forward to creating and introducing more high-quality curriculum " +"resources, so that knowledge can generate more value in a diverse world. " +msgstr "" +"尽己所能地向更多学习者传递知识是教育者们的共同追求。英荔期望为教育者提供更有效的传递途径,增加知识的触及范围。在此,向各位专家、教授发出诚挚的开课邀请,期待创造、引入更多优质的课程资源,让知识在多元的世界产生更多元的价值。" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "For course cooperation, please contact: " +msgstr "课程合作请联系:" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "." +msgstr "" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "Education should guide and shape a society, not follow it" +msgstr "教育应指导社会,而不是追逐社会" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"Mr. Cai Yuanpei said that education should guide the society, rather than " +"follow it. Elite Education abandons the ideas of upholding the pursuit of " +"society, and advocates learners' self-achievement and their ambition in " +"leading the society. EliteMBA courses advocate, instead of the rote of " +"knowledge input, the motivation for pursuing wisdom and solving practical " +"problems." +msgstr "" +"教育家蔡元培先生说:“教育应指导社会,而不是追逐社会。”英荔摒弃追逐社会的模式,倡导学习者自我实现和引领社会的精神。英荔课堂没有生搬硬套的知识灌输,只有寻求智慧和解决实际问题的动力。" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "Our Mission" +msgstr "我们的使命" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "" +"Providing individuals, organizations with the knowledge, technology and " +"platform for lifelong learning." +msgstr "为个人和组织提供终身学习的知识、技术与平台。" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "Our Vision" +msgstr "我们的愿景" + +#: themes/elitemba-theme/lms/templates/static_templates/about.html +msgid "To become a reputable brand of digital education in China." +msgstr "成为中国享有声誉的数字化教育品牌。" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Elite Education" +msgstr "英荔教育" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "" +"Address: Room 1005, CITIC Plaza, No. 233 Tianhe North Road, Tianhe District," +" Guangzhou, China" +msgstr "地址:广州市天河区天河北路233号中信广场写字楼1005室" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Telephone: 400-931-8118 (Monday to Friday at 9:00-18:00)" +msgstr "电话:400-931-8118(周一至周五9:00 - 18:00)" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Course Cooperation" +msgstr "课程合作" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Contact: Mr. Chen" +msgstr "联系人:陈先生" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Human Resources and Recruitment" +msgstr "人力资源及招聘" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Feedback and Technical Support" +msgstr "建议及技术支持" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Media Communication" +msgstr "媒体交流" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Business Cooperation" +msgstr "商务合作" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Enterprise Procurement" +msgstr "企业采购" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "Contact: Ms. Liao" +msgstr "联系人:廖小姐" + +#: themes/elitemba-theme/lms/templates/static_templates/contact.html +msgid "System Bugs" +msgstr "系统漏洞" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅰ. Terms of Service" +msgstr "一、服务条款" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The products and services of Elite Education (www.elitemba.cn) are provided" +" by Guangdong Elite International Education & Technology Co., Ltd " +"(hereinafter referred to as \"EliteMBA\" or \"we\"). This User Agreement " +"(hereinafter referred to as \"Agreement\") is applicable to EliteMBA " +"websites, EliteMBA applications and other related products and services on " +"computer/mobile phone/tablet or other devices. EliteMBA has the right to " +"modify the terms hereof at any time. Upon the occurrence of any modification" +" is applied, we would update the Agreement and modify effective date " +"accordingly and the old version of the Agreement will be invalid and the new" +" version will be in effect immediately upon its publishing on the page " +"herein. Users shall regularly review the terms of service and check for " +"upgrades. The action of continual usage of our services is an implied " +"agreement on any updated version of Agreement that is in effect. In " +"addition, when Users use other EliteMBA services (including but not limited " +"to periodical marketing services other than basic services provided the " +"website), the aforementioned user shall adhere to the guidelines and rules " +"published by EliteMBA related to those services. All of the aforementioned " +"guidelines and rules shall be considered as a part of this Agreement." +msgstr "" +"英荔商学院(www.EliteMBA.cn)的产品及服务由广东英荔国际教育科技有限公司(以下简称“英荔”或“我们”)提供。本使用协议(以下简称“使用协议”)适用于英荔的网站、在计算机/手机/平板电脑或其他设备上使用的英荔的应用程序和其他产品及服务。使用协议的内容可由英荔不定期修改、变更。一旦变动产生,我们将随即于使用协议上公布并更新生效日期。修改后的使用协议一旦公布即有效代替原来的使用协议。您应定期查看以了解更新后的服务条款,若您继续使用我们的服务即构成您对本服务条款及其任何更新版本的同意。此外,当英荔用户使用英荔特殊服务(包括但不限于除网站基本服务外的其他具时效性的市场活动服务)时,英荔用户应遵守英荔随时公布的与该服务相关的指引和规则。前述所有的指引和规则,均构成本使用协议的一部分。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"You should read this User Agreement carefully before using the services " +"provided by EliteMBA. If you do not agree to the User Agreement and/or " +"modify it at any time, please stop using all services provided by EliteMBA " +"immediately; once you use EliteMBA service, you are deemed to have " +"understood and fully agreed to the contents of this agreement, including any" +" changes made by EliteMBA to the User Agreement at any time, and become an " +"EliteMBA User (hereinafter referred to as \"User\")." +msgstr "" +"您在使用英荔提供的各项服务之前,应仔细阅读本使用协议。如您不同意本使用协议及/或随时对其的修改,请立即停止使用英荔所提供的全部服务;您一旦使用英荔服务,即视为已了解并完全同意本使用协议各项内容,包括英荔对使用协议随时所做的任何修改,并成为英荔用户(以下简称“用户”)。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅱ. Service Description" +msgstr "二、服务说明" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA currently offers users a range of course services (including but " +"not limited to course videos, test questions, exams, course materials, notes" +" and teaching assistant services). Except as otherwise explicitely expressed" +" in this Agreement, any new features of the Service that are added or " +"enhanced by EliteMBA, including new products introduced, are subject to the " +"terms of this Agreement. The User understands and agrees that the Service is" +" provided only in accordance with the current conditions and that EliteMBA " +"is not responsible for any user information or personalization settings, " +"such as timeliness, deletion, delivery errors, non-storage or any other " +"issues. EliteMBA reserves the right to suspend any part of the Service for " +"any maintenance, upgrade or other purpose without prior notice." +msgstr "" +"英荔目前向用户提供英荔自主制作的一系列课程服务(包括但不限于课程视频、测验题目、考试、课程资料、笔记以及助教服务)。除非本使用协议另有其他明示规定,英荔增加或强化此服务的任何新功能,包括所推出的新产品,均受到本使用协议之规范。用户了解并同意,本服务仅依其当前所呈现的状况提供,对于任何用户信息或个人化设定之失效、删除、传递错误、未予储存或其他任何问题,英荔均不承担任何责任。英荔保留不经事先通知因维修保养、升级或其他目的而暂停本服务任何部分的权利。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅲ. Abidance by Law" +msgstr "三、遵守法律" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User agrees to abide by all the provisions of the relevant laws and " +"regulations of the People's Republic of China and assumes full " +"responsibility for any actions and results of the use of the Service by any " +"means and password. If the user's behavior violates any provisions of " +"national laws and regulations and may constitute a crime, he will be held " +"criminally liable and the user shall bear full legal responsibility." +msgstr "" +"用户同意遵守中华人民共和国相关法律法规的所有规定,并对以任何方式通过本人的账号和密码使用本服务的任何行为及其结果承担全部责任。如用户的行为违反国家法律和法规的任何规定,有可能构成犯罪的,将被追究刑事责任,并由用户承担全部法律责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"At the same time, if EliteMBA has the reason to believe that any of the " +"User's actions, including but not limited to any of the User's statements " +"and other acts violates or may violate any of the provisions of national " +"laws and regulations, EliteMBA may terminate to offer service to the User at" +" any time without prior notice. " +msgstr "" +"同时,如果英荔有理由认为用户的任何行为,包括但不限于用户的任何言论和其他行为违反或可能违反国家法律和法规的任何规定,英荔可在任何时候不经任何事先通知终止向用户提供服务。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅳ. User Registration Obligation" +msgstr "四、用户的注册义务" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"In order to use the service, the User agrees to provide correct registered " +"account (email address and/or mobile phone number) and password according to" +" the service prompt, and ensure the validity and legality of the login " +"account, Avatar and other materials updated in the future. If the User " +"provides any material that is illegal, unethical, or that is deemed " +"unsuitable for display on this website, or that has reason to suspect that " +"the User's data is a program or malicious operation, EliteMBA has the right " +"to suspend or terminate the User's account and refuse the User to use all or" +" any part of the Service now and in the future. " +msgstr "" +"为了能使用本服务,用户同意以下事项:依本服务提示填写正确的注册账号(邮箱地址及/或手机号)、密码,并确保今后更新的登录账号、头像等资料的有效性和合法性。若用户提供任何违法、不道德或英荔认为不适合在本网站上展示的资料,或者英荔有理由怀疑用户的资料属于程序或恶意操作,英荔有权暂停或终止用户的账号,并拒绝用户于现在和未来使用本服务之全部或任何部分。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA is not responsible for any registration of any user, including but " +"not limited to the identification, verification of the authenticity, " +"correctness, completeness, suitability and/or responsibility of any " +"registration information." +msgstr "" +"英荔无须对任何用户的任何登记资料承担任何责任,包括但不限于鉴别、核实任何登记资料的真实性、正确性、完整性、适用性及/或是否为最新资料的责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "V. User Accounts, Passwords and Security" +msgstr "五、用户账号、密码及安全" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"After completing the registration process for this service and successfully " +"registered, the User can log in to the account of EliteMBA (hereinafter " +"referred to as the \"account\") using their email address and/or mobile " +"number and password. Users are responsible for protecting the security of " +"their accounts." +msgstr "" +"完成本服务的注册程序并成功注册之后,用户可使用其邮箱地址及/或手机号码和密码,登录到用户在英荔的账号(以下简称“账号”)。用户须承担保障自己账号安全的责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The user is solely responsible for all passwords used and the activities of " +"the account. User agrees:" +msgstr "用户应对所有使用的密码及账号的活动负全部责任。用户同意:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. Upon the occurrence of noticing any unauthorized account activity or " +"other security issue, User shall contact and notify E-ducation immediately;" +msgstr "1. 用户的英荔账号遭到未获授权的使用,或者发生其他任何安全问题时,用户将立即通知英荔;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. If the user does not keep his/her own account number and password, and " +"therefore any loss or damage caused by the User, EliteMBA cannot and will " +"not bear any responsibility;" +msgstr "2. 如果用户未保管好自己的账号和密码,因此而产生的任何损失或损害,英荔无法也不承担任何责任;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. User is solely responsible for all the activities and issues that occur " +"in their account. Upon the occurrence of any loss or damage to other Users, " +"Elite or any other third party due to the failure by the User in securing " +"their own Account and password, the aforementioned User shall take full " +"responsible." +msgstr "3. 每个用户都要对其账号中的所有行为和事件负全责。如果用户未保管好自己的账号和密码而对用户、英荔或第三方造成的损害,用户将负全部责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "VI. Privacy Policy of Elite Education " +msgstr "六、英荔隐私权政策" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The registration information provided by the User and certain other " +"information about the User retained by the company will be subject to the " +"laws of China's privacy and the company's Privacy Policy." +msgstr "用户提供的登记资料及英荔保留的有关用户的若干其他资料将受到中国有关隐私的法律和本公司《隐私政策》之规范。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "VII. Responsibility of the Provider/User" +msgstr "七、提供者之责任" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"In accordance with relevant laws and regulations, EliteMBA hereby notify all" +" Users solemnly that, the Provider of any content released or sent either " +"publicly or privately via Elite Education platform, including the publishing" +" or uploading of any text, information, data, picture, graphic, video or " +"other data (hereinafter referred to as \"Content\"), shall take full " +"responsibility for the Content they released or sent. EliteMBA only provides" +" storage space for Users, and cannot control the content transmitted through" +" the server, therefore we shall hold no responsibility for the validity, " +"integrity or quality of the Content. User shall be aware that there might be" +" unpleasant, inappropriate or disturbing Content upon the usage of the " +"service. In any case, EliteMBA shall hold no responsibility for any " +"aforementioned Content, and shall reserve the right to cease the " +"transmission of any of the aforementioned Content and take corresponding " +"actions by law, including but not limited to partially or entirely suspend " +"User from using this service, to keep relevant record and report to " +"authorities concerned." +msgstr "" +"根据有关法律法规,英荔在此郑重提醒用户注意,任何经由本服务而发布、上传的文字、资讯、资料、照片、图形、视讯、信息或其他资料(以下简称“内容”),无论系公开还是私下传送,均由内容提供者承担责任。英荔仅为用户提供内容存储空间,无法控制经由本服务传送之内容,因此不保证内容的正确性、完整性或品质。用户已预知使用本服务时,可能会接触到令人不快、不适当或令人厌恶之内容。在任何情况下,英荔均不为任何内容负责,但英荔有权依法停止传输任何前述内容并采取相应行动,包括但不限于暂停用户使用本服务的全部或部分,保存有关记录,并向有关机关报告。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "VIII. User Behavior" +msgstr "八、用户行为" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User agrees that the Service will not be used for any illegal or " +"improper activities, including but not limited to the following:" +msgstr "用户同意将不会利用本服务进行任何违法或不正当的活动,包括但不限于下列行为:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. Publish or otherwise transmit information that contains one of the " +"following:" +msgstr "1. 发布或以其他方式传送含有下列内容之一的信息:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Opposing to the basic principles established by the Constitution;" +msgstr "反对宪法所确定的基本原则的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Endanger national security, disclose state secrets, subvert state power or " +"sabotage state unification; " +msgstr "危害国家安全,泄露国家秘密,颠覆国家政权,破坏国家统一的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Damage to national honours and interests;" +msgstr "损害国家荣誉和利益的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Inciting national hatred, ethnic discrimination, and undermining national " +"unity;" +msgstr "煽动民族仇恨、民族歧视、破坏民族团结的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Destroy the national religious policy and promote cults and feudal " +"superstitions;" +msgstr "破坏国家宗教政策,宣扬邪教和封建迷信的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Spread rumors, disrupting social order or endanger social stability;" +msgstr "散布谣言,扰乱社会秩序,破坏社会稳定的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Spreading obscenity, eroticism, gambling, violence, murder and terrorism or " +"instigating others to commit crime;" +msgstr "散布淫秽、色情、赌博、暴力、凶杀、恐怖或者教唆犯罪的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Insulting or slandering others, infringing on the legal rights of others;" +msgstr "侮辱或者诽谤他人,侵害他人合法权利的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Contains false, fraudulent, harmful, coercive, infringing on the privacy of " +"others, harassment, infringement, slander, vulgarity, jealousy, or other " +"morally offensive content;" +msgstr "含有虚假、诈骗、有害、胁迫、侵害他人隐私、骚扰、侵害、中伤、粗俗、猥亵、或其他道德上令人反感的内容;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Contains other content restricted or prohibited by Chinese laws, " +"regulations, rules, regulations, and any legally binding norm;" +msgstr "含有中国法律、法规、规章、条例以及任何具有法律效力之规范所限制或禁止的其他内容的;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Content considered by EliteMBA to be unsuitable for display on EliteMBA " +"platforms;" +msgstr "含有英荔认为不适合在英荔展示的内容;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "2. Harm the legitimate rights and interests of others in any way;" +msgstr "2. 以任何方式危害他人的合法权益;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. Pretend to be any other person or institution, or to make a false " +"statement about or lied to any person or institution;" +msgstr "3. 冒充其他任何人或机构,或以虚伪不实的方式陈述或谎称与任何人或机构有关;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Any content that is known but not authorized to be transmitted, sent by " +"e-mail or otherwise in accordance with any law or contract or legal " +"relationship. (e.g., due to employment relationships and internal " +"information, proprietary and confidential information known or disclosed " +"under a confidentiality contract);" +msgstr "" +"4.  " +"将依据任何法律或合约或法定关系(例如由于雇佣关系和依据保密合约所得知或揭露之内部资料、专属及机密资料)知悉但无权传送之任何内容加以发布、发送电子邮件或以其他方式传送;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"5. Publish or otherwise transmit the content of copyrights, patents, " +"trademarks, trade secrets, or other proprietary rights (hereinafter referred" +" to as \"exclusive rights\") that infringe upon others;" +msgstr "5. 将侵害他人著作权、专利权、商标权、商业秘密、或其他专属权利(以下简称“专属权利”)之内容加以发布或以其他方式传送;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"6. Publish, send or otherwise transmit any advertising letter, promotional " +"material, \"spam\", \"spamming\", \"chain mail\", \"direct sales\" or any " +"other form of persuasive material;" +msgstr "6. 将任何广告信函、促销资料、“垃圾邮件”、“滥发信件”、“连锁信件”、“直销”或其他任何形式的劝诱资料加以发布、发送或以其他方式传送;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"7. Publishing, sending or by any other means transmitting computer viruses " +"(hereinafter referred to as \"Viruses\"), including but not limited to " +"Trojan horses, worms, time bombs, Cancelbots, or other computer codes, files" +" and programs designed to interfere with, damage or limit the functionality " +"of any computer software, hardware or communication equipment;" +msgstr "" +"7. " +"将设计目的在于干扰、破坏或限制任何计算机软件、硬件或通讯设备功能之计算机病毒(包括但不限于木马程序、蠕虫、定时炸弹、删除器“Cancelbot”,以下简称“病毒”)或其他计算机代码、档案和程序之任何资料,加以发布、发送或以其他方式传送;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"8. Interfere with or disrupt this service or server and network connected to" +" the Service, or violate any rules, procedures, policies or specifications " +"regarding the network connection service;" +msgstr "8. 干扰或破坏本服务或与本服务相连线之服务器和网络,或违反任何关于本服务连线网络之规定、程序、政策或规范;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "9. Tracking, cyber manhunting or harassing others in any other ways;" +msgstr "9. 跟踪、人肉搜索或以其他方式骚扰他人;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"10. Deliberate or unintentional violate any applicable local and/or national" +" law and any legally binding rules;" +msgstr "10. 故意或非故意地违反任何适用的当地、国家法律,以及任何具有法律效力的规则;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"11. Intercept, tamper with, collect, store or delete personal information, " +"on-site mail or other data without legal authorization, or use such " +"information for any illegal or improper purpose. " +msgstr "11. 未经合法授权而截获、篡改、收集、储存或删除他人个人信息、站内邮件或其他数据资料,或将获知的此类资料用于任何非法或不正当目的。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User has acknowledged that EliteMBA does not have full control over the " +"User's use. When the User uses any content, including relying on the " +"correctness, completeness or practicability of the foregoing content, the " +"User agrees to judge and assume all risks without relying on EliteMBA. " +"However, in its sole discretion, EliteMBA may refuse and remove any content " +"provided by the Service that violates these Terms or any other content that " +"is controversial to EliteMBA." +msgstr "" +"用户已认可英荔未对用户的使用行为进行全面控制,用户使用任何内容时,包括依赖前述内容之正确性、完整性或实用性时,用户同意将自行加以判断并承担所有风险,而不依赖于英荔。但英荔依其自行之考虑,可拒绝和删除经由本服务提供之违反本条款的或其他引起英荔异议的任何内容。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"User understands and agrees that EliteMBA might save or disclose contents in" +" adherence of the requirements of laws and regulations, integrity or the " +"following purposes:" +msgstr "用户了解并同意,英荔依据法律法规要求、基于诚信或出于以下目的,可能对部分内容加以保存或揭露:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "1. Comply with legal procedures;" +msgstr "1. 遵守法律程序;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "3. Execute the implementation of this agreement;" +msgstr "3. 执行本使用协议;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "3. Respond to any claims made by third parties;" +msgstr "3. 回应任何第三人提出的权利主张;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Protect the rights, property or personal safety of Elite Education, its " +"users and the public;" +msgstr "4. 保护英荔、其用户及公众之权利、财产或个人安全;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "5. Other conditions that EliteMBA deems necessary." +msgstr "5. 其他英荔认为有必要的情况。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "IX. Special Warning for International Use" +msgstr "九、国际使用之特别警告" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Users are aware of the borderless nature of the Internet and agree to abide " +"by all local laws and regulations regarding online conduct and content. The " +"User specifically agrees to comply with all applicable laws and regulations " +"regarding the transmission of information from China or the country in which" +" the user is located." +msgstr "" +"用户已了解国际互联网的无国界性,同意遵守当地所有关于网上行为及内容之法律法规。用户特别同意遵守有关从中国或用户所在国家或地区输出信息之传输的所有适用法律法规。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "X. Public information published on EliteMBA" +msgstr "十、在英荔发布的公开信息" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. In this User Agreement, \"the area in which the service is used " +"publicly\" means the area that the general public can use;" +msgstr "1. 在本使用协议中,“本服务公开使用区域”系指一般公众可以使用的区域;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. For the content uploaded or published by the user in EliteMBA, the user " +"shall guarantee that he or she is the copyright owner or has obtained legal " +"authorization, and the content does not infringe the legal rights of any " +"third party, and the user agrees to grant all the aforementioned content to " +"EliteMBA for worldwide free, irrevocable, permanent, sublicensable or " +"transferable license use, under which license will have the right to use the" +" foregoing in a manner that is displayed, promoted and otherwise not " +"prohibited by our laws." +msgstr "" +"2. " +"用户在英荔上传或发布的内容,用户应保证其为著作权人或已取得合法授权,并且该内容不会侵犯任何第三方的合法权益,用户同意授予英荔所有前述内容在全球范围内的免费、不可撤销的、永久的、可再许可或转让的独家使用权许可,据该许可英荔将有权以展示、推广及其他不为我国法律所禁止的方式使用前述内容。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XI. Compensation" +msgstr "十一、赔偿" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Any third party's claim or request, including a reasonable attorney fee, due" +" to the content provided, posted or transmitted by the User, the User's " +"connection to the Service, the User's breach of the User Agreement, or any " +"infringement of the User's rights, the user agrees to indemnify EliteMBA and" +" its subsidiaries, affiliates, senior employees, agents, brand owners or " +"other partners and employees against damage, and assume all legal " +"liabilities arising therefrom." +msgstr "" +"由于用户通过本服务提供、发布或传送之内容、用户与本服务连线、用户违反本使用协议、或用户侵害他人任何权利因而衍生或导致任何第三人提出任何索赔或请求,包括合理的律师费,用户同意赔偿英荔及其子公司、关联企业、高级职员、代理人、品牌共有人或其他合作伙伴及员工,并使其免受损害," +" 并承担由此引发的全部法律责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XII. About Use" +msgstr "十二、关于使用" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User agrees not to copy, copy, sell, resell or use it for any other " +"commercial purpose for the use or acquisition of any part of the Service or " +"the Service." +msgstr "用户同意不对本服务任何部分或本服务之使用或获得,进行复制、拷贝、出售、转售或用于任何其他商业目的。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XIII. About Storage" +msgstr "十三、关于储存" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User agrees that EliteMBA shall be liable for any information, " +"communication materials and other content posted or transmitted through the " +"Service, if it is deleted or not stored." +msgstr "通过本服务发布或传送之任何信息、通讯资料和其他内容,如被删除或未予储存,用户同意英荔毋须承担任何责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XIV. Modification of Service" +msgstr "十四、服务之修改" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA reserves the right to modify or terminate the Service (or any part " +"thereof) temporarily or permanently at any time, with or without notice. The" +" User agrees that the User shall not be liable to the User and any third " +"party for any modification, suspension or termination of the Service." +msgstr "" +"英荔有权于任何时间暂时或永久修改或终止本服务(或其任何部分),且无论通知与否。用户同意对于本服务所作的任何修改、暂停或终止,英荔对用户和任何第三人均无需承担任何责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XV. Termination of Service" +msgstr "十五、终止服务" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"User agrees that EliteMBA can, in its sole discretion, terminate the User " +"account or the use of this service (or any part thereof) for any reason " +"(including but not limited to long-term inactive account, or EliteMBA " +"believes that User has violated the letters and spirit of this User " +"Agreement), and remove and delete any content of the User within the " +"service. User agrees that the service provided under any term of this User " +"Agreement can be suspended or terminated without prior notification. User " +"acknowledges and agrees that EliteMBA can immediately close or delete User " +"account and all the related data and files, and/or prohibit continued use of" +" the above files or this service. In addition, User agrees that if the use " +"of this service is suspended or terminated, or the User's account and " +"related data and files are closed or deleted, EliteMBA does not assume any " +"liability to the User or any third party." +msgstr "" +"用户同意英荔基于其自行之考虑,因任何理由(包含但不限于长期对账号无任何操作,或英荔认为用户已经违反本使用协议的文字及精神)终止用户的账号或本服务之使用(或服务之任何部分),并将用户在本服务内任何内容加以移除并删除。用户同意依本使用协议任何规定提供之本服务,无需进行事先通知即可中断或终止,用户承认并同意,英荔可立即关闭或删除用户的账号及用户账号中所有相关信息及文件,及/或禁止继续使用前述文件或本服务。此外,用户同意若本服务之使用被中断或终止或用户的账号及相关信息和文件被关闭或删除,英荔对用户或任何第三人均不承担任何责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XVI. Dealing with Advertisers and Other Third Parties" +msgstr "十六、与广告商及其他第三方进行交易" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Users engage in any form of communication or business dealings with " +"advertisers and other third parties through this website, or participate in " +"promotional activities, including payment and delivery of related goods or " +"services, and any other relevant terms, conditions, warranties or " +"representations reached, they are the fully behavior between users and " +"advertisers and other third parties. EliteMBA is not liable for any loss or " +"damage of any nature suffered by the user in connection with any of the " +"foregoing transactions or the aforementioned advertisers and other third " +"parties." +msgstr "" +"用户通过本网站与广告商及其他第三方进行任何形式的通讯或商业往来,或参与促销活动,包含相关商品或服务之付款及交付,以及达成的其他任何相关条款、条件、保证或声明,完全为用户与广告商及其他第三方之间之行为。用户因前述任何交易或前述广告商及其他第三方而遭受的任何性质的损失或损害,英荔对此不负任何法律责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XVII. Exclusive Rights of EliteMBA" +msgstr "十七、英荔之专属权利" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The User also understands and agrees that the content of the sponsored " +"advertisements or information presented to the User via the Service or the " +"Advertiser is also protected by copyright, trademark, service mark, patent " +"or other proprietary rights. Users may not modify, rent, lend, sell, " +"distribute any part or all of the Service or the Software, or create " +"derivative works, or use unauthorized software, including but not without " +"the express authorization of EliteMBA or the advertiser. Limited to the " +"purpose of using the Service for unauthorized purposes. EliteMBA only grants" +" the user personal, non-transferable and non-exclusive right to use, so that" +" the User can use the purpose code of the software on a stand-alone " +"computer, but the User may not (and must not allow any third person) to " +"copy, modify, create derivative works, perform restoration work, reverse " +"translation, or otherwise discover the source code, or sell, transfer, " +"sublicense or provide software to set a warranty, or otherwise transfer any " +"rights in the software. The User agrees to use the Service through the " +"interface provided by EliteMBA and not in any other way." +msgstr "" +"用户也了解并同意,经由本服务或广告商向用户呈现之赞助广告或信息所包含之内容,亦受到著作权、商标权、服务商标、专利权或其他专属权利之法律保护。未经英荔或广告商明示授权,用户不得修改、出租、出借、出售、散布本服务或软件之任何部份或全部,或据以制作衍生著作,或使用擅自修改后的软件,包括但不限于为了未经授权而使用本服务之目的。英荔仅授予用户个人、不可移转及非专属之使用权,使用户得于单机计算机使用其软件之目的码,但用户不得(并不得允许任何第三人)复制、修改、创作衍生著作、进行还原工程、反向组译,或以其他方式发现原始码,或出售、转让、再授权或提供软件设定担保,或以其他方式移转软件之任何权利。用户同意将通过由英荔所提供的界面而非任何其他途径使用本服务。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XVIII. Guarantee and Warranty" +msgstr "十八、担保与保证" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "The User clearly understands and agrees:" +msgstr "用户明确了解并同意∶" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. No provision of this agreement will relieve EliteMBA of any liability for" +" the User's personal injury or damage or property loss resulting from " +"intentional misconduct or gross negligence;" +msgstr "1. 本使用协议的任何规定不会免除英荔对造成用户人身伤害的、或因故意或重大过失造成用户财产损失的任何责任;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. The use of the Service is at the User's own risk. The Service is provided" +" on the basis of \"status quo\" and \"existing\". EliteMBA does not provide " +"any warranty or guarantee, either express or implied, including but not " +"limited to commercial marketability, applicability for particular purpose " +"and non-infringement upon others' rights, etc.;" +msgstr "" +"2. " +"使用该服务是由用户自担风险。该服务是在“现状”和“现有”的基础上提供的。英荔不提供任何明示或暗示的担保或保证,包括但不限于商业适销性,针对特定用途的适用性和不侵犯他人权利等;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "3. Any statement or conduct by any third party in the Service;" +msgstr "3. 任何第三方在本服务中所作之声明或行为;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Other matters related to the Service, except as explicitely provided in " +"this Agreement of Use;" +msgstr "4. 与本服务相关的其他事宜,但本使用协议有明确规定的除外;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"5. Elite Education does not accept any responsibility for the posting or " +"delivery of fraudulent information by any third party or for inducing users " +"to suffer financial losses." +msgstr "5. 第三方以任何方式发布或投递欺诈性信息,或诱导用户受到经济损失,英荔不承担任何责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "ⅩⅨ. EliteMBA Trademarks Information" +msgstr "十九、英荔商标信息" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Elite Education, EliteMBA and other EliteMBA registered trademarks, logos " +"and products and service names are trademarks of EliteMBA (hereinafter " +"referred to as \"EliteMBA Mark\"). The User agrees not to display or use or " +"otherwise process the EliteMBA Mark in any manner without the prior written " +"consent of EliteMBA, or to indicate that the User has the right to display, " +"use or otherwise process the EliteMBA Mark." +msgstr "" +"英荔教育、英荔商学院、英荔以及其他英荔注册商标、标志及产品、服务名称,均为英荔公司之商标(以下简称“英荔标记”)。未经英荔事先书面同意,用户同意不将英荔标记以任何方式展示或使用或作其他处理,或表示用户有权展示、使用或另行处理英荔标记。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XX. Exclusive User Rights" +msgstr "二十、用户专属权利" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Elite Education respects the intellectual property rights of others and " +"calls on users to respect intellectual property rights as well." +msgstr "英荔尊重他人知识产权,呼吁用户也要同样尊重知识产权。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The services and materials of EliteMBA are provided on an \"as is\" basis " +"and expressly disclaims any express or implied warranties of \"service\", " +"\"material\" or \"product\", including but not limited to for commercial use" +" or fitness Guarantee for a specific purpose. EliteMBA is not responsible " +"for any direct, indirect, incidental or consequential damages arising out of" +" the Services, the materials or the products." +msgstr "" +"英荔之服务与资料是基于“现状”提供,而且英荔明确地表示拒绝对于“服务”、“资料”或“产品”给予任何明示或暗示之保证,包括但不限于,为商业使用或适合于特定目的之保证。英荔对于因“服务”、“资料”或“产品”所产生之任何直接、间接、附带的或因此而导致之衍生性损失概不负责。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"If the User infringes upon the intellectual property rights of others, " +"EliteMBA will, according to the provisions of the national laws and " +"regulations or under appropriate circumstances, delete specific contents or " +"even terminate the User's account according to Terms of Service or related " +"provisions." +msgstr "" +"如果用户对他人的知识产权造成了侵害,英荔将依国家法律法规的规定,或在适当的情形下,将依其服务条款或其相关规范性规定,删除特定内容或以至终止用户对账号的使用。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA respects any rights (including intellectual property rights) of " +"others and also requires our users to respect the rights of others. In the " +"appropriate circumstances, EliteMBA may, at its discretion, terminate the " +"account of the User who infringes or violates the rights of others." +msgstr "" +"英荔尊重他人的任何权利(包括知识产权),同时也要求我们的使用者也尊重他人之权利。英荔在适当情况下,可自行决定终止侵害或违反他人权利之使用者的账号。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"If the User believes that the copyright of his/her work has been infringed " +"or the User's intellectual property rights have been violated, according to " +"the Regulations on the Protection of Information Network Communication " +"Rights, users should contact EliteMBA and provide detailed evidence. Or " +"please go to the National Copyright Administration of the People's Republic " +"of China to download the \"Notice of Deleting or Disconnecting the " +"Infringing Web Content\" (hereinafter referred to as the \"Delete Notice\")." +" If the user does not understand the content of the \"Delete Notice\", " +"please log in to the National Copyright Administration of the People's " +"Republic of China and looks for the instructions for \"Notice to Remove or " +"Disconnect the Content of the Infringing Web Link\"." +msgstr "" +"若用户认为自己的作品著作权遭到侵害或用户的知识产权被侵犯,根据《信息网络传播权保护条例》的规定,用户需及时向英荔联系并提供详实的举证材料。或请到中华人民共和国国家版权局下载《要求删除或断开链接侵权网络内容的通知》(下称“删除通知”)的示范格式,如果用户不明白“删除通知”的内容,请登录中华人民共和国国家版权局查看《要求删除或断开链接侵权网络内容的通知》填写说明。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "XXI. General Terms" +msgstr "二十一、一般条款" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. This User Agreement, Privacy Policy and Disclaimer constitute the entire " +"agreement between the User and EliteMBA, and regulate the User's use of the " +"Service. Additional terms and conditions apply when users use related " +"services and use content or software provided by third parties;" +msgstr "" +"1. " +"本使用协议和隐私政策及免责声明构成用户与英荔之全部协议,并规范用户对于本服务之使用行为。在用户使用相关服务、使用第三方提供的内容或软件时,亦应遵从所适用之附加条款及条件;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. The User Agreement and the relationship between the User and EliteMBA are" +" governed by the laws of the People's Republic of China. The dispute between" +" the user and EliteMBA on the service, the Agreement or other related " +"matters shall be settled through negotiation first. If the negotiation " +"fails, it shall be submitted to the China International Economic and Trade " +"Arbitration Commission for arbitration. The arbitral award is final and " +"binding on both parties;" +msgstr "" +"2.  " +"本使用协议及用户与英荔之关系,均受到中华人民共和国法律管辖。用户与英荔就本服务、本使用协议或其他有关事项发生的争议,应首先友好协商解决,协商不成时应提请中国国际经济贸易仲裁委员会仲裁,仲裁裁决是终局性的,对双方均有约束力;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. The failure of EliteMBA to exercise or enforce any rights or provisions " +"of this agreement shall not constitute the waiver of aforementioned rights;" +msgstr "3. 英荔未行使或执行本使用协议任何权利或规定,不构成对前述权利或权利之放弃;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. If any provision of this Terms of Use is ineffective due to conflicts " +"with the laws of the People's Republic of China, the User agrees that, in " +"accordance with the law, efforts shall be made to make the parties' " +"intentions reflected in the Regulations effectively, and that other " +"provisions of this User Agreement shall remain in full force;" +msgstr "" +"4. " +"倘本使用协议之任何规定因与中华人民共和国法律抵触而无效,用户依然同意应依照法律,努力使该规定所反映之当事人意向具备效力,且本使用协议其他规定仍应具有完整的效力;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"5. The title of this User Agreement is for convenience only and does not " +"have any legal or contractual effect;" +msgstr "5. 本使用协议之标题仅供方便而设,不具任何法律或契约效果;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"6. Elite Education has the final interpretation of this User Agreement." +msgstr "6. 英荔对本使用协议享有最终解释权。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Users are advised to notify EliteMBA of any violation of the Terms of " +"Service and/or any other announcements of EliteMBA." +msgstr "请用户在发现任何违反本服务协议以及其他任何单项服务的服务条款、英荔各类公告之情形时,通知英荔。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Effective on Nov 30th, 2018" +msgstr "协议生效日期:2018年11月30日" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The Products and services of EliteMBA(www.elitemba.cn)are provided by " +"Guangzhou Elite Education & Technology Co., Ltd (hereinafter referred to as " +"\"we\", \"Company\" or \"Elite\"). This User Agreement is applicable to " +"E-ducation websites, E-ducation applications and other related products and " +"services on computer/mobile phone/tablet or other devices. EliteMBA attaches" +" great importance to the protection of the privacy of EliteMBA Users " +"(hereinafter referred to as \"Users\"). Sometimes we need certain " +"information to provide users with the requested services. This policy " +"explains the data collection and use under these circumstances." +msgstr "" +"英荔商学院(www.EliteMBA.cn)的产品及服务由广东英荔国际教育科技有限公司(以下简称“英荔”或“我们”)提供。本隐私政策(以下简称“本政策”)适用于英荔的网站、在计算机/手机/平板电脑或其他设备上使用的英荔的应用程序和其他产品及服务。英荔非常重视对英荔用户(以下简称“用户”)个人隐私的保护,有时候我们需要某些信息才能为用户提供请求的服务,本政策解释了这些情况下的数据收集和使用情况。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"This policy applies to all relevant services in EliteMBA. As the scope of " +"the EliteMBA services expands, the content of the policy may be amended or " +"changed at any time by EliteMBA. EliteMBA will publish and update the " +"effective date. Once the updated Privacy Policy is published, it effectively" +" replaces the original Privacy Policy. By continuing to use EliteMBA " +"Service, the User agrees to and accepts this Policy and any updated versions" +" thereof." +msgstr "" +"本政策适用于英荔的所有相关服务,随着英荔服务范围的扩大,政策的内容可由英荔随时修正或更改,英荔将公布并更新生效日期。更新后的隐私政策一旦公布即有效代替原来的隐私政策,用户继续使用英荔服务即表示用户同意并接受本政策及其任何更新版本。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅰ. The Information that We Collect" +msgstr "一、我们收集哪些信息" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Normally, you can visit EliteMBA and browse the information anonymously. " +"When your Personally Identifiable Information or contact details are needed," +" we will ask for your prior consent. Information such as Name, E-mail " +"Address, Residence Address and Mobile Number might be collected when " +"registering on EliteMBA or applying for new features and your confirmation " +"is needed. " +msgstr "" +"通常,用户能在匿名的状态下访问英荔并获取信息。当我们需要能识别用户个人信息或者可以与用户联系的信息时,我们会征求用户的同意。通常,在用户注册英荔或申请开通新的功能时,我们可能收集这些信息:姓名、邮箱地址、住址和电话号码,并征求用户的确认。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Ⅱ. About User's Personal Information" +msgstr "二、关于您的个人信息" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA strictly protects the security of Users' personal information. We " +"use a variety of security technologies and procedures to protect our " +"personal information from unauthorized access, use or disclosure." +msgstr "英荔严格保护用户个人信息的安全。我们使用各种安全技术和程序来保护用户的个人信息不被未经授权的访问、使用或泄漏。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA will not disclose the personal information of the User to third " +"parties without the User's permission. The following conditions are listed " +"in this statement: the legal requirements or the User's violation of the " +"relevant terms of service of EliteMBA, the software license agreement, or " +"EliteMBA has good reasons to believe that this must be done in order to:" +msgstr "" +"未经用户本人允许,英荔不会向第三方透露用户的个人信息,本声明列出的以下情况除外:法律要求或用户违反英荔的相关服务条款、软件许可使用协议约定,或者英荔有充分理由相信必须这样做才能:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"(a) Meet the requirements of laws or administrative regulations that are " +"explicitely listed, or comply with applicable legal procedures to Elite " +"Education websites;" +msgstr "(a)满足法律或行政法规的明文规定,或者符合英荔网站适用的法律程序;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"(b) Comply with the terms of EliteMBA related service terms and software " +"license agreement;" +msgstr "(b)符合英荔相关服务条款、软件许可使用协议的约定;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "(c) Protection of the rights or property of EliteMBA;" +msgstr "(c)保护英荔的权利或财产;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"(d) Under urgent emergencies, ensure the safety of EliteMBA employees, " +"product or service users, or the public." +msgstr "(d)在紧急情况下保护英荔员工、英荔产品或服务的用户或大众的个人安全。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"This information will not be shared with third parties by EliteMBA without " +"the user's permission, except as outlined above in this statement." +msgstr "英荔不会未经用户的允许将这些信息与第三方共享,本声明已经列出的上述情况除外。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "III.Use of Cookie" +msgstr "三、COOKIE 的使用" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Using cookies helps users personalize their online experience. Users can " +"accept or reject cookies. Most web browsers automatically accept cookies, " +"but users can often modify their browser settings to reject cookies based on" +" their needs." +msgstr "" +"使用 Cookie 能帮助用户实现联机体验的个性化,用户可以接受或拒绝 Cookie,大多数 Web 浏览器会自动接受 " +"Cookie,但用户通常可根据自己的需要来修改浏览器的设置以拒绝 Cookie。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA will use cookies sometimes to capture the websites to learn which " +"websites are popular in order to provide better services to User when they " +"are visiting E-ducation." +msgstr "英荔有时会使用 Cookie 以便知道哪些网页受欢迎,使用户在访问英荔时能得到更好的服务。Cookie 不会跟踪个人信息。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA cookie is also used when the user registers for EliteMBA. In this " +"case, EliteMBA collects and stores useful information, and when the user " +"visits EliteMBA again, we can identify the user. Cookies from EliteMBA can " +"only be read by EliteMBA." +msgstr "" +"当用户注册英荔时,英荔亦会使用 Cookie。在这种情况下,英荔会收集并存储有用信息,当用户再次访问英荔时,我们可辨认用户的身份。来自英荔的 " +"Cookie 只能被英荔读取。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"If the User's browser is set to reject cookies, the User will still be able " +"to access most of the web pages of EliteMBA." +msgstr "如果用户的浏览器被设置为拒绝 Cookie,用户仍然能够访问英荔的大多数网页。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "IV. About Disclaimer" +msgstr "四、关于免责说明" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA does not assume any legal responsibility for the occurrence of the " +"following related matters:" +msgstr "就下列相关事宜的发生,英荔不承担任何法律责任:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. The leakage of any personal information caused by the User's notification" +" of the User's password or sharing the registered account with others, or " +"the leakage of other personal information that is not caused by EliteMBA " +"reasons; " +msgstr "1. 由于用户将用户密码告知他人或与他人共享注册账号,由此导致的任何个人信息的泄漏,或其他非因英荔原因导致的个人信息的泄漏;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. According to the provisions of the law or relevant government policy " +"requirements, Elitemba providing User's personal information;" +msgstr "2. 英荔根据法律规定或政府相关政策要求提供用户的个人信息;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. Disputes caused by any third party using User's personal information " +"under various circumstances listed in the terms of service and the " +"Disclaimer of EliteMBA;" +msgstr "3. 任何第三方根据英荔各服务条款及声明中所列明的情况使用用户的个人信息,由此所产生的纠纷;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Any temporary website closure due to hacking, computer virus intrusion or" +" government regulation;" +msgstr "4. 任何由于黑客攻击、电脑病毒侵入或政府管制而造成的暂时性网站关闭;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "5. Any consequences caused by force majeure;" +msgstr "5. 因不可抗力导致的任何后果;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"6. Ways of use or disclaimer circumstances listed by EliteMBA in terms of " +"service and this Disclaimer." +msgstr "6. 英荔在各服务条款及声明中列明的使用方式或免责情形。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "General Terms" +msgstr "总则" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"The products and services of Elite Education (www.elitemba.cn) are provided " +"by Guangdong Elite International Education & Technology Co., Ltd. " +"(hereinafter referred to as \"EliteMBA\" or \"We\"). This Disclaimer " +"Statement(hereinafter referred to as \"Disclaimer\") applies to EliteMBA " +"website, other applications used on computers, mobile phones/tablets or " +"other devices and other products and services. EliteMBA User (hereinafter " +"referred to as \"User\") must carefully read these terms and agree to this " +"statement before accepting EliteMBA service." +msgstr "" +"英荔商学院(www.EliteMBA.cn)的产品及服务由广东英荔国际教育科技有限公司(以下简称“英荔”或“我们”)提供。本免责声明(以下简称“本声明”)适用于英荔的网站、在计算机/手机/平板电脑或其他设备上使用的英荔的应用程序和其他产品及服务。英荔用户(以下简称“用户”)在接受英荔服务之前,请务必仔细阅读本条款并同意本声明" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"User who directly or (such as off-site API references, etc.) indirectly uses" +" EliteMBA services and data through various means will be regarded as having" +" unconditionally accepted all the contents involved in this Disclaimer; if " +"user objects any of the terms in this Disclaimer, please stop using all " +"services provided by EliteMBA. " +msgstr "" +"用户直接或通过各类方式(如站外API引用等)间接使用英荔服务和数据的行为,都将被视作已无条件接受本声明所涉全部内容;若用户对本声明的任何条款有异议,请停止使用英荔所提供的全部服务。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"This disclaimer may be amended or changed at any time by EliteMBA. The " +"EliteMBA will announce and updated the effective date. The updated " +"disclaimer will effectively replace the original statement once it is " +"published. By continuing to use EliteMBA service, the user agrees to and " +"accepts this statement and any updated versions thereof." +msgstr "" +"本免责声明可由英荔随时修正或更改,英荔将公布并更新生效日期。更新后的免责声明一旦公布即有效代替原来的声明,用户继续使用英荔服务即表示用户同意并接受本声明及其任何更新版本。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Article 1" +msgstr "第一条" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"Users may not use EliteMBA to directly or indirectly engage in breaches of " +"EliteMBA services and data (including but not limited to publication, " +"promotion, reprint, browsing, and use of EliteMBA or its users) in various " +"ways. Laws and regulations of the People's Republic of China, as well as the" +" behavior of social morality. Users should abide by the following " +"commitments:" +msgstr "" +"用户以各种方式使用英荔服务和数据(包括但不限于发表、宣传介绍、转载、浏览及利用英荔或其用户发布内容)的过程中,不得以任何方式利用英荔直接或间接从事违反中华人民共和国法律法规,以及社会公德的行为。用户应当恪守下述承诺:" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. Content published, reprinted or provided should comply with Chinese laws " +"and regulations and social morality;" +msgstr "1. 发布、转载或提供的内容符合中国法律法规、社会公德;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. Cannot interfere with, damage or violate the various legal rights and " +"interests of Elite Education;" +msgstr "2. 不得干扰、损害和侵犯英荔的各种合法权利与利益;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. Shall not interfere with, damage and infringe upon the various legal " +"rights and interests of other EliteMBA users;" +msgstr "3. 不得干扰、损害和侵犯其他英荔用户的各种合法权利与利益;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. Compliance with the rules and guidelines, management rules, etc. of Elite" +" Education website and other network related services;" +msgstr "4. 遵守英荔以及与之相关的网络服务的协议、指导原则、管理细则等;" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"5. Elite Education has the right to remove content that violates the above " +"commitments." +msgstr "5. 英荔有权对违反上述承诺的内容予以删除。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Article 2" +msgstr "第二条" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"1. EliteMBA only provides storage space for content posted by users. " +"EliteMBA does not provide any form of guarantee for the content posted or " +"reprinted by the User: there is no guarantee that the content will meet the " +"requirements of users, and there is no guarantee that the services of " +"EliteMBA will not be interrupted. EliteMBA does not assume any legal " +"responsibility for any reason that the user cannot use the website due to " +"any conditions such as network conditions, communication lines, third-party " +"websites or management requirements." +msgstr "" +"1. " +"英荔仅为用户发布的内容提供存储空间,英荔不对用户发表、转载的内容提供任何形式的保证:不保证内容满足用户的要求,不保证英荔的服务不会中断。因网络状况、通讯线路、第三方网站或管理部门的要求等任何原因而导致用户不能正常使用本网站,英荔不承担任何法律责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"2. The content published by Elite User (including but not limited to the " +"contents of the current product features of Elite) only indicates their " +"personal position and views, and does not represent the position or opinion " +"of Elite. As the content publisher, it is the responsibility of the content " +"to be published. All the disputes arising from the published content shall " +"be the legal and joint responsibility of the publisher of the content. " +"EliteMBA does not assume any legal and joint responsibility. " +msgstr "" +"2. " +"用户在英荔发表的内容(包含但不限于英荔目前各产品功能里的内容)仅表明其个人的立场和观点,并不代表英荔的立场或观点。作为内容的发表者,需自行对所发表内容负责,因所发表内容引发的一切纠纷,由该内容的发表者承担全部法律及连带责任。英荔不承担任何法律及连带责任。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"3. if the user publishes content suspected of infringing on the intellectual" +" property rights or other legitimate rights and interests of others through " +"EliteMBA, after the relevant parties provide prima facie evidence, EliteMBA " +"has the right to delete it first and retain the right to transfer it to the " +"judicial authorities. Referring to the investigation results of the relevant" +" judicial authorities, EliteMBA has the final decision on the disposal of " +"the content posted on the website. " +msgstr "" +"3. " +"用户在英荔发布涉嫌侵犯他人知识产权或其他合法权益的内容,经相关方提供初步证据,英荔有权先行予以删除,并保留移交司法机关查处的权利。参照相应司法机关的查处结果,英荔对于网站发布内容的处置具有最终决定权。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"4. User should inform Elite when he/she discovers any violation of this " +"Service Agreement, the terms of service of any other individual service, and" +" various announcements made by Elite Education. " +msgstr "4. 个人或单位如认为英荔存在侵犯自身合法权益的内容,应准备好具有法律效应的证明材料,及时与英荔取得联系,以便英荔迅速做出处理。" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "Supplementary" +msgstr "附则" + +#: themes/elitemba-theme/lms/templates/static_templates/honor.html +msgid "" +"EliteMBA reserves the rights to interpret, modify and update the Disclaimer." +msgstr "对免责声明的解释、修改及更新权均属于英荔所有。" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "Join us" +msgstr "加入我们" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "Let Yourself be More Valuable" +msgstr "成为更有价值的自己" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "" +"EliteMBA pays attention to employee development and attaches importance to " +"the power of communication. We continue to learn, inspire each other, and " +"constantly discover industry inspiration at work, and open our eyes as a " +"whole community. Here, work is an organic combination of enjoyment and hard " +"work." +msgstr "" +"英荔关注员工发展,重视交流的力量。作为一个整体,我们不断学习,相互启发,在工作中不断发现行业灵感,大开眼界。在这里,工作是享受与拼搏的有机结合。" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "" +"We will release job information as soon as possible, so stay tuned. Of " +"course, this does not mean that we want to miss any future members. Feel " +"free to contact us through email directly" +msgstr "职位信息整理中,我们将尽快发布,敬请期待。当然,这并不意味着我们愿意错过任何一位未来的成员,欢迎直接邮件联系" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "Become a Lecturer" +msgstr "成为英荔讲师" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "" +"Standing on the platform, educators can impart wisdom to learners. EliteMBA " +"completely breaks the geographical restrictions of teaching and learning and" +" provides a broader platform for educators. We sincerely invite all elite " +"professors, scholars and experts who have been deeply involved in business " +"management disciplines to develop more outstanding business talents by " +"transforming intangible wisdom into a collectible course." +msgstr "" +"站上讲台,教育者得以向学习者传授智慧。英荔彻底打破教与学的地理限制,为教育者提供更广阔的讲台。我们诚挚地向所有深耕于商业管理学科的精英教授、学者和专家发出邀请,让我们共同将无形的智慧实化为可典藏的课程,以此培养更多杰出的商业人才。" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "Please contact" +msgstr "请直接邮件联系" + +#: themes/elitemba-theme/lms/templates/static_templates/join_us.html +msgid "directly or call 400-931-8118." +msgstr "或致电400-931-8118。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To know more about courses" +msgstr "如何了解课程?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Click the course to view the course introduction video, browse the course " +"introduction, instructor introduction and course outline, etc." +msgstr "点击课程进入详情页,观看课程简介视频,浏览课程简介、导师简介及课程大纲等。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To join as a member" +msgstr "如何加入会员?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Membership\" page, choose your learning duration and payment method." +" After payment is completed, you can enjoy learning all courses on EliteMBA " +"during the study period." +msgstr "进入“会员资格”页,选择适合您的学习时长及支付方式,支付成功后便可在会员期限内享受所有课程的学习权益。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To view the end-date of membership" +msgstr "如何查看已购买的会员期限?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "Enter \"Membership\" page to view the VIP open date and remaining days." +msgstr "进入“会员资格”页,可查看会员已开通时间及剩余时间。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To enroll as a member" +msgstr "会员如何选课?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Discover New\" page, click the course or search key words to select " +"courses you are interested in, click \"Free Enrollment for VIP\" button, " +"then the enrollment is fulfilled." +msgstr "进入“发现课程”页,直接选择或通过搜索关键字的方式选择您感兴趣的课程,点击“VIP会员免费选修此课程”,即为选课成功。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To purchase a course" +msgstr "非会员如何购买单课?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Discover New\" page, click the course or search key words to select " +"courses you are interested in, click \"Enroll\" button, then you can start " +"learning after payment is completed." +msgstr "进入“发现课程”页,直接选择或通过搜索关键字的方式选择您感兴趣的课程,点击“选修此课程”,支付成功后即可开始学习该门课程。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To start a course" +msgstr "如何开始学习?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Click your avatar in the upper right corner of the page, enter \"Dashboard\"" +" to view the course introduction, watch videos and complete assignments." +msgstr "点击网页右上角个人头像进入“课程面板-查看课程”,可浏览课程简介;点击“开始学习课程”,可观看课程视频,提交课后习题。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To participate in discussion" +msgstr "如何参与课程讨论?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Dashboard - View Course\" page, click \"Discussion\". You can view " +"discussions, engage with posts and receive updates." +msgstr "进入“课程面板-查看课程”页,点击“讨论”,可以查看讨论帖、参与讨论及接收讨论帖更新。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To view and download handouts" +msgstr "如何查看和下载课程讲义?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"Enter \"Dashboard - View Course\" page, find \"Course Handouts\" on the " +"right side. You can view handout content and download." +msgstr "进入“课程面板-查看课程”页,在右侧找到“课程讲义”,可查看讲义内容并下载。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "How do I change or reset my password?" +msgstr "如何更改或重置密码?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To change your password" +msgstr "更改您的密码" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"1. At the top of any page, select the dropdown menu icon next to your " +"username." +msgstr "1. 在任意页面的顶部,选择用户名旁边的下拉菜单图标;" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "2. Select \"Account\"." +msgstr "2. 选择“帐户”;" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "3. Select \"Reset Password\"." +msgstr "3. 选择“重置密码”" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"The system sends a confirmation message to the email address in the \"Email " +"Address\" field." +msgstr "系统会向“电子邮件地址”框内的电子邮件地址发送确认消息;" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "4. Select the confirmation link in the email message." +msgstr "4. 打开电子邮件中的确认链接以确认密码修改。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "Passwords must contain:" +msgstr "密码必须包含:" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "At least 6 characters" +msgstr "至少6个字符" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "How do I change my email address?" +msgstr "如何更改我的电子邮件地址?" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"You can change your email address on any site page. You use your email " +"address to sign in to your account. In addition, communications from your " +"course teams are sent to this address." +msgstr "您可以在任何网站页面上更改您的电子邮件地址。您使用此电子邮件地址登录自己的帐户。另外,您所加入的课程团队将把课程信息发送到此电子邮件地址。" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "To change your email address" +msgstr "更改您的电子邮件地址" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"1. At the top of any page, select the dropdown menu icon next to your " +"username;" +msgstr "1. 在任意页面的顶部,选择用户名旁边的下拉菜单图标;" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "2. Select \"Account\";" +msgstr "2. 选择“账号”;" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"3. In the \"Email Address\" field, select your current email address and " +"replace it with the new address;" +msgstr "3. 在“电子邮件地址”的输入框中,选择您当前的电子邮件地址并将其替换为新的电子邮件地址;" + +#: themes/elitemba-theme/lms/templates/static_templates/manual.html +msgid "" +"4. To save your changes, click anywhere on the page outside of the \"Email " +"Address\" field, or navigate to a different page." +msgstr "4. 最后要保存更改,请单击“电子邮件地址”字段外部页面上的任意位置,或导航至其他页面。" + +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Mobile" +msgstr "手机" + +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Mobile Phone No.:" +msgstr "手机号码:" + +#: themes/elitemba-theme/lms/templates/student_account/account_settings.html +msgid "Bind your EliteMBA account to your cellphone number." +msgstr "将您的手机号码与EliteMBA的账号绑定。" + +#: themes/stanford-style/lms/templates/footer.html +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Copyright" +msgstr "版权" + +#: themes/stanford-style/lms/templates/footer.html +msgid "Copyright {year}. All rights reserved." +msgstr "版权 {year}。保留所有权利。" + +#: themes/stanford-style/lms/templates/index.html +msgid "For anyone, anywhere, anytime" +msgstr "任何人,任何地点,任何时间" + +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "" +"You will receive an activation email. You must click on the activation link" +" to complete the process. Don't see the email? Check your spam folder and " +"mark emails from class.stanford.edu as 'not spam', since you'll want to be " +"able to receive email from your courses." +msgstr "" +"您会收到一封激活邮件。您必须点击激活链接才能完成注册。如果没有看见邮件,请检查垃圾邮件,并将来自class.stanford.edu的邮件标记为“非垃圾邮件”,因为您会希望收到来自您的课程的邮件。" + +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "Need help in registering with {platform_name}?" +msgstr "在注册{platform_name}时需要帮助?" + +#: themes/stanford-style/lms/templates/register-sidebar.html +msgid "" +"Once registered, most questions can be answered in the course specific " +"discussion forums or through the FAQs." +msgstr "注册成功后,大部分问题均可在具体课程讨论论坛或FAQ中得到解决。" + +#: themes/stanford-style/lms/templates/emails/activation_email.txt +msgid "Thank you for signing up for {platform_name}." +msgstr "感谢您注册 {platform_name} 。" + +#: themes/stanford-style/lms/templates/emails/activation_email.txt +msgid "" +"Change your life and start learning today by activating your {platform_name}" +" account. Click on the link below or copy and paste it into your browser's " +"address bar." +msgstr "激活您的{platform_name}账号,从今天起开始学习,并以此改变您的生活。点击下面的链接或复制并粘贴到您浏览器的地址栏。" + +#: themes/stanford-style/lms/templates/emails/activation_email.txt +#: themes/stanford-style/lms/templates/emails/email_change.txt +msgid "" +"If you didn't request this, you don't need to do anything; you won't receive" +" any more email from us. Please do not reply to this e-mail; if you require " +"assistance, check the about section of the {platform_name} Courses web site." +msgstr "" +"如果您没发出过该请求,您不需要做任何事情;您将不会收到其他任何电子邮件。请不要回复此电子邮件;如果您需要帮助,请访问 {platform_name} " +"课程网站。" + +#: themes/stanford-style/lms/templates/emails/confirm_email_change.txt +msgid "" +"This is to confirm that you changed the e-mail associated with " +"{platform_name} from {old_email} to {new_email}. If you did not make this " +"request, please contact us at" +msgstr "" +"这封邮件是为了确认您和 {platform_name} 之间的电子邮件关联由 {old_email} 变更为 " +"{new_email}。如果您并没有发出该请求,请通过下列地址联系我们:" + +#: themes/stanford-style/lms/templates/emails/email_change.txt +msgid "" +"We received a request to change the e-mail associated with your " +"{platform_name} account from {old_email} to {new_email}. If this is correct," +" please confirm your new e-mail address by visiting:" +msgstr "" +"我们收到了您需要将 {platform_name} 账号的电子邮件关联由 {old_email} 变更为 {new_email} " +"的请求。如果该请求无误,请访问如下网页确认您的新电子邮件地址:" + +#: themes/stanford-style/lms/templates/emails/reject_name_change.txt +msgid "" +"We are sorry. Our course staff did not approve your request to change your " +"name from {old_name} to {new_name}. If you need further assistance, please " +"e-mail the tech support at {email}" +msgstr "" +"我们很抱歉。我们的员工没有批准您的请求改变您的名字从{old_name} " +"{new_name}。如果您需要进一步的协助,请电子邮件的技术支持{email}" + +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Put your Terms of Service here!" +msgstr "将您的服务条款置于此处!" + +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Put your Privacy Policy here!" +msgstr "将您的隐私政策置于此处!" + +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Put your Honor Code here!" +msgstr "将您的诚信准则置于此处!" + +#: themes/stanford-style/lms/templates/static_templates/tos.html +msgid "Put your Copyright Text here!" +msgstr "将您的版权文本置于此处!" diff --git a/conf/locale/zh_HANS/LC_MESSAGES/djangojs.mo b/conf/locale/zh_HANS/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 30fba275e5fe..000000000000 Binary files a/conf/locale/zh_HANS/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/conf/locale/zh_HANS/LC_MESSAGES/djangojs.po b/conf/locale/zh_HANS/LC_MESSAGES/djangojs.po index 34a7544f7e59..7f1fdf420831 100644 --- a/conf/locale/zh_HANS/LC_MESSAGES/djangojs.po +++ b/conf/locale/zh_HANS/LC_MESSAGES/djangojs.po @@ -1,49 +1,63 @@ # #-#-#-#-# djangojs-partial.po (0.1a) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). -# Copyright (C) 2019 EdX +# Copyright (C) 2020 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # # Translators: -# 嘉杰 李 , 2018 -# 微 李 , 2018 -# 婕 高 , 2018 -# 家璧 刘 , 2018 # li ying , 2019 # # #-#-#-#-# djangojs-studio.po (0.1a) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). -# Copyright (C) 2019 EdX +# Copyright (C) 2020 EdX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # # Translators: # li ying , 2019 # # #-#-#-#-# underscore.po (0.1a) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) -# Copyright (C) 2019 edX +# Copyright (C) 2020 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # # Translators: -# 微 李 , 2018 +# Sushan Wu , 2019 # li ying , 2019 # # #-#-#-#-# underscore-studio.po (0.1a) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) -# Copyright (C) 2019 edX +# Copyright (C) 2020 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # # Translators: # li ying , 2019 # -# #-#-#-#-# membership-js.po (0.1a) #-#-#-#-# +# #-#-#-#-# membership-js.po (PACKAGE VERSION) #-#-#-#-# +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +# Translators: +# li ying , 2019 +# +# #-#-#-#-# djangojs-theme.po (0.1a) #-#-#-#-# # edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/). -# Copyright (C) 2019 EdX +# Copyright (C) 2020 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2020. +# +# Translators: +# li ying , 2019 +# +# #-#-#-#-# underscore-theme.po (0.1a) #-#-#-#-# +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/) +# Copyright (C) 2020 edX # This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. -# EdX Team , 2019. +# EdX Team , 2020. # # Translators: # li ying , 2019 @@ -52,8 +66,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.1a\n" "Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" -"POT-Creation-Date: 2019-01-15 19:13+0800\n" -"PO-Revision-Date: 2018-12-07 12:23+0000\n" +"POT-Creation-Date: 2020-01-10 17:58+0800\n" +"PO-Revision-Date: 2019-06-19 06:25+0000\n" "Last-Translator: li ying , 2019\n" "Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" "Language: zh_CN\n" @@ -62,7 +76,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "Generated-By: Babel 1.3\n" -"#-#-#-#-# membership-js.po (0.1a) #-#-#-#-#\n" #: cms/static/cms/js/xblock/cms.runtime.v1.js #: cms/static/js/certificates/views/signatory_details.js @@ -116,7 +129,6 @@ msgstr "删除" #: common/static/common/js/components/utils/view_utils.js #: lms/static/js/Markdown.Editor.js #: lms/static/js/student_account/components/StudentAccountDeletionModal.jsx -#: lms/static/js/writable_gradebook.js #: cms/templates/js/add-xblock-component-menu-problem.underscore #: cms/templates/js/add-xblock-component-menu.underscore #: cms/templates/js/certificate-editor.underscore @@ -173,6 +185,7 @@ msgstr "关闭" #: cms/templates/js/previous-video-upload-list.underscore #: cms/templates/js/signatory-details.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Name" msgstr "姓名" @@ -239,7 +252,6 @@ msgstr "上传文件" #: cms/static/js/views/modals/base_modal.js #: cms/static/js/views/modals/course_outline_modals.js #: common/lib/xmodule/xmodule/js/src/html/edit.js -#: lms/static/js/writable_gradebook.js #: cms/templates/js/certificate-editor.underscore #: cms/templates/js/content-group-editor.underscore #: cms/templates/js/course_info_handouts.underscore @@ -378,7 +390,7 @@ msgstr[0] "%(num_points)s满分(不计入成绩)" #: common/lib/xmodule/xmodule/js/src/capa/display.js msgid "%(earned)s/%(possible)s point (graded)" msgid_plural "%(earned)s/%(possible)s points (graded)" -msgstr[0] "%(earned)s/%(possible)s得分 (计入成绩)" +msgstr[0] "%(earned)s/%(possible)s 得分 (计入成绩)" #. Translators: %(earned)s is the number of points earned. %(possible)s is the #. total number of points (examples: 0/1, 1/1, 2/3, 5/10). The total number of @@ -2207,7 +2219,7 @@ msgstr "格式不正确" #: common/static/common/js/utils/edx.utils.validate.js msgid "%(field)s must have at least %(count)d characters." -msgstr "%(field)s 至少要有 %(count)d 字符。" +msgstr "%(field)s至少要有 %(count)d 字符。" #: common/static/common/js/utils/edx.utils.validate.js msgid "%(field)s can only contain up to %(count)d characters." @@ -3477,6 +3489,31 @@ msgid "" " cohorts are disabled. You must enable cohorts for the feature to work." msgstr "这门课程为要获取认证证书的学生自动分组,但是群组功能被禁止。为了使该功能正常运行,您必须启用群组功能," +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "span" +msgstr "" + +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "div" +msgstr "" + +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "p" +msgstr "" + +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "img" +msgstr "" + +#: lms/static/js/imgcache-qq-tcplayer-min.js +#: themes/elitemba-theme/lms/static/js/imgcache-qq-tcplayer-min.js +msgid "li" +msgstr "" + #: lms/static/js/instructor_dashboard/certificates.js msgid "Allow students to generate certificates for this course?" msgstr "是否允许学生生成该课程证书?" @@ -3576,7 +3613,6 @@ msgstr "标记选课码为尚未使用的" #: lms/static/js/instructor_dashboard/membership.js #: lms/static/js/student_account/views/account_settings_factory.js -#: lms/static/js/writable_gradebook.js #: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js #: cms/templates/js/transcript-organization-credentials.underscore #: lms/djangoapps/support/static/support/templates/manage_user.underscore @@ -4271,11 +4307,6 @@ msgstr "成功覆盖{user}的题目得分" msgid "Could not override problem score for {user}." msgstr "无法覆盖{user}的题目得分。" -#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx -#: lms/static/js/student_account/views/account_settings_factory.js -msgid "Reset Your Password" -msgstr "重置您的密码" - #: lms/static/js/student_account/components/PasswordResetConfirmation.jsx msgid "Enter and confirm your new password." msgstr "输入并确认新密码" @@ -4296,6 +4327,11 @@ msgstr "两次密码输入不一致" msgid "Reset My Password" msgstr "重置密码" +#: lms/static/js/student_account/components/PasswordResetConfirmation.jsx +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "Reset Your Password" +msgstr "重置您的密码" + #: lms/static/js/student_account/components/PasswordResetInput.jsx msgid "Error: " msgstr "错误:" @@ -4525,8 +4561,16 @@ msgstr "此邮箱地址用于接收来自{platform_name}和课程团队的信息 #: lms/static/js/student_account/views/account_settings_factory.js msgid "" -"You have joined Harvard Learning Camp. Email Modification is not supported." -msgstr "您参加了“哈佛学习营”,暂不支持修改邮箱。" +"You have joined Harvard ManageMentor. Email Modification is not supported." +msgstr "您参加了“哈佛管理导师”,暂不支持修改邮箱。" + +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "Secondary Email Address" +msgstr "备选邮箱" + +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "You may access your account when single-sign on is not available." +msgstr "如果单点登录不可用,您可以访问自己的账号。" #: lms/static/js/student_account/views/account_settings_factory.js #: openedx/features/learner_profile/static/learner_profile/js/learner_profile_factory.js @@ -4612,6 +4656,12 @@ msgstr "出生年份" msgid "Preferred Language" msgstr "首选语言" +#: lms/static/js/student_account/views/account_settings_factory.js +msgid "" +"We've sent a confirmation message to {new_secondary_email_address}. Click " +"the link in the message to update your secondary email address." +msgstr "我们已向{new_secondary_email_address}发送了确认消息。 点击邮件中的链接以更新辅助电子邮件地址。" + #: lms/static/js/student_account/views/account_settings_factory.js msgid "Social Media Links" msgstr "社交媒体链接" @@ -4929,37 +4979,6 @@ msgstr "KB" msgid "MB" msgstr "MB" -#: lms/static/js/writable_gradebook.js -#: lms/templates/commerce/receipt.underscore -#: lms/templates/verify_student/make_payment_step_ab_testing.underscore -#: lms/templates/verify_student/payment_confirmation_step.underscore -msgid "Total" -msgstr "总计" - -#: lms/static/js/writable_gradebook.js -msgid "The Assignment name is:" -msgstr "任务名称为:" - -#: lms/static/js/writable_gradebook.js -msgid "Publish grades" -msgstr "发布成绩" - -#: lms/static/js/writable_gradebook.js -msgid "No matching records found" -msgstr "找不到匹配记录" - -#: lms/static/js/writable_gradebook.js -msgid "Student Name" -msgstr "学生姓名" - -#: lms/static/js/writable_gradebook.js -msgid "There are no student grades to adjust." -msgstr "无可调整学生成绩" - -#: lms/static/js/writable_gradebook.js -msgid "Update in progress, please wait..." -msgstr "正在更新,请稍等" - #: lms/static/lms/js/preview/preview_factory.js msgid "Course is not yet visible to students." msgstr "该课程尚未对学生公开" @@ -5107,27 +5126,6 @@ msgstr "成绩" msgid "Profile" msgstr "个人主页" -#: themes/normal-theme/lms/static/js/binding.js -#, javascript-format -msgid "%s s" -msgstr "%s秒" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Get the verification code" -msgstr "获取验证码" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Cell phone number cannot be blanked" -msgstr "手机号码不能为空" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "incorrect cellphone number format" -msgstr "手机号码格式不正确" - -#: themes/normal-theme/lms/static/js/binding.js -msgid "Cellphone number binding successfully" -msgstr "手机号码绑定成功" - #: cms/static/cms/js/main.js cms/static/js/views/active_video_upload_list.js #: cms/static/js/views/video_transcripts.js msgid "" @@ -5151,10 +5149,6 @@ msgstr "该链接将在新浏览器窗口/标签页中打开" msgid "This link will open in a modal window" msgstr "将在模式窗口中打开此链接" -#: cms/static/js/certificates/collections/certificates.js -msgid "Could not parse certificate JSON. %(message)s" -msgstr "无法解析证书JSON. %(message)s" - #: cms/static/js/certificates/models/certificate.js msgid "Certificate name is required." msgstr "证书名必须填写。" @@ -5943,8 +5937,12 @@ msgstr "可见性" #. Translators: "title" is the name of the current component being edited. #: cms/static/js/views/modals/edit_xblock.js -msgid "Editing: %(title)s" -msgstr "编辑:%(title)s" +msgid "Editing: {title}" +msgstr "正在编辑:{title}" + +#: cms/static/js/views/modals/edit_xblock.js +msgid "Plugins" +msgstr "插件" #: cms/static/js/views/modals/edit_xblock.js #: lms/templates/ccx/schedule.underscore @@ -6584,6 +6582,7 @@ msgstr "上一步" #: lms/djangoapps/support/static/support/templates/manage_user.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Action" msgstr "操作" @@ -6991,6 +6990,7 @@ msgstr "课程ID" #: lms/djangoapps/support/static/support/templates/certificates_results.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "No results" msgstr "没有结果" @@ -7318,6 +7318,12 @@ msgstr "订单号:" msgid "Amount" msgstr "金额" +#: lms/templates/commerce/receipt.underscore +#: lms/templates/verify_student/make_payment_step_ab_testing.underscore +#: lms/templates/verify_student/payment_confirmation_step.underscore +msgid "Total" +msgstr "总计" + #: lms/templates/commerce/receipt.underscore #: lms/templates/verify_student/payment_confirmation_step.underscore msgid "Please Note" @@ -7433,26 +7439,32 @@ msgid "Click to edit" msgstr "点击以编辑" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Order Number" msgstr "订单号" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Date Placed" msgstr "已设置日期" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Cost" msgstr "价格" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Order Details" msgstr "订单细节" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "for" msgstr "的" #: lms/templates/fields/field_order_history.underscore +#: themes/elitemba-theme/lms/templates/fields/field_order_history.underscore msgid "Product Name" msgstr "产品名称" @@ -7556,6 +7568,7 @@ msgstr "已设定为无效" #: lms/templates/instructor/instructor_dashboard_2/certificate-invalidation.underscore #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Notes" msgstr "笔记" @@ -7582,30 +7595,37 @@ msgid "Free text notes" msgstr "自由文本注释" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Generate Exception Certificates" msgstr "生成特例证书" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "All users on the Exception list who do not yet have a certificate" msgstr "特殊处理列表中尚未获得证书的所有用户" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "All users on the Exception list" msgstr "特殊处理列表中的所有用户" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "User Email" msgstr "用户电子邮件" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Exception Granted" msgstr "特殊处理已批准" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Certificate Generated" msgstr "证书已生成" #: lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore msgid "Remove from List" msgstr "从列表中删除" @@ -7864,7 +7884,7 @@ msgstr "挑选一个会话:" #: lms/templates/learner_dashboard/course_enroll.underscore msgid "Enroll Now" -msgstr "现在选课" +msgstr "现在加入" #: lms/templates/learner_dashboard/course_enroll.underscore msgid "Coming Soon" @@ -7872,7 +7892,7 @@ msgstr "即将上线" #: lms/templates/learner_dashboard/course_enroll.underscore msgid "Enrollment Opens on" -msgstr "开放注测" +msgstr "开放注册" #: lms/templates/learner_dashboard/course_enroll.underscore msgid "Not Currently Available" @@ -7918,6 +7938,12 @@ msgstr "您尚未注册任何课程。" msgid "Explore Programs" msgstr "发现课程" +#: lms/templates/learner_dashboard/expired_notification.underscore +msgid "" +"You enrolled in this course but did not earn the certificate required to " +"complete this program." +msgstr "您已注册此课程,但未获得完成此课程所需的证书。" + #: lms/templates/learner_dashboard/explore_new_programs.underscore msgid "" "Browse recently launched courses and see what\\'s new in your favorite " @@ -7989,10 +8015,20 @@ msgstr "附加的职业机会" msgid "Congratulations!" msgstr "恭喜!" +#: lms/templates/learner_dashboard/program_details_view.underscore +msgid "" +"You have successfully completed all the requirements for the {title} {type}." +msgstr "您已成功完成 {title} {type}专业的所有要求。" + #: lms/templates/learner_dashboard/program_details_view.underscore msgid "Your Program Journey" msgstr "您的课程学习之旅" +#: lms/templates/learner_dashboard/program_details_view.underscore +msgid "" +"Track and plan your progress through the {count} courses in this program." +msgstr "通过本系列的 {count} 门课程来跟踪和计划你的学习进度。" + #: lms/templates/learner_dashboard/program_details_view.underscore msgid "" "To complete the program, you must earn a verified certificate for each " @@ -8008,8 +8044,8 @@ msgid "{listPrice}" msgstr "{listPrice}" #: lms/templates/learner_dashboard/program_details_view.underscore -msgid " {price} {currency} )" -msgstr "{price} {currency} )" +msgid "{price})" +msgstr "{price})" #: lms/templates/learner_dashboard/program_details_view.underscore msgid "COURSES IN PROGRESS" @@ -8056,7 +8092,22 @@ msgstr "更改我的电子邮件" msgid "Reset Password" msgstr "重设密码" +#: lms/templates/student_account/account_recovery.underscore +msgid "Account Recovery" +msgstr "验证账户" + +#: lms/templates/student_account/account_recovery.underscore +msgid "" +"Please enter your secondary email address below and we will send you " +"instructions for recovering your account and setting a new password." +msgstr "请在下面输入您的电子邮件以便我们给您发送如何设置新密码的说明。" + +#: lms/templates/student_account/account_recovery.underscore +msgid "Recover my account" +msgstr "删除我的账号" + #: lms/templates/student_account/account_settings.underscore +#: themes/elitemba-theme/lms/templates/student_account/account_settings.underscore msgid "Account Settings" msgstr "账号设置" @@ -8070,6 +8121,7 @@ msgstr "忘记密码?" #: lms/templates/student_account/hinted_login.underscore #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign in" msgstr "登录" @@ -8109,72 +8161,87 @@ msgid "Register through edX" msgstr "通过edX注册" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "First time here?" msgstr "初次使用?" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Create an Account." msgstr "注册" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign in to continue learning as {email}" msgstr "使用{email}登录,继续学习" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign in to continue learning" msgstr "登录并继续学习" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "" "You already have an EliteMBA account with your {enterprise_name} email " "address." msgstr "您已使用{enterprise_name}邮箱地址注册EliteMBA账号。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "" "Going forward, your account information will be updated and maintained by " "{enterprise_name}." msgstr "下一步,由{enterprise_name}更新并维护您的账号信息。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "" "You can view your information or unlink from {enterprise_name} anytime in " "your Account Settings." msgstr "您可在账号设置中,随时查看账号信息或与{enterprise_name}解绑。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "To continue learning with this account, sign in below." msgstr "如需继续使用此账号学习,请点击以下按钮登录。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign In" msgstr "登录" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "" "Sign in here using your email address and password, or use one of the " "providers listed below." msgstr "使用您的电子邮件和密码或使用以下列出的一个方式在此处登录。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Sign in here using your email address and password." msgstr "在这里使用您的电子邮件和密码登录。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "If you do not yet have an account, use the button below to register." msgstr "如果您尚无账号,请使用以下按钮进行注册。" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "or sign in with" msgstr "或者通过以下方式登录" #: lms/templates/student_account/login.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore #, python-format msgid "Sign in with %(providerName)s" msgstr "使用 %(providerName)s 登录" #: lms/templates/student_account/login.underscore #: lms/templates/student_account/register.underscore +#: themes/elitemba-theme/lms/templates/student_account/login.underscore msgid "Use my institution/campus credentials" msgstr "使用我的机构/校园账号" @@ -9263,7 +9330,7 @@ msgstr "监考下的测试" #: cms/templates/js/course-outline.underscore msgid "Timed Exam" -msgstr "计时测验" +msgstr "" #: cms/templates/js/course-outline.underscore #: cms/templates/js/xblock-outline.underscore @@ -9275,6 +9342,10 @@ msgstr "折叠/扩展该%(xblock_type)s" msgid "Display Name" msgstr "显示名称" +#: cms/templates/js/course-outline.underscore +msgid "Proctoring Settings" +msgstr "监考设置" + #: cms/templates/js/course-outline.underscore msgid "Configure" msgstr "配置" @@ -9954,6 +10025,10 @@ msgid "" " when they submit answers to assessments." msgstr "如果节不设有截止日期,那么只要学员提交答案至评分,就可以查看自己的得分。" +#: cms/templates/js/show-textbook.underscore +msgid "PDF Chapters" +msgstr "PDF各章节" + #: cms/templates/js/signatory-details.underscore #: cms/templates/js/signatory-editor.underscore msgid "Signatory" @@ -10411,7 +10486,7 @@ msgid "Use Current Transcript" msgstr "使用当前字幕" #: membership/static/membership/js/card.js -msgid "Open membership" +msgid "Join" msgstr "开通" #: membership/static/membership/js/card.js @@ -10423,23 +10498,19 @@ msgid "YYYY-MM-DD" msgstr "YYYY-MM-DD" #: membership/static/membership/js/card.js -msgid "Open date:" +msgid "Open date: " msgstr "开通日期:" #: membership/static/membership/js/card.js -msgid "Expire:" +msgid "Expire: " msgstr "到期日期:" -#: membership/static/membership/js/card.js -msgid "Last open date:" -msgstr "上次开通日期:" - #: membership/static/membership/js/card.js msgid "Renew" msgstr "续费" #: membership/static/membership/js/index.js -msgid "Average per month" +msgid "/M" msgstr "月均" #: membership/static/membership/js/pay.js @@ -10450,3 +10521,28 @@ msgstr "调起支付失败" #, javascript-format msgid "Return to EliteMBA in %s seconds" msgstr "%s 秒后返回英荔商学院" + +#: themes/elitemba-theme/lms/static/js/binding.js +#, javascript-format +msgid "%s s" +msgstr "%s秒" + +#: themes/elitemba-theme/lms/static/js/binding.js +msgid "Get the verification code" +msgstr "获取验证码" + +#: themes/elitemba-theme/lms/static/js/binding.js +msgid "Cell phone number cannot be blanked" +msgstr "手机号码不能为空" + +#: themes/elitemba-theme/lms/static/js/binding.js +msgid "incorrect cellphone number format" +msgstr "手机号码格式不正确" + +#: themes/elitemba-theme/lms/static/js/binding.js +msgid "Cellphone number binding successfully" +msgstr "手机号码绑定成功" + +#: themes/elitemba-theme/lms/templates/instructor/instructor_dashboard_2/certificate-white-list.underscore +msgid "Certificate exceptions group selection" +msgstr "选择群体" diff --git a/conf/locale/zh_HANS/LC_MESSAGES/eliteu.po b/conf/locale/zh_HANS/LC_MESSAGES/eliteu.po new file mode 100644 index 000000000000..8dd1259e2c99 --- /dev/null +++ b/conf/locale/zh_HANS/LC_MESSAGES/eliteu.po @@ -0,0 +1,31 @@ +# edX community translations have been downloaded from Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/en/). +# Copyright (C) 2019 EdX +# This file is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE. +# EdX Team , 2019. +# +# Translators: +# li ying , 2019 +# li ying , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: 0.1a\n" +"Report-Msgid-Bugs-To: openedx-translation@googlegroups.com\n" +"POT-Creation-Date: 2019-01-24 03:59+0000\n" +"PO-Revision-Date: 2019-05-16 12:40+0000\n" +"Last-Translator: li ying , 2019\n" +"Language-Team: Chinese (China) (https://www.transifex.com/e-ducation/teams/93939/zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "email address" +msgstr "邮箱" + +msgid "English" +msgstr "英语" + +msgid "Chinese" +msgstr "中文" diff --git a/lms/djangoapps/courseware/views/views.py b/lms/djangoapps/courseware/views/views.py index 13f8791e6426..dfb3ae1f8f3b 100644 --- a/lms/djangoapps/courseware/views/views.py +++ b/lms/djangoapps/courseware/views/views.py @@ -21,7 +21,7 @@ from django.utils.decorators import method_decorator from django.utils.http import urlquote_plus from django.utils.text import slugify -from django.utils.translation import ugettext as _ +from django.utils.translation import ugettext_lazy as _ from django.views.decorators.cache import cache_control from django.views.decorators.clickjacking import xframe_options_exempt from django.views.decorators.csrf import ensure_csrf_cookie @@ -76,7 +76,7 @@ from lms.djangoapps.instructor.enrollment import uses_shib from lms.djangoapps.instructor.views.api import require_global_staff from lms.djangoapps.verify_student.services import IDVerificationService -from openedx.core.djangoapps.catalog.utils import get_programs, get_programs_with_type +from openedx.core.djangoapps.catalog.utils import get_programs, get_programs_with_type, get_program_extend from openedx.core.djangoapps.certificates import api as auto_certs_api from openedx.core.djangoapps.content.course_overviews.models import CourseOverview from openedx.core.djangoapps.credit.api import ( @@ -957,6 +957,10 @@ def program_marketing(request, program_uuid): skus = program.get('skus') ecommerce_service = EcommerceService() + # Program Extend + program_extend = get_program_extend(program_uuid) + program['tencent_video'] = program_extend['video'] if isinstance(program_extend, dict) else '' + context = {'program': program} if program.get('is_learner_eligible_for_one_click_purchase') and skus: diff --git a/lms/djangoapps/discussion/static/discussion/templates/search.underscore b/lms/djangoapps/discussion/static/discussion/templates/search.underscore index 74dc7bbfd8c8..3e45c35a493b 100644 --- a/lms/djangoapps/discussion/static/discussion/templates/search.underscore +++ b/lms/djangoapps/discussion/static/discussion/templates/search.underscore @@ -5,5 +5,7 @@ id="search" placeholder="<%- gettext("Search all posts") %>" /> + diff --git a/lms/djangoapps/learner_dashboard/views.py b/lms/djangoapps/learner_dashboard/views.py index 43e8605e1dff..520db2fae8df 100644 --- a/lms/djangoapps/learner_dashboard/views.py +++ b/lms/djangoapps/learner_dashboard/views.py @@ -6,6 +6,7 @@ from lms.djangoapps.learner_dashboard.programs import ProgramsFragmentView, ProgramDetailsFragmentView from openedx.core.djangoapps.programs.models import ProgramsApiConfig +from openedx.core.djangoapps.catalog.utils import get_programs from openedx.features.journals.api import journals_enabled @@ -33,12 +34,14 @@ def program_listing(request): @require_GET def program_details(request, program_uuid): """View details about a specific program.""" + program_data = get_programs(request.site, uuid=program_uuid) programs_config = ProgramsApiConfig.current() program_fragment = ProgramDetailsFragmentView().render_to_fragment( request, program_uuid, programs_config=programs_config ) - + context = { + 'program_title': program_data['title'], 'program_fragment': program_fragment, 'show_program_listing': programs_config.enabled, 'show_dashboard_tabs': True, diff --git a/lms/djangoapps/mobile_api/users/serializers.py b/lms/djangoapps/mobile_api/users/serializers.py index 595d83c529dd..29b7b9a5875e 100644 --- a/lms/djangoapps/mobile_api/users/serializers.py +++ b/lms/djangoapps/mobile_api/users/serializers.py @@ -20,7 +20,8 @@ class CourseOverviewField(serializers.RelatedField): def to_representation(self, course_overview): course_id = unicode(course_overview.id) request = self.context.get('request') - api_version = self.context.get('api_version') + #api_version = self.context.get('api_version') + api_version = 'v1' return { # identifiers @@ -136,7 +137,8 @@ class UserSerializer(serializers.ModelSerializer): def get_course_enrollments(self, model): request = self.context.get('request') - api_version = self.context.get('api_version') + #api_version = self.context.get('api_version') + api_version = 'v1' return reverse( 'courseenrollment-detail', diff --git a/lms/djangoapps/mobile_api/users/urls.py b/lms/djangoapps/mobile_api/users/urls.py index 715977aadfac..2edd33857418 100644 --- a/lms/djangoapps/mobile_api/users/urls.py +++ b/lms/djangoapps/mobile_api/users/urls.py @@ -5,7 +5,7 @@ from django.conf import settings from django.conf.urls import url -from .views import UserCourseEnrollmentsList, UserCourseStatus, UserDetail +from .views import UserCourseEnrollmentsList, UserCourseStatus, UserDetail, UserDeactivateLogoutView urlpatterns = [ url('^' + settings.USERNAME_PATTERN + '$', UserDetail.as_view(), name='user-detail'), @@ -16,5 +16,10 @@ ), url('^{}/course_status_info/{}'.format(settings.USERNAME_PATTERN, settings.COURSE_ID_PATTERN), UserCourseStatus.as_view(), - name='user-course-status') + name='user-course-status'), + url( + '^' + settings.USERNAME_PATTERN + '/deactivate_logout/$', + UserDeactivateLogoutView.as_view(), + name='user-deactivate-logout' + ), ] diff --git a/lms/djangoapps/mobile_api/users/views.py b/lms/djangoapps/mobile_api/users/views.py index 1799ec57dcb3..894d7b3843cb 100644 --- a/lms/djangoapps/mobile_api/users/views.py +++ b/lms/djangoapps/mobile_api/users/views.py @@ -1,10 +1,22 @@ +# -*- coding:utf-8 -*- """ Views for user API """ import json +import logging + +from edx_ace import ace +from edx_ace.recipient import Recipient + +from six import iteritems, text_type from django.shortcuts import redirect from django.utils import dateparse +from django.contrib.sites.models import Site +from django.contrib.auth import authenticate, get_user_model, logout +from django.db import transaction +from django.utils.translation import ugettext as _ + from opaque_keys import InvalidKeyError from opaque_keys.edx.keys import UsageKey from rest_framework import generics, views @@ -22,14 +34,34 @@ from lms.djangoapps.courseware.access_utils import ACCESS_GRANTED from mobile_api.utils import API_V05 from openedx.features.course_duration_limits.access import check_course_expired -from student.models import CourseEnrollment, User +from openedx.core.djangoapps.user_api.models import ( + RetirementState, + RetirementStateError, + UserOrgTag, + UserRetirementPartnerReportingStatus, + UserRetirementStatus +) +from openedx.core.djangoapps.user_api.accounts.views import _set_unusable_password +from openedx.core.djangoapps.user_api.message_types import DeletionNotificationMessage +from openedx.core.djangolib.oauth2_retirement_utils import retire_dot_oauth2_models, retire_dop_oauth2_models +from openedx.core.djangoapps.ace_common.template_context import get_base_template_context +from openedx.core.djangoapps.user_authn.exceptions import AuthFailedError + +from student.models import CourseEnrollment, User, get_retired_email_by_email, Registration, LoginFailures from xmodule.modulestore.django import modulestore from xmodule.modulestore.exceptions import ItemNotFoundError +from rest_framework import permissions, status + from .. import errors from ..decorators import mobile_course_access, mobile_view from .serializers import CourseEnrollmentSerializer, CourseEnrollmentSerializerv05, UserSerializer +from social_django.models import UserSocialAuth + + +log = logging.getLogger(__name__) + @mobile_view(is_user=True) class UserDetail(generics.RetrieveAPIView): @@ -378,3 +410,130 @@ def my_user_info(request, api_version): Redirect to the currently-logged-in user's info page """ return redirect("user-detail", api_version=api_version, username=request.user.username) + + +@mobile_view(is_user=True) +class UserDeactivateLogoutView(views.APIView): + """ + POST /api/mobile/v1/users/{username}/deactivate_logout/ + + """ + http_method_names = ["post",] + permission_classes = (permissions.IsAuthenticated,) + + def post(self, request, *args, **kwargs): + """ + POST /api/mobile/v1/users/{username}/deactivate_logout/ + + Marks the user as having no password set for deactivation purposes, + and logs te user out. + """ + user_model = get_user_model() + try: + # Get the username from the request and check that it exists + verify_user_password_response = self._verify_user_password(request) + if verify_user_password_response.status_code != status.HTTP_204_NO_CONTENT: + return Response( + data={ + 'msg': "密码异常", + 'code': status.HTTP_403_FORBIDDEN + }) + with transaction.atomic(): + UserRetirementStatus.create_retirement(request.user) + # Unlink LMS social auth accounts + UserSocialAuth.objects.filter(user_id=request.user.id).delete() + # Change LMS password & email + user_email = request.user.email + request.user.email = get_retired_email_by_email(request.user.email) + request.user.save() + _set_unusable_password(request.user) + # TODO: Unlink social accounts & change password on each IDA. + # Remove the activation keys sent by email to the user for account activation. + Registration.objects.filter(user=request.user).delete() + # Add user to retirement queue. + # Delete OAuth tokens associated with the user. + retire_dop_oauth2_models(request.user) + retire_dot_oauth2_models(request.user) + + try: + # Send notification email to user + site = Site.objects.get_current() + notification_context = get_base_template_context(site) + notification_context.update({'full_name': request.user.profile.name}) + notification = DeletionNotificationMessage().personalize( + recipient=Recipient(username='', email_address=user_email), + language=request.user.profile.language, + user_context=notification_context, + ) + ace.send(notification) + except Exception as exc: + log.exception('Error sending out deletion notification email') + raise + + # Log the user out. + # TODO app获取接口成功后 退出登录,和WEB端不一样 + #logout(request) + return Response( + data={ + 'msg': _('操作成功'), + 'code': status.HTTP_204_NO_CONTENT + }) + except KeyError: + return Response( + data={ + 'msg': _('Username not specified.'), + 'code': status.HTTP_404_NOT_FOUND + }) + except user_model.DoesNotExist: + return Response( + data={ + 'msg': u'The user "{}" does not exist.'.format(request.user.username), + 'code': status.HTTP_404_NOT_FOUND + }) + except Exception as exc: # pylint: disable=broad-except + return Response( + data={ + 'msg': text_type(exc), + 'code': status.HTTP_500_INTERNAL_SERVER_ERROR + }) + + def _verify_user_password(self, request): + """ + If the user is logged in and we want to verify that they have submitted the correct password + for a major account change (for example, retiring this user's account). + + Args: + request (HttpRequest): A request object where the password should be included in the POST fields. + """ + try: + self._check_excessive_login_attempts(request.user) + user = authenticate(username=request.user.username, password=request.POST['password'], request=request) + if user: + if LoginFailures.is_feature_enabled(): + LoginFailures.clear_lockout_counter(user) + return Response(status=status.HTTP_204_NO_CONTENT) + else: + self._handle_failed_authentication(request.user) + except AuthFailedError as err: + return Response(text_type(err), status=status.HTTP_403_FORBIDDEN) + except Exception as err: # pylint: disable=broad-except + return Response(u"Could not verify user password: {}".format(err), status=status.HTTP_400_BAD_REQUEST) + + def _check_excessive_login_attempts(self, user): + """ + See if account has been locked out due to excessive login failures + """ + if user and LoginFailures.is_feature_enabled(): + if LoginFailures.is_user_locked_out(user): + raise AuthFailedError(_('Due to multiple login failures, the account is temporarily locked.' + ' Please try again after 15 minutes.')) + + def _handle_failed_authentication(self, user): + """ + Handles updating the failed login count, inactive user notifications, and logging failed authentications. + """ + if user and LoginFailures.is_feature_enabled(): + LoginFailures.increment_lockout_counter(user) + + raise AuthFailedError(_('Email or password is incorrect.')) + diff --git a/lms/djangoapps/verify_student/views.py b/lms/djangoapps/verify_student/views.py index 94db46f907e2..8e9085f6f7b4 100644 --- a/lms/djangoapps/verify_student/views.py +++ b/lms/djangoapps/verify_student/views.py @@ -913,7 +913,7 @@ def post(self, request): return response # Submit the attempt - self._submit_attempt(request.user, face_image, photo_id_image, initial_verification) + attempt = self._submit_attempt(request.user, face_image, photo_id_image, initial_verification) self._fire_event(request.user, "edx.bi.verify.submitted", {"category": "verification"}) self._send_confirmation_email(request.user) diff --git a/lms/envs/common.py b/lms/envs/common.py index 919f90c6e070..265b98dfa7d6 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -976,86 +976,86 @@ def _add_microsite_dirs_to_default_template_engine(settings): # Sourced from http://www.localeplanet.com/icu/ and wikipedia LANGUAGES = [ ('en', u'English'), - ('rtl', u'Right-to-Left Test Language'), - ('eo', u'Dummy Language (Esperanto)'), # Dummy languaged used for testing - ('fake2', u'Fake translations'), # Another dummy language for testing (not pushed to prod) - - ('am', u'አማርኛ'), # Amharic - ('ar', u'العربية'), # Arabic - ('az', u'azərbaycanca'), # Azerbaijani - ('bg-bg', u'български (България)'), # Bulgarian (Bulgaria) - ('bn-bd', u'বাংলা (বাংলাদেশ)'), # Bengali (Bangladesh) - ('bn-in', u'বাংলা (ভারত)'), # Bengali (India) - ('bs', u'bosanski'), # Bosnian - ('ca', u'Català'), # Catalan - ('ca@valencia', u'Català (València)'), # Catalan (Valencia) - ('cs', u'Čeština'), # Czech - ('cy', u'Cymraeg'), # Welsh - ('da', u'dansk'), # Danish - ('de-de', u'Deutsch (Deutschland)'), # German (Germany) - ('el', u'Ελληνικά'), # Greek - ('en-uk', u'English (United Kingdom)'), # English (United Kingdom) - ('en@lolcat', u'LOLCAT English'), # LOLCAT English - ('en@pirate', u'Pirate English'), # Pirate English - ('es-419', u'Español (Latinoamérica)'), # Spanish (Latin America) - ('es-ar', u'Español (Argentina)'), # Spanish (Argentina) - ('es-ec', u'Español (Ecuador)'), # Spanish (Ecuador) - ('es-es', u'Español (España)'), # Spanish (Spain) - ('es-mx', u'Español (México)'), # Spanish (Mexico) - ('es-pe', u'Español (Perú)'), # Spanish (Peru) - ('et-ee', u'Eesti (Eesti)'), # Estonian (Estonia) - ('eu-es', u'euskara (Espainia)'), # Basque (Spain) - ('fa', u'فارسی'), # Persian - ('fa-ir', u'فارسی (ایران)'), # Persian (Iran) - ('fi-fi', u'Suomi (Suomi)'), # Finnish (Finland) - ('fil', u'Filipino'), # Filipino - ('fr', u'Français'), # French - ('gl', u'Galego'), # Galician - ('gu', u'ગુજરાતી'), # Gujarati - ('he', u'עברית'), # Hebrew - ('hi', u'हिन्दी'), # Hindi - ('hr', u'hrvatski'), # Croatian - ('hu', u'magyar'), # Hungarian - ('hy-am', u'Հայերեն (Հայաստան)'), # Armenian (Armenia) - ('id', u'Bahasa Indonesia'), # Indonesian - ('it-it', u'Italiano (Italia)'), # Italian (Italy) - ('ja-jp', u'日本語 (日本)'), # Japanese (Japan) - ('kk-kz', u'қазақ тілі (Қазақстан)'), # Kazakh (Kazakhstan) - ('km-kh', u'ភាសាខ្មែរ (កម្ពុជា)'), # Khmer (Cambodia) - ('kn', u'ಕನ್ನಡ'), # Kannada - ('ko-kr', u'한국어 (대한민국)'), # Korean (Korea) - ('lt-lt', u'Lietuvių (Lietuva)'), # Lithuanian (Lithuania) - ('ml', u'മലയാളം'), # Malayalam - ('mn', u'Монгол хэл'), # Mongolian - ('mr', u'मराठी'), # Marathi - ('ms', u'Bahasa Melayu'), # Malay - ('nb', u'Norsk bokmål'), # Norwegian Bokmål - ('ne', u'नेपाली'), # Nepali - ('nl-nl', u'Nederlands (Nederland)'), # Dutch (Netherlands) - ('or', u'ଓଡ଼ିଆ'), # Oriya - ('pl', u'Polski'), # Polish - ('pt-br', u'Português (Brasil)'), # Portuguese (Brazil) - ('pt-pt', u'Português (Portugal)'), # Portuguese (Portugal) - ('ro', u'română'), # Romanian - ('ru', u'Русский'), # Russian - ('si', u'සිංහල'), # Sinhala - ('sk', u'Slovenčina'), # Slovak - ('sl', u'Slovenščina'), # Slovenian - ('sq', u'shqip'), # Albanian - ('sr', u'Српски'), # Serbian - ('sv', u'svenska'), # Swedish - ('sw', u'Kiswahili'), # Swahili - ('ta', u'தமிழ்'), # Tamil - ('te', u'తెలుగు'), # Telugu - ('th', u'ไทย'), # Thai - ('tr-tr', u'Türkçe (Türkiye)'), # Turkish (Turkey) - ('uk', u'Українська'), # Ukranian - ('ur', u'اردو'), # Urdu - ('vi', u'Tiếng Việt'), # Vietnamese - ('uz', u'Ўзбек'), # Uzbek + # ('rtl', u'Right-to-Left Test Language'), + # ('eo', u'Dummy Language (Esperanto)'), # Dummy languaged used for testing + # ('fake2', u'Fake translations'), # Another dummy language for testing (not pushed to prod) + + # ('am', u'አማርኛ'), # Amharic + # ('ar', u'العربية'), # Arabic + # ('az', u'azərbaycanca'), # Azerbaijani + # ('bg-bg', u'български (България)'), # Bulgarian (Bulgaria) + # ('bn-bd', u'বাংলা (বাংলাদেশ)'), # Bengali (Bangladesh) + # ('bn-in', u'বাংলা (ভারত)'), # Bengali (India) + # ('bs', u'bosanski'), # Bosnian + # ('ca', u'Català'), # Catalan + # ('ca@valencia', u'Català (València)'), # Catalan (Valencia) + # ('cs', u'Čeština'), # Czech + # ('cy', u'Cymraeg'), # Welsh + # ('da', u'dansk'), # Danish + # ('de-de', u'Deutsch (Deutschland)'), # German (Germany) + # ('el', u'Ελληνικά'), # Greek + # ('en-uk', u'English (United Kingdom)'), # English (United Kingdom) + # ('en@lolcat', u'LOLCAT English'), # LOLCAT English + # ('en@pirate', u'Pirate English'), # Pirate English + # ('es-419', u'Español (Latinoamérica)'), # Spanish (Latin America) + # ('es-ar', u'Español (Argentina)'), # Spanish (Argentina) + # ('es-ec', u'Español (Ecuador)'), # Spanish (Ecuador) + # ('es-es', u'Español (España)'), # Spanish (Spain) + # ('es-mx', u'Español (México)'), # Spanish (Mexico) + # ('es-pe', u'Español (Perú)'), # Spanish (Peru) + # ('et-ee', u'Eesti (Eesti)'), # Estonian (Estonia) + # ('eu-es', u'euskara (Espainia)'), # Basque (Spain) + # ('fa', u'فارسی'), # Persian + # ('fa-ir', u'فارسی (ایران)'), # Persian (Iran) + # ('fi-fi', u'Suomi (Suomi)'), # Finnish (Finland) + # ('fil', u'Filipino'), # Filipino + # ('fr', u'Français'), # French + # ('gl', u'Galego'), # Galician + # ('gu', u'ગુજરાતી'), # Gujarati + # ('he', u'עברית'), # Hebrew + # ('hi', u'हिन्दी'), # Hindi + # ('hr', u'hrvatski'), # Croatian + # ('hu', u'magyar'), # Hungarian + # ('hy-am', u'Հայերեն (Հայաստան)'), # Armenian (Armenia) + # ('id', u'Bahasa Indonesia'), # Indonesian + # ('it-it', u'Italiano (Italia)'), # Italian (Italy) + # ('ja-jp', u'日本語 (日本)'), # Japanese (Japan) + # ('kk-kz', u'қазақ тілі (Қазақстан)'), # Kazakh (Kazakhstan) + # ('km-kh', u'ភាសាខ្មែរ (កម្ពុជា)'), # Khmer (Cambodia) + # ('kn', u'ಕನ್ನಡ'), # Kannada + # ('ko-kr', u'한국어 (대한민국)'), # Korean (Korea) + # ('lt-lt', u'Lietuvių (Lietuva)'), # Lithuanian (Lithuania) + # ('ml', u'മലയാളം'), # Malayalam + # ('mn', u'Монгол хэл'), # Mongolian + # ('mr', u'मराठी'), # Marathi + # ('ms', u'Bahasa Melayu'), # Malay + # ('nb', u'Norsk bokmål'), # Norwegian Bokmål + # ('ne', u'नेपाली'), # Nepali + # ('nl-nl', u'Nederlands (Nederland)'), # Dutch (Netherlands) + # ('or', u'ଓଡ଼ିଆ'), # Oriya + # ('pl', u'Polski'), # Polish + # ('pt-br', u'Português (Brasil)'), # Portuguese (Brazil) + # ('pt-pt', u'Português (Portugal)'), # Portuguese (Portugal) + # ('ro', u'română'), # Romanian + # ('ru', u'Русский'), # Russian + # ('si', u'සිංහල'), # Sinhala + # ('sk', u'Slovenčina'), # Slovak + # ('sl', u'Slovenščina'), # Slovenian + # ('sq', u'shqip'), # Albanian + # ('sr', u'Српски'), # Serbian + # ('sv', u'svenska'), # Swedish + # ('sw', u'Kiswahili'), # Swahili + # ('ta', u'தமிழ்'), # Tamil + # ('te', u'తెలుగు'), # Telugu + # ('th', u'ไทย'), # Thai + # ('tr-tr', u'Türkçe (Türkiye)'), # Turkish (Turkey) + # ('uk', u'Українська'), # Ukranian + # ('ur', u'اردو'), # Urdu + # ('vi', u'Tiếng Việt'), # Vietnamese + # ('uz', u'Ўзбек'), # Uzbek ('zh-cn', u'中文 (简体)'), # Chinese (China) - ('zh-hk', u'中文 (香港)'), # Chinese (Hong Kong) - ('zh-tw', u'中文 (台灣)'), # Chinese (Taiwan) + # ('zh-hk', u'中文 (香港)'), # Chinese (Hong Kong) + # ('zh-tw', u'中文 (台灣)'), # Chinese (Taiwan) ] LANGUAGE_DICT = dict(LANGUAGES) @@ -3055,7 +3055,8 @@ def _make_locale_paths(settings): # Modulestore-level field override providers. These field override providers don't # require student context. -MODULESTORE_FIELD_OVERRIDE_PROVIDERS = ('openedx.features.content_type_gating.field_override.ContentTypeGatingFieldOverride',) # pylint: disable=line-too-long +MODULESTORE_FIELD_OVERRIDE_PROVIDERS = () +#MODULESTORE_FIELD_OVERRIDE_PROVIDERS = ('openedx.features.content_type_gating.field_override.ContentTypeGatingFieldOverride',) # pylint: disable=line-too-long # PROFILE IMAGE CONFIG # WARNING: Certain django storage backends do not support atomic diff --git a/lms/envs/devstack_docker.py b/lms/envs/devstack_docker.py index 13e5827372ad..965510fa93cf 100644 --- a/lms/envs/devstack_docker.py +++ b/lms/envs/devstack_docker.py @@ -6,12 +6,6 @@ 'ENABLE_PROFESSORS': True, }) -# Payment -ALIPAY_INFO = AUTH_TOKENS.get('ALIPAY_INFO', ALIPAY_INFO) -ALIPAY_APP_INFO = AUTH_TOKENS.get('ALIPAY_APP_INFO', ALIPAY_APP_INFO) -WECHAT_PAY_INFO = AUTH_TOKENS.get('WECHAT_PAY_INFO', WECHAT_PAY_INFO) -WECHAT_APP_PAY_INFO = AUTH_TOKENS.get('WECHAT_APP_PAY_INFO', WECHAT_APP_PAY_INFO) -WECHAT_H5_PAY_INFO = AUTH_TOKENS.get('WECHAT_H5_PAY_INFO', WECHAT_H5_PAY_INFO) # Aliyun oss ALIYUN_OSS = AUTH_TOKENS.get('ALIYUN_OSS', {}) diff --git a/lms/envs/eliteu_aliyun.py b/lms/envs/eliteu_aliyun.py index 85695d74c8d2..313217ff60aa 100644 --- a/lms/envs/eliteu_aliyun.py +++ b/lms/envs/eliteu_aliyun.py @@ -1,10 +1,5 @@ -from .aws import * +from .production import * -ALIPAY_INFO = AUTH_TOKENS.get('ALIPAY_INFO', ALIPAY_INFO) -ALIPAY_APP_INFO = AUTH_TOKENS.get('ALIPAY_APP_INFO', ALIPAY_APP_INFO) -WECHAT_PAY_INFO = AUTH_TOKENS.get('WECHAT_PAY_INFO', WECHAT_PAY_INFO) -WECHAT_APP_PAY_INFO = AUTH_TOKENS.get('WECHAT_APP_PAY_INFO', WECHAT_APP_PAY_INFO) -WECHAT_H5_PAY_INFO = AUTH_TOKENS.get('WECHAT_H5_PAY_INFO', WECHAT_H5_PAY_INFO) if FEATURES.get('ENABLE_MEMBERSHIP_INTEGRATION', False): INSTALLED_APPS.append('membership') @@ -36,4 +31,4 @@ WEIXINAPPID = '' WEIXINAPPSECRET = '' WEIXINAPPID = ENV_TOKENS.get('WEIXINAPPID', WEIXINAPPID) -WEIXINAPPSECRET = ENV_TOKENS.get('WEIXINAPPSECRET', WEIXINAPPSECRET) \ No newline at end of file +WEIXINAPPSECRET = ENV_TOKENS.get('WEIXINAPPSECRET', WEIXINAPPSECRET) diff --git a/lms/envs/eliteu_common.py b/lms/envs/eliteu_common.py index fff156562c65..04482e5c14c6 100644 --- a/lms/envs/eliteu_common.py +++ b/lms/envs/eliteu_common.py @@ -34,10 +34,8 @@ }) MEMBERSHIP_ROOT = REPO_ROOT / "../edx-membership" -PAYMENTS_ROOT = REPO_ROOT / "../eliteu-payments" sys.path.append(MEMBERSHIP_ROOT) -sys.path.append(PAYMENTS_ROOT) OAUTH2_PROVIDER.update({ 'ACCESS_TOKEN_EXPIRE_SECONDS': 60 * 60 * 24 * 365, @@ -237,105 +235,6 @@ def _add_microsite_dirs_to_default_template_engine(settings): 'XK': _('Kosovo'), } -############################ WECHAT_APP_PAY ######################### -WECHAT_APP_PAY_INFO = { - "basic_info": { - "APPID": "", - "APPSECRET": "", - "MCHID": "", - "KEY": "", - "ACCESS_TOKEN": "" - }, - "other_info": { - "BUY_COURSES_SUCCESS_TEMPLATE_ID": "", - "BUY_COURSES_SUCCESS_HREF_URL": "", - "COIN_SUCCESS_TEMPLATE_ID": "", - "COIN_SUCCESS_HREF_URL": "", - "SERVICE_TEL": "", - "NOTIFY_URL": "", - "JS_API_CALL_URL": "", - "SSLCERT_PATH": "", - "SSLKEY_PATH": "" - } -} - -############################ WECHAT_PAY ######################### -WECHAT_PAY_INFO = { - "basic_info": { - "APPID": "", - "APPSECRET": "", - "MCHID": "", - "KEY": "", - "ACCESS_TOKEN": "" - }, - "other_info": { - "BUY_COURSES_SUCCESS_TEMPLATE_ID": "", - "BUY_COURSES_SUCCESS_HREF_URL": "", - "COIN_SUCCESS_TEMPLATE_ID": "", - "COIN_SUCCESS_HREF_URL": "", - "SERVICE_TEL": "", - "NOTIFY_URL": "", - "JS_API_CALL_URL": "", - "SSLCERT_PATH": "", - "SSLKEY_PATH": "" - } -} - -############################ WECHAT H5 PAY ######################### -WECHAT_H5_PAY_INFO = { - "basic_info": { - "APPID": "", - "APPSECRET": "", - "MCHID": "", - "KEY": "", - "ACCESS_TOKEN": "" - }, - "other_info": { - "SERVICE_TEL": "", - "NOTIFY_URL": "", - "JS_API_CALL_URL": "", - "SSLCERT_PATH": "", - "SSLKEY_PATH": "", - "SPBILL_CREATE_IP": "" - } -} - -############################ ALIPAY_INFO ######################### -ALIPAY_APP_INFO = { - "basic_info": { - "APP_ID": "", - "APP_PRIVATE_KEY": "", - "ALIPAY_RSA_PUBLIC_KEY": "" - }, - "other_info": { - "SIGN_TYPE": "", - "NOTIFY_URL": "" - } -} - -############################ ALIPAY_INFO ######################### -ALIPAY_INFO = { - 'basic_info': { - "KEY": "", - "PARTNER": "", - "SELLER_EMAIL": "" - }, - 'other_info': { - "INPUT_CHARSET": "", - "INPUT_DIRECT_CHARSET": "", - "SIGN_TYPE": "", - "RETURN_URL": "", - "NOTIFY_URL": "", - "REFUND_NOTIFY_URL": "", - "SHOW_URL": "", - "ERROR_NOTIFY_URL": "", - "TRANSPORT": "", - "DEFAULT_BANK": "", - "IT_B_PAY": "", - "REFUND_URL": "" - } -} - ACCOUNT_VISIBILITY_CONFIGURATION = { # Default visibility level for accounts without a specified value # The value is one of: 'all_users', 'private' @@ -449,21 +348,5 @@ def _add_microsite_dirs_to_default_template_engine(settings): # Baidu Bridge BAIDU_BRIDGE_URL = ENV_TOKENS.get('BAIDU_BRIDGE_URL', '') -# elitemba -import imp - -HMM_ENABLED = ENV_FEATURES.get('HMM_ENABLED', False) -try: - if HMM_ENABLED: - fp, elitemba_path, desc = imp.find_module('elitemba') - INSTALLED_APPS.append('elitemba') - MIDDLEWARE_CLASSES.append('elitemba.middleware.ElitembaDataMiddleware') - HMM_CONFIGS = ENV_FEATURES.get('HMM_CONFIGS', { - 'HOST': 'https://openapi.myhbp.org.cn', - 'APP_ID': '', - 'SOURCE_ID': '', - 'LHOST': 'https://myhbp.org.cn', - }) -except ImportError: - HMM_ENABLED = False - print "Warnning: missing package 'elitemba'" +############### Settings for AES Encryption/Decryption ################## +AES_KEY = AUTH_TOKENS.get('AES_KEY', '') diff --git a/lms/envs/production.py b/lms/envs/production.py index 741a659477d8..96a57298ada3 100644 --- a/lms/envs/production.py +++ b/lms/envs/production.py @@ -154,6 +154,8 @@ EMAIL_FILE_PATH = ENV_TOKENS.get('EMAIL_FILE_PATH', None) EMAIL_HOST = ENV_TOKENS.get('EMAIL_HOST', 'localhost') # django default is localhost EMAIL_PORT = ENV_TOKENS.get('EMAIL_PORT', 25) # django default is 25 +EMAIL_ACCESS_LIST = ENV_TOKENS.get('EMAIL_ACCESS_LIST', ["hh.global"]) +EMAIL_ACCESS_DATE = ENV_TOKENS.get('EMAIL_ACCESS_DATE', 365) EMAIL_USE_TLS = ENV_TOKENS.get('EMAIL_USE_TLS', False) # django default is False SITE_NAME = ENV_TOKENS['SITE_NAME'] HTTPS = ENV_TOKENS.get('HTTPS', HTTPS) diff --git a/lms/static/images/abouts/about_dec_left.png b/lms/static/images/abouts/about_dec_left.png deleted file mode 100755 index 18d69dffe1fb..000000000000 Binary files a/lms/static/images/abouts/about_dec_left.png and /dev/null differ diff --git a/lms/static/images/abouts/about_dec_left_en.png b/lms/static/images/abouts/about_dec_left_en.png deleted file mode 100644 index ba468227ec8b..000000000000 Binary files a/lms/static/images/abouts/about_dec_left_en.png and /dev/null differ diff --git a/lms/static/images/abouts/about_dec_right.png b/lms/static/images/abouts/about_dec_right.png deleted file mode 100755 index 481f9ff84951..000000000000 Binary files a/lms/static/images/abouts/about_dec_right.png and /dev/null differ diff --git a/lms/static/images/abouts/about_footer.png b/lms/static/images/abouts/about_footer.png deleted file mode 100644 index eb5d9067ca70..000000000000 Binary files a/lms/static/images/abouts/about_footer.png and /dev/null differ diff --git a/lms/static/images/abouts/about_us.png b/lms/static/images/abouts/about_us.png deleted file mode 100755 index f81fbaa7a31a..000000000000 Binary files a/lms/static/images/abouts/about_us.png and /dev/null differ diff --git a/lms/static/images/abouts/about_us_title.png b/lms/static/images/abouts/about_us_title.png deleted file mode 100644 index 2355b85bcb72..000000000000 Binary files a/lms/static/images/abouts/about_us_title.png and /dev/null differ diff --git a/lms/static/images/abouts/contact.png b/lms/static/images/abouts/contact.png deleted file mode 100755 index e00f00289212..000000000000 Binary files a/lms/static/images/abouts/contact.png and /dev/null differ diff --git a/lms/static/images/abouts/contact_dec.png b/lms/static/images/abouts/contact_dec.png deleted file mode 100644 index dc68c202d5ec..000000000000 Binary files a/lms/static/images/abouts/contact_dec.png and /dev/null differ diff --git a/lms/static/images/abouts/join_us.png b/lms/static/images/abouts/join_us.png deleted file mode 100755 index 534e3b11acf7..000000000000 Binary files a/lms/static/images/abouts/join_us.png and /dev/null differ diff --git a/lms/static/images/abouts/join_us_dec.png b/lms/static/images/abouts/join_us_dec.png deleted file mode 100644 index e0600d30070c..000000000000 Binary files a/lms/static/images/abouts/join_us_dec.png and /dev/null differ diff --git a/lms/static/images/abouts/waiting-icon.png b/lms/static/images/abouts/waiting-icon.png deleted file mode 100755 index 2199c58d00e2..000000000000 Binary files a/lms/static/images/abouts/waiting-icon.png and /dev/null differ diff --git a/lms/static/images/certificates/no-id-professional.png b/lms/static/images/certificates/no-id-professional.png deleted file mode 100644 index 7363f01845c8..000000000000 Binary files a/lms/static/images/certificates/no-id-professional.png and /dev/null differ diff --git a/lms/static/images/default-badges/no-id-professional.png b/lms/static/images/default-badges/no-id-professional.png deleted file mode 100644 index 9e3b40021a17..000000000000 Binary files a/lms/static/images/default-badges/no-id-professional.png and /dev/null differ diff --git a/lms/static/images/elitemba/app.png b/lms/static/images/elitemba/app.png deleted file mode 100755 index 527a8b436799..000000000000 Binary files a/lms/static/images/elitemba/app.png and /dev/null differ diff --git a/lms/static/images/elitemba/h5.png b/lms/static/images/elitemba/h5.png deleted file mode 100755 index cdc8554cca44..000000000000 Binary files a/lms/static/images/elitemba/h5.png and /dev/null differ diff --git a/lms/static/images/elitemba/logo.png b/lms/static/images/elitemba/logo.png deleted file mode 100755 index 8de626970190..000000000000 Binary files a/lms/static/images/elitemba/logo.png and /dev/null differ diff --git a/lms/static/images/elitemba/qrcode.png b/lms/static/images/elitemba/qrcode.png deleted file mode 100755 index e34e5fa59064..000000000000 Binary files a/lms/static/images/elitemba/qrcode.png and /dev/null differ diff --git a/lms/static/images/elitemba/web.png b/lms/static/images/elitemba/web.png deleted file mode 100755 index ca984e11cd33..000000000000 Binary files a/lms/static/images/elitemba/web.png and /dev/null differ diff --git a/lms/static/images/programs/sample-cert.png b/lms/static/images/programs/sample-cert.png index 122a485a5a28..f3ded5149695 100644 Binary files a/lms/static/images/programs/sample-cert.png and b/lms/static/images/programs/sample-cert.png differ diff --git a/lms/static/js/learner_dashboard/models/course_card_model.js b/lms/static/js/learner_dashboard/models/course_card_model.js index 28078907644b..201ba4911278 100644 --- a/lms/static/js/learner_dashboard/models/course_card_model.js +++ b/lms/static/js/learner_dashboard/models/course_card_model.js @@ -199,7 +199,8 @@ class CourseCardModel extends Backbone.Model { if (isEnrolled && courseRun.course_url) { courseTitleLink = courseRun.course_url; } else if (!isEnrolled && courseRun.marketing_url) { - courseTitleLink = CourseCardModel.updateMarketingUrl(courseRun); + // courseTitleLink = CourseCardModel.updateMarketingUrl(courseRun); + courseTitleLink = courseRun.course_url; } this.set({ certificate_url: courseRun.certificate_url, diff --git a/lms/static/js/student_account/components/StudentAccountDeletion.jsx b/lms/static/js/student_account/components/StudentAccountDeletion.jsx index 213baf7b84e2..931d5675935f 100644 --- a/lms/static/js/student_account/components/StudentAccountDeletion.jsx +++ b/lms/static/js/student_account/components/StudentAccountDeletion.jsx @@ -67,8 +67,8 @@ export class StudentAccountDeletion extends React.Component { const changeAcctInfoText = StringUtils.interpolate( gettext('{htmlStart}Want to change your email, name, or password instead?{htmlEnd}'), { - htmlStart: '', - htmlEnd: '', + htmlStart: '', + htmlEnd: '', }, ); diff --git a/lms/static/sass/_build-course.scss b/lms/static/sass/_build-course.scss index 87c5970b734c..641198aa5676 100644 --- a/lms/static/sass/_build-course.scss +++ b/lms/static/sass/_build-course.scss @@ -70,5 +70,3 @@ // features @import 'features/course-sock'; -// add theme sass -@import 'lms/theme/extras'; diff --git a/lms/static/sass/discussion/_build-discussion.scss b/lms/static/sass/discussion/_build-discussion.scss index 8e99ff0dbef6..c631d529bb35 100644 --- a/lms/static/sass/discussion/_build-discussion.scss +++ b/lms/static/sass/discussion/_build-discussion.scss @@ -21,13 +21,3 @@ $static-path: '../..'; @import "views/response"; @import 'utilities/developer'; @import 'utilities/shame'; - -// add theme style -.content-wrapper{ - max-width: 1200px; - margin-top: 0px; - padding: 0; -} -.content-wrapper .course-tabs .nav-item .nav-link{ - padding: 20px 15px 13px 15px; -} \ No newline at end of file diff --git a/lms/static/sass/discussion/lms-discussion-bootstrap.scss b/lms/static/sass/discussion/lms-discussion-bootstrap.scss index 9a1d1ac1f1f3..48f28d871128 100644 --- a/lms/static/sass/discussion/lms-discussion-bootstrap.scss +++ b/lms/static/sass/discussion/lms-discussion-bootstrap.scss @@ -44,16 +44,3 @@ $static-path: '../..'; @import 'views/search'; @import 'views/inline'; @import 'utilities/shame'; -// add theme style -.content-wrapper{ - max-width: 1200px; - margin-top: 0px; - padding: 0; -} -.content-wrapper .course-tabs .nav-item .nav-link{ - padding: 20px 15px 13px 15px; -} -.page-content{ - overflow: hidden; - position: relative; -} \ No newline at end of file diff --git a/lms/static/sass/multicourse/_course_about.scss b/lms/static/sass/multicourse/_course_about.scss index e0b5e6617f23..a507b8f36446 100644 --- a/lms/static/sass/multicourse/_course_about.scss +++ b/lms/static/sass/multicourse/_course_about.scss @@ -118,8 +118,7 @@ width: flex-grid(12); > a.find-courses, a.register, a.add-to-cart { - // add theme style - @include button(flat, $button-color); + @include button(shiny, $button-color); @include box-sizing(border-box); border-radius: 3px; @@ -146,8 +145,7 @@ } strong { - // add theme style - @include button(flat, $button-color); + @include button(shiny, $button-color); @include box-sizing(border-box); border-radius: 3px; diff --git a/lms/static/sass/shared/_modal.scss b/lms/static/sass/shared/_modal.scss index 4b390e865ee1..710f8e50f648 100644 --- a/lms/static/sass/shared/_modal.scss +++ b/lms/static/sass/shared/_modal.scss @@ -8,18 +8,18 @@ width: 100%; z-index: 100; } -// fix theme style + .modal { @extend %ui-depth1; display: none; position: absolute; left: 50%; - // padding: 8px; + padding: 8px; width: grid-width(5); - // border-radius: 3px; - // box-shadow: 0 0 5px 0 $shadow-d1; - // background: theme-color("dark"); + border-radius: 3px; + box-shadow: 0 0 5px 0 $shadow-d1; + background: theme-color("dark"); color: $body-color; &.video-modal { @@ -49,13 +49,13 @@ width: 640px; } } - // fix theme style + .inner-wrapper { @extend %ui-depth1; background: $modal-content-bg; - border-radius: 4px; - // border: 1px solid rgba(0, 0, 0, 0.9); + border-radius: 0; + border: 1px solid rgba(0, 0, 0, 0.9); box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.7); overflow: hidden; padding-left: ($baseline/2); diff --git a/lms/templates/certificates/_accomplishment-footer.html b/lms/templates/certificates/_accomplishment-footer.html index 017a28a6dc0b..53b108aed279 100644 --- a/lms/templates/certificates/_accomplishment-footer.html +++ b/lms/templates/certificates/_accomplishment-footer.html @@ -1,6 +1,20 @@ <%page expression_filter="h"/> diff --git a/lms/templates/certificates/_accomplishment-rendering.html b/lms/templates/certificates/_accomplishment-rendering.html index aea50c2215eb..af61f7a43ce1 100644 --- a/lms/templates/certificates/_accomplishment-rendering.html +++ b/lms/templates/certificates/_accomplishment-rendering.html @@ -103,7 +103,7 @@

    ${accomplishment_copy_name}