\n '
+ '\n\n'
+ ]
+ )
+ @ddt.unpack
+ def test_problem_content_on_course_export_import(self, problem_data, expected_problem_content):
"""
Verify that problem content in destination matches expected problem content,
specifically concerned with pre tag data with problem.
"""
- self._setup_source_course_with_problem_content()
+ self._setup_source_course_with_problem_content(problem_data)
dest_course = CourseFactory.create(default_store=ModuleStoreEnum.Type.split)
@@ -1109,4 +1130,4 @@ class TestCourseExportImportProblem(CourseTestCase):
create_if_not_present=True,
)
- self.assert_problem_definition(dest_course.location)
+ self.assert_problem_definition(dest_course.location, expected_problem_content)
diff --git a/cms/djangoapps/contentstore/views/tests/test_item.py b/cms/djangoapps/contentstore/views/tests/test_item.py
index b4d9df1873..8d3dcf4f35 100644
--- a/cms/djangoapps/contentstore/views/tests/test_item.py
+++ b/cms/djangoapps/contentstore/views/tests/test_item.py
@@ -12,6 +12,7 @@ from django.http import Http404
from django.test import TestCase
from django.test.client import RequestFactory
from django.urls import reverse
+from edx_proctoring.exceptions import ProctoredExamNotFoundException
from mock import Mock, PropertyMock, patch
from opaque_keys import InvalidKeyError
from opaque_keys.edx.asides import AsideUsageKeyV2
@@ -32,6 +33,7 @@ from xblock.validation import ValidationMessage
from contentstore.tests.utils import CourseTestCase
from contentstore.utils import reverse_course_url, reverse_usage_url
+from contentstore.views import item as item_module
from contentstore.views.component import component_handler, get_component_templates
from contentstore.views.item import (
ALWAYS,
@@ -208,7 +210,7 @@ class GetItemTest(ItemTest):
# XBlock messages are added by the Studio wrapper.
self.assertIn('wrapper-xblock-message', html)
# Make sure that "wrapper-xblock" does not appear by itself (without -message at end).
- self.assertNotRegexpMatches(html, r'wrapper-xblock[^-]+')
+ self.assertNotRegex(html, r'wrapper-xblock[^-]+')
# Verify that the header and article tags are still added
self.assertIn('', html)
@@ -2473,7 +2475,6 @@ class TestXBlockInfo(ItemTest):
"""
Unit tests for XBlock's outline handling.
"""
-
def setUp(self):
super(TestXBlockInfo, self).setUp()
user_id = self.user.id
@@ -2783,15 +2784,37 @@ class TestXBlockInfo(ItemTest):
else:
self.assertIsNone(xblock_info.get('child_info', None))
- @patch.dict('django.conf.settings.FEATURES', {'ENABLE_SPECIAL_EXAMS': True})
- @patch('contentstore.views.item.does_backend_support_onboarding')
- @patch('contentstore.views.item.get_exam_configuration_dashboard_url')
- def test_proctored_exam_xblock_info(self, get_exam_configuration_dashboard_url_patch,
- does_backend_support_onboarding_patch):
+
+@patch.dict('django.conf.settings.FEATURES', {'ENABLE_SPECIAL_EXAMS': True})
+class TestSpecialExamXBlockInfo(ItemTest):
+ """
+ Unit tests for XBlock outline handling, specific to special exam XBlocks.
+ """
+ patch_get_exam_configuration_dashboard_url = patch.object(
+ item_module, 'get_exam_configuration_dashboard_url', return_value='test_url'
+ )
+ patch_does_backend_support_onboarding = patch.object(
+ item_module, 'does_backend_support_onboarding', return_value=True
+ )
+ patch_get_exam_by_content_id_success = patch.object(
+ item_module, 'get_exam_by_content_id'
+ )
+ patch_get_exam_by_content_id_not_found = patch.object(
+ item_module, 'get_exam_by_content_id', side_effect=ProctoredExamNotFoundException
+ )
+
+ def setUp(self):
+ super().setUp()
+ user_id = self.user.id
+ self.chapter = ItemFactory.create(
+ parent_location=self.course.location, category='chapter', display_name="Week 1", user_id=user_id,
+ highlights=['highlight'],
+ )
self.course.enable_proctored_exams = True
self.course.save()
self.store.update_item(self.course, self.user.id)
+ def test_proctoring_is_enabled_for_course(self):
course = modulestore().get_item(self.course.location)
xblock_info = create_xblock_info(
course,
@@ -2799,31 +2822,97 @@ class TestXBlockInfo(ItemTest):
include_children_predicate=ALWAYS,
)
# exam proctoring should be enabled and time limited.
- self.assertEqual(xblock_info['enable_proctored_exams'], True)
+ assert xblock_info['enable_proctored_exams']
+ @patch_get_exam_configuration_dashboard_url
+ @patch_does_backend_support_onboarding
+ @patch_get_exam_by_content_id_success
+ def test_special_exam_xblock_info(
+ self,
+ mock_get_exam_by_content_id,
+ _mock_does_backend_support_onboarding,
+ mock_get_exam_configuration_dashboard_url,
+ ):
sequential = ItemFactory.create(
- parent_location=self.chapter.location, category='sequential',
- display_name="Test Lesson 1", user_id=self.user.id,
- is_proctored_exam=True, is_time_limited=True,
- default_time_limit_minutes=100, is_onboarding_exam=False
+ parent_location=self.chapter.location,
+ category='sequential',
+ display_name="Test Lesson 1",
+ user_id=self.user.id,
+ is_proctored_exam=True,
+ is_time_limited=True,
+ default_time_limit_minutes=100,
+ is_onboarding_exam=False,
)
sequential = modulestore().get_item(sequential.location)
-
- get_exam_configuration_dashboard_url_patch.return_value = 'test_url'
- does_backend_support_onboarding_patch.return_value = True
xblock_info = create_xblock_info(
sequential,
include_child_info=True,
include_children_predicate=ALWAYS,
)
# exam proctoring should be enabled and time limited.
- self.assertEqual(xblock_info['is_proctored_exam'], True)
- self.assertEqual(xblock_info['is_time_limited'], True)
- self.assertEqual(xblock_info['default_time_limit_minutes'], 100)
- self.assertEqual(xblock_info['proctoring_exam_configuration_link'], 'test_url')
- self.assertEqual(xblock_info['supports_onboarding'], True)
- self.assertEqual(xblock_info['is_onboarding_exam'], False)
- get_exam_configuration_dashboard_url_patch.assert_called_with(self.course.id, xblock_info['id'])
+ assert xblock_info['is_proctored_exam'] is True
+ assert xblock_info['was_ever_special_exam'] is True
+ assert xblock_info['is_time_limited'] is True
+ assert xblock_info['default_time_limit_minutes'] == 100
+ assert xblock_info['proctoring_exam_configuration_link'] == 'test_url'
+ assert xblock_info['supports_onboarding'] is True
+ assert xblock_info['is_onboarding_exam'] is False
+ mock_get_exam_configuration_dashboard_url.assert_called_with(self.course.id, xblock_info['id'])
+ assert mock_get_exam_by_content_id.call_count == 0
+
+ @patch_get_exam_configuration_dashboard_url
+ @patch_does_backend_support_onboarding
+ @patch_get_exam_by_content_id_success
+ def test_xblock_was_ever_special_exam(
+ self,
+ mock_get_exam_by_content_id,
+ _mock_does_backend_support_onboarding_patch,
+ _mock_get_exam_configuration_dashboard_url,
+ ):
+ sequential = ItemFactory.create(
+ parent_location=self.chapter.location,
+ category='sequential',
+ display_name="Test Lesson 1",
+ user_id=self.user.id,
+ is_proctored_exam=False,
+ is_time_limited=False,
+ is_onboarding_exam=False,
+ )
+ sequential = modulestore().get_item(sequential.location)
+ xblock_info = create_xblock_info(
+ sequential,
+ include_child_info=True,
+ include_children_predicate=ALWAYS,
+ )
+ assert xblock_info['was_ever_special_exam'] is True
+ assert mock_get_exam_by_content_id.call_count == 1
+
+ @patch_get_exam_configuration_dashboard_url
+ @patch_does_backend_support_onboarding
+ @patch_get_exam_by_content_id_not_found
+ def test_xblock_was_never_proctored_exam(
+ self,
+ mock_get_exam_by_content_id,
+ _mock_does_backend_support_onboarding_patch,
+ _mock_get_exam_configuration_dashboard_url,
+ ):
+ sequential = ItemFactory.create(
+ parent_location=self.chapter.location,
+ category='sequential',
+ display_name="Test Lesson 1",
+ user_id=self.user.id,
+ is_proctored_exam=False,
+ is_time_limited=False,
+ is_onboarding_exam=False,
+ )
+ sequential = modulestore().get_item(sequential.location)
+ xblock_info = create_xblock_info(
+ sequential,
+ include_child_info=True,
+ include_children_predicate=ALWAYS,
+ )
+ assert xblock_info['was_ever_special_exam'] is False
+ assert mock_get_exam_by_content_id.call_count == 1
class TestLibraryXBlockInfo(ModuleStoreTestCase):
@@ -3027,6 +3116,18 @@ class TestXBlockPublishingInfo(ItemTest):
xblock_info = self._get_xblock_info(empty_chapter.location)
self._verify_visibility_state(xblock_info, VisibilityState.unscheduled)
+ @ddt.data(ModuleStoreEnum.Type.mongo, ModuleStoreEnum.Type.split)
+ def test_chapter_self_paced_default_start_date(self, store_type):
+ course = CourseFactory.create(default_store=store_type)
+ course.self_paced = True
+ self.store.update_item(course, self.user.id)
+ chapter = self._create_child(course, 'chapter', "Test Chapter")
+ sequential = self._create_child(chapter, 'sequential', "Test Sequential")
+ self._create_child(sequential, 'vertical', "Published Unit", publish_item=True)
+ self._set_release_date(chapter.location, DEFAULT_START_DATE)
+ xblock_info = self._get_xblock_info(chapter.location)
+ self._verify_visibility_state(xblock_info, VisibilityState.live)
+
def test_empty_sequential(self):
chapter = self._create_child(self.course, 'chapter', "Test Chapter")
self._create_child(chapter, 'sequential', "Empty Sequential")
diff --git a/cms/djangoapps/contentstore/views/tests/test_preview.py b/cms/djangoapps/contentstore/views/tests/test_preview.py
index 5b82e04948..ce110e0425 100644
--- a/cms/djangoapps/contentstore/views/tests/test_preview.py
+++ b/cms/djangoapps/contentstore/views/tests/test_preview.py
@@ -70,13 +70,13 @@ class GetPreviewHtmlTestCase(ModuleStoreTestCase):
self.assertRegex(html, r"data-block-type=[\"\']test_aside[\"\']")
self.assertRegex(html, "Aside rendered")
# Now ensure the acid_aside is not in the result
- self.assertNotRegexpMatches(html, r"data-block-type=[\"\']acid_aside[\"\']")
+ self.assertNotRegex(html, r"data-block-type=[\"\']acid_aside[\"\']")
# Ensure about pages don't have asides
about = modulestore().get_item(course.id.make_usage_key('about', 'overview'))
html = get_preview_fragment(request, about, context).content
- self.assertNotRegexpMatches(html, r"data-block-type=[\"\']test_aside[\"\']")
- self.assertNotRegexpMatches(html, "Aside rendered")
+ self.assertNotRegex(html, r"data-block-type=[\"\']test_aside[\"\']")
+ self.assertNotRegex(html, "Aside rendered")
@XBlockAside.register_temp_plugin(AsideTestType, 'test_aside')
def test_preview_no_asides(self):
@@ -106,8 +106,8 @@ class GetPreviewHtmlTestCase(ModuleStoreTestCase):
}
html = get_preview_fragment(request, html, context).content
- self.assertNotRegexpMatches(html, r"data-block-type=[\"\']test_aside[\"\']")
- self.assertNotRegexpMatches(html, "Aside rendered")
+ self.assertNotRegex(html, r"data-block-type=[\"\']test_aside[\"\']")
+ self.assertNotRegex(html, "Aside rendered")
@mock.patch('xmodule.conditional_module.ConditionalModule.is_condition_satisfied')
def test_preview_conditional_module_children_context(self, mock_is_condition_satisfied):
diff --git a/cms/djangoapps/contentstore/views/tests/test_transcript_settings.py b/cms/djangoapps/contentstore/views/tests/test_transcript_settings.py
index 67d67f4f98..d7b6351c42 100644
--- a/cms/djangoapps/contentstore/views/tests/test_transcript_settings.py
+++ b/cms/djangoapps/contentstore/views/tests/test_transcript_settings.py
@@ -15,11 +15,6 @@ from contentstore.tests.utils import CourseTestCase
from contentstore.utils import reverse_course_url
from contentstore.views.transcript_settings import TranscriptionProviderErrorType, validate_transcript_credentials
from openedx.core.djangoapps.profile_images.tests.helpers import make_image_file
-from openedx.core.djangoapps.video_pipeline.config.waffle import (
- SAVE_CREDENTIALS_IN_VAL,
- waffle_flags
-)
-from openedx.core.djangoapps.waffle_utils.testutils import override_waffle_flag
from student.roles import CourseStaffRole
@@ -113,56 +108,6 @@ class TranscriptCredentialsTest(CourseTestCase):
self.assertEqual(response.status_code, expected_status_code)
self.assertEqual(response.content.decode('utf-8'), expected_response)
- @override_waffle_flag(waffle_flags()[SAVE_CREDENTIALS_IN_VAL], True)
- @ddt.data(
- (
- {
- 'provider': '3PlayMedia',
- 'api_key': '11111',
- 'api_secret_key': '44444'
- },
- {'error_type': TranscriptionProviderErrorType.INVALID_CREDENTIALS},
- 400,
- '{\n "error": "The information you entered is incorrect."\n}'
- ),
- (
- {
- 'provider': 'Cielo24',
- 'api_key': '12345',
- 'username': 'test_user'
- },
- {'error_type': None},
- 200,
- ''
- ),
- (
- {
- 'provider': '3PlayMedia',
- 'api_key': '12345',
- 'api_secret_key': '44444'
- },
- {'error_type': None},
- 200,
- ''
- )
- )
- @ddt.unpack
- @patch('edxval.api.create_or_update_transcript_credentials')
- def test_val_transcript_credentials_handler(self, request_payload, update_credentials_response,
- expected_status_code, expected_response, api_patch):
- """
- Test that credentials handler works fine with VAL api endpoint.
- """
- api_patch.return_value = update_credentials_response
- transcript_credentials_url = self.get_url_for_course_key(self.course.id)
- response = self.client.post(
- transcript_credentials_url,
- data=json.dumps(request_payload),
- content_type='application/json'
- )
- self.assertEqual(response.status_code, expected_status_code)
- self.assertEqual(response.content.decode('utf-8'), expected_response)
-
@ddt.ddt
class TranscriptCredentialsValidationTest(TestCase):
diff --git a/cms/djangoapps/contentstore/views/tests/test_videos.py b/cms/djangoapps/contentstore/views/tests/test_videos.py
index 07a184a104..174c4906c4 100644
--- a/cms/djangoapps/contentstore/views/tests/test_videos.py
+++ b/cms/djangoapps/contentstore/views/tests/test_videos.py
@@ -48,6 +48,7 @@ from openedx.core.djangoapps.profile_images.tests.helpers import make_image_file
from openedx.core.djangoapps.video_pipeline.config.waffle import (
DEPRECATE_YOUTUBE,
ENABLE_DEVSTACK_VIDEO_UPLOADS,
+ ENABLE_VEM_PIPELINE,
waffle_flags
)
from openedx.core.djangoapps.waffle_utils.models import WaffleFlagCourseOverrideModel
@@ -224,7 +225,9 @@ class VideoUploadTestMixin(VideoUploadTestBase):
@ddt.ddt
@patch.dict("django.conf.settings.FEATURES", {"ENABLE_VIDEO_UPLOAD_PIPELINE": True})
-@override_settings(VIDEO_UPLOAD_PIPELINE={"BUCKET": "test_bucket", "ROOT_PATH": "test_root"})
+@override_settings(VIDEO_UPLOAD_PIPELINE={
+ "VEM_S3_BUCKET": "vem_test_bucket", "BUCKET": "test_bucket", "ROOT_PATH": "test_root"
+})
class VideosHandlerTestCase(VideoUploadTestMixin, CourseTestCase):
"""Test cases for the main video upload endpoint"""
@@ -248,7 +251,8 @@ class VideosHandlerTestCase(VideoUploadTestMixin, CourseTestCase):
'status',
'course_video_image_url',
'transcripts',
- 'transcription_status'
+ 'transcription_status',
+ 'error_description'
])
)
dateutil.parser.parse(response_video['created'])
@@ -264,6 +268,7 @@ class VideosHandlerTestCase(VideoUploadTestMixin, CourseTestCase):
[
'edx_video_id', 'client_video_id', 'created', 'duration',
'status', 'course_video_image_url', 'transcripts', 'transcription_status',
+ 'error_description'
],
[
{
@@ -280,6 +285,7 @@ class VideosHandlerTestCase(VideoUploadTestMixin, CourseTestCase):
[
'edx_video_id', 'client_video_id', 'created', 'duration',
'status', 'course_video_image_url', 'transcripts', 'transcription_status',
+ 'error_description'
],
[
{
@@ -467,9 +473,6 @@ class VideosHandlerTestCase(VideoUploadTestMixin, CourseTestCase):
'secret_key': 'test_secret',
'session_token': 'test_session_token'
}
-
- bucket = Mock()
- mock_conn.return_value = Mock(get_bucket=Mock(return_value=bucket))
mock_key_instances = [
Mock(
generate_url=Mock(
@@ -478,7 +481,7 @@ class VideosHandlerTestCase(VideoUploadTestMixin, CourseTestCase):
)
for file_info in files
]
- mock_key.side_effect = mock_key_instances + [Mock()]
+ mock_key.side_effect = mock_key_instances
with patch.object(AssumeRole, 'get_instance') as assume_role:
assume_role.return_value.credentials = credentials
@@ -496,6 +499,35 @@ class VideosHandlerTestCase(VideoUploadTestMixin, CourseTestCase):
security_token=credentials['session_token']
)
+ @patch('boto.s3.key.Key')
+ @patch('boto.s3.connection.S3Connection')
+ @override_flag(waffle_flags()[ENABLE_VEM_PIPELINE].namespaced_flag_name, active=True)
+ def test_enable_vem_pipeline(self, mock_conn, mock_key):
+ """
+ Test that if VEM pipeline is enabled, objects are uploaded to the correct s3 bucket
+ """
+ files = [{'file_name': 'first.mp4', 'content_type': 'video/mp4'}]
+ mock_key_instances = [
+ Mock(
+ generate_url=Mock(
+ return_value='http://example.com/url_{}'.format(file_info['file_name'])
+ )
+ )
+ for file_info in files
+ ]
+ mock_key.side_effect = mock_key_instances
+
+ response = self.client.post(
+ self.url,
+ json.dumps({'files': files}),
+ content_type='application/json'
+ )
+
+ self.assertEqual(response.status_code, 200)
+ mock_conn.return_value.get_bucket.assert_called_once_with(
+ settings.VIDEO_UPLOAD_PIPELINE['VEM_S3_BUCKET'], validate=False # pylint: disable=unsubscriptable-object
+ )
+
@override_settings(AWS_ACCESS_KEY_ID='test_key_id', AWS_SECRET_ACCESS_KEY='test_secret')
@patch('boto.s3.key.Key')
@patch('boto.s3.connection.S3Connection')
@@ -721,25 +753,19 @@ class VideosHandlerTestCase(VideoUploadTestMixin, CourseTestCase):
status = convert_video_status(video)
self.assertEqual(status, StatusDisplayStrings.get('youtube_duplicate'))
- # `transcript_ready` should be converted to `file_complete`
- video['status'] = 'transcript_ready'
- status = convert_video_status(video)
- self.assertEqual(status, StatusDisplayStrings.get('file_complete'))
-
- # The encode status should be converted to `file_complete` if video encodes are complete
+ # The "encode status" should be converted to `file_complete` if video encodes are complete
video['status'] = 'transcription_in_progress'
status = convert_video_status(video, is_video_encodes_ready=True)
self.assertEqual(status, StatusDisplayStrings.get('file_complete'))
- # The encode status should be converted to `file_complete` if video encodes are complete
- video['status'] = 'partial_failure'
- status = convert_video_status(video, is_video_encodes_ready=True)
- self.assertEqual(status, StatusDisplayStrings.get('file_complete'))
+ # If encoding is not complete return the status as it is
+ video['status'] = 's3_upload_failed'
+ status = convert_video_status(video)
+ self.assertEqual(status, StatusDisplayStrings.get('s3_upload_failed'))
# for all other status, there should not be any conversion
statuses = list(StatusDisplayStrings._STATUS_MAP.keys()) # pylint: disable=protected-access
statuses.remove('invalid_token')
- statuses.remove('transcript_ready')
for status in statuses:
video['status'] = status
new_status = convert_video_status(video)
diff --git a/cms/djangoapps/contentstore/views/transcript_settings.py b/cms/djangoapps/contentstore/views/transcript_settings.py
index 7c6f331219..f5de0f6143 100644
--- a/cms/djangoapps/contentstore/views/transcript_settings.py
+++ b/cms/djangoapps/contentstore/views/transcript_settings.py
@@ -11,6 +11,9 @@ from django.core.files.base import ContentFile
from django.http import HttpResponse, HttpResponseNotFound
from django.utils.translation import ugettext as _
from django.views.decorators.http import require_GET, require_http_methods, require_POST
+from opaque_keys.edx.keys import CourseKey
+
+from contentstore.views.videos import TranscriptProvider
from edxval.api import (
create_or_update_video_transcript,
delete_video_transcript,
@@ -19,14 +22,7 @@ from edxval.api import (
get_video_transcript_data,
update_transcript_credentials_state_for_org
)
-from opaque_keys.edx.keys import CourseKey
-
-from contentstore.views.videos import TranscriptProvider
from openedx.core.djangoapps.video_config.models import VideoTranscriptEnabledFlag
-from openedx.core.djangoapps.video_pipeline.config.waffle import (
- SAVE_CREDENTIALS_IN_VAL,
- waffle_flags
-)
from openedx.core.djangoapps.video_pipeline.api import update_3rd_party_transcription_service_credentials
from student.auth import has_studio_write_access
from util.json_request import JsonResponse, expect_json
@@ -113,13 +109,8 @@ def transcript_credentials_handler(request, course_key_string):
response = JsonResponse({'error': error_message}, status=400)
else:
# Send the validated credentials to edx-video-pipeline.
- credentials_payload = dict(validated_credentials, org=course_key.org, provider=provider)
- if waffle_flags()[SAVE_CREDENTIALS_IN_VAL].is_enabled(course_key):
- from edxval.api import create_or_update_transcript_credentials
- response = create_or_update_transcript_credentials(**credentials_payload)
- error_response, is_updated = response, not response.get('error_type')
- else:
- error_response, is_updated = update_3rd_party_transcription_service_credentials(**credentials_payload)
+ credentials_payload = dict(validated_credentials, org=course_key.org, provider=provider, course_key=course_key)
+ error_response, is_updated = update_3rd_party_transcription_service_credentials(**credentials_payload)
# Send appropriate response based on whether credentials were updated or not.
if is_updated:
# Cache credentials state in edx-val.
diff --git a/cms/djangoapps/contentstore/views/videos.py b/cms/djangoapps/contentstore/views/videos.py
index 9ad6cf66f2..7b73faee60 100644
--- a/cms/djangoapps/contentstore/views/videos.py
+++ b/cms/djangoapps/contentstore/views/videos.py
@@ -48,6 +48,7 @@ from openedx.core.djangoapps.video_config.models import VideoTranscriptEnabledFl
from openedx.core.djangoapps.video_pipeline.config.waffle import (
DEPRECATE_YOUTUBE,
ENABLE_DEVSTACK_VIDEO_UPLOADS,
+ ENABLE_VEM_PIPELINE,
waffle_flags
)
from openedx.core.djangoapps.waffle_utils import CourseWaffleFlag, WaffleFlagNamespace, WaffleSwitchNamespace
@@ -173,6 +174,8 @@ class StatusDisplayStrings(object):
_TRANSCRIPT_READY = ugettext_noop("Transcript Ready")
# Translators: This is the status for a video whose transcription job was failed for some languages
_PARTIAL_FAILURE = ugettext_noop("Partial Failure")
+ # Translators: This is the status for a video whose transcription job has failed altogether
+ _TRANSCRIPT_FAILED = ugettext_noop("Transcript Failed")
_STATUS_MAP = {
"upload": _UPLOADING,
@@ -194,6 +197,8 @@ class StatusDisplayStrings(object):
"transcription_in_progress": _TRANSCRIPTION_IN_PROGRESS,
"transcript_ready": _TRANSCRIPT_READY,
"partial_failure": _PARTIAL_FAILURE,
+ # TODO: Add a related unit tests when the VAL update is part of platform
+ "transcript_failed": _TRANSCRIPT_FAILED,
}
@staticmethod
@@ -527,7 +532,7 @@ def convert_video_status(video, is_video_encodes_ready=False):
])
elif video['status'] == 'invalid_token':
status = StatusDisplayStrings.get('youtube_duplicate')
- elif is_video_encodes_ready or video['status'] == 'transcript_ready':
+ elif is_video_encodes_ready:
status = StatusDisplayStrings.get('file_complete')
else:
status = StatusDisplayStrings.get(video['status'])
@@ -549,26 +554,19 @@ def _get_videos(course, pagination_conf=None):
# This is required to see if edx video pipeline is enabled while converting the video status.
course_video_upload_token = course.video_upload_pipeline.get('course_video_upload_token')
- # TODO: add 'transcript_ready' when we have moved to VEM to keep transcript and encode status separate
- transcription_statuses = ['partial_failure', 'transcription_in_progress']
+ transcription_statuses = ['transcription_in_progress', 'transcript_ready', 'partial_failure', 'transcript_failed']
# convert VAL's status to studio's Video Upload feature status.
for video in videos:
- # If we are using "new video workflow" and status is `transcription_in_progress` then video encodes are ready.
+ # If we are using "new video workflow" and status is in `transcription_statuses` then video encodes are ready.
# This is because Transcription starts once all the encodes are complete except for YT, but according to
# "new video workflow" YT is disabled as well as deprecated. So, Its precise to say that the Transcription
# starts once all the encodings are complete *for the new video workflow*.
- # If the video status is 'partial_failure', it means during the transcription flow, some transcription jobs
- # failed. As mentioned, transcript jobs start only when the encodes have finished
is_video_encodes_ready = not course_video_upload_token and (video['status'] in transcription_statuses)
# Update with transcript languages
video['transcripts'] = get_available_transcript_languages(video_id=video['edx_video_id'])
- # Transcription status should only be visible if 3rd party transcripts are pending.
- # TODO: change logic to separate transcript status from video status
video['transcription_status'] = (
- StatusDisplayStrings.get(video['status'])
- if not video['transcripts'] and is_video_encodes_ready else
- ''
+ StatusDisplayStrings.get(video['status']) if is_video_encodes_ready else ''
)
# Convert the video status.
video['status'] = convert_video_status(video, is_video_encodes_ready)
@@ -591,6 +589,7 @@ def _get_index_videos(course, pagination_conf=None):
attrs = [
'edx_video_id', 'client_video_id', 'created', 'duration',
'status', 'courses', 'transcripts', 'transcription_status',
+ 'error_description'
]
def _get_values(video):
@@ -748,7 +747,7 @@ def videos_post(course, request):
if error:
return JsonResponse({'error': error}, status=400)
- bucket = storage_service_bucket()
+ bucket = storage_service_bucket(course.id)
req_files = data['files']
resp_files = []
@@ -806,9 +805,10 @@ def videos_post(course, request):
return JsonResponse({'files': resp_files}, status=200)
-def storage_service_bucket():
+def storage_service_bucket(course_key=None):
"""
- Returns an S3 bucket for video uploads.
+ Returns an S3 bucket for video upload. The S3 bucket returned depends on
+ which pipeline, VEDA or VEM, is enabled.
"""
if waffle_flags()[ENABLE_DEVSTACK_VIDEO_UPLOADS].is_enabled():
credentials = AssumeRole.get_instance().credentials
@@ -828,7 +828,10 @@ def storage_service_bucket():
# set since behind the scenes it fires a HEAD request that is equivalent to get_all_keys()
# meaning it would need ListObjects on the whole bucket, not just the path used in each
# environment (since we share a single bucket for multiple deployments in some configurations)
- return conn.get_bucket(settings.VIDEO_UPLOAD_PIPELINE["BUCKET"], validate=False)
+ if course_key and waffle_flags()[ENABLE_VEM_PIPELINE].is_enabled(course_key):
+ return conn.get_bucket(settings.VIDEO_UPLOAD_PIPELINE['VEM_S3_BUCKET'], validate=False)
+ else:
+ return conn.get_bucket(settings.VIDEO_UPLOAD_PIPELINE['BUCKET'], validate=False)
def storage_service_key(bucket, file_name):
diff --git a/cms/djangoapps/models/settings/course_metadata.py b/cms/djangoapps/models/settings/course_metadata.py
index 3483f09fed..b7ab479b50 100644
--- a/cms/djangoapps/models/settings/course_metadata.py
+++ b/cms/djangoapps/models/settings/course_metadata.py
@@ -3,10 +3,12 @@ Django module for Course Metadata class -- manages advanced settings and related
"""
+from datetime import datetime
import six
from crum import get_current_user
from django.conf import settings
from django.utils.translation import ugettext as _
+import pytz
from six import text_type
from xblock.fields import Scope
@@ -246,6 +248,20 @@ class CourseMetadata(object):
did_validate = False
errors.append({'message': text_type(err), 'model': model})
+ # Disallow updates to the proctoring provider after course start
+ proctoring_provider_model = filtered_dict.get('proctoring_provider')
+ if (
+ not user.is_staff and
+ proctoring_provider_model != descriptor.proctoring_provider and
+ datetime.now(pytz.UTC) > descriptor.start
+ ):
+ did_validate = False
+ message = (
+ 'The proctoring provider cannot be modified after a course has started.'
+ ' Contact {support_email} for assistance'
+ ).format(support_email=settings.PARTNER_SUPPORT_EMAIL or 'support')
+ errors.append({'message': message, 'model': filtered_dict.get('proctoring_provider')})
+
# If did validate, go ahead and update the metadata
if did_validate:
updated_data = cls.update_from_dict(key_values, descriptor, user, save=False)
diff --git a/cms/envs/common.py b/cms/envs/common.py
index 99d7a3102c..b38d869c56 100644
--- a/cms/envs/common.py
+++ b/cms/envs/common.py
@@ -1264,9 +1264,10 @@ YOUTUBE = {
YOUTUBE_API_KEY = 'PUT_YOUR_API_KEY_HERE'
-############################# VIDEO UPLOAD PIPELINE #############################
+############################# SETTINGS FOR VIDEO UPLOAD PIPELINE #############################
VIDEO_UPLOAD_PIPELINE = {
+ 'VEM_S3_BUCKET': '',
'BUCKET': '',
'ROOT_PATH': '',
'CONCURRENT_UPLOAD_LIMIT': 4,
@@ -1478,6 +1479,9 @@ INSTALLED_APPS = [
# Management of per-user schedules
'openedx.core.djangoapps.schedules',
'rest_framework_jwt',
+
+ # Learning Sequence Navigation
+ 'openedx.core.djangoapps.content.learning_sequences.apps.LearningSequencesConfig',
]
@@ -2054,12 +2058,6 @@ CORS_ORIGIN_ALLOW_ALL = False
LOGIN_REDIRECT_WHITELIST = []
-############### Settings for video pipeline ##################
-VIDEO_UPLOAD_PIPELINE = {
- 'BUCKET': '',
- 'ROOT_PATH': '',
-}
-
DEPRECATED_ADVANCED_COMPONENT_TYPES = []
########################## VIDEO IMAGE STORAGE ############################
@@ -2094,16 +2092,6 @@ VIDEO_TRANSCRIPTS_SETTINGS = dict(
VIDEO_TRANSCRIPTS_MAX_AGE = 31536000
-############################ TRANSCRIPT PROVIDERS SETTINGS ########################
-
-# Note: These settings will also exist in video-encode-manager, so any update here
-# should also be done there. Additionally, the BASE & LOGIN URL will be overridden at
-# deployment as the actual URL is different from sandboxing URL.
-CIELO24_SETTINGS = dict(
- CIELO24_API_VERSION=1,
- CIELO24_BASE_API_URL="https://sandbox.cielo24.com/api",
- CIELO24_LOGIN_URL="https://sandbox.cielo24.com/api/account/login"
-)
##### shoppingcart Payment #####
PAYMENT_SUPPORT_EMAIL = 'billing@example.com'
@@ -2242,3 +2230,6 @@ DISABLE_DEPRECATED_SIGNIN_URL = False
# .. toggle_tickets: ARCH-1253
# .. toggle_status: supported
DISABLE_DEPRECATED_SIGNUP_URL = False
+
+##### LOGISTRATION RATE LIMIT SETTINGS #####
+LOGISTRATION_RATELIMIT_RATE = '500/5m'
diff --git a/cms/envs/production.py b/cms/envs/production.py
index 389cafc88c..45850fa03e 100644
--- a/cms/envs/production.py
+++ b/cms/envs/production.py
@@ -79,10 +79,10 @@ with codecs.open(CONFIG_FILE, encoding='utf-8') as f:
vars().update(__config_copy__)
-# A file path to a YAML file from which to load all the code revisions currently deployed
-REVISION_CONFIG_FILE = get_env_setting('REVISION_CFG')
-
try:
+ # A file path to a YAML file from which to load all the code revisions currently deployed
+ REVISION_CONFIG_FILE = get_env_setting('REVISION_CFG')
+
with codecs.open(REVISION_CONFIG_FILE, encoding='utf-8') as f:
REVISION_CONFIG = yaml.safe_load(f)
except Exception: # pylint: disable=broad-except
diff --git a/cms/static/js/i18n/de-de/djangojs.js b/cms/static/js/i18n/de-de/djangojs.js
index 6ce4c6d10e..aeb8753b15 100644
--- a/cms/static/js/i18n/de-de/djangojs.js
+++ b/cms/static/js/i18n/de-de/djangojs.js
@@ -324,6 +324,7 @@
"Are you having trouble finding a team to join?": "Hast Du Probleme ein Team zum Beitreten zu finden?",
"Are you sure that you want to leave this session?": "Sind Sie sicher, dass Sie diese Sitzung verlassen m\u00f6chten?",
"Are you sure you want to change to a different session?": "Sind Sie sicher, dass Sie zu einer anderen Sitzung wechseln m\u00f6chten?",
+ "Are you sure you want to delete the following file? It cannot be restored.\nFile: ": "Wollen Sie die folgende Datei wirklich l\u00f6schen? Sie kann nicht wiederhergestellt werden.",
"Are you sure you want to delete this comment?": "Bist du dir sicher, dass du diesen Kommentar l\u00f6schen m\u00f6chtest?",
"Are you sure you want to delete this page? This action cannot be undone.": "Sind Sie sicher, dass Sie diese Seite l\u00f6schen wollen? Dies kann nicht r\u00fcckg\u00e4ngig gemacht werden.",
"Are you sure you want to delete this post?": "Bist du dir sicher, dass du diesen Beitrag l\u00f6schen m\u00f6chtest?",
@@ -841,7 +842,6 @@
"Fill browser": "Vollbild im Browser",
"Filter": "Filter",
"Filter and sort topics": "Filter und sortiere Themen",
- "Final Grade": "Finale Auswertung",
"Final Grade Received": "Erhaltene Endnote",
"Financial Aid": "Finanzielle Unterst\u00fctzung",
"Financial Assistance": "Finanzielle Unterst\u00fctzung",
@@ -875,7 +875,6 @@
"Generate": "Erstellen",
"Generate Exception Certificates": "Ausnahmezertifikate erstellen",
"Generate the user's certificate": "Zertifikat f\u00fcr den Nutzer erstellen",
- "Get Credit": "Credit bekommen",
"Go Back": "Gehe zur\u00fcck",
"Go to Dashboard": "Zu \"Meine Kurse\"",
"Go to my Dashboard": "Zu \"Meine Kurse\"",
@@ -956,10 +955,8 @@
"If the subsection does not have a due date, learners always see their scores when they submit answers to assessments.": "Wenn der Unterabschnitt kein F\u00e4lligkeitsdatum hat, sehen die Lernenden immer ihre Ergebnisse, wenn sie Antworten zur Bewertung abgeben.",
"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.": "Wenn die Lerneinheit zuvor ver\u00f6ffentlicht und an die Lernenden freigegeben wurde, sind alle \u00c4nderungen, die Sie an der Lerneinheit vorgenommen haben, als sie noch ausgeblendet war, nun f\u00fcr alle Lernenden sichtbar.",
"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?": "Falls die Lerneinheit bereits vorher ver\u00f6ffentlicht und f\u00fcr die Teilnehmer freigeben war, werden jetzt alle Anderungen, die du w\u00e4hrend die Einheit versteckt war, vorgenommen hast, f\u00fcr die Teilnehmer sichtbar. M\u00f6chtest du fortfahren?",
- "If you are unable to access your account contact us via email using {email}.": "Wenn Sie keinen Zugang zu Ihrem Account haben, kontaktieren Sie uns via E-Mail {email}.",
"If you do not yet have an account, use the button below to register.": "Wenn Sie noch kein Account haben, nutzen Sie den unteren Button, um sich zu registrieren.",
"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.": "Wenn Sie Ihre Identit\u00e4t jetzt nicht \u00fcberpr\u00fcfen k\u00f6nnen Sie immer noch Ihren Kurs erkunden von Ihrem Armaturenbrett. Sie werden regelm\u00e4\u00dfigen Erinnerungen von %(platformName)s erhalten um Ihre Identit\u00e4t zu \u00fcberpr\u00fcfen.",
- "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.": "Wenn Sie Ihre Identit\u00e4t jetzt nicht verifizieren, k\u00f6nnen Sie Ihren Kurs trotzdem \u00fcber 'Meine Kurse' erkunden. Sie erhalten von {platformName} regelm\u00e4\u00dfig Erinnerungen, um Ihre Identit\u00e4t zu \u00fcberpr\u00fcfen.",
"If you leave this page without saving or submitting your response, you will lose any work you have done on the response.": "Wenn Sie diese Seite ohne vorheriges Speichern oder Einreichen der Antwort verlassen, geht die Arbeit an dieser Antwort verloren.",
"If you leave this page without submitting your peer assessment, you will lose any work you have done.": "Wenn Sie diese Seite verlassen ohne Ihre Partnerbewertung zu \u00fcbermitteln, werden Sie alle Ihre bis jetzt erledigte Arbeit verlieren.",
"If you leave this page without submitting your self assessment, you will lose any work you have done.": "Wenn Sie diese Seite ohne vorheriges Speichern oder Einreichen der Antwort verlassen, geht die Arbeit an dieser Antwort verloren.",
@@ -1164,7 +1161,6 @@
"Name of the signatory": "Name des Unterzeichners",
"Name or short description of the configuration": "Name oder Kurzbeschreibung des Aufbaus",
"Navigate up": "Aufw\u00e4rts navigieren",
- "Need help logging in?": "Brauchen Sie Hilfe beim anmelden?",
"Needs verified certificate ": "Ben\u00f6tigt ein verifiziertes Zertifikat",
"Never published": "Bisher unver\u00f6ffentlicht",
"Never show assessment results": "Auswertungen nie zeigen",
@@ -1246,7 +1242,6 @@
"Once your account is deleted, you cannot use it to take courses on the {platformName} app, {siteName}, or any other site hosted by {platformName}.": "Sobald Ihr Konto gel\u00f6scht ist, k\u00f6nnen Sie es nicht mehr verwenden, um Kurse \u00fcber die App {platformName}, {siteName} oder eine andere von {platformName} gehostete Website zu besuchen.",
"One or more rescheduling tasks failed.": "Eine oder mehrere Neuterminierungsaufgaben sind fehlgeschlagen.",
"Only ": "Nur",
- "Only <%= fileTypes %> files can be uploaded. Please select a file ending in <%= fileExtensions %> to upload.": "Nur <%= fileTypes %> Dateien k\u00f6nnen hochgeladen werden. Bitte w\u00e4hlen Sie eine Datei mit der Dateiendung <%= fileExtensions %> zum hochladen aus.",
"Only properly formatted .csv files will be accepted.": "Nur korrekt formatierte .csv Dateien werden hier akzeptiert.",
"Only the parent course staff of a CCX can create content groups.": "Nur die \u00fcbergeordneten Kursleiter eines CCX k\u00f6nnen Inhaltsgruppen erstellen.",
"Open Calculator": "Taschenrechner \u00f6ffnen",
@@ -1724,7 +1719,6 @@
"Textbook Name": "Lehrbuch Name",
"Textbook information": "Lehrbuch Information",
"Textbook name is required": "Name f\u00fcr das Textbook wird ben\u00f6tigt",
- "Thank you %(full_name)s! We have received your payment for %(course_name)s.": "Viele Dank %(full_name)s! Wir haben Ihre Zahlung f\u00fcr %(course_name)s erhalten.",
"Thank you for setting your course goal to {goal}!": "Danke, f\u00fcr das definieren eines Kursziels zu {goal}!",
"Thank you for submitting your financial assistance application for {course_name}! You can expect a response in 2-4 business days.": "Vielen Dank, dass Sie Ihren Antrag auf finanzielle Unterst\u00fctzung f\u00fcr {course_name} gestellt haben! Sie k\u00f6nnen mit einer Antwort in 2-4 Werktagen rechnen.",
"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.": "Danke f\u00fcr das Einsenden ihre Fotos. Wir werden diese zeitnah pr\u00fcfen. Sie k\u00f6nnen sich jetzt f\u00fcr jeden von %(platformName)s Kurse mit gepr\u00fcftem Zertifikat anmelden. Ihre \u00dcberpr\u00fcfung ist g\u00fcltig f\u00fcr ein Jahr. Nach einem Jahr m\u00fcssen Sie ihre Fotos wieder zur \u00dcberpr\u00fcfungeinsenden. ",
@@ -1737,8 +1731,6 @@
"The certificate for this learner has been re-validated and the system is re-running the grade for this learner.": "Das Zertifikat f\u00fcr diesen Lerner wurde erneut validiert und das System f\u00fchrt die Note f\u00fcr diesen Lerner erneut durch.",
"The cohort cannot be added": "Der Kohort kann nicht hinzugef\u00fcgt werden",
"The cohort cannot be saved": "Dieser Kohort kann nicht gespeichert werden",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "Die Gesamtl\u00e4nge der Codefelder Organisation und Bibliothek darf nicht mehr als <%=limit%> Zeichen betragen.",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "Die Gesamtl\u00e4nge der Felder Organisation, Kursnummer und Kursablauf darf nicht mehr als <%=limit%> Zeichen betragen.",
"The country or region where you live.": "Das Land oder die Stadt in der Sie leben.",
"The country that team members primarily identify with.": "Das Land mit dem sich die Teammitglieder prim\u00e4r identifizieren",
"The course end date must be later than the course start date.": "Das Datum des Kursendes kann nicht vor dem Einschreibedatum des Kurses liegen.",
@@ -1765,7 +1757,6 @@
"The minimum completion percentage must be a whole number between 0 and 100.": "Die der Prozentsatz der minimalen Fertigstellung der Aufgaben muss eine ganze Nummer zwischen 0 und 100 ergeben.",
"The minimum grade for course credit is not set.": "Es ist keine Mindestbenotung definiert.",
"The minimum score percentage must be a whole number between 0 and 100.": "Die minimale Punktzahl bei der Benotung muss eine ganze Zahl zwischen 0 und 100 sein.",
- "The more you tell us, the more quickly and helpfully we can respond!": "Je mehr Sie uns von Ihrem Anliegen berichten, desto genauer und schneller k\u00f6nnen wir Ihnen helfen!",
"The name of this signatory as it should appear on certificates.": "Der Name des Unterzeichners soll auf dem Zertifikat erscheinen.",
"The name that identifies you on {platform_name}. You cannot change your username.": "Dies ist Ihr Benutzername auf der {platform_name}. Diesen k\u00f6nnen Sie nicht mehr \u00e4ndern.",
"The name that is used for ID verification and that appears on your certificates.": "Dieser Name erscheint auf all Ihren Zertifikaten.",
@@ -1913,7 +1904,6 @@
"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.": "Um sicherzustellen, dass alle Teilnehmer auf das Video zugreifen k\u00f6nnen, empfehlen wir Ihnen, sowohl eine .mp4- als auch eine .webm Version Ihres Videos bereitzustellen. Klicken Sie unten, um eine URL f\u00fcr eine andere Version hinzuzuf\u00fcgen. Diese URLs k\u00f6nnen keine YouTube-URLs sein. Das erste aufgelistete Video, das mit dem Computer des Teilnehmers kompatibel ist, wird abgespielt.",
"To complete the program, you must earn a verified certificate for each course.": "Um das Programm abzuschlie\u00dfen, m\u00fcssen Sie f\u00fcr jeden Kurs ein verifiziertes Zertifikat erwerben.",
"To continue learning with this account, sign in below.": "Um mit diesem Konto weiter zu lernen, melden Sie sich unten an.",
- "To finalize course credit, %(display_name)s requires %(platform_name)s learners to submit a credit request.": "Um den Credit-Prozess abzuschlie\u00dfen, %(display_name)s m\u00fcssen die Lernenden von %(platform_name)s einen Kreditantrag stellen.",
"To invalidate a certificate for a particular learner, add the username or email address below.": "F\u00fcgen Sie \u00fcber die untenstehenden Eingabefelder den Benutzername oder die E-Mail Adresse des Teilnehmers hinzu, f\u00fcr welchen Sie die Zertifikate ung\u00fcltig machen m\u00f6chten.",
"To pass this exam, you must complete the problems in the time allowed.": "Um diese Pr\u00fcfung zu bestehen, m\u00fcssen Sie die Probleme in der vorgegebenen Zeit l\u00f6sen.",
"To receive a certificate, you must also verify your identity before {date}.": "Um ein Zertifikat zu erhalten, m\u00fcssen Sie auch Ihre Identit\u00e4t verifizieren vor dem {date}.",
@@ -2002,7 +1992,6 @@
"Upload Videos": "Videos hochladen",
"Upload a CSV file": "Hochladen einer CSV-Datei",
"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.": "Hochladen einer (.csv) Datei, in welcher die E-Mail Adressen oder der Benutzername der jeweiligen Teilnehmer, welche Sie zu der Ausnahmeliste hinzuf\u00fcgen m\u00f6chten, eingetragen sind. Bitte beachten Sie hierbei, dass die Eintr\u00e4ge durch Komma separiert werden. ",
- "Upload a new PDF to \u201c<%= name %>\u201d": "Neues PDf unter \u201c<%= name %>\u201d hochgeladen",
"Upload an image": "Ein Bild hochladen",
"Upload an image or capture one with your web or phone camera.": "Bitte laden Sie ein Bild hoch oder nehmen Sie ein Foto mit ihr webcam oder Handy.",
"Upload completed": "Hochladen fertiggestellt",
@@ -2059,7 +2048,6 @@
"Verified Certificate upgrade": "Upgrade verifizierter Zertifikate",
"Verified Status": "Gepr\u00fcfter Status",
"Verified mode price": "Kosten der verifizierten Teilnahmeart",
- "Verify Now": "Verifiziere Jetzt",
"Version": "Version",
"Vertical space": "Vertikaler Abstand",
"Very loud": "Sehr Laut",
@@ -2106,7 +2094,6 @@
"We couldn't find any results for \"%s\".": "Wir konnten leider keine Suchergebnisse f\u00fcr \"%s\" finden. ",
"We couldn't sign you in.": "Wir konnten Sie leider nicht einloggen.",
"We have encountered an error. Refresh your browser and then try again.": "Wir haben einen Fehler gefunden. Aktualisieren Sie Ihren Browser und versuchen Sie es dann erneut.",
- "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.": "Wir haben Ihre Informationen erhalten und verifizieren Ihre Identit\u00e4t. Sie werden eine Meldung auf Ihrer 'Meine Kurse' \u00dcbersicht sehen, wenn der Verifikationsprozess abgeschlossen ist (normalerweise innerhalb von 1-2 Tagen). In der Zwischenzeit k\u00f6nnen Sie noch auf alle verf\u00fcgbaren Kursinhalte zugreifen.",
"We just need a little more information before you start learning with %(platformName)s.": "Wir brauchen noch einige weitere Informationen, bevor Sie mit %(platformName)s lernen k\u00f6nnen.",
"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.": "Wir verwenden die h\u00f6chste Sicherheit zur Verf\u00fcgung um das Foto zu verschl\u00fcsseln und senden es an unsere Autorisierungsdienst f\u00fcr Kritik. Ihre Fotos und Daten sind nicht gespeichert und auch nicht sichtbar auf %(platformName)s nach das \u00dcberpr\u00fcfung Prozess.",
"We're sorry to see you go! Your account will be deleted shortly.": "Es tut uns leid, dass Sie Ihren Account l\u00f6schen m\u00f6chten!",
@@ -2218,7 +2205,6 @@
"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.": "Vor Sie sich in Kurse eingeladen k\u00f6nnen, m\u00fcssen Sie ihr Konto aktivieren. Kontrollieren Sie ihr Posteingang f\u00fcr das Aktivierungsmail. Nach Sie ihre Aktivierung best\u00e4tigen, k\u00f6nnen Sie diese Seite neuladen.",
"You receive messages from {platform_name} and course teams at this address.": "Auf diese E-Mail Adresse werden Sie alle Benachrichtigungen und Neuigkeiten der {platform_name} zugesandt bekommen.",
"You reserve all rights for your work": "Sie behalten sich alle Rechte f\u00fcr Ihre Arbeit vor",
- "You still need to visit the %(display_name)s website to complete the credit process.": "Sie m\u00fcssen noch die Website %(display_name)s besuchen, um den Credit-Prozess abzuschlie\u00dfen.",
"You submitted {filename}; only {allowedFiles} are allowed.": "Ihre Einreichung {filename}; Es sind nur {allowedFiles} erlaubt.",
"You waive some rights for your work, such that others can use it too": "Sie verzichten auf einige Rechte f\u00fcr Ihre Arbeit, so dass auch andere diese nutzen k\u00f6nnen",
"You will be refunded the amount you paid.": "Sie werden eine R\u00fcckerstattung f\u00fcr Ihren gezahlten Betrag erhalten. ",
@@ -2313,7 +2299,6 @@
"enter code here": "Code hier eingeben",
"enter link description here": "Linkbeschreibung hier eingeben",
"for": "f\u00fcr",
- "for {courseName}": "f\u00fcr {courseName}",
"group configuration": "Gruppenkonfiguration",
"image omitted": "Bild weggelassen",
"incorrect": "falsch",
diff --git a/cms/static/js/i18n/en@lolcat/djangojs.js b/cms/static/js/i18n/en@lolcat/djangojs.js
index 6beddc0204..f099ebfc1d 100644
--- a/cms/static/js/i18n/en@lolcat/djangojs.js
+++ b/cms/static/js/i18n/en@lolcat/djangojs.js
@@ -19,42 +19,6 @@
django.catalog = django.catalog || {};
- var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected",
- "%(sel)s of %(cnt)s selected"
- ],
- "6 a.m.": "6 a.m.",
- "Available %s": "Available %s",
- "Cancel": "Cancel",
- "Choose": "Choose",
- "Choose a time": "Choose a time",
- "Choose all": "Choose all",
- "Chosen %s": "Chosen %s",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
- "Filter": "Filter",
- "Hide": "Hide",
- "Midnight": "Midnight",
- "Noon": "Noon",
- "Now": "Now",
- "Remove": "Remove",
- "Remove all": "Remove all",
- "Show": "Show",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
- "Today": "Today",
- "Tomorrow": "Tomorrow",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
- "Yesterday": "Yesterday",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."
- };
- for (var key in newcatalog) {
- django.catalog[key] = newcatalog[key];
- }
-
if (!django.jsi18n_initialized) {
django.gettext = function(msgid) {
diff --git a/cms/static/js/i18n/en@pirate/djangojs.js b/cms/static/js/i18n/en@pirate/djangojs.js
index 6beddc0204..f099ebfc1d 100644
--- a/cms/static/js/i18n/en@pirate/djangojs.js
+++ b/cms/static/js/i18n/en@pirate/djangojs.js
@@ -19,42 +19,6 @@
django.catalog = django.catalog || {};
- var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected",
- "%(sel)s of %(cnt)s selected"
- ],
- "6 a.m.": "6 a.m.",
- "Available %s": "Available %s",
- "Cancel": "Cancel",
- "Choose": "Choose",
- "Choose a time": "Choose a time",
- "Choose all": "Choose all",
- "Chosen %s": "Chosen %s",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
- "Filter": "Filter",
- "Hide": "Hide",
- "Midnight": "Midnight",
- "Noon": "Noon",
- "Now": "Now",
- "Remove": "Remove",
- "Remove all": "Remove all",
- "Show": "Show",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
- "Today": "Today",
- "Tomorrow": "Tomorrow",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
- "Yesterday": "Yesterday",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."
- };
- for (var key in newcatalog) {
- django.catalog[key] = newcatalog[key];
- }
-
if (!django.jsi18n_initialized) {
django.gettext = function(msgid) {
diff --git a/cms/static/js/i18n/eo/djangojs.js b/cms/static/js/i18n/eo/djangojs.js
index 3c93b093a9..84d13c7116 100644
--- a/cms/static/js/i18n/eo/djangojs.js
+++ b/cms/static/js/i18n/eo/djangojs.js
@@ -492,6 +492,7 @@
],
"Course Content": "\u00c7\u00f6\u00fcrs\u00e9 \u00c7\u00f6nt\u00e9nt \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442#",
"Course Credit Requirements": "\u00c7\u00f6\u00fcrs\u00e9 \u00c7r\u00e9d\u00eft R\u00e9q\u00fc\u00efr\u00e9m\u00e9nts \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455#",
+ "Course Discussion Forum": "\u00c7\u00f6\u00fcrs\u00e9 D\u00efs\u00e7\u00fcss\u00ef\u00f6n F\u00f6r\u00fcm \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3#",
"Course End": "\u00c7\u00f6\u00fcrs\u00e9 \u00c9nd \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3#",
"Course Handouts": "\u00c7\u00f6\u00fcrs\u00e9 H\u00e4nd\u00f6\u00fcts \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1#",
"Course ID": "\u00c7\u00f6\u00fcrs\u00e9 \u00ccD \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142#",
@@ -522,6 +523,7 @@
"Create account using %(providerName)s.": "\u00c7r\u00e9\u00e4t\u00e9 \u00e4\u00e7\u00e7\u00f6\u00fcnt \u00fcs\u00efng %(providerName)s. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455#",
"Create an Account": "\u00c7r\u00e9\u00e4t\u00e9 \u00e4n \u00c0\u00e7\u00e7\u00f6\u00fcnt \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454#",
"Create an Account.": "\u00c7r\u00e9\u00e4t\u00e9 \u00e4n \u00c0\u00e7\u00e7\u00f6\u00fcnt. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442#",
+ "Create an account": "\u00c7r\u00e9\u00e4t\u00e9 \u00e4n \u00e4\u00e7\u00e7\u00f6\u00fcnt \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454#",
"Create an account using": "\u00c7r\u00e9\u00e4t\u00e9 \u00e4n \u00e4\u00e7\u00e7\u00f6\u00fcnt \u00fcs\u00efng \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3#",
"Create team.": "\u00c7r\u00e9\u00e4t\u00e9 t\u00e9\u00e4m. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455#",
"Created": "\u00c7r\u00e9\u00e4t\u00e9d \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c #",
@@ -782,7 +784,6 @@
"Fill browser": "F\u00efll \u00dfr\u00f6ws\u00e9r \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455#",
"Filter": "Filtru",
"Filter and sort topics": "F\u00eflt\u00e9r \u00e4nd s\u00f6rt t\u00f6p\u00ef\u00e7s \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2#",
- "Final Grade": "F\u00efn\u00e4l Gr\u00e4d\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f #",
"Final Grade Received": "F\u00efn\u00e4l Gr\u00e4d\u00e9 R\u00e9\u00e7\u00e9\u00efv\u00e9d \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, #",
"Financial Aid": "F\u00efn\u00e4n\u00e7\u00ef\u00e4l \u00c0\u00efd \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9#",
"Financial Assistance": "F\u00efn\u00e4n\u00e7\u00ef\u00e4l \u00c0ss\u00efst\u00e4n\u00e7\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, #",
@@ -804,6 +805,7 @@
"Footer": "F\u00f6\u00f6t\u00e9r \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5#",
"For grading to work, you must change all {oldName} subsections to {newName}.": "F\u00f6r gr\u00e4d\u00efng t\u00f6 w\u00f6rk, \u00fd\u00f6\u00fc m\u00fcst \u00e7h\u00e4ng\u00e9 \u00e4ll {oldName} s\u00fc\u00dfs\u00e9\u00e7t\u00ef\u00f6ns t\u00f6 {newName}. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
"For inquiries regarding assignments, grades, or structure of a specific course, please post in the discussion forums for that course directly.": "F\u00f6r \u00efnq\u00fc\u00efr\u00ef\u00e9s r\u00e9g\u00e4rd\u00efng \u00e4ss\u00efgnm\u00e9nts, gr\u00e4d\u00e9s, \u00f6r str\u00fc\u00e7t\u00fcr\u00e9 \u00f6f \u00e4 sp\u00e9\u00e7\u00eff\u00ef\u00e7 \u00e7\u00f6\u00fcrs\u00e9, pl\u00e9\u00e4s\u00e9 p\u00f6st \u00efn th\u00e9 d\u00efs\u00e7\u00fcss\u00ef\u00f6n f\u00f6r\u00fcms f\u00f6r th\u00e4t \u00e7\u00f6\u00fcrs\u00e9 d\u00efr\u00e9\u00e7tl\u00fd. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454 \u03bd\u0454\u0142\u03b9\u0442 \u0454\u0455\u0455\u0454 \u00a2\u03b9\u0142\u0142\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f\u0454 \u0454\u03c5 \u0192\u03c5g\u03b9\u03b1\u0442 \u03b7\u03c5\u0142\u0142\u03b1 \u03c1\u03b1\u044f\u03b9\u03b1\u0442\u03c5\u044f. \u0454\u03c7\u00a2\u0454\u03c1\u0442\u0454\u03c5\u044f \u0455\u03b9\u03b7\u0442 \u03c3\u00a2\u00a2\u03b1\u0454\u00a2\u03b1\u0442 \u00a2\u03c5\u03c1\u03b9\u2202\u03b1\u0442\u03b1\u0442 \u03b7\u03c3\u03b7 \u03c1\u044f\u03c3\u03b9\u2202\u0454\u03b7\u0442, \u0455\u03c5\u03b7\u0442 \u03b9\u03b7 \u00a2\u03c5\u0142\u03c1\u03b1 q\u03c5\u03b9 \u03c3\u0192\u0192\u03b9\u00a2\u03b9\u03b1 \u2202\u0454\u0455\u0454\u044f\u03c5\u03b7\u0442 \u043c\u03c3\u0142\u0142\u03b9\u0442 \u03b1\u03b7\u03b9\u043c \u03b9\u2202 \u0454\u0455\u0442#",
+ "Forgot my password": "F\u00f6rg\u00f6t m\u00fd p\u00e4ssw\u00f6rd \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442#",
"Format": "F\u00f6rm\u00e4t \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5#",
"Formats": "F\u00f6rm\u00e4ts \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c #",
"Free text notes": "Fr\u00e9\u00e9 t\u00e9xt n\u00f6t\u00e9s \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1#",
@@ -818,7 +820,6 @@
"Generate": "G\u00e9n\u00e9r\u00e4t\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202#",
"Generate Exception Certificates": "G\u00e9n\u00e9r\u00e4t\u00e9 \u00c9x\u00e7\u00e9pt\u00ef\u00f6n \u00c7\u00e9rt\u00eff\u00ef\u00e7\u00e4t\u00e9s \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442#",
"Generate the user's certificate": "G\u00e9n\u00e9r\u00e4t\u00e9 th\u00e9 \u00fcs\u00e9r's \u00e7\u00e9rt\u00eff\u00ef\u00e7\u00e4t\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442#",
- "Get Credit": "G\u00e9t \u00c7r\u00e9d\u00eft \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3#",
"Go to Dashboard": "G\u00f6 t\u00f6 D\u00e4sh\u00df\u00f6\u00e4rd \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1#",
"Go to my Dashboard": "G\u00f6 t\u00f6 m\u00fd D\u00e4sh\u00df\u00f6\u00e4rd \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442#",
"Go to your Dashboard": "G\u00f6 t\u00f6 \u00fd\u00f6\u00fcr D\u00e4sh\u00df\u00f6\u00e4rd \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, #",
@@ -900,10 +901,8 @@
"If the subsection does not have a due date, learners always see their scores when they submit answers to assessments.": "\u00ccf th\u00e9 s\u00fc\u00dfs\u00e9\u00e7t\u00ef\u00f6n d\u00f6\u00e9s n\u00f6t h\u00e4v\u00e9 \u00e4 d\u00fc\u00e9 d\u00e4t\u00e9, l\u00e9\u00e4rn\u00e9rs \u00e4lw\u00e4\u00fds s\u00e9\u00e9 th\u00e9\u00efr s\u00e7\u00f6r\u00e9s wh\u00e9n th\u00e9\u00fd s\u00fc\u00dfm\u00eft \u00e4nsw\u00e9rs t\u00f6 \u00e4ss\u00e9ssm\u00e9nts. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202#",
"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.": "\u00ccf th\u00e9 \u00fcn\u00eft w\u00e4s pr\u00e9v\u00ef\u00f6\u00fcsl\u00fd p\u00fc\u00dfl\u00efsh\u00e9d \u00e4nd r\u00e9l\u00e9\u00e4s\u00e9d t\u00f6 l\u00e9\u00e4rn\u00e9rs, \u00e4n\u00fd \u00e7h\u00e4ng\u00e9s \u00fd\u00f6\u00fc m\u00e4d\u00e9 t\u00f6 th\u00e9 \u00fcn\u00eft wh\u00e9n \u00eft w\u00e4s h\u00efdd\u00e9n w\u00efll n\u00f6w \u00df\u00e9 v\u00efs\u00ef\u00dfl\u00e9 t\u00f6 l\u00e9\u00e4rn\u00e9rs. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454 \u03bd\u0454\u0142\u03b9\u0442 \u0454\u0455\u0455\u0454 \u00a2\u03b9\u0142\u0142\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f\u0454 \u0454\u03c5 \u0192\u03c5g\u03b9\u03b1\u0442 \u03b7\u03c5\u0142\u0142\u03b1 \u03c1\u03b1\u044f\u03b9\u03b1\u0442\u03c5\u044f. \u0454\u03c7\u00a2\u0454\u03c1\u0442\u0454\u03c5\u044f \u0455\u03b9\u03b7\u0442 \u03c3\u00a2\u00a2\u03b1\u0454\u00a2\u03b1\u0442 \u00a2\u03c5\u03c1\u03b9\u2202\u03b1\u0442\u03b1\u0442 \u03b7\u03c3\u03b7 \u03c1\u044f\u03c3\u03b9\u2202\u0454\u03b7\u0442, \u0455\u03c5\u03b7\u0442 \u03b9\u03b7 \u00a2\u03c5\u0142\u03c1\u03b1 q\u03c5\u03b9 \u03c3\u0192\u0192\u03b9\u00a2\u03b9\u03b1 \u2202\u0454\u0455\u0454\u044f\u03c5\u03b7\u0442 \u043c\u03c3\u0142\u0142\u03b9\u0442 \u03b1\u03b7\u03b9\u043c #",
"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?": "\u00ccf th\u00e9 \u00fcn\u00eft w\u00e4s pr\u00e9v\u00ef\u00f6\u00fcsl\u00fd p\u00fc\u00dfl\u00efsh\u00e9d \u00e4nd r\u00e9l\u00e9\u00e4s\u00e9d t\u00f6 st\u00fcd\u00e9nts, \u00e4n\u00fd \u00e7h\u00e4ng\u00e9s \u00fd\u00f6\u00fc m\u00e4d\u00e9 t\u00f6 th\u00e9 \u00fcn\u00eft wh\u00e9n \u00eft w\u00e4s h\u00efdd\u00e9n w\u00efll n\u00f6w \u00df\u00e9 v\u00efs\u00ef\u00dfl\u00e9 t\u00f6 st\u00fcd\u00e9nts. D\u00f6 \u00fd\u00f6\u00fc w\u00e4nt t\u00f6 pr\u00f6\u00e7\u00e9\u00e9d? \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454 \u03bd\u0454\u0142\u03b9\u0442 \u0454\u0455\u0455\u0454 \u00a2\u03b9\u0142\u0142\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f\u0454 \u0454\u03c5 \u0192\u03c5g\u03b9\u03b1\u0442 \u03b7\u03c5\u0142\u0142\u03b1 \u03c1\u03b1\u044f\u03b9\u03b1\u0442\u03c5\u044f. \u0454\u03c7\u00a2\u0454\u03c1\u0442\u0454\u03c5\u044f \u0455\u03b9\u03b7\u0442 \u03c3\u00a2\u00a2\u03b1\u0454\u00a2\u03b1\u0442 \u00a2\u03c5\u03c1\u03b9\u2202\u03b1\u0442\u03b1\u0442 \u03b7\u03c3\u03b7 \u03c1\u044f\u03c3\u03b9\u2202\u0454\u03b7\u0442, \u0455\u03c5\u03b7\u0442 \u03b9\u03b7 \u00a2\u03c5\u0142\u03c1\u03b1 q\u03c5\u03b9#",
- "If you are unable to access your account contact us via email using {email}.": "\u00ccf \u00fd\u00f6\u00fc \u00e4r\u00e9 \u00fcn\u00e4\u00dfl\u00e9 t\u00f6 \u00e4\u00e7\u00e7\u00e9ss \u00fd\u00f6\u00fcr \u00e4\u00e7\u00e7\u00f6\u00fcnt \u00e7\u00f6nt\u00e4\u00e7t \u00fcs v\u00ef\u00e4 \u00e9m\u00e4\u00efl \u00fcs\u00efng {email}. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f#",
"If you do not yet have an account, use the button below to register.": "\u00ccf \u00fd\u00f6\u00fc d\u00f6 n\u00f6t \u00fd\u00e9t h\u00e4v\u00e9 \u00e4n \u00e4\u00e7\u00e7\u00f6\u00fcnt, \u00fcs\u00e9 th\u00e9 \u00df\u00fctt\u00f6n \u00df\u00e9l\u00f6w t\u00f6 r\u00e9g\u00efst\u00e9r. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f #",
"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.": "\u00ccf \u00fd\u00f6\u00fc d\u00f6n't v\u00e9r\u00eff\u00fd \u00fd\u00f6\u00fcr \u00efd\u00e9nt\u00eft\u00fd n\u00f6w, \u00fd\u00f6\u00fc \u00e7\u00e4n st\u00efll \u00e9xpl\u00f6r\u00e9 \u00fd\u00f6\u00fcr \u00e7\u00f6\u00fcrs\u00e9 fr\u00f6m \u00fd\u00f6\u00fcr d\u00e4sh\u00df\u00f6\u00e4rd. \u00dd\u00f6\u00fc w\u00efll r\u00e9\u00e7\u00e9\u00efv\u00e9 p\u00e9r\u00ef\u00f6d\u00ef\u00e7 r\u00e9m\u00efnd\u00e9rs fr\u00f6m %(platformName)s t\u00f6 v\u00e9r\u00eff\u00fd \u00fd\u00f6\u00fcr \u00efd\u00e9nt\u00eft\u00fd. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454 \u03bd\u0454\u0142\u03b9\u0442 \u0454\u0455\u0455\u0454 \u00a2\u03b9\u0142\u0142\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f\u0454 \u0454\u03c5 \u0192\u03c5g\u03b9\u03b1\u0442 \u03b7\u03c5\u0142\u0142\u03b1 \u03c1\u03b1\u044f\u03b9\u03b1\u0442\u03c5\u044f. \u0454\u03c7\u00a2\u0454\u03c1\u0442\u0454\u03c5\u044f \u0455\u03b9\u03b7\u0442 \u03c3\u00a2\u00a2\u03b1\u0454\u00a2\u03b1\u0442 \u00a2\u03c5\u03c1\u03b9\u2202\u03b1\u0442\u03b1\u0442 \u03b7\u03c3\u03b7 \u03c1\u044f\u03c3\u03b9\u2202\u0454\u03b7\u0442, \u0455\u03c5\u03b7\u0442 \u03b9\u03b7 \u00a2\u03c5\u0142\u03c1\u03b1 q\u03c5\u03b9 \u03c3\u0192\u0192\u03b9\u00a2\u03b9\u03b1 \u2202\u0454#",
- "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.": "\u00ccf \u00fd\u00f6\u00fc d\u00f6n't v\u00e9r\u00eff\u00fd \u00fd\u00f6\u00fcr \u00efd\u00e9nt\u00eft\u00fd n\u00f6w, \u00fd\u00f6\u00fc \u00e7\u00e4n st\u00efll \u00e9xpl\u00f6r\u00e9 \u00fd\u00f6\u00fcr \u00e7\u00f6\u00fcrs\u00e9 fr\u00f6m \u00fd\u00f6\u00fcr d\u00e4sh\u00df\u00f6\u00e4rd. \u00dd\u00f6\u00fc w\u00efll r\u00e9\u00e7\u00e9\u00efv\u00e9 p\u00e9r\u00ef\u00f6d\u00ef\u00e7 r\u00e9m\u00efnd\u00e9rs fr\u00f6m {platformName} t\u00f6 v\u00e9r\u00eff\u00fd \u00fd\u00f6\u00fcr \u00efd\u00e9nt\u00eft\u00fd. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454 \u03bd\u0454\u0142\u03b9\u0442 \u0454\u0455\u0455\u0454 \u00a2\u03b9\u0142\u0142\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f\u0454 \u0454\u03c5 \u0192\u03c5g\u03b9\u03b1\u0442 \u03b7\u03c5\u0142\u0142\u03b1 \u03c1\u03b1\u044f\u03b9\u03b1\u0442\u03c5\u044f. \u0454\u03c7\u00a2\u0454\u03c1\u0442\u0454\u03c5\u044f \u0455\u03b9\u03b7\u0442 \u03c3\u00a2\u00a2\u03b1\u0454\u00a2\u03b1\u0442 \u00a2\u03c5\u03c1\u03b9\u2202\u03b1\u0442\u03b1\u0442 \u03b7\u03c3\u03b7 \u03c1\u044f\u03c3\u03b9\u2202\u0454\u03b7\u0442, \u0455\u03c5\u03b7\u0442 \u03b9\u03b7 \u00a2\u03c5\u0142\u03c1\u03b1 q\u03c5\u03b9 \u03c3\u0192\u0192\u03b9\u00a2\u03b9\u03b1 \u2202\u0454#",
"If you leave this page without saving or submitting your response, you will lose any work you have done on the response.": "\u00ccf \u00fd\u00f6\u00fc l\u00e9\u00e4v\u00e9 th\u00efs p\u00e4g\u00e9 w\u00efth\u00f6\u00fct s\u00e4v\u00efng \u00f6r s\u00fc\u00dfm\u00eftt\u00efng \u00fd\u00f6\u00fcr r\u00e9sp\u00f6ns\u00e9, \u00fd\u00f6\u00fc w\u00efll l\u00f6s\u00e9 \u00e4n\u00fd w\u00f6rk \u00fd\u00f6\u00fc h\u00e4v\u00e9 d\u00f6n\u00e9 \u00f6n th\u00e9 r\u00e9sp\u00f6ns\u00e9. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5#",
"If you leave this page without submitting your peer assessment, you will lose any work you have done.": "\u00ccf \u00fd\u00f6\u00fc l\u00e9\u00e4v\u00e9 th\u00efs p\u00e4g\u00e9 w\u00efth\u00f6\u00fct s\u00fc\u00dfm\u00eftt\u00efng \u00fd\u00f6\u00fcr p\u00e9\u00e9r \u00e4ss\u00e9ssm\u00e9nt, \u00fd\u00f6\u00fc w\u00efll l\u00f6s\u00e9 \u00e4n\u00fd w\u00f6rk \u00fd\u00f6\u00fc h\u00e4v\u00e9 d\u00f6n\u00e9. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454#",
"If you leave this page without submitting your self assessment, you will lose any work you have done.": "\u00ccf \u00fd\u00f6\u00fc l\u00e9\u00e4v\u00e9 th\u00efs p\u00e4g\u00e9 w\u00efth\u00f6\u00fct s\u00fc\u00dfm\u00eftt\u00efng \u00fd\u00f6\u00fcr s\u00e9lf \u00e4ss\u00e9ssm\u00e9nt, \u00fd\u00f6\u00fc w\u00efll l\u00f6s\u00e9 \u00e4n\u00fd w\u00f6rk \u00fd\u00f6\u00fc h\u00e4v\u00e9 d\u00f6n\u00e9. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454#",
@@ -1110,6 +1109,8 @@
"Name or short description of the configuration": "N\u00e4m\u00e9 \u00f6r sh\u00f6rt d\u00e9s\u00e7r\u00efpt\u00ef\u00f6n \u00f6f th\u00e9 \u00e7\u00f6nf\u00efg\u00fcr\u00e4t\u00ef\u00f6n \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
"Navigate up": "N\u00e4v\u00efg\u00e4t\u00e9 \u00fcp \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f #",
"Need help logging in?": "N\u00e9\u00e9d h\u00e9lp l\u00f6gg\u00efng \u00efn? \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, #",
+ "Need help signing in?": "N\u00e9\u00e9d h\u00e9lp s\u00efgn\u00efng \u00efn? \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, #",
+ "Need other help signing in?": "N\u00e9\u00e9d \u00f6th\u00e9r h\u00e9lp s\u00efgn\u00efng \u00efn? \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454#",
"Needs verified certificate ": "N\u00e9\u00e9ds v\u00e9r\u00eff\u00ef\u00e9d \u00e7\u00e9rt\u00eff\u00ef\u00e7\u00e4t\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454#",
"Never published": "N\u00e9v\u00e9r p\u00fc\u00dfl\u00efsh\u00e9d \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1#",
"Never show assessment results": "N\u00e9v\u00e9r sh\u00f6w \u00e4ss\u00e9ssm\u00e9nt r\u00e9s\u00fclts \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2#",
@@ -1129,6 +1130,7 @@
"No Flash Detected": "N\u00f6 Fl\u00e4sh D\u00e9t\u00e9\u00e7t\u00e9d \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454#",
"No Timed Transcript": "N\u00f6 T\u00efm\u00e9d Tr\u00e4ns\u00e7r\u00efpt \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442,#",
"No Webcam Detected": "N\u00f6 W\u00e9\u00df\u00e7\u00e4m D\u00e9t\u00e9\u00e7t\u00e9d \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442#",
+ "No assignments for team": "N\u00f6 \u00e4ss\u00efgnm\u00e9nts f\u00f6r t\u00e9\u00e4m \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3#",
"No color": "N\u00f6 \u00e7\u00f6l\u00f6r \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202#",
"No content-specific discussion topics exist.": "N\u00f6 \u00e7\u00f6nt\u00e9nt-sp\u00e9\u00e7\u00eff\u00ef\u00e7 d\u00efs\u00e7\u00fcss\u00ef\u00f6n t\u00f6p\u00ef\u00e7s \u00e9x\u00efst. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f #",
"No description available": "N\u00f6 d\u00e9s\u00e7r\u00efpt\u00ef\u00f6n \u00e4v\u00e4\u00efl\u00e4\u00dfl\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7#",
@@ -1192,7 +1194,7 @@
"Once your account is deleted, you cannot use it to take courses on the {platformName} app, {siteName}, or any other site hosted by {platformName}.": "\u00d6n\u00e7\u00e9 \u00fd\u00f6\u00fcr \u00e4\u00e7\u00e7\u00f6\u00fcnt \u00efs d\u00e9l\u00e9t\u00e9d, \u00fd\u00f6\u00fc \u00e7\u00e4nn\u00f6t \u00fcs\u00e9 \u00eft t\u00f6 t\u00e4k\u00e9 \u00e7\u00f6\u00fcrs\u00e9s \u00f6n th\u00e9 {platformName} \u00e4pp, {siteName}, \u00f6r \u00e4n\u00fd \u00f6th\u00e9r s\u00eft\u00e9 h\u00f6st\u00e9d \u00df\u00fd {platformName}. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202#",
"One or more rescheduling tasks failed.": "\u00d6n\u00e9 \u00f6r m\u00f6r\u00e9 r\u00e9s\u00e7h\u00e9d\u00fcl\u00efng t\u00e4sks f\u00e4\u00efl\u00e9d. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f#",
"Only ": "\u00d6nl\u00fd \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455#",
- "Only <%= fileTypes %> files can be uploaded. Please select a file ending in <%= fileExtensions %> to upload.": "\u00d6nl\u00fd <%= fileTypes %> f\u00efl\u00e9s \u00e7\u00e4n \u00df\u00e9 \u00fcpl\u00f6\u00e4d\u00e9d. Pl\u00e9\u00e4s\u00e9 s\u00e9l\u00e9\u00e7t \u00e4 f\u00efl\u00e9 \u00e9nd\u00efng \u00efn <%= fileExtensions %> t\u00f6 \u00fcpl\u00f6\u00e4d. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442#",
+ "Only <%- fileTypes %> files can be uploaded. Please select a file ending in <%- (fileExtensions) %> to upload.": "\u00d6nl\u00fd <%- fileTypes %> f\u00efl\u00e9s \u00e7\u00e4n \u00df\u00e9 \u00fcpl\u00f6\u00e4d\u00e9d. Pl\u00e9\u00e4s\u00e9 s\u00e9l\u00e9\u00e7t \u00e4 f\u00efl\u00e9 \u00e9nd\u00efng \u00efn <%- (fileExtensions) %> t\u00f6 \u00fcpl\u00f6\u00e4d. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442#",
"Only properly formatted .csv files will be accepted.": "\u00d6nl\u00fd pr\u00f6p\u00e9rl\u00fd f\u00f6rm\u00e4tt\u00e9d .\u00e7sv f\u00efl\u00e9s w\u00efll \u00df\u00e9 \u00e4\u00e7\u00e7\u00e9pt\u00e9d. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
"Only the parent course staff of a CCX can create content groups.": "\u00d6nl\u00fd th\u00e9 p\u00e4r\u00e9nt \u00e7\u00f6\u00fcrs\u00e9 st\u00e4ff \u00f6f \u00e4 \u00c7\u00c7X \u00e7\u00e4n \u00e7r\u00e9\u00e4t\u00e9 \u00e7\u00f6nt\u00e9nt gr\u00f6\u00fcps. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
"Open": "\u00d6p\u00e9n \u2c60'\u03c3\u044f\u0454\u043c \u03b9#",
@@ -1216,6 +1218,7 @@
"Organization of the signatory": "\u00d6rg\u00e4n\u00efz\u00e4t\u00ef\u00f6n \u00f6f th\u00e9 s\u00efgn\u00e4t\u00f6r\u00fd \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2#",
"Organization:": "\u00d6rg\u00e4n\u00efz\u00e4t\u00ef\u00f6n: \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9#",
"Other": "\u00d6th\u00e9r \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455#",
+ "Other sign-in issues": "\u00d6th\u00e9r s\u00efgn-\u00efn \u00efss\u00fc\u00e9s \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, #",
"Overall Score": "\u00d6v\u00e9r\u00e4ll S\u00e7\u00f6r\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9#",
"PDF Chapters": "PDF \u00c7h\u00e4pt\u00e9rs \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455#",
"Page break": "P\u00e4g\u00e9 \u00dfr\u00e9\u00e4k \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3#",
@@ -1475,8 +1478,8 @@
"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": "S\u00e9l\u00e9\u00e7t \u00e4 pr\u00e9r\u00e9q\u00fc\u00efs\u00eft\u00e9 s\u00fc\u00dfs\u00e9\u00e7t\u00ef\u00f6n \u00e4nd \u00e9nt\u00e9r \u00e4 m\u00efn\u00efm\u00fcm s\u00e7\u00f6r\u00e9 p\u00e9r\u00e7\u00e9nt\u00e4g\u00e9 \u00e4nd m\u00efn\u00efm\u00fcm \u00e7\u00f6mpl\u00e9t\u00ef\u00f6n p\u00e9r\u00e7\u00e9nt\u00e4g\u00e9 t\u00f6 l\u00efm\u00eft \u00e4\u00e7\u00e7\u00e9ss t\u00f6 th\u00efs s\u00fc\u00dfs\u00e9\u00e7t\u00ef\u00f6n. \u00c0ll\u00f6w\u00e9d v\u00e4l\u00fc\u00e9s \u00e4r\u00e9 0-100 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454 \u03bd\u0454\u0142\u03b9\u0442 \u0454\u0455\u0455\u0454 \u00a2\u03b9\u0142\u0142\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f\u0454 \u0454\u03c5 \u0192\u03c5g\u03b9\u03b1\u0442 \u03b7\u03c5\u0142\u0142\u03b1 \u03c1\u03b1\u044f\u03b9\u03b1\u0442\u03c5\u044f. \u0454\u03c7\u00a2\u0454\u03c1\u0442\u0454\u03c5\u044f \u0455\u03b9\u03b7\u0442 \u03c3\u00a2\u00a2\u03b1\u0454\u00a2\u03b1\u0442 \u00a2\u03c5\u03c1\u03b9\u2202\u03b1\u0442\u03b1\u0442 \u03b7\u03c3\u03b7 \u03c1\u044f\u03c3\u03b9\u2202\u0454\u03b7\u0442, \u0455\u03c5\u03b7\u0442 \u03b9\u03b7 \u00a2\u03c5\u0142\u03c1\u03b1 q\u03c5\u03b9 \u03c3\u0192\u0192\u03b9\u00a2\u03b9\u03b1 \u2202#",
"Select a section or problem": "S\u00e9l\u00e9\u00e7t \u00e4 s\u00e9\u00e7t\u00ef\u00f6n \u00f6r pr\u00f6\u00dfl\u00e9m \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454#",
"Select a session:": "S\u00e9l\u00e9\u00e7t \u00e4 s\u00e9ss\u00ef\u00f6n: \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454#",
+ "Select a subject for your support request.": "S\u00e9l\u00e9\u00e7t \u00e4 s\u00fc\u00dfj\u00e9\u00e7t f\u00f6r \u00fd\u00f6\u00fcr s\u00fcpp\u00f6rt r\u00e9q\u00fc\u00e9st. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f #",
"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.": "S\u00e9l\u00e9\u00e7t \u00e4 t\u00efm\u00e9 \u00e4ll\u00f6tm\u00e9nt f\u00f6r th\u00e9 \u00e9x\u00e4m. \u00ccf \u00eft \u00efs \u00f6v\u00e9r 24 h\u00f6\u00fcrs, t\u00fdp\u00e9 \u00efn th\u00e9 \u00e4m\u00f6\u00fcnt \u00f6f t\u00efm\u00e9. \u00dd\u00f6\u00fc \u00e7\u00e4n gr\u00e4nt \u00efnd\u00efv\u00efd\u00fc\u00e4l l\u00e9\u00e4rn\u00e9rs \u00e9xtr\u00e4 t\u00efm\u00e9 t\u00f6 \u00e7\u00f6mpl\u00e9t\u00e9 th\u00e9 \u00e9x\u00e4m thr\u00f6\u00fcgh th\u00e9 \u00ccnstr\u00fc\u00e7t\u00f6r D\u00e4sh\u00df\u00f6\u00e4rd. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454 \u03bd\u0454\u0142\u03b9\u0442 \u0454\u0455\u0455\u0454 \u00a2\u03b9\u0142\u0142\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f\u0454 \u0454\u03c5 \u0192\u03c5g\u03b9\u03b1\u0442 \u03b7\u03c5\u0142\u0142\u03b1 \u03c1\u03b1\u044f\u03b9\u03b1\u0442\u03c5\u044f. \u0454\u03c7\u00a2\u0454\u03c1\u0442\u0454\u03c5\u044f \u0455\u03b9\u03b7\u0442 \u03c3\u00a2\u00a2\u03b1\u0454\u00a2\u03b1\u0442 \u00a2\u03c5\u03c1\u03b9\u2202\u03b1\u0442\u03b1\u0442 \u03b7\u03c3\u03b7 \u03c1\u044f#",
- "Select a topic for your support request.": "S\u00e9l\u00e9\u00e7t \u00e4 t\u00f6p\u00ef\u00e7 f\u00f6r \u00fd\u00f6\u00fcr s\u00fcpp\u00f6rt r\u00e9q\u00fc\u00e9st. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f#",
"Select all": "S\u00e9l\u00e9\u00e7t \u00e4ll \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3#",
"Select fidelity": "S\u00e9l\u00e9\u00e7t f\u00efd\u00e9l\u00eft\u00fd \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1#",
"Select language": "S\u00e9l\u00e9\u00e7t l\u00e4ng\u00fc\u00e4g\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1#",
@@ -1549,6 +1552,7 @@
"Sign in using %(providerName)s": "S\u00efgn \u00efn \u00fcs\u00efng %(providerName)s \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454#",
"Sign in with %(providerName)s": "S\u00efgn \u00efn w\u00efth %(providerName)s \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c#",
"Sign in with Institution/Campus Credentials": "S\u00efgn \u00efn w\u00efth \u00ccnst\u00eft\u00fct\u00ef\u00f6n/\u00c7\u00e4mp\u00fcs \u00c7r\u00e9d\u00e9nt\u00ef\u00e4ls \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f #",
+ "Sign in with your company or school": "S\u00efgn \u00efn w\u00efth \u00fd\u00f6\u00fcr \u00e7\u00f6mp\u00e4n\u00fd \u00f6r s\u00e7h\u00f6\u00f6l \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442#",
"Sign in.": "S\u00efgn \u00efn. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202#",
"Signatory": "S\u00efgn\u00e4t\u00f6r\u00fd \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142#",
"Signatory field(s) has invalid data.": "S\u00efgn\u00e4t\u00f6r\u00fd f\u00ef\u00e9ld(s) h\u00e4s \u00efnv\u00e4l\u00efd d\u00e4t\u00e4. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5#",
@@ -1657,6 +1661,7 @@
"Task inputs": "T\u00e4sk \u00efnp\u00fcts \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f #",
"Teaching Assistant": "T\u00e9\u00e4\u00e7h\u00efng \u00c0ss\u00efst\u00e4nt \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442#",
"Team \"{team}\" successfully deleted.": "T\u00e9\u00e4m \"{team}\" s\u00fc\u00e7\u00e7\u00e9ssf\u00fcll\u00fd d\u00e9l\u00e9t\u00e9d. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454#",
+ "Team Assignments": "T\u00e9\u00e4m \u00c0ss\u00efgnm\u00e9nts \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c#",
"Team Description (Required) *": "T\u00e9\u00e4m D\u00e9s\u00e7r\u00efpt\u00ef\u00f6n (R\u00e9q\u00fc\u00efr\u00e9d) * \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2#",
"Team Details": "T\u00e9\u00e4m D\u00e9t\u00e4\u00efls \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455#",
"Team Name (Required) *": "T\u00e9\u00e4m N\u00e4m\u00e9 (R\u00e9q\u00fc\u00efr\u00e9d) * \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2#",
@@ -1675,7 +1680,6 @@
"Textbook Name": "T\u00e9xt\u00df\u00f6\u00f6k N\u00e4m\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9#",
"Textbook information": "T\u00e9xt\u00df\u00f6\u00f6k \u00efnf\u00f6rm\u00e4t\u00ef\u00f6n \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, #",
"Textbook name is required": "T\u00e9xt\u00df\u00f6\u00f6k n\u00e4m\u00e9 \u00efs r\u00e9q\u00fc\u00efr\u00e9d \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455#",
- "Thank you %(full_name)s! We have received your payment for %(course_name)s.": "Th\u00e4nk \u00fd\u00f6\u00fc %(full_name)s! W\u00e9 h\u00e4v\u00e9 r\u00e9\u00e7\u00e9\u00efv\u00e9d \u00fd\u00f6\u00fcr p\u00e4\u00fdm\u00e9nt f\u00f6r %(course_name)s. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
"Thank you for setting your course goal to {goal}!": "Th\u00e4nk \u00fd\u00f6\u00fc f\u00f6r s\u00e9tt\u00efng \u00fd\u00f6\u00fcr \u00e7\u00f6\u00fcrs\u00e9 g\u00f6\u00e4l t\u00f6 {goal}! \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
"Thank you for submitting a request! We appreciate your patience while we work to review your request.": "Th\u00e4nk \u00fd\u00f6\u00fc f\u00f6r s\u00fc\u00dfm\u00eftt\u00efng \u00e4 r\u00e9q\u00fc\u00e9st! W\u00e9 \u00e4ppr\u00e9\u00e7\u00ef\u00e4t\u00e9 \u00fd\u00f6\u00fcr p\u00e4t\u00ef\u00e9n\u00e7\u00e9 wh\u00efl\u00e9 w\u00e9 w\u00f6rk t\u00f6 r\u00e9v\u00ef\u00e9w \u00fd\u00f6\u00fcr r\u00e9q\u00fc\u00e9st. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454#",
"Thank you for submitting your financial assistance application for {course_name}! You can expect a response in 2-4 business days.": "Th\u00e4nk \u00fd\u00f6\u00fc f\u00f6r s\u00fc\u00dfm\u00eftt\u00efng \u00fd\u00f6\u00fcr f\u00efn\u00e4n\u00e7\u00ef\u00e4l \u00e4ss\u00efst\u00e4n\u00e7\u00e9 \u00e4ppl\u00ef\u00e7\u00e4t\u00ef\u00f6n f\u00f6r {course_name}! \u00dd\u00f6\u00fc \u00e7\u00e4n \u00e9xp\u00e9\u00e7t \u00e4 r\u00e9sp\u00f6ns\u00e9 \u00efn 2-4 \u00df\u00fcs\u00efn\u00e9ss d\u00e4\u00fds. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c#",
@@ -1689,8 +1693,8 @@
"The certificate for this learner has been re-validated and the system is re-running the grade for this learner.": "Th\u00e9 \u00e7\u00e9rt\u00eff\u00ef\u00e7\u00e4t\u00e9 f\u00f6r th\u00efs l\u00e9\u00e4rn\u00e9r h\u00e4s \u00df\u00e9\u00e9n r\u00e9-v\u00e4l\u00efd\u00e4t\u00e9d \u00e4nd th\u00e9 s\u00fdst\u00e9m \u00efs r\u00e9-r\u00fcnn\u00efng th\u00e9 gr\u00e4d\u00e9 f\u00f6r th\u00efs l\u00e9\u00e4rn\u00e9r. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f #",
"The cohort cannot be added": "Th\u00e9 \u00e7\u00f6h\u00f6rt \u00e7\u00e4nn\u00f6t \u00df\u00e9 \u00e4dd\u00e9d \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455#",
"The cohort cannot be saved": "Th\u00e9 \u00e7\u00f6h\u00f6rt \u00e7\u00e4nn\u00f6t \u00df\u00e9 s\u00e4v\u00e9d \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455#",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "Th\u00e9 \u00e7\u00f6m\u00df\u00efn\u00e9d l\u00e9ngth \u00f6f th\u00e9 \u00f6rg\u00e4n\u00efz\u00e4t\u00ef\u00f6n \u00e4nd l\u00ef\u00dfr\u00e4r\u00fd \u00e7\u00f6d\u00e9 f\u00ef\u00e9lds \u00e7\u00e4nn\u00f6t \u00df\u00e9 m\u00f6r\u00e9 th\u00e4n <%=limit%> \u00e7h\u00e4r\u00e4\u00e7t\u00e9rs. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442#",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "Th\u00e9 \u00e7\u00f6m\u00df\u00efn\u00e9d l\u00e9ngth \u00f6f th\u00e9 \u00f6rg\u00e4n\u00efz\u00e4t\u00ef\u00f6n, \u00e7\u00f6\u00fcrs\u00e9 n\u00fcm\u00df\u00e9r, \u00e4nd \u00e7\u00f6\u00fcrs\u00e9 r\u00fcn f\u00ef\u00e9lds \u00e7\u00e4nn\u00f6t \u00df\u00e9 m\u00f6r\u00e9 th\u00e4n <%=limit%> \u00e7h\u00e4r\u00e4\u00e7t\u00e9rs. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3#",
+ "The combined length of the organization and library code fields cannot be more than <%- limit %> characters.": "Th\u00e9 \u00e7\u00f6m\u00df\u00efn\u00e9d l\u00e9ngth \u00f6f th\u00e9 \u00f6rg\u00e4n\u00efz\u00e4t\u00ef\u00f6n \u00e4nd l\u00ef\u00dfr\u00e4r\u00fd \u00e7\u00f6d\u00e9 f\u00ef\u00e9lds \u00e7\u00e4nn\u00f6t \u00df\u00e9 m\u00f6r\u00e9 th\u00e4n <%- limit %> \u00e7h\u00e4r\u00e4\u00e7t\u00e9rs. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442#",
+ "The combined length of the organization, course number, and course run fields cannot be more than <%- limit %> characters.": "Th\u00e9 \u00e7\u00f6m\u00df\u00efn\u00e9d l\u00e9ngth \u00f6f th\u00e9 \u00f6rg\u00e4n\u00efz\u00e4t\u00ef\u00f6n, \u00e7\u00f6\u00fcrs\u00e9 n\u00fcm\u00df\u00e9r, \u00e4nd \u00e7\u00f6\u00fcrs\u00e9 r\u00fcn f\u00ef\u00e9lds \u00e7\u00e4nn\u00f6t \u00df\u00e9 m\u00f6r\u00e9 th\u00e4n <%- limit %> \u00e7h\u00e4r\u00e4\u00e7t\u00e9rs. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3#",
"The country or region where you live.": "Th\u00e9 \u00e7\u00f6\u00fcntr\u00fd \u00f6r r\u00e9g\u00ef\u00f6n wh\u00e9r\u00e9 \u00fd\u00f6\u00fc l\u00efv\u00e9. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5#",
"The country that team members primarily identify with.": "Th\u00e9 \u00e7\u00f6\u00fcntr\u00fd th\u00e4t t\u00e9\u00e4m m\u00e9m\u00df\u00e9rs pr\u00efm\u00e4r\u00efl\u00fd \u00efd\u00e9nt\u00eff\u00fd w\u00efth. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
"The course end date must be later than the course start date.": "Th\u00e9 \u00e7\u00f6\u00fcrs\u00e9 \u00e9nd d\u00e4t\u00e9 m\u00fcst \u00df\u00e9 l\u00e4t\u00e9r th\u00e4n th\u00e9 \u00e7\u00f6\u00fcrs\u00e9 st\u00e4rt d\u00e4t\u00e9. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
@@ -1719,7 +1723,6 @@
"The minimum completion percentage must be a whole number between 0 and 100.": "Th\u00e9 m\u00efn\u00efm\u00fcm \u00e7\u00f6mpl\u00e9t\u00ef\u00f6n p\u00e9r\u00e7\u00e9nt\u00e4g\u00e9 m\u00fcst \u00df\u00e9 \u00e4 wh\u00f6l\u00e9 n\u00fcm\u00df\u00e9r \u00df\u00e9tw\u00e9\u00e9n 0 \u00e4nd 100. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5#",
"The minimum grade for course credit is not set.": "Th\u00e9 m\u00efn\u00efm\u00fcm gr\u00e4d\u00e9 f\u00f6r \u00e7\u00f6\u00fcrs\u00e9 \u00e7r\u00e9d\u00eft \u00efs n\u00f6t s\u00e9t. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
"The minimum score percentage must be a whole number between 0 and 100.": "Th\u00e9 m\u00efn\u00efm\u00fcm s\u00e7\u00f6r\u00e9 p\u00e9r\u00e7\u00e9nt\u00e4g\u00e9 m\u00fcst \u00df\u00e9 \u00e4 wh\u00f6l\u00e9 n\u00fcm\u00df\u00e9r \u00df\u00e9tw\u00e9\u00e9n 0 \u00e4nd 100. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f #",
- "The more you tell us, the more quickly and helpfully we can respond!": "Th\u00e9 m\u00f6r\u00e9 \u00fd\u00f6\u00fc t\u00e9ll \u00fcs, th\u00e9 m\u00f6r\u00e9 q\u00fc\u00ef\u00e7kl\u00fd \u00e4nd h\u00e9lpf\u00fcll\u00fd w\u00e9 \u00e7\u00e4n r\u00e9sp\u00f6nd! \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f #",
"The name of this signatory as it should appear on certificates.": "Th\u00e9 n\u00e4m\u00e9 \u00f6f th\u00efs s\u00efgn\u00e4t\u00f6r\u00fd \u00e4s \u00eft sh\u00f6\u00fcld \u00e4pp\u00e9\u00e4r \u00f6n \u00e7\u00e9rt\u00eff\u00ef\u00e7\u00e4t\u00e9s. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
"The name that identifies you on {platform_name}. You cannot change your username.": "Th\u00e9 n\u00e4m\u00e9 th\u00e4t \u00efd\u00e9nt\u00eff\u00ef\u00e9s \u00fd\u00f6\u00fc \u00f6n {platform_name}. \u00dd\u00f6\u00fc \u00e7\u00e4nn\u00f6t \u00e7h\u00e4ng\u00e9 \u00fd\u00f6\u00fcr \u00fcs\u00e9rn\u00e4m\u00e9. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f #",
"The name that is used for ID verification and that appears on your certificates.": "Th\u00e9 n\u00e4m\u00e9 th\u00e4t \u00efs \u00fcs\u00e9d f\u00f6r \u00ccD v\u00e9r\u00eff\u00ef\u00e7\u00e4t\u00ef\u00f6n \u00e4nd th\u00e4t \u00e4pp\u00e9\u00e4rs \u00f6n \u00fd\u00f6\u00fcr \u00e7\u00e9rt\u00eff\u00ef\u00e7\u00e4t\u00e9s. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454#",
@@ -1803,6 +1806,7 @@
"This feature is currently in testing. Course teams can enter highlights, but learners will not receive email messages.": "Th\u00efs f\u00e9\u00e4t\u00fcr\u00e9 \u00efs \u00e7\u00fcrr\u00e9ntl\u00fd \u00efn t\u00e9st\u00efng. \u00c7\u00f6\u00fcrs\u00e9 t\u00e9\u00e4ms \u00e7\u00e4n \u00e9nt\u00e9r h\u00efghl\u00efghts, \u00df\u00fct l\u00e9\u00e4rn\u00e9rs w\u00efll n\u00f6t r\u00e9\u00e7\u00e9\u00efv\u00e9 \u00e9m\u00e4\u00efl m\u00e9ss\u00e4g\u00e9s. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c #",
"This feedback could not be submitted.": "Th\u00efs f\u00e9\u00e9d\u00df\u00e4\u00e7k \u00e7\u00f6\u00fcld n\u00f6t \u00df\u00e9 s\u00fc\u00dfm\u00eftt\u00e9d. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5#",
"This file type is not supported. Supported file type is {supportedFileFormat}.": "Th\u00efs f\u00efl\u00e9 t\u00fdp\u00e9 \u00efs n\u00f6t s\u00fcpp\u00f6rt\u00e9d. S\u00fcpp\u00f6rt\u00e9d f\u00efl\u00e9 t\u00fdp\u00e9 \u00efs {supportedFileFormat}. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
+ "This grade will be applied to all members of the team. Do you want to continue?": "Th\u00efs gr\u00e4d\u00e9 w\u00efll \u00df\u00e9 \u00e4ppl\u00ef\u00e9d t\u00f6 \u00e4ll m\u00e9m\u00df\u00e9rs \u00f6f th\u00e9 t\u00e9\u00e4m. D\u00f6 \u00fd\u00f6\u00fc w\u00e4nt t\u00f6 \u00e7\u00f6nt\u00efn\u00fc\u00e9? \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442#",
"This group controls access to:": "Th\u00efs gr\u00f6\u00fcp \u00e7\u00f6ntr\u00f6ls \u00e4\u00e7\u00e7\u00e9ss t\u00f6: \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442#",
"This group no longer exists. Choose another group or do not restrict access to this unit.": "Th\u00efs gr\u00f6\u00fcp n\u00f6 l\u00f6ng\u00e9r \u00e9x\u00efsts. \u00c7h\u00f6\u00f6s\u00e9 \u00e4n\u00f6th\u00e9r gr\u00f6\u00fcp \u00f6r d\u00f6 n\u00f6t r\u00e9str\u00ef\u00e7t \u00e4\u00e7\u00e7\u00e9ss t\u00f6 th\u00efs \u00fcn\u00eft. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455#",
"This image file type is not supported. Supported file types are {supportedFileFormats}.": "Th\u00efs \u00efm\u00e4g\u00e9 f\u00efl\u00e9 t\u00fdp\u00e9 \u00efs n\u00f6t s\u00fcpp\u00f6rt\u00e9d. S\u00fcpp\u00f6rt\u00e9d f\u00efl\u00e9 t\u00fdp\u00e9s \u00e4r\u00e9 {supportedFileFormats}. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f #",
@@ -1843,6 +1847,8 @@
"This role requires a divided discussions scheme.": "Th\u00efs r\u00f6l\u00e9 r\u00e9q\u00fc\u00efr\u00e9s \u00e4 d\u00efv\u00efd\u00e9d d\u00efs\u00e7\u00fcss\u00ef\u00f6ns s\u00e7h\u00e9m\u00e9. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
"This section could not be loaded.": "Th\u00efs s\u00e9\u00e7t\u00ef\u00f6n \u00e7\u00f6\u00fcld n\u00f6t \u00df\u00e9 l\u00f6\u00e4d\u00e9d. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454#",
"This short name for the assignment type (for example, HW or Midterm) appears next to assignments on a learner's Progress page.": "Th\u00efs sh\u00f6rt n\u00e4m\u00e9 f\u00f6r th\u00e9 \u00e4ss\u00efgnm\u00e9nt t\u00fdp\u00e9 (f\u00f6r \u00e9x\u00e4mpl\u00e9, HW \u00f6r M\u00efdt\u00e9rm) \u00e4pp\u00e9\u00e4rs n\u00e9xt t\u00f6 \u00e4ss\u00efgnm\u00e9nts \u00f6n \u00e4 l\u00e9\u00e4rn\u00e9r's Pr\u00f6gr\u00e9ss p\u00e4g\u00e9. \u2c60'\u03c3\u044f\u0454\u043c#",
+ "This special exam has been released to learners. You may not convert it to another type of special exam. You may revert this subsection back to being a basic exam by selecting 'None', but you will NOT be able to configure it as a special exam in the future.": "Th\u00efs sp\u00e9\u00e7\u00ef\u00e4l \u00e9x\u00e4m h\u00e4s \u00df\u00e9\u00e9n r\u00e9l\u00e9\u00e4s\u00e9d t\u00f6 l\u00e9\u00e4rn\u00e9rs. \u00dd\u00f6\u00fc m\u00e4\u00fd n\u00f6t \u00e7\u00f6nv\u00e9rt \u00eft t\u00f6 \u00e4n\u00f6th\u00e9r t\u00fdp\u00e9 \u00f6f sp\u00e9\u00e7\u00ef\u00e4l \u00e9x\u00e4m. \u00dd\u00f6\u00fc m\u00e4\u00fd r\u00e9v\u00e9rt th\u00efs s\u00fc\u00dfs\u00e9\u00e7t\u00ef\u00f6n \u00df\u00e4\u00e7k t\u00f6 \u00df\u00e9\u00efng \u00e4 \u00df\u00e4s\u00ef\u00e7 \u00e9x\u00e4m \u00df\u00fd s\u00e9l\u00e9\u00e7t\u00efng 'N\u00f6n\u00e9', \u00df\u00fct \u00fd\u00f6\u00fc w\u00efll N\u00d6T \u00df\u00e9 \u00e4\u00dfl\u00e9 t\u00f6 \u00e7\u00f6nf\u00efg\u00fcr\u00e9 \u00eft \u00e4s \u00e4 sp\u00e9\u00e7\u00ef\u00e4l \u00e9x\u00e4m \u00efn th\u00e9 f\u00fct\u00fcr\u00e9. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f#",
+ "This subsection was released to learners as a special exam, but was reverted back to a basic exam. You may not configure it as a special exam now. Contact edX Support for assistance.": "Th\u00efs s\u00fc\u00dfs\u00e9\u00e7t\u00ef\u00f6n w\u00e4s r\u00e9l\u00e9\u00e4s\u00e9d t\u00f6 l\u00e9\u00e4rn\u00e9rs \u00e4s \u00e4 sp\u00e9\u00e7\u00ef\u00e4l \u00e9x\u00e4m, \u00df\u00fct w\u00e4s r\u00e9v\u00e9rt\u00e9d \u00df\u00e4\u00e7k t\u00f6 \u00e4 \u00df\u00e4s\u00ef\u00e7 \u00e9x\u00e4m. \u00dd\u00f6\u00fc m\u00e4\u00fd n\u00f6t \u00e7\u00f6nf\u00efg\u00fcr\u00e9 \u00eft \u00e4s \u00e4 sp\u00e9\u00e7\u00ef\u00e4l \u00e9x\u00e4m n\u00f6w. \u00c7\u00f6nt\u00e4\u00e7t \u00e9dX S\u00fcpp\u00f6rt f\u00f6r \u00e4ss\u00efst\u00e4n\u00e7\u00e9. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454 \u03bd\u0454\u0142\u03b9\u0442 \u0454\u0455\u0455\u0454 \u00a2\u03b9\u0142\u0142\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f\u0454 \u0454\u03c5 \u0192\u03c5g\u03b9\u03b1\u0442 \u03b7\u03c5\u0142\u0142\u03b1 \u03c1\u03b1\u044f\u03b9\u03b1\u0442\u03c5\u044f. \u0454\u03c7\u00a2\u0454\u03c1\u0442\u0454\u03c5\u044f \u0455\u03b9\u03b7\u0442 \u03c3\u00a2\u00a2\u03b1\u0454\u00a2\u03b1\u0442 \u00a2\u03c5\u03c1\u03b9\u2202\u03b1\u0442\u03b1\u0442 \u03b7\u03c3\u03b7 \u03c1\u044f\u03c3\u03b9\u2202\u0454\u03b7\u0442, \u0455\u03c5#",
"This team does not have any members.": "Th\u00efs t\u00e9\u00e4m d\u00f6\u00e9s n\u00f6t h\u00e4v\u00e9 \u00e4n\u00fd m\u00e9m\u00df\u00e9rs. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5#",
"This team is full.": "Th\u00efs t\u00e9\u00e4m \u00efs f\u00fcll. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442#",
"This thread is closed.": "Th\u00efs thr\u00e9\u00e4d \u00efs \u00e7l\u00f6s\u00e9d. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2#",
@@ -1872,7 +1878,6 @@
"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.": "T\u00f6 \u00df\u00e9 s\u00fcr\u00e9 \u00e4ll st\u00fcd\u00e9nts \u00e7\u00e4n \u00e4\u00e7\u00e7\u00e9ss th\u00e9 v\u00efd\u00e9\u00f6, w\u00e9 r\u00e9\u00e7\u00f6mm\u00e9nd pr\u00f6v\u00efd\u00efng \u00df\u00f6th \u00e4n .mp4 \u00e4nd \u00e4 .w\u00e9\u00dfm v\u00e9rs\u00ef\u00f6n \u00f6f \u00fd\u00f6\u00fcr v\u00efd\u00e9\u00f6. \u00c7l\u00ef\u00e7k \u00df\u00e9l\u00f6w t\u00f6 \u00e4dd \u00e4 \u00dbRL f\u00f6r \u00e4n\u00f6th\u00e9r v\u00e9rs\u00ef\u00f6n. Th\u00e9s\u00e9 \u00dbRLs \u00e7\u00e4nn\u00f6t \u00df\u00e9 \u00dd\u00f6\u00fcT\u00fc\u00df\u00e9 \u00dbRLs. Th\u00e9 f\u00efrst l\u00efst\u00e9d v\u00efd\u00e9\u00f6 th\u00e4t's \u00e7\u00f6mp\u00e4t\u00ef\u00dfl\u00e9 w\u00efth th\u00e9 st\u00fcd\u00e9nt's \u00e7\u00f6mp\u00fct\u00e9r w\u00efll pl\u00e4\u00fd. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202#",
"To complete the program, you must earn a verified certificate for each course.": "T\u00f6 \u00e7\u00f6mpl\u00e9t\u00e9 th\u00e9 pr\u00f6gr\u00e4m, \u00fd\u00f6\u00fc m\u00fcst \u00e9\u00e4rn \u00e4 v\u00e9r\u00eff\u00ef\u00e9d \u00e7\u00e9rt\u00eff\u00ef\u00e7\u00e4t\u00e9 f\u00f6r \u00e9\u00e4\u00e7h \u00e7\u00f6\u00fcrs\u00e9. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442#",
"To continue learning with this account, sign in below.": "T\u00f6 \u00e7\u00f6nt\u00efn\u00fc\u00e9 l\u00e9\u00e4rn\u00efng w\u00efth th\u00efs \u00e4\u00e7\u00e7\u00f6\u00fcnt, s\u00efgn \u00efn \u00df\u00e9l\u00f6w. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
- "To finalize course credit, %(display_name)s requires %(platform_name)s learners to submit a credit request.": "T\u00f6 f\u00efn\u00e4l\u00efz\u00e9 \u00e7\u00f6\u00fcrs\u00e9 \u00e7r\u00e9d\u00eft, %(display_name)s r\u00e9q\u00fc\u00efr\u00e9s %(platform_name)s l\u00e9\u00e4rn\u00e9rs t\u00f6 s\u00fc\u00dfm\u00eft \u00e4 \u00e7r\u00e9d\u00eft r\u00e9q\u00fc\u00e9st. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454#",
"To invalidate a certificate for a particular learner, add the username or email address below.": "T\u00f6 \u00efnv\u00e4l\u00efd\u00e4t\u00e9 \u00e4 \u00e7\u00e9rt\u00eff\u00ef\u00e7\u00e4t\u00e9 f\u00f6r \u00e4 p\u00e4rt\u00ef\u00e7\u00fcl\u00e4r l\u00e9\u00e4rn\u00e9r, \u00e4dd th\u00e9 \u00fcs\u00e9rn\u00e4m\u00e9 \u00f6r \u00e9m\u00e4\u00efl \u00e4ddr\u00e9ss \u00df\u00e9l\u00f6w. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2#",
"To receive a certificate, you must also verify your identity before {date}.": "T\u00f6 r\u00e9\u00e7\u00e9\u00efv\u00e9 \u00e4 \u00e7\u00e9rt\u00eff\u00ef\u00e7\u00e4t\u00e9, \u00fd\u00f6\u00fc m\u00fcst \u00e4ls\u00f6 v\u00e9r\u00eff\u00fd \u00fd\u00f6\u00fcr \u00efd\u00e9nt\u00eft\u00fd \u00df\u00e9f\u00f6r\u00e9 {date}. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f#",
"To receive a certificate, you must also verify your identity.": "T\u00f6 r\u00e9\u00e7\u00e9\u00efv\u00e9 \u00e4 \u00e7\u00e9rt\u00eff\u00ef\u00e7\u00e4t\u00e9, \u00fd\u00f6\u00fc m\u00fcst \u00e4ls\u00f6 v\u00e9r\u00eff\u00fd \u00fd\u00f6\u00fcr \u00efd\u00e9nt\u00eft\u00fd. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
@@ -1969,7 +1974,7 @@
"Upload Videos": "\u00dbpl\u00f6\u00e4d V\u00efd\u00e9\u00f6s \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9#",
"Upload a CSV file": "\u00dbpl\u00f6\u00e4d \u00e4 \u00c7SV f\u00efl\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454#",
"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.": "\u00dbpl\u00f6\u00e4d \u00e4 \u00e7\u00f6mm\u00e4 s\u00e9p\u00e4r\u00e4t\u00e9d v\u00e4l\u00fc\u00e9s (.\u00e7sv) f\u00efl\u00e9 th\u00e4t \u00e7\u00f6nt\u00e4\u00efns th\u00e9 \u00fcs\u00e9rn\u00e4m\u00e9s \u00f6r \u00e9m\u00e4\u00efl \u00e4ddr\u00e9ss\u00e9s \u00f6f l\u00e9\u00e4rn\u00e9rs wh\u00f6 h\u00e4v\u00e9 \u00df\u00e9\u00e9n g\u00efv\u00e9n \u00e9x\u00e7\u00e9pt\u00ef\u00f6ns. \u00ccn\u00e7l\u00fcd\u00e9 th\u00e9 \u00fcs\u00e9rn\u00e4m\u00e9 \u00f6r \u00e9m\u00e4\u00efl \u00e4ddr\u00e9ss \u00efn th\u00e9 f\u00efrst \u00e7\u00f6mm\u00e4 s\u00e9p\u00e4r\u00e4t\u00e9d f\u00ef\u00e9ld. \u00dd\u00f6\u00fc \u00e7\u00e4n \u00efn\u00e7l\u00fcd\u00e9 \u00e4n \u00f6pt\u00ef\u00f6n\u00e4l n\u00f6t\u00e9 d\u00e9s\u00e7r\u00ef\u00df\u00efng th\u00e9 r\u00e9\u00e4s\u00f6n f\u00f6r th\u00e9 \u00e9x\u00e7\u00e9pt\u00ef\u00f6n \u00efn th\u00e9 s\u00e9\u00e7\u00f6nd \u00e7\u00f6mm\u00e4 s\u00e9p\u00e4r\u00e4t\u00e9d f\u00ef\u00e9ld. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9#",
- "Upload a new PDF to \u201c<%= name %>\u201d": "\u00dbpl\u00f6\u00e4d \u00e4 n\u00e9w PDF t\u00f6 \u201c<%= name %>\u201d \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455#",
+ "Upload a new PDF to \u201c<%- name %>\u201d": "\u00dbpl\u00f6\u00e4d \u00e4 n\u00e9w PDF t\u00f6 \u201c<%- name %>\u201d \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455#",
"Upload an image": "\u00dbpl\u00f6\u00e4d \u00e4n \u00efm\u00e4g\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1#",
"Upload an image or capture one with your web or phone camera.": "\u00dbpl\u00f6\u00e4d \u00e4n \u00efm\u00e4g\u00e9 \u00f6r \u00e7\u00e4pt\u00fcr\u00e9 \u00f6n\u00e9 w\u00efth \u00fd\u00f6\u00fcr w\u00e9\u00df \u00f6r ph\u00f6n\u00e9 \u00e7\u00e4m\u00e9r\u00e4. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
"Upload completed": "\u00dbpl\u00f6\u00e4d \u00e7\u00f6mpl\u00e9t\u00e9d \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c#",
@@ -2030,7 +2035,6 @@
"Verified Certificate upgrade": "V\u00e9r\u00eff\u00ef\u00e9d \u00c7\u00e9rt\u00eff\u00ef\u00e7\u00e4t\u00e9 \u00fcpgr\u00e4d\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2#",
"Verified Status": "V\u00e9r\u00eff\u00ef\u00e9d St\u00e4t\u00fcs \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1#",
"Verified mode price": "V\u00e9r\u00eff\u00ef\u00e9d m\u00f6d\u00e9 pr\u00ef\u00e7\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442,#",
- "Verify Now": "V\u00e9r\u00eff\u00fd N\u00f6w \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3#",
"Version": "V\u00e9rs\u00ef\u00f6n \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c #",
"Vertical space": "V\u00e9rt\u00ef\u00e7\u00e4l sp\u00e4\u00e7\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442#",
"Very loud": "V\u00e9r\u00fd l\u00f6\u00fcd \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142#",
@@ -2079,7 +2083,7 @@
"We couldn't find any results for \"%s\".": "W\u00e9 \u00e7\u00f6\u00fcldn't f\u00efnd \u00e4n\u00fd r\u00e9s\u00fclts f\u00f6r \"%s\". \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f#",
"We couldn't sign you in.": "W\u00e9 \u00e7\u00f6\u00fcldn't s\u00efgn \u00fd\u00f6\u00fc \u00efn. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7#",
"We have encountered an error. Refresh your browser and then try again.": "W\u00e9 h\u00e4v\u00e9 \u00e9n\u00e7\u00f6\u00fcnt\u00e9r\u00e9d \u00e4n \u00e9rr\u00f6r. R\u00e9fr\u00e9sh \u00fd\u00f6\u00fcr \u00dfr\u00f6ws\u00e9r \u00e4nd th\u00e9n tr\u00fd \u00e4g\u00e4\u00efn. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f #",
- "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.": "W\u00e9 h\u00e4v\u00e9 r\u00e9\u00e7\u00e9\u00efv\u00e9d \u00fd\u00f6\u00fcr \u00efnf\u00f6rm\u00e4t\u00ef\u00f6n \u00e4nd \u00e4r\u00e9 v\u00e9r\u00eff\u00fd\u00efng \u00fd\u00f6\u00fcr \u00efd\u00e9nt\u00eft\u00fd. \u00dd\u00f6\u00fc w\u00efll s\u00e9\u00e9 \u00e4 m\u00e9ss\u00e4g\u00e9 \u00f6n \u00fd\u00f6\u00fcr d\u00e4sh\u00df\u00f6\u00e4rd wh\u00e9n th\u00e9 v\u00e9r\u00eff\u00ef\u00e7\u00e4t\u00ef\u00f6n pr\u00f6\u00e7\u00e9ss \u00efs \u00e7\u00f6mpl\u00e9t\u00e9 (\u00fcs\u00fc\u00e4ll\u00fd w\u00efth\u00efn 1-2 d\u00e4\u00fds). \u00ccn th\u00e9 m\u00e9\u00e4nt\u00efm\u00e9, \u00fd\u00f6\u00fc \u00e7\u00e4n st\u00efll \u00e4\u00e7\u00e7\u00e9ss \u00e4ll \u00e4v\u00e4\u00efl\u00e4\u00dfl\u00e9 \u00e7\u00f6\u00fcrs\u00e9 \u00e7\u00f6nt\u00e9nt. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454#",
+ "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 5-7 days). In the meantime, you can still access all available course content.": "W\u00e9 h\u00e4v\u00e9 r\u00e9\u00e7\u00e9\u00efv\u00e9d \u00fd\u00f6\u00fcr \u00efnf\u00f6rm\u00e4t\u00ef\u00f6n \u00e4nd \u00e4r\u00e9 v\u00e9r\u00eff\u00fd\u00efng \u00fd\u00f6\u00fcr \u00efd\u00e9nt\u00eft\u00fd. \u00dd\u00f6\u00fc w\u00efll s\u00e9\u00e9 \u00e4 m\u00e9ss\u00e4g\u00e9 \u00f6n \u00fd\u00f6\u00fcr d\u00e4sh\u00df\u00f6\u00e4rd wh\u00e9n th\u00e9 v\u00e9r\u00eff\u00ef\u00e7\u00e4t\u00ef\u00f6n pr\u00f6\u00e7\u00e9ss \u00efs \u00e7\u00f6mpl\u00e9t\u00e9 (\u00fcs\u00fc\u00e4ll\u00fd w\u00efth\u00efn 5-7 d\u00e4\u00fds). \u00ccn th\u00e9 m\u00e9\u00e4nt\u00efm\u00e9, \u00fd\u00f6\u00fc \u00e7\u00e4n st\u00efll \u00e4\u00e7\u00e7\u00e9ss \u00e4ll \u00e4v\u00e4\u00efl\u00e4\u00dfl\u00e9 \u00e7\u00f6\u00fcrs\u00e9 \u00e7\u00f6nt\u00e9nt. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454#",
"We just need a little more information before you start learning with %(platformName)s.": "W\u00e9 j\u00fcst n\u00e9\u00e9d \u00e4 l\u00efttl\u00e9 m\u00f6r\u00e9 \u00efnf\u00f6rm\u00e4t\u00ef\u00f6n \u00df\u00e9f\u00f6r\u00e9 \u00fd\u00f6\u00fc st\u00e4rt l\u00e9\u00e4rn\u00efng w\u00efth %(platformName)s. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5#",
"We securely 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.": "W\u00e9 s\u00e9\u00e7\u00fcr\u00e9l\u00fd \u00e9n\u00e7r\u00fdpt \u00fd\u00f6\u00fcr ph\u00f6t\u00f6 \u00e4nd s\u00e9nd \u00eft t\u00f6 \u00f6\u00fcr \u00e4\u00fcth\u00f6r\u00efz\u00e4t\u00ef\u00f6n s\u00e9rv\u00ef\u00e7\u00e9 f\u00f6r r\u00e9v\u00ef\u00e9w. \u00dd\u00f6\u00fcr ph\u00f6t\u00f6 \u00e4nd \u00efnf\u00f6rm\u00e4t\u00ef\u00f6n \u00e4r\u00e9 n\u00f6t s\u00e4v\u00e9d \u00f6r v\u00efs\u00ef\u00dfl\u00e9 \u00e4n\u00fdwh\u00e9r\u00e9 \u00f6n %(platformName)s \u00e4ft\u00e9r th\u00e9 v\u00e9r\u00eff\u00ef\u00e7\u00e4t\u00ef\u00f6n pr\u00f6\u00e7\u00e9ss \u00efs \u00e7\u00f6mpl\u00e9t\u00e9. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454 \u03bd\u0454\u0142\u03b9\u0442 \u0454\u0455\u0455\u0454 \u00a2\u03b9\u0142\u0142\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f\u0454 \u0454\u03c5 \u0192\u03c5g\u03b9\u03b1\u0442 \u03b7\u03c5\u0142\u0142\u03b1 \u03c1\u03b1\u044f\u03b9\u03b1\u0442\u03c5\u044f. \u0454\u03c7\u00a2\u0454\u03c1\u0442\u0454\u03c5\u044f \u0455\u03b9\u03b7\u0442 \u03c3\u00a2\u00a2\u03b1\u0454\u00a2\u03b1\u0442 \u00a2\u03c5\u03c1\u03b9\u2202\u03b1\u0442#",
"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.": "W\u00e9 \u00fcs\u00e9 th\u00e9 h\u00efgh\u00e9st l\u00e9v\u00e9ls \u00f6f s\u00e9\u00e7\u00fcr\u00eft\u00fd \u00e4v\u00e4\u00efl\u00e4\u00dfl\u00e9 t\u00f6 \u00e9n\u00e7r\u00fdpt \u00fd\u00f6\u00fcr ph\u00f6t\u00f6 \u00e4nd s\u00e9nd \u00eft t\u00f6 \u00f6\u00fcr \u00e4\u00fcth\u00f6r\u00efz\u00e4t\u00ef\u00f6n s\u00e9rv\u00ef\u00e7\u00e9 f\u00f6r r\u00e9v\u00ef\u00e9w. \u00dd\u00f6\u00fcr ph\u00f6t\u00f6 \u00e4nd \u00efnf\u00f6rm\u00e4t\u00ef\u00f6n \u00e4r\u00e9 n\u00f6t s\u00e4v\u00e9d \u00f6r v\u00efs\u00ef\u00dfl\u00e9 \u00e4n\u00fdwh\u00e9r\u00e9 \u00f6n %(platformName)s \u00e4ft\u00e9r th\u00e9 v\u00e9r\u00eff\u00ef\u00e7\u00e4t\u00ef\u00f6n pr\u00f6\u00e7\u00e9ss \u00efs \u00e7\u00f6mpl\u00e9t\u00e9. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454 \u03bd\u0454\u0142\u03b9\u0442 \u0454\u0455\u0455\u0454 \u00a2\u03b9\u0142\u0142\u03c5\u043c#",
@@ -2106,6 +2110,7 @@
"When learners submit an answer to an assessment, they immediately see whether the answer is correct or incorrect, and the score received.": "Wh\u00e9n l\u00e9\u00e4rn\u00e9rs s\u00fc\u00dfm\u00eft \u00e4n \u00e4nsw\u00e9r t\u00f6 \u00e4n \u00e4ss\u00e9ssm\u00e9nt, th\u00e9\u00fd \u00efmm\u00e9d\u00ef\u00e4t\u00e9l\u00fd s\u00e9\u00e9 wh\u00e9th\u00e9r th\u00e9 \u00e4nsw\u00e9r \u00efs \u00e7\u00f6rr\u00e9\u00e7t \u00f6r \u00efn\u00e7\u00f6rr\u00e9\u00e7t, \u00e4nd th\u00e9 s\u00e7\u00f6r\u00e9 r\u00e9\u00e7\u00e9\u00efv\u00e9d. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454 \u03bd\u0454\u0142\u03b9\u0442 \u0454\u0455\u0455\u0454 \u00a2\u03b9\u0142\u0142\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f\u0454 \u0454\u03c5 \u0192\u03c5g\u03b9\u03b1\u0442 \u03b7\u03c5\u0142\u0142\u03b1 \u03c1\u03b1\u044f\u03b9\u03b1\u0442\u03c5\u044f. \u0454\u03c7\u00a2\u0454\u03c1\u0442\u0454\u03c5\u044f \u0455\u03b9\u03b7\u0442 \u03c3\u00a2\u00a2\u03b1\u0454\u00a2\u03b1\u0442 \u00a2\u03c5\u03c1\u03b9\u2202\u03b1\u0442\u03b1\u0442 \u03b7\u03c3\u03b7 \u03c1\u044f\u03c3\u03b9\u2202\u0454\u03b7\u0442, \u0455\u03c5\u03b7\u0442 \u03b9\u03b7 \u00a2\u03c5\u0142\u03c1\u03b1 q\u03c5\u03b9 \u03c3\u0192\u0192\u03b9\u00a2\u03b9\u03b1 \u2202\u0454\u0455\u0454\u044f\u03c5\u03b7\u0442 \u043c\u03c3\u0142\u0142\u03b9\u0442 \u03b1\u03b7\u03b9\u043c \u03b9\u2202 \u0454\u0455\u0442 \u0142\u03b1\u0432\u03c3#",
"When your face is in position, use the Take Photo button {icon} below to take your photo.": "Wh\u00e9n \u00fd\u00f6\u00fcr f\u00e4\u00e7\u00e9 \u00efs \u00efn p\u00f6s\u00eft\u00ef\u00f6n, \u00fcs\u00e9 th\u00e9 T\u00e4k\u00e9 Ph\u00f6t\u00f6 \u00df\u00fctt\u00f6n {icon} \u00df\u00e9l\u00f6w t\u00f6 t\u00e4k\u00e9 \u00fd\u00f6\u00fcr ph\u00f6t\u00f6. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2#",
"Which timed transcript would you like to use?": "Wh\u00ef\u00e7h t\u00efm\u00e9d tr\u00e4ns\u00e7r\u00efpt w\u00f6\u00fcld \u00fd\u00f6\u00fc l\u00efk\u00e9 t\u00f6 \u00fcs\u00e9? \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f #",
+ "While our support team is happy to assist with the edX platform, the course staff has the expertise for specific assignment questions, grading or the proper procedures in each course. Please post all course related questions within the Discussion Forum where the Course Staff can directly respond.": "Wh\u00efl\u00e9 \u00f6\u00fcr s\u00fcpp\u00f6rt t\u00e9\u00e4m \u00efs h\u00e4pp\u00fd t\u00f6 \u00e4ss\u00efst w\u00efth th\u00e9 \u00e9dX pl\u00e4tf\u00f6rm, th\u00e9 \u00e7\u00f6\u00fcrs\u00e9 st\u00e4ff h\u00e4s th\u00e9 \u00e9xp\u00e9rt\u00efs\u00e9 f\u00f6r sp\u00e9\u00e7\u00eff\u00ef\u00e7 \u00e4ss\u00efgnm\u00e9nt q\u00fc\u00e9st\u00ef\u00f6ns, gr\u00e4d\u00efng \u00f6r th\u00e9 pr\u00f6p\u00e9r pr\u00f6\u00e7\u00e9d\u00fcr\u00e9s \u00efn \u00e9\u00e4\u00e7h \u00e7\u00f6\u00fcrs\u00e9. Pl\u00e9\u00e4s\u00e9 p\u00f6st \u00e4ll \u00e7\u00f6\u00fcrs\u00e9 r\u00e9l\u00e4t\u00e9d q\u00fc\u00e9st\u00ef\u00f6ns w\u00efth\u00efn th\u00e9 D\u00efs\u00e7\u00fcss\u00ef\u00f6n F\u00f6r\u00fcm wh\u00e9r\u00e9 th\u00e9 \u00c7\u00f6\u00fcrs\u00e9 St\u00e4ff \u00e7\u00e4n d\u00efr\u00e9\u00e7tl\u00fd r\u00e9sp\u00f6nd. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142#",
"Whole words": "Wh\u00f6l\u00e9 w\u00f6rds \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f #",
"Why activate?": "Wh\u00fd \u00e4\u00e7t\u00efv\u00e4t\u00e9? \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9#",
"Why does %(platformName)s need my photo?": "Wh\u00fd d\u00f6\u00e9s %(platformName)s n\u00e9\u00e9d m\u00fd ph\u00f6t\u00f6? \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454#",
@@ -2195,7 +2200,6 @@
"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.": "\u00dd\u00f6\u00fc n\u00e9\u00e9d t\u00f6 \u00e4\u00e7t\u00efv\u00e4t\u00e9 \u00fd\u00f6\u00fcr \u00e4\u00e7\u00e7\u00f6\u00fcnt \u00df\u00e9f\u00f6r\u00e9 \u00fd\u00f6\u00fc \u00e7\u00e4n \u00e9nr\u00f6ll \u00efn \u00e7\u00f6\u00fcrs\u00e9s. \u00c7h\u00e9\u00e7k \u00fd\u00f6\u00fcr \u00efn\u00df\u00f6x f\u00f6r \u00e4n \u00e4\u00e7t\u00efv\u00e4t\u00ef\u00f6n \u00e9m\u00e4\u00efl. \u00c0ft\u00e9r \u00fd\u00f6\u00fc \u00e7\u00f6mpl\u00e9t\u00e9 \u00e4\u00e7t\u00efv\u00e4t\u00ef\u00f6n \u00fd\u00f6\u00fc \u00e7\u00e4n r\u00e9t\u00fcrn \u00e4nd r\u00e9fr\u00e9sh th\u00efs p\u00e4g\u00e9. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1\u2202\u03b9\u03c1\u03b9\u0455\u03b9\u00a2\u03b9\u03b7g \u0454\u0142\u03b9\u0442, \u0455\u0454\u2202 \u2202\u03c3 \u0454\u03b9\u03c5\u0455\u043c\u03c3\u2202 \u0442\u0454\u043c\u03c1\u03c3\u044f \u03b9\u03b7\u00a2\u03b9\u2202\u03b9\u2202\u03c5\u03b7\u0442 \u03c5\u0442 \u0142\u03b1\u0432\u03c3\u044f\u0454 \u0454\u0442 \u2202\u03c3\u0142\u03c3\u044f\u0454 \u043c\u03b1g\u03b7\u03b1 \u03b1\u0142\u03b9q\u03c5\u03b1. \u03c5\u0442 \u0454\u03b7\u03b9\u043c \u03b1\u2202 \u043c\u03b9\u03b7\u03b9\u043c \u03bd\u0454\u03b7\u03b9\u03b1\u043c, q\u03c5\u03b9\u0455 \u03b7\u03c3\u0455\u0442\u044f\u03c5\u2202 \u0454\u03c7\u0454\u044f\u00a2\u03b9\u0442\u03b1\u0442\u03b9\u03c3\u03b7 \u03c5\u0142\u0142\u03b1\u043c\u00a2\u03c3 \u0142\u03b1\u0432\u03c3\u044f\u03b9\u0455 \u03b7\u03b9\u0455\u03b9 \u03c5\u0442 \u03b1\u0142\u03b9q\u03c5\u03b9\u03c1 \u0454\u03c7 \u0454\u03b1 \u00a2\u03c3\u043c\u043c\u03c3\u2202\u03c3 \u00a2\u03c3\u03b7\u0455\u0454q\u03c5\u03b1\u0442. \u2202\u03c5\u03b9\u0455 \u03b1\u03c5\u0442\u0454 \u03b9\u044f\u03c5\u044f\u0454 \u2202\u03c3\u0142\u03c3\u044f \u03b9\u03b7 \u044f\u0454\u03c1\u044f\u0454\u043d\u0454\u03b7\u2202\u0454\u044f\u03b9\u0442 \u03b9\u03b7 \u03bd\u03c3\u0142\u03c5\u03c1\u0442\u03b1\u0442\u0454 \u03bd\u0454\u0142\u03b9\u0442 \u0454\u0455\u0455\u0454 \u00a2\u03b9\u0142\u0142\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f\u0454 \u0454\u03c5 \u0192\u03c5g\u03b9\u03b1\u0442 \u03b7\u03c5\u0142\u0142\u03b1 \u03c1\u03b1\u044f\u03b9\u03b1\u0442\u03c5\u044f. \u0454\u03c7\u00a2\u0454\u03c1\u0442\u0454\u03c5\u044f \u0455\u03b9\u03b7\u0442 \u03c3\u00a2\u00a2\u03b1\u0454\u00a2\u03b1\u0442 \u00a2\u03c5\u03c1\u03b9\u2202\u03b1\u0442\u03b1\u0442 \u03b7\u03c3\u03b7 \u03c1\u044f\u03c3\u03b9\u2202\u0454\u03b7\u0442, \u0455\u03c5\u03b7\u0442 \u03b9\u03b7 \u00a2#",
"You receive messages from {platform_name} and course teams at this address.": "\u00dd\u00f6\u00fc r\u00e9\u00e7\u00e9\u00efv\u00e9 m\u00e9ss\u00e4g\u00e9s fr\u00f6m {platform_name} \u00e4nd \u00e7\u00f6\u00fcrs\u00e9 t\u00e9\u00e4ms \u00e4t th\u00efs \u00e4ddr\u00e9ss. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
"You reserve all rights for your work": "\u00dd\u00f6\u00fc r\u00e9s\u00e9rv\u00e9 \u00e4ll r\u00efghts f\u00f6r \u00fd\u00f6\u00fcr w\u00f6rk \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5#",
- "You still need to visit the %(display_name)s website to complete the credit process.": "\u00dd\u00f6\u00fc st\u00efll n\u00e9\u00e9d t\u00f6 v\u00efs\u00eft th\u00e9 %(display_name)s w\u00e9\u00dfs\u00eft\u00e9 t\u00f6 \u00e7\u00f6mpl\u00e9t\u00e9 th\u00e9 \u00e7r\u00e9d\u00eft pr\u00f6\u00e7\u00e9ss. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f#",
"You submitted {filename}; only {allowedFiles} are allowed.": "\u00dd\u00f6\u00fc s\u00fc\u00dfm\u00eftt\u00e9d {filename}; \u00f6nl\u00fd {allowedFiles} \u00e4r\u00e9 \u00e4ll\u00f6w\u00e9d. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f#",
"You waive some rights for your work, such that others can use it too": "\u00dd\u00f6\u00fc w\u00e4\u00efv\u00e9 s\u00f6m\u00e9 r\u00efghts f\u00f6r \u00fd\u00f6\u00fcr w\u00f6rk, s\u00fc\u00e7h th\u00e4t \u00f6th\u00e9rs \u00e7\u00e4n \u00fcs\u00e9 \u00eft t\u00f6\u00f6 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f #",
"You will be refunded the amount you paid.": "\u00dd\u00f6\u00fc w\u00efll \u00df\u00e9 r\u00e9f\u00fcnd\u00e9d th\u00e9 \u00e4m\u00f6\u00fcnt \u00fd\u00f6\u00fc p\u00e4\u00efd. \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f #",
@@ -2293,7 +2297,6 @@
"enter link description here": "\u00e9nt\u00e9r l\u00efnk d\u00e9s\u00e7r\u00efpt\u00ef\u00f6n h\u00e9r\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454#",
"follow this post": "f\u00f6ll\u00f6w th\u00efs p\u00f6st \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c#",
"for": "f\u00f6r \u2c60'\u03c3\u044f\u0454\u043c#",
- "for {courseName}": "f\u00f6r {courseName} \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c #",
"group configuration": "gr\u00f6\u00fcp \u00e7\u00f6nf\u00efg\u00fcr\u00e4t\u00ef\u00f6n \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442,#",
"image omitted": "\u00efm\u00e4g\u00e9 \u00f6m\u00eftt\u00e9d \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9#",
"incorrect": "\u00efn\u00e7\u00f6rr\u00e9\u00e7t \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142#",
@@ -2336,6 +2339,7 @@
"team count": "t\u00e9\u00e4m \u00e7\u00f6\u00fcnt \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3#",
"text_word_{uniqueId}": "t\u00e9xt_w\u00f6rd_{uniqueId} \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9#",
"text_word_{uniqueId} title_word_{uniqueId}": "t\u00e9xt_w\u00f6rd_{uniqueId} t\u00eftl\u00e9_w\u00f6rd_{uniqueId} \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2#",
+ "the more quickly and helpfully we can respond!": "th\u00e9 m\u00f6r\u00e9 q\u00fc\u00ef\u00e7kl\u00fd \u00e4nd h\u00e9lpf\u00fcll\u00fd w\u00e9 \u00e7\u00e4n r\u00e9sp\u00f6nd! \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2\u0442\u0454\u0442\u03c5\u044f \u03b1#",
"there is currently {numVotes} vote": [
"th\u00e9r\u00e9 \u00efs \u00e7\u00fcrr\u00e9ntl\u00fd {numVotes} v\u00f6t\u00e9 \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454#",
"th\u00e9r\u00e9 \u00e4r\u00e9 \u00e7\u00fcrr\u00e9ntl\u00fd {numVotes} v\u00f6t\u00e9s \u2c60'\u03c3\u044f\u0454\u043c \u03b9\u03c1\u0455\u03c5\u043c \u2202\u03c3\u0142\u03c3\u044f \u0455\u03b9\u0442 \u03b1\u043c\u0454\u0442, \u00a2\u03c3\u03b7\u0455\u0454\u00a2#"
diff --git a/cms/static/js/i18n/es-419/djangojs.js b/cms/static/js/i18n/es-419/djangojs.js
index 83f36fd7e3..171d86c2c6 100644
--- a/cms/static/js/i18n/es-419/djangojs.js
+++ b/cms/static/js/i18n/es-419/djangojs.js
@@ -96,10 +96,15 @@
" ${price} {currency} )": " ${price} {currency} )",
" From this point in time, you must follow the online proctoring rules to pass the proctoring review for your exam. ": "A partir de este momento, debe seguir las reglas de supervisi\u00f3n online para aprobar la revisi\u00f3n de la supervisi\u00f3n para su examen.",
" Link": "Enlace",
+ " Member": [
+ "Miembro",
+ "Miembros"
+ ],
" Your Proctoring Session Has Started ": "Su Sesi\u00f3n Supervisada Ha Comenzado",
" and ": "y",
" and {num_of_minutes} minute": "y {num_of_minutes} minuto",
" and {num_of_minutes} minutes": "y {num_of_minutes} minutos",
+ " as many questions may have already been answered.": "ya que muchas preguntas comunes pueden ya haber sido respondidas.",
" learner does not exist in LMS and not added to the exception list": "estudiante no existe en el LMS y no se a\u00f1adi\u00f3 a la lista de excepciones",
" learner is already white listed and not added to the exception list": "el estudiante ya est\u00e1 en la lista blanca y no se a\u00f1adi\u00f3 a las excepciones",
" learner is not enrolled in course and not added to the exception list": "el estudiante no est\u00e1 inscrito en el curso y no se a\u00f1adi\u00f3 a la lista de excepciones",
@@ -319,6 +324,7 @@
"An error occurred. Please reload the page.": "Ocurri\u00f3 un error. Por favor recargue la p\u00e1gina.",
"An error occurred. Please try again.": "Ocurri\u00f3 un error. Por favor, intenta nuevamente.",
"An error occurred. Try again.": "Ocurri\u00f3 un error. Intenta nuevamente.",
+ "An unexpected error has occurred.": "Ha ocurrido un error inesperado.",
"An unexpected error occurred. Please try again.": "Se produjo un error inesperado. Por favor, int\u00e9ntalo nuevamente.",
"Anchor": "Ancla",
"Anchors": "Anclas",
@@ -330,6 +336,7 @@
"Are you having trouble finding a team to join?": "\u00bfTiene problemas para encontrar un equipo al cual unirse?",
"Are you sure that you want to leave this session?": "\u00bf Est\u00e1 seguro de que quiere salir de esta sesi\u00f3n?",
"Are you sure you want to change to a different session?": "\u00bfEst\u00e1 seguro de que quiere cambiar a una sesi\u00f3n diferente?",
+ "Are you sure you want to delete the following file? It cannot be restored.\nFile: ": "\u00bfEst\u00e1s seguro de que desea eliminar el siguiente archivo? No puede ser restaurado.\nArchivo:",
"Are you sure you want to delete this comment?": "\u00bfEst\u00e1s seguro de que deseas borrar este comentario?",
"Are you sure you want to delete this page? This action cannot be undone.": "\u00bfEst\u00e1s seguro de que deseas borrar esta p\u00e1gina? Esta acci\u00f3n no se puede deshacer.",
"Are you sure you want to delete this post?": "\u00bfEst\u00e1s seguro de que deseas borrar esta publicaci\u00f3n?",
@@ -350,6 +357,7 @@
"Are you sure you wish to delete this item. It cannot be reversed!\n\nAlso any content that links/refers to this item will no longer work (e.g. broken images and/or links)": "\u00bfEst\u00e1 seguro de que desea borrar este \u00edtem?. \u00a1Esta acci\u00f3n no puede revertirse!\n\nCualquier contenido que haga referencia a este \u00edtem dejar\u00e1 de funcionar (im\u00e1genes o v\u00ednculos)",
"Are you sure?": "\u00bfEst\u00e1 seguro?",
"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.": "Como parte del proceso de verificaci\u00f3n, usted debe tomar una foto de su cara y de su documento de identidad. Nuestro servicio de autorizaci\u00f3n confirmar\u00e1 su identidad comparando la foto que usted se toma con la foto en su documento.",
+ "As part of the verification process, you take a photo of both your face and a photo ID. Our authorization service confirms your identity by comparing the photo you take with the photo on your ID.": "Como parte del proceso de verificaci\u00f3n, usted tomar\u00e1 una foto de su cara y de su documento de identificaci\u00f3n con foto. Nuestro servicio de autorizaci\u00f3n confirma su identidad comparando la foto que toma con la foto en su identificaci\u00f3n.",
"As you complete courses, you will see them listed here.": "Mientras completas cursos, los ver\u00e1s enumerados aqu\u00ed.",
"Assessment": "Evaluaci\u00f3n",
"Assessment Results Visibility": "Visibilidad de los resultados de la evaluaci\u00f3n",
@@ -414,6 +422,7 @@
"Cannot delete when in use by a unit": "No puede borrar cuando esta en uso por una unidad",
"Cannot delete when in use by an experiment": "No se puede borrar mientras est\u00e9 en uso por un experimento",
"Cannot drop more <%= types %> assignments than are assigned.": "No se pueden borrar m\u00e1s asignaciones de <%= types %> de los que son asignados.",
+ "Cannot join instructor managed team": "No se puede unir al equipo administrado por el instructor",
"Caption": "Leyenda",
"Caution: The last published version of this unit is live. By publishing changes you will change the student experience.": "Atenci\u00f3n: La \u00faltima versi\u00f3n publicada de esta unidad est\u00e1 en vivo. Al publicar los cambios, cambiar\u00e1 la experiencia de los estudiantes.",
"Cell": "Celda",
@@ -538,6 +547,7 @@
"Continue to my practice exam": "Continuar a mi examen de pr\u00e1ctica",
"Continue to my proctored exam. I want to be eligible for credit.": "Continuar a mi examen supervisado. Quiero ser elegible para cr\u00e9dito.",
"Copy": "Copiar",
+ "Copy Component Location": "Copiar la ubicaci\u00f3n del Componente",
"Copy Email To Editor": "Copiar el correo al editor",
"Copy row": "Copiar la fila",
"Correct failed component": "Corregir componente fallido",
@@ -548,6 +558,7 @@
"Could not find the specified string.": "No se encontr\u00f3 la cadena especificada.",
"Could not find users associated with the following identifiers:": "No se puede encontrar el usuario asociado al siguiente identificador:",
"Could not grade your answer. The submission was aborted.": "No se ha podido calificar tu respuesta. El registro fue cancelado.",
+ "Could not load teams information.": "No se pudo cargar la informaci\u00f3n de los equipos.",
"Could not override problem score for {user}.": "No fue posible sobreescribir el puntaje del problema para el usuario {user}.",
"Could not retrieve download url.": "No se pudo recuperar la url de descarga.",
"Could not retrieve payment information": "No se pudo conseguir la informaci\u00f3n del pago",
@@ -565,6 +576,7 @@
],
"Course Content": "Contenidos del curso",
"Course Credit Requirements": "Requerimientos de cr\u00e9ditos para el curso",
+ "Course Discussion Forum": "Foro de discusi\u00f3n del curso",
"Course End": "Finalizaci\u00f3n del curso",
"Course Handouts": "Materiales del curso",
"Course ID": "Id de Curso",
@@ -576,6 +588,7 @@
"Course Number Override": "Reemplazo para el n\u00famero de curso",
"Course Number:": "N\u00famero del curso:",
"Course Outline": "Estructura del curso",
+ "Course Run:": "Edici\u00f3n del Curso:",
"Course Start": "Inicio del Curso",
"Course Title": "T\u00edtulo del curso",
"Course Title Override": "Reemplazo para el t\u00edtulo del curso",
@@ -587,9 +600,11 @@
"Create": "Crear",
"Create Account": "Crear cuenta",
"Create Re-run": "Crear reapertura",
+ "Create Support Ticket": "Crear caso de soporte",
"Create a New Team": "Crear un nuevo equipo",
"Create a content group": "Crear contenido de grupo",
"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.": "Crea un nuevo equipo si no puedes encontrar uno existente para unirte o si deseas aprender con personas que ya conoces.",
+ "Create a {link_start}Mozilla Backpack{link_end} account, or log in to your existing account": "Crear una {link_start}cuenta en Mozilla Backpack{link_end} o iniciar sesi\u00f3n en una cuenta existente.",
"Create account using %(providerName)s.": "Crear una cuenta usando %(providerName)s",
"Create an Account": "Crear una cuenta",
"Create an Account.": "Crear una cuenta.",
@@ -641,9 +656,11 @@
"Delete this team?": "\u00bfBorrar este equipo?",
"Delete this {xblock_type} (and prerequisite)?": "\u00bfEliminar este {xblock_type} (y prerrequisitos)?",
"Delete this {xblock_type}?": "\u00bfEliminar este {xblock_type}?",
+ "Delete \u201c<%- name %>\u201d?": "Eliminar \u201c<%- name %>\u201d?",
"Deleted Content Group": "Contenido de grupo eliminado",
"Deleted Group": "Grupo eliminado",
"Deleting": "Borrando",
+ "Deleting a team is permanent and cannot be undone.All members are removed from the team, and team discussions can no longer be accessed.": "Borrar un equipo es una acci\u00f3n permanente y no puede ser revertida. Todos los miembros son removidos del equipo, y las discusiones creadas en el equipo no pueden ser accedidas de nuevo.",
"Deleting a textbook cannot be undone and once deleted any reference to it in your courseware's navigation will also be removed.": "El borrado de un libro de texto no se puede deshacer y una vez borrado, cualquier referencia al mismo en la navegaci\u00f3n del curso ser\u00e1 eliminada.",
"Deleting this %(item_display_name)s is permanent and cannot be undone.": "Eliminar %(item_display_name)s is permanente y no puede deshacerse",
"Deleting this {xblock_type} is permanent and cannot be undone.": "Eliminar este {xblock_type} es una acci\u00f3n permanente y no se puede revertir.",
@@ -652,6 +669,7 @@
"Description": "Descripci\u00f3n",
"Description of the certificate": "Descripci\u00f3n del certificado",
"Details": "Detalles",
+ "Device with Camera": "Dispositivo con c\u00e1mara",
"Dimensions": "Dimensiones",
"Disc": "Disco",
"Discard Changes": "Descartar cambios",
@@ -693,6 +711,7 @@
"Due Date:": "Fecha l\u00edmite:",
"Due Time in UTC:": "Hora l\u00edmite en UTC:",
"Due date cannot be before start date.": "Fecha l\u00edmite no puede ser menor al a fecha de inicio.",
+ "Due to the recent increase in interest in online education and edX, we are currently experiencing an unusually high volume of support requests. We appreciate your patience as we work to review each request. Please check the ": "Debido al reciente aumento en el inter\u00e9s en la educaci\u00f3n en l\u00ednea y en edX, actualmente estamos experimentando un volumen inusualmente alto de solicitudes de soporte. Agradecemos su paciencia mientras trabajamos para revisar cada solicitud. Por favor, consulte el",
"Due:": "Fecha de entrega:",
"Duplicate": "Duplicar",
"Duplicating": "Duplicando",
@@ -709,10 +728,12 @@
"Edit Membership": "Editar membres\u00eda",
"Edit Team": "Editar Equipo",
"Edit Thumbnail": "Editar imagen miniatura",
+ "Edit Title": "Editar t\u00edtulo",
"Edit Your Name": "Edite su nombre",
"Edit this certificate?": "\u00bfEditar este certificado?",
"Edit your post below.": "Edita tu publicaci\u00f3n a continuaci\u00f3n.",
"Editable": "Editable",
+ "Editing access for: {title}": "Editando acceso para: {title}",
"Editing comment": "Editando comentario",
"Editing post": "Editando publicaci\u00f3n",
"Editing response": "Editando respuesta",
@@ -800,6 +821,7 @@
"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.": "Error al iniciar el proceso de re puntuaci\u00f3n del problema '<%- problem_id %>' para el estudiante '<%- student_id %>'. Verifica que el problema y el estudiante est\u00e9n identificados correctamente.",
"Error starting a task to rescore problem '<%- problem_id %>'. Make sure that the problem identifier is complete and correct.": "Error al iniciar la tarea para re puntuar el problema '<%- problem_id %>'. Verifica que el problema est\u00e9 identificado correctamente.",
"Error starting a task to reset attempts for all students on problem '<%- problem_id %>'. Make sure that the problem identifier is complete and correct.": "Error en el proceso de reinicio de env\u00edos para todos los estudiantes para el problema '<%- problem_id %>'. Verifica que el problema est\u00e9 identificado correctamente.",
+ "Error when looking up username": "Error al buscar el nombre de usuario",
"Error while generating certificates. Please try again.": "Error al generar los certificados. Por favor intenta nuevamente.",
"Error while regenerating certificates. Please try again.": "Error al regenerar los certificados. Por favor int\u00e9ntalo nuevamente.",
"Error.": "Error.",
@@ -847,7 +869,6 @@
"Fill browser": "Ir a pantalla completa",
"Filter": "Filtro",
"Filter and sort topics": "Filtrar y ordenar los temas",
- "Final Grade": "Calificaci\u00f3n Final",
"Final Grade Received": "Calificaci\u00f3n final recibida",
"Financial Aid": "Ayuda financiera",
"Financial Assistance": "Asistencia financiera",
@@ -883,7 +904,6 @@
"Generate": "Generar",
"Generate Exception Certificates": "Generar excepciones de certificados",
"Generate the user's certificate": "Generar el certificado del usuario",
- "Get Credit": "Obtenga cr\u00e9ditos",
"Go Back": "Volver Atr\u00e1s",
"Go to Dashboard": "Ir al panel de control",
"Go to my Dashboard": "Ir a mi Panel De Control",
@@ -960,21 +980,23 @@
"ID-Verification is not required for this Professional Education course.": "La verification de ID no se requiere para este curso de Educaci\u00f3n Profesional",
"Identity Verification In Progress": "Verificaci\u00f3n de identidad en progreso",
"If the course does not have an end date, learners always see their scores when they submit answers to assessments.": "Si el curso no tiene fecha de caducidad, los estudiantes siempre ven sus puntajes cuando env\u00edan las respuestas de las evaluaciones.",
+ "If the photos you submit are rejected, try moving the computer or camera orientation to change the lighting angle. The most common reason for rejection is inability to read the text on the ID card.": "Si las fotos que env\u00eda son rechazadas, intente mover la computadora o la orientaci\u00f3n de la c\u00e1mara para cambiar el \u00e1ngulo de iluminaci\u00f3n. La raz\u00f3n m\u00e1s com\u00fan para el rechazo es la imposibilidad de leer el texto en la tarjeta de identificaci\u00f3n.",
"If the subsection does not have a due date, learners always see their scores when they submit answers to assessments.": "Si la subsecci\u00f3n no tiene fecha de caducidad, los estudiantes siempre pueden ver sus puntajes cuando env\u00edan las respuestas a la evaluaci\u00f3n.",
"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.": "Si la unidad fue publicada anteriormente y liberada a los estudiantes, cualquier cambio que haya realizado cuando estaba oculta ser\u00e1 ahora visible para los estudiantes.",
"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?": "Si la unidad fue publicada anteriormente y liberada a los estudiantes, cualquier cambio realizado cuando estaba oculta ser\u00e1 ahora visible para los estudiantes. \u00bfDeseas proceder?",
- "If you are unable to access your account contact us via email using {email}.": "Si no puedes acceder a tu cuenta, cont\u00e1ctanos por correo electr\u00f3nico a {email}.",
"If you do not yet have an account, use the button below to register.": "Si todav\u00eda no tienes una cuenta, puedes utilizar el bot\u00f3n abajo para registrarte ",
"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.": "Si no verifica su identidad ahora, de todas formas podr\u00e1 explorar el curso desde su Panel de Control. Recibir\u00e1 recordatorios peri\u00f3dicos de %(platformName)s para realizar la verificaci\u00f3n de identidad.",
- "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.": "Si no verifica su identidad ahora, de todas formas podr\u00e1 explorar el curso desde su Panel de Control. Recibir\u00e1 recordatorios peri\u00f3dicos de {platformName} para realizar la verificaci\u00f3n de identidad.",
"If you leave this page without saving or submitting your response, you will lose any work you have done on the response.": "Si abandona esta p\u00e1gina sin guardar o enviar su respuesta, perder\u00e1 todo el trabajo realizado en la respuesta.",
"If you leave this page without submitting your peer assessment, you will lose any work you have done.": "Si abandona esta p\u00e1gina sin enviar su trabajo, perder\u00e1 todos los cambios realizados.",
"If you leave this page without submitting your self assessment, you will lose any work you have done.": "Si abandona esta p\u00e1gina sin enviar su auto evaluaci\u00f3n, perder\u00e1 todos los cambios realizados.",
"If you leave this page without submitting your staff assessment, you will lose any work you have done.": "Si abandona esta p\u00e1gina sin enviar su evaluaci\u00f3n, se perder\u00e1n todos los cambios realizados.",
+ "If you leave, you can no longer post in this team's discussions.Your place will be available to another learner.": "Si deja el equipo, no puede volver a publicar discusiones dentro del equipo. Su lugar en el quipo estar\u00e1 disponible para otro estudiante.",
"If you make significant changes, make sure you notify members of the team before making these changes.": "Si haces cambios significativos, aseg\u00farate de avisarle a los miembros del equipos antes de realizar estos cambios.",
"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.": "Si hace este %(xblockType)s visible a los estudiantes, podr\u00e1n ver su contenido a partir de la fecha de liberaci\u00f3n siempre que haya publicado la unidad. S\u00f3lo las unidades que est\u00e1n ocultos expl\u00edcitamente permanecer\u00e1n ocultas despu\u00e9s de quitar esta opci\u00f3n para %(xblockType)s.",
+ "If you proceed, you will be unable to use this account to take courses on the {platformName} app, {siteName}, or any other site hosted by {platformName}.": "Si procedes, no podr\u00e1s usarla ni tomar cursos en la app {platformName}, {siteName}, ni en cualquier otro sitio de {platformName}.",
"If you remove this transcript, the transcript will not be available for any components that use this video.": "Si elimina esta transcripci\u00f3n, la transcripci\u00f3n no estar\u00e1 disponible para ning\u00fan componente que use este v\u00eddeo.",
"If you remove this transcript, the transcript will not be available for this component.": "Si elimina esta transcripci\u00f3n, la transcripci\u00f3n no estar\u00e1 disponible para este componente.",
+ "If you require assistance with taking either photo for submission, contact %(platformName)s support for additional suggestions.": "Si requiere asistencia tomando cualquiera de las fotos para enviarlas, contacte soporte%(platformName)s para sugerencias adicionales.",
"If you select an option other than \"%(hide_label)s\", published units in this subsection become available to learners unless they are explicitly hidden.": "Si selecciona esta opci\u00f3n distinta a \"%(hide_label)s\", \nlas unidades publicadas en este subsecci\u00f3n pasar\u00e1n a estar disponible para los estudiantes a menos que est\u00e1n expl\u00edcitamente ocultas.",
"If you still wish to continue and delete your account, please enter your account password:": "Si deseas continuar y eliminar tu cuenta, por favor introduce la contrase\u00f1a de tu cuenta:",
"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\nProceed to the Advanced Editor and convert this problem to XML?": "Si utiliza el Editor Avanzado, este problema ser\u00e1 convertido a formato XML y no podr\u00e1 volver a la pantalla del Editor Simple.\n\n\u00bfPasar al Editor avanzado y convertir este problema al formato XML?",
@@ -995,6 +1017,7 @@
"Incorrect url format.": "Formato incorrecto de URL.",
"Increase indent": "Aumentar Sangr\u00eda",
"Individual Exceptions": "Excepciones individuales",
+ "Individual file size must be {max_files_mb}MB or less.": "El tama\u00f1o del archivo debe ser de aproximadamente {max_files_mb}MB o menos.",
"Inheriting Student Visibility": "Heredando la Visibilidad a estudiantes.",
"Inline": "Dentro de la l\u00ednea",
"Insert": "Insertar",
@@ -1050,6 +1073,7 @@
"Last Activity %(date)s": "\u00daltima Actividad %(date)s",
"Last Edited:": "\u00daltima modificaci\u00f3n:",
"Last Updated": "\u00daltima Actualizaci\u00f3n",
+ "Last activity {date}": "\u00daltima actividad {date}",
"Last modified by": "\u00daltima modificaci\u00f3n por",
"Last published %(last_published_date)s by %(publish_username)s": "Publicado por \u00faltima vez el %(last_published_date)s por %(publish_username)s",
"Last published {lastPublishedStart}{publishedOn}{lastPublishedEnd} by {publishedByStart}{publishedBy}{publishedByEnd}": "Last published {lastPublishedStart}{publishedOn}{lastPublishedEnd} por {publishedByStart}{publishedBy}{publishedByEnd}",
@@ -1122,6 +1146,7 @@
"Make sure your face is well-lit": "Asegurese de que su rostro est\u00e9 bien iluminado",
"Make this subsection available as a prerequisite to other content": "Deje disponible esta secci\u00f3n como prerrequisito de otro contenido",
"Making Visible to Students": "Haciendo visible a los estudiantes",
+ "Manage": "Administrar",
"Manage Learners": "Manejar Estudiantes",
"Manual": "Manual",
"March": "Marzo",
@@ -1138,6 +1163,8 @@
"Membership": "Afiliaci\u00f3n",
"Merge cells": "Fusionar celdas",
"Message:": "Mensaje:",
+ "MicroBachelors": "MicroBachelors",
+ "MicroMasters": "MicroMasters",
"Middle": "Educaci\u00f3n media",
"Midnight": "Medianoche",
"Minimum Completion:": "Valor m\u00ednimo a completar:",
@@ -1150,11 +1177,13 @@
"Move cancelled. \"{sourceDisplayName}\" has been moved back to its original location.": "Movimiento cancelado. \"{sourceDisplayName}\" ha sido movido a su ubicaci\u00f3n original.",
"Move: {displayName}": "Mover: {displayName}",
"Moving": "Moviendo",
+ "Multiple teams returned for course": "Varios equipos encontrados para el curso",
"Must be a Staff User to Perform this request.": "Hay que ser un usuario del equipo para cumplir esta petici\u00f3n.",
"Must complete verification checkpoint": "Debe completar el punto de verificaci\u00f3n",
"Mute": "Silenciar",
"Muted": "En silencio",
"My Orders": "Mis Pedidos",
+ "My Teams": "Mis equipos",
"N/A": "N/D",
"Name": "Nombre",
"Name ": "Nombre",
@@ -1239,9 +1268,13 @@
"Ok": "Aceptar",
"Onboarding": "Integraci\u00f3n",
"Onboarding Exam": "Examen de Integraci\u00f3n",
+ "Once in position, use the Take Photo button {icon} to capture your ID": "Una vez en posici\u00f3n, use el bot\u00f3n Tomar foto {icon} para captura su ID",
+ "Once in position, use the Take Photo button {icon} to capture your photo": "Una vez en posici\u00f3n, use el bot\u00f3n Tomar foto {icon} para captura su foto",
"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.": "Una vez complete uno de los requisitos de programa, usted tendr\u00e1 un registro de programa. Este registro es marcado como completo una vez cumpla con todos los requisitos del programa. Un registro del programa puede ser usado para continuar su registro diario de aprendizaje y demostrar su aprendizaje a otros.",
+ "Once your account is deleted, you cannot use it to take courses on the {platformName} app, {siteName}, or any other site hosted by {platformName}.": "Una vez tu cuenta es borrada, no podr\u00e1s usarla ni tomar cursos en la app {platformName}, {siteName}, ni en cualquier otro sitio de {platformName}.",
"One or more rescheduling tasks failed.": "Una o m\u00e1s tareas de re-programaci\u00f3n fall\u00f3.",
- "Only <%= fileTypes %> files can be uploaded. Please select a file ending in <%= fileExtensions %> to upload.": "S\u00f3lo pueden cargarse archivos de tipo <%= fileTypes %>. Por favor selecciona un archivo que termine en <%= fileExtensions %> para ser cargado.",
+ "Only ": "Solo",
+ "Only <%- fileTypes %> files can be uploaded. Please select a file ending in <%- (fileExtensions) %> to upload.": "Solo archivos <%- fileTypes %> pueden ser cargados. Por favor seleccione un archivo que finalice en <%- (fileExtensions) %> para cargarlo.",
"Only properly formatted .csv files will be accepted.": "Solo archivos .csv correctamente formateados pueden ser utilizados.",
"Only the parent course staff of a CCX can create content groups.": "S\u00f3lo el personal del curso principal de un CCX puede crear grupos de contenido.",
"Open": "Abrir",
@@ -1263,6 +1296,7 @@
"Organization ": "Organizaci\u00f3n",
"Organization Name": "Nombre de la organizaci\u00f3n",
"Organization of the signatory": "Organizaci\u00f3n del signatario",
+ "Organization:": "Organizaci\u00f3n:",
"Other": "Otro",
"Overall Score": "Puntaje general",
"PDF Chapters": "Cap\u00edtulos de PDF",
@@ -1328,6 +1362,7 @@
"Please enter your log-in or recovery email address below and we will send you an email with instructions.": "Por favor ingrese su direcci\u00f3n de correo electr\u00f3nico de inicio de sesi\u00f3n o de recuperaci\u00f3n a continuaci\u00f3n , y le enviaremos un correo electr\u00f3nico con instrucciones.",
"Please fix the following errors:": "Por favor corrija los siguientes errores:",
"Please follow the instructions here to upload a file elsewhere and link to it: {maxFileSizeRedirectUrl}": "Por favor siga las instrucciones aqui para cargar un archivo en otro parte y enlazelo: {maxFileSizeRedirectUrl}",
+ "Please note: Deletion of your account and personal data is permanent and cannot be undone. {platformName} will not be able to recover your account or the data that is deleted.": "Cuidado: la eliminaci\u00f3n de su cuenta y datos personales es permanente e irreversible. {platformName} no podr\u00e1 recuperar ni su cuenta ni los datos eliminados.",
"Please print this page for your records; it serves as your receipt. You will also receive an email with the same information.": "Por favor imprima esta p\u00e1gina para sus registros; la misma es v\u00e1lida como su recibo. Tambi\u00e9n recibir\u00e1 un correo electr\u00f3nico con la esta informaci\u00f3n.",
"Please provide a description of the link destination.": "Por favor, provee una descripci\u00f3n de la destinaci\u00f3n del v\u00ednculo.",
"Please provide a valid URL.": "Por favor, provee un URL v\u00e1lido.",
@@ -1404,6 +1439,7 @@
"Questions raise issues that need answers. Discussions share ideas and start conversations. (Required)": "Utiliza Pregunta para plantear temas que necesitan respuestas. Utiliza Discusi\u00f3n para compartir tus ideas y comenzar conversaciones. (Requerido)",
"Queued": "En cola",
"REMAINING COURSES": "CURSOS RESTANTES",
+ "Re-run Course": "Relanzar Curso",
"Read More": "Leer mas",
"Read more": "Leer m\u00e1s",
"Ready To Start": "Listo para comenzar",
@@ -1511,6 +1547,10 @@
"Section Highlights": "Destacados de la secci\u00f3n",
"Section Visibility": "Visibilidad de la secci\u00f3n",
"Sections": "Secciones",
+ "Security": "Seguridad",
+ "See all teams you belong to and all public teams in your course, organized by topic.": "Vea todos los equipos a los que pertenece y todos los equipos p\u00fablicos en su curso, organizados por tema.",
+ "See all teams you belong to and all public teams in your course, organized by topic. Join an open public team to collaborate with other learners who are interested in the same topic as you are.": "Vea todos los equipos a los que pertenece y todos los equipos p\u00fablicos en su curso, organizados por tema. \u00danase a un equipo p\u00fablico abierto para colaborar con otros estudiantes interesados en el mismo tema que usted.",
+ "See all teams you belong to.": "Ver todos los equipos a los que usted pertenece.",
"Select": "Seleccionar",
"Select Session": "Seleccione la sesi\u00f3n.",
"Select a Content Group": "seleccionar contenido de grupo",
@@ -1522,6 +1562,7 @@
"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": "Seleccione una sub-secci\u00f3n con prerequisito e ingrese un porcentaje de calificaci\u00f3n m\u00ednimo y un porcentaje m\u00ednimo a ser completado para limitar el acceso a esta sub-secci\u00f3n. Los valores permitidos son de 0 a 100.",
"Select a section or problem": "Seleccione una secci\u00f3n o problema",
"Select a session:": "Selecciona una edici\u00f3n:",
+ "Select a subject for your support request.": "Elige un tema para tu petici\u00f3n de ayuda.",
"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.": "Seleccione un tiempo disponible para el examen. Si es mayor a 24 horas, escriba la cantidad de tiempo. Puede otorgar a estudiantes individuales un tiempo extra para completar el examen a trav\u00e9s del panel de control de instructor.",
"Select all": "Selecionar todo",
"Select fidelity": "Seleccionar fidelidad",
@@ -1727,8 +1768,8 @@
"Textbook Name": "Nombre",
"Textbook information": "Informaci\u00f3n del libro de texto",
"Textbook name is required": "Se requiere el nombre del libro de texto",
- "Thank you %(full_name)s! We have received your payment for %(course_name)s.": "Gracias %(full_name)s! Hemos recibido su pago para el curso %(course_name)s.",
"Thank you for setting your course goal to {goal}!": "\u00a1 Gracias por establecer su objetivo para este curso en {goal}!",
+ "Thank you for submitting a request! We appreciate your patience while we work to review your request.": "\u00a1Gracias por su env\u00edo! Agradecemos su paciencia mientras trabajamos para revisar su solicitud.",
"Thank you for submitting your financial assistance application for {course_name}! You can expect a response in 2-4 business days.": "Gracias por enviar tu aplicaci\u00f3n de financiamiento para {course_name}!. Espera una respuesta de 2-4 dias h\u00e1biles.",
"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.": "Gracias por enviar sus fotos. Las revisaremos pronto. Ahora puede registrarse para cualquier curso de %(platformName)s que ofrezca Certficados Verificados. La verificaci\u00f3n es v\u00e1lida por un a\u00f1o. Despu\u00e9s de este periodo, deber\u00e1 volver a enviar fotograf\u00edas para una nueva verificaci\u00f3n.",
"Thank you! We have received your payment for {courseName}.": "\u00a1Gracias! Hemos recibido tu pago para {courseName}.",
@@ -1740,8 +1781,6 @@
"The certificate for this learner has been re-validated and the system is re-running the grade for this learner.": "El certificado para este estudiante ha sido revalidado y el sistema est\u00e1 computando nuevamente la calificaci\u00f3n.",
"The cohort cannot be added": "El cohorte no puede ser a\u00f1adido",
"The cohort cannot be saved": "El cohorte debe ser grabado",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "La longitud combinada de los campos para la organizaci\u00f3n y c\u00f3digo de la librer\u00eda no puede superar los <%=limit%> caracteres.",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "La longitud combinada de los campos para la organizaci\u00f3n, n\u00famero de curso y grupo no puede superar los <%=limit%> caracteres.",
"The country or region where you live.": "El pa\u00eds o la regi\u00f3n donde t\u00fa vives. ",
"The country that team members primarily identify with.": "El pa\u00eds que identifica de forma primaria a los miembros del equipo.",
"The course end date must be later than the course start date.": "La fecha de finalizaci\u00f3n del curso debe ser posterior a la fecha de inicio.",
@@ -1769,7 +1808,6 @@
"The minimum completion percentage must be a whole number between 0 and 100.": "El porcentaje m\u00ednimo a completar debe ser un n\u00famero entero entre 0 y 100. ",
"The minimum grade for course credit is not set.": "La calificaci\u00f3n m\u00ednima para obtener cr\u00e9ditos por el curso no est\u00e1 definida.",
"The minimum score percentage must be a whole number between 0 and 100.": "La nota m\u00ednima para aprobar debe ser un n\u00famero entero entre 0 y 100.",
- "The more you tell us, the more quickly and helpfully we can respond!": "Cuanto m\u00e1s nos digas, antes y mejor podremos ayudarte.",
"The name of this signatory as it should appear on certificates.": "El nombre de este signatario como debe aparecer en los certificados.",
"The name that identifies you on {platform_name}. You cannot change your username.": "El nombre que lo identifica en {platform_name}. No puede cambiar el nombre de usuario.",
"The name that is used for ID verification and that appears on your certificates.": "El nombre que es usado para la verificaci\u00f3n de identidad y aparece en sus certificados.",
@@ -1853,16 +1891,19 @@
"This feature is currently in testing. Course teams can enter highlights, but learners will not receive email messages.": "Esta caracter\u00edstica est\u00e1 en prueba actualmente. Equipos del curso pueden ingresar destacados, pero los estudiantes no recibir\u00e1n mensajes de correo electr\u00f3nico.",
"This feedback could not be submitted.": "Este comentario no pudo ser enviado.",
"This file type is not supported. Supported file type is {supportedFileFormat}.": "Este tipo de archivo no es soportado. El tipo de archivo soportado es {supportedFileFormat}.",
+ "This grade will be applied to all members of the team. Do you want to continue?": "Esta calificaci\u00f3n se aplicar\u00e1 a todos los miembros del equipo. \u00bfDesea continuar?",
"This group controls access to:": "Este grupo controla el acceso a:",
"This group no longer exists. Choose another group or do not restrict access to this unit.": "Este grupo ya no existe. Seleccione otro grupo o no restrinja el acceso a esta unidad.",
"This image file type is not supported. Supported file types are {supportedFileFormats}.": "El tipo de archivo no es soportado. Los tipos de archivo soportados son {supportedFileFormats}.",
"This image is for decorative purposes only and does not require a description.": "Esta imagen es decorativa solamente y no requiere descripci\u00f3n.",
+ "This includes access to {siteName} from your employer\u2019s or university\u2019s system{additionalSiteSpecificDeletionText}.": "Esto incluye acceso a {siteName} desde el sistema de tu empleador o universidad{additionalSiteSpecificDeletionText}.",
"This is the Description of the Group Configuration": "Esta es la descripci\u00f3n de configuraci\u00f3n del grupo",
"This is the Name of the Group Configuration": "Este es el nombre de la Configuraci\u00f3n del Grupo",
"This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "Esta es la lista de %s disponibles. Puede elegir algunos seleccion\u00e1ndolos en la caja inferior y luego haciendo clic en la flecha \"Elegir\" que hay entre las dos cajas.",
"This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "Esta es la lista de los %s elegidos. Puede elmininar algunos seleccion\u00e1ndolos en la caja inferior y luego haciendo click en la flecha \"Eliminar\" que hay entre las dos cajas.",
"This is the name of the group": "Este es el nombre del grupo",
"This learner is currently sharing a limited profile.": "Este usuario est\u00e1 compartiendo un perfil limitado.",
+ "This learner will be removed from the team,allowing another learner to take the available spot.": "Este estudiante ser\u00e1 removido del equipo, permitiendo a otro estudiante tomar su lugar.",
"This link will open in a modal window": "Este enlace se abrir\u00e1 en una ventana modal",
"This link will open in a new browser window/tab": "Este enlace se abrir\u00e1 en una nueva ventana o pesta\u00f1a del navegador",
"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.": "Esto puede estar sucediendo debido a un error con nuestros servidores o con tu conexi\u00f3n a Internet. Intenta refrescar la p\u00e1gina o verifica tu acceso a Internet.",
@@ -1920,7 +1961,6 @@
"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.": "Para asegurar que todos los estudiantes puedan ver el video, recomendamos suministrar tanto una versi\u00f3n .mp4 como una versi\u00f3n .webm del recurso. Haga clic a continuaci\u00f3n para a\u00f1adir la URL de una nueva versi\u00f3n. Estas URLs no pueden ser de Youtube. El primer video listado que sea compatible con la terminal del usuario ser\u00e1 el que se reproducir\u00e1.",
"To complete the program, you must earn a verified certificate for each course.": "Para completar el programa, deber\u00e1s ganar un certificado verificado en cada curso.",
"To continue learning with this account, sign in below.": "Para continuar aprendiendo con esta cuenta, reg\u00edstrese a continuaci\u00f3n.",
- "To finalize course credit, %(display_name)s requires %(platform_name)s learners to submit a credit request.": "Para finalizar un cr\u00e9dito de curso, %(display_name)s requieres %(platform_name)s profesores para postular una solicitud de cr\u00e9dito.",
"To invalidate a certificate for a particular learner, add the username or email address below.": "Para invalidar el certificado de un estudiante particular, a\u00f1ada el nombre de usuario o correo electr\u00f3nico a continuaci\u00f3n.",
"To pass this exam, you must complete the problems in the time allowed.": "Para aprobar este examen, hay que completar los problemas durante el tiempo permitido.",
"To receive a certificate, you must also verify your identity before {date}.": "Para recibir un certificado, tambi\u00e9n debe verificar su identidad antes del {date}.",
@@ -1929,6 +1969,7 @@
"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.": "Para revisar asiginaciones de cohortes de los estudiantes o ver los resultados del archivo CVS que est\u00e1 subiendo, descargue la informaci\u00f3n del perfil del curso o los resultados del cohorte en la p\u00e1gina {link_start}Data Download{link_end}.",
"To share your certificate on Mozilla Backpack, you must first have a Backpack account. Complete the following steps to add your certificate to Backpack.": "Para compartir tu certificado en Mozilla Backpack, debes tener una cuenta de Backpack primero. Completa los siguientes pasos para agregar tu certificado a Backpack.",
"To take a successful photo, make sure that:": "Para tomar la foto correctamente, aseg\u00farese de: ",
+ "To take the photo of your face, click on the camera button {icon}. If you need to try again, click 'Retake Photo'.": "Para tomar la foto de su cara, haga clic en el bot\u00f3n de la c\u00e1mara {icon}. Si necesita volver a intentarlo, haga clic en 'Retomar foto'.",
"To verify your identity, you need a webcam and a government-issued photo ID.": "Para verificar su identidad, necesitar\u00e1 una c\u00e1mara web, y un documento de identificaci\u00f3n oficial con foto.",
"Today": "Hoy",
"Toggle Account Password (Usable/Unusable)": "Cambiar Contrase\u00f1a de Cuenta (Usable/No-usable)",
@@ -2018,7 +2059,7 @@
"Upload Videos": "Cargar Videos",
"Upload a CSV file": "Cargar un archivo CSV",
"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.": "Cargue un archivo separado por comas (.csv) que contenga los nombres de usuario o correos electr\u00f3nicos de los estudiantes a los que se le han otorgado excepciones. Incluya el nombre de usuario o correo electr\u00f3nico en el primer campo. Puede incluir adem\u00e1s en un segundo campo, una nota opcional describiendo la raz\u00f3n para otorgar la excepci\u00f3n.",
- "Upload a new PDF to \u201c<%= name %>\u201d": "Subir un nuevo PDF a \u201c<%= name %>\u201d",
+ "Upload a new PDF to \u201c<%- name %>\u201d": "cargar un nuevo PDF a \u201c<%- name %>\u201d",
"Upload an image": "Subir una imagen",
"Upload an image or capture one with your web or phone camera.": "Subir una imagen o captura con tu camara web o del tel\u00e9fono",
"Upload completed": "Carga terminada",
@@ -2048,7 +2089,10 @@
"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\u2019 posts. ": "Usar cohortes como base de dividir las discusiones. Todos los estudiantes, sin considerar su cohorte, ven los mismos temas de discusi\u00f3n, pero dentro de temas divididos, los estudiantes solamente ven y responden a las publicaciones de otros estudiantes en el mismo cohorte como ellos.",
"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\u2019 posts.": "Usar rutas de inscripci\u00f3n como base de dividir las discusiones. Todos los estudiantes, sin considerar su ruta de inscripci\u00f3n, ven los mismos temas de discusi\u00f3n, pero dentro de temas divididos, los estudiantes solamente ven y responden a las publicaciones de otros estudiantes en la misma ruta de inscripci\u00f3n como ellos.",
"Use my institution/campus credentials": "Usar mis credenciales de la instituci\u00f3n o el Campus",
+ "Use my university info": "Usar informaci\u00f3n de mi universidad",
"Use the All Topics menu to find specific topics.": "Use el men\u00fa de todos los temas para encontrar temas espec\u00edficos.",
+ "Use the Retake Photo button if you are not pleased with your photo": "Use el bot\u00f3n Retomar foto si no est\u00e1 satisfecho con su foto",
+ "Use your webcam to take a photo of your ID.": "Use su c\u00e1mara web para tomar una fotograf\u00eda de su documento de identificaci\u00f3n.",
"Use your webcam to take a photo of your face. We will match this photo with the photo on your ID.": "Use su c\u00e1mara web para tomar una fotograf\u00eda de su cara. Usaremos esta foto para verificarla contra la fotograf\u00eda de su documento de identificaci\u00f3n.",
"Used": "Utilizado",
"Used in {count} location": [
@@ -2056,6 +2100,7 @@
"Usado en {count} ubicaciones"
],
"User Email": "Correo electr\u00f3nico del usuario",
+ "User lookup failed": "Fall\u00f3 b\u00fasqueda del usuario",
"Username": "Nombre de usuario",
"Username or email address": "Nombre de usuario o correo electr\u00f3nico",
"Users must create and activate their account before they can be promoted to beta tester.": "Los usuarios deben crear y activar su cuenta antes de que puedan ser promovidos a usuarios de prueba.",
@@ -2072,7 +2117,6 @@
"Verified Certificate upgrade": "Optar por el Certificado Verificado",
"Verified Status": "Verificaci\u00f3n",
"Verified mode price": "Precio del modo verificado",
- "Verify Now": "Verificar ahora",
"Version": "Versi\u00f3n",
"Vertical space": "Espacio vertical",
"Very loud": "Muy alto",
@@ -2096,10 +2140,12 @@
"View Current Team Memberships": "Ver las membres\u00edas actuales del equipo",
"View Live": "Ver en vivo",
"View Program Record": "Ver registros del programa",
+ "View Teams in the {topic_name} Topic": "Ver equipos en el tema {topic_name}",
"View all errors": "Ver todos los errores",
"View child items": "Ver items hijos",
"View discussion": "Ver discusi\u00f3n",
"View my exam": "Ver mi examen",
+ "View {span_start} {team_name} {span_end}": "Ver {span_start} {team_name} {span_end}",
"Viewing %s course": [
"Mostrando %s curso",
"Mostrando %s cursos"
@@ -2113,16 +2159,18 @@
"Vote for this post,": "Votar esta publicaci\u00f3n",
"Waiting": "Esperando",
"Want to confirm your identity later?": "\u00bfDesea confirmar su identidad despu\u00e9s?",
- "Warning": "Atenci\u00f3n:",
+ "Warning": "Advertencia",
"Warnings": "Advertencias",
"We ask you to activate your account to ensure it is really you creating the account and to prevent fraud.": "Necesitamos que active su cuenta para asegurarnos que es usted realmente el que est\u00e1 creando la cuenta y para prevenir fraude.",
"We couldn't create your account.": "No pudimos crear tu cuenta.",
"We couldn't find any results for \"%s\".": "No se ha encontrado ninguna coincidencia para \"%s\".",
"We couldn't sign you in.": "No se ha podido iniciar tu sesi\u00f3n.",
"We have encountered an error. Refresh your browser and then try again.": "Hemos detectado un error. Por favor recarga la p\u00e1gina en el navegador e intenta nuevamente.",
- "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.": "Hemos recibido la informaci\u00f3n enviada y estamos verificando su identidad. Recibir un mensaje en su Panel principal cuando el proceso de verificaci\u00f3n est\u00e9 completado (usualmente entre 1-2 d\u00edas). Durante este tiempo, igualmente tendr\u00e1 acceso a todo el contenido de su curso.",
+ "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 5-7 days). In the meantime, you can still access all available course content.": "Hemos recibido su informaci\u00f3n y estamos verificando su identidad. Ver\u00e1 un mensaje en su tablero cuando se complete el proceso de verificaci\u00f3n (generalmente dentro de 5-7 d\u00edas). Mientras tanto, a\u00fan puede acceder a todo el contenido del curso disponible.",
"We just need a little more information before you start learning with %(platformName)s.": "Necesitamos un poco mas de informaci\u00f3n antes de que comiences a aprender con %(platformName)s.",
+ "We securely 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.": "Ciframos su foto de forma segura y la enviamos a nuestro servicio de autorizaci\u00f3n para su revisi\u00f3n. Su foto e informaci\u00f3n no se guardan ni son visibles en ning\u00fan lugar de %(platformName)s despu\u00e9s de que se complete el proceso de verificaci\u00f3n.",
"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.": "Usamos los m\u00e1s altos niveles de seguridad disponibles para encriptar su foto y enviarla a nuestro servicio de autorizaci\u00f3n para revisi\u00f3n. Su foto y su informaci\u00f3n no son guardadas ni quedan visibles en ninguna parte de %(platformName)s desp\u00faes de que el proceso de verificaci\u00f3n haya sido completado.",
+ "We use your verification photos to confirm your identity and ensure the validity of your certificate.": "Utilizamos sus fotos de verificaci\u00f3n para confirmar su identidad y garantizar la validez de su certificado.",
"We're sorry to see you go! Your account will be deleted shortly.": "\u00a1Sentimos que te vayas! Tu cuenta ser\u00e1 eliminada en breve.",
"We're sorry, there was an error": "Lo sentimos, ha habido un error",
"We've encountered an error. Refresh your browser and then try again.": "Hemos detectado un error. Por favor recarga la p\u00e1gina en el navegador e intenta nuevamente.",
@@ -2138,9 +2186,14 @@
"What can we help you with, {username}?": "\u00bfEn qu\u00e9 podemos ayudarte, {username}?",
"What does %(platformName)s do with this photo?": "\u00bfQu\u00e9 hace %(platformName)s con esta imagen?",
"What does this mean?": "\u00bfQu\u00e9 significa esto?",
+ "What if I can't see the camera image, or if I can't see my photo do determine which side is visible?": "\u00bfQu\u00e9 sucede si no puedo ver la imagen de la c\u00e1mara, o si no puedo ver mi foto para determinar qu\u00e9 lado es visible?",
+ "What if I have difficulty holding my ID in position relative to the camera?": "\u00bfQu\u00e9 sucede si tengo dificultades para mantener mi identificaci\u00f3n en posici\u00f3n con respecto a la c\u00e1mara?",
+ "What if I have difficulty holding my head in position relative to the camera?": "\u00bfQu\u00e9 sucede si tengo dificultades para mantener la cabeza en posici\u00f3n con respecto a la c\u00e1mara?",
"What's Your Next Accomplishment?": "\u00bfQu\u00e9 ser\u00e1 tu pr\u00f3ximo logro?",
"When learners submit an answer to an assessment, they immediately see whether the answer is correct or incorrect, and the score received.": "Cuando los estudiantes env\u00edan una respuesta para evaluaci\u00f3n, ven inmediatamente si la respuesta es correcta o incorrecta, y la calificaci\u00f3n recibida.",
+ "When your face is in position, use the Take Photo button {icon} below to take your photo.": "Cuando su cara est\u00e9 en posici\u00f3n, use el bot\u00f3n Tomar foto {icon} a continuaci\u00f3n para tomar su foto.",
"Which timed transcript would you like to use?": "\u00bfCu\u00e1l de las transcripciones desea utilizar?",
+ "While our support team is happy to assist with the edX platform, the course staff has the expertise for specific assignment questions, grading or the proper procedures in each course. Please post all course related questions within the Discussion Forum where the Course Staff can directly respond.": "Si bien nuestro equipo de soporte est\u00e1 encantado de ayudar con la plataforma edX, el personal del curso tiene la experiencia para preguntas espec\u00edficas del curso, calificaci\u00f3n o los procedimientos adecuados en cada curso. Publique todas las preguntas relacionadas con el curso en el Foro de discusi\u00f3n donde el personal del curso pueda responder directamente.",
"Whole words": "Palabras completas",
"Why activate?": "Por qu\u00e9 activar?",
"Why does %(platformName)s need my photo?": "Por qu\u00e9 %(platformName)s necesita mi foto ?",
@@ -2154,6 +2207,7 @@
"Yes, delete this {xblock_type}": "Si, eliminar este {xblock_type}",
"Yes, replace the edX transcript with the YouTube transcript": "Si, reemplazar la transcripci\u00f3n de edX con la de YouTube",
"Yesterday": "Ayer",
+ "You already belong to another team in this team set.": "Usted ya pertenece a otro equipo en este conjunto.",
"You already have an edX account with your {enterprise_name} email address.": "Ya tiene una cuenta edX con su direcci\u00f3n de correo electr\u00f3nico de {enterprise_name}",
"You are a member of this team.": "Usted ya es miembro de este equipo.",
"You are currently sharing a limited profile.": "Actualmente est\u00e1 compartiendo un perfil limitado.",
@@ -2200,6 +2254,7 @@
"You have not created any group configurations yet.": "No ha creado ninguna configuraci\u00f3n de grupo.",
"You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "Ha seleccionado una acci\u00f3n y no hs hecho ning\u00fan cambio en campos individuales. Probablemente est\u00e9 buscando el bot\u00f3n Ejecutar en lugar del bot\u00f3n Guardar.",
"You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "Ha seleccionado una acci\u00f3n, pero no ha guardado los cambios en los campos individuales todav\u00eda. Pulse OK para guardar. Tendr\u00e1 que volver a ejecutar la acci\u00f3n.",
+ "You have selected \u201cDelete my account.\u201d Deletion of your account and personal data is permanent and cannot be undone. {platformName} will not be able to recover your account or the data that is deleted.": "Ha seleccionado \u201cEliminar mi cuenta\u201d. La eliminaci\u00f3n de su cuenta y datos personales es permanente e irreversible. {platformName} no podr\u00e1 recuperar su cuenta o los datos que se hayan borrado.",
"You have set your language to {beta_language}, which is currently not fully translated. You can help us translate this language fully by joining the Transifex community and adding translations from English for learners that speak {beta_language}.": "Ha establecido su idioma en {beta_language}, el cual no est\u00e1 traducido completamente. Puede ayudarnos a traducir este idioma totalmente uni\u00e9ndose la comunidad Transifex y adicionando traducciones desde el Ingl\u00e9s para los estudiantes que hablan {beta_language}.",
"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.": "Has iniciado sesi\u00f3n exitosamente en %(currentProvider)s, pero tu cuenta de %(currentProvider)s no est\u00e1 vinculada con una cuenta en %(platformName)s. Para vincular tus cuentas, ingresa con tu usuario y contrase\u00f1a de %(platformName)s.",
"You have successfully updated your goal.": "Ha actualizado exitosamente su objetivo.",
@@ -2211,6 +2266,8 @@
"You haven't added any textbooks to this course yet.": "No ha a\u00f1adido a\u00fan ning\u00fan libro de texto a este curso.",
"You may access your account with this address if single-sign on or access to your primary email is not available.": "Puede acceder a su cuenta con esta direcci\u00f3n si no est\u00e1n disponibles el inicio de sesi\u00f3n \u00fanico -SSO- o el acceso a su correo electr\u00f3nico principal.",
"You may also lose access to verified certificates and other program credentials like MicroMasters certificates. If you want to make a copy of these for your records before proceeding with deletion, follow the instructions for {htmlStart}printing or downloading a certificate{htmlEnd}.": "Puede que tambi\u00e9n pierdas el acceso a los certificados verificados y otros certificados de programas como los de los MicroMasters. Si quieres hacer una copia de dichos certificados para tus archivos antes de proceder a la eliminaci\u00f3n, sigue las instrucciones para {htmlStart}imprimir o descargar un certificado{htmlEnd}.",
+ "You may be able to complete the image capture procedure without assistance, but it may take a couple of submission attempts to get the camera positioning right. Optimal camera positioning varies with each computer, but generally the best position for a headshot is approximately 12-18 inches (30-45 centimeters) from the camera, with your head centered relative to the computer screen. ": "Es posible que pueda completar el procedimiento de captura de im\u00e1genes sin ayuda, pero puede tomar un par de intentos de env\u00edo para obtener la posici\u00f3n correcta de la c\u00e1mara. El posicionamiento \u00f3ptimo de la c\u00e1mara var\u00eda con cada computadora, pero generalmente la mejor posici\u00f3n para la doma de la cabeza es de aproximadamente 12-18 pulgadas (30-45 cent\u00edmetros) de la c\u00e1mara, con la cabeza centrada en relaci\u00f3n con la pantalla de la computadora.",
+ "You may be able to complete the image capture procedure without assistance, but it may take a couple of submission attempts to get the camera positioning right. Optimal camera positioning varies with each computer, but generally, the best position for a photo of an ID card is 8-12 inches (20-30 centimeters) from the camera, with the ID card centered relative to the camera. ": "Es posible que pueda completar el procedimiento de captura de im\u00e1genes sin ayuda, pero puede tomar un par de intentos de env\u00edo para obtener la posici\u00f3n correcta de la c\u00e1mara. El posicionamiento \u00f3ptimo de la c\u00e1mara var\u00eda con cada computadora, pero en general, la mejor posici\u00f3n para una foto de una tarjeta de identificaci\u00f3n es de 8 a 12 pulgadas (20-30 cent\u00edmetros) de la c\u00e1mara, con la tarjeta de identificaci\u00f3n centrada en relaci\u00f3n con la c\u00e1mara.",
"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}": "Debes tener 13 a\u00f1os o m\u00e1s para compartir un perfil completo. Si tienes m\u00e1s de esta edad, aseg\u00farate que has especificado un a\u00f1o de nacimiento en {account_settings_page_link}",
"You must enter a valid email address in order to add a new team member": "Se debe introducir un email valido para adicionar un nuevo miembro en el equipo. ",
"You must provide a learner name.": "Debe ingresar un nombre.",
@@ -2220,11 +2277,13 @@
"You must specify a name": "Debes especificar un nombre",
"You must specify a name for the cohort": "Debes especificar un nombre para el cohorte",
"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}": "Debes especificar un a\u00f1o de nacimiento antes de poder compartir tu perfil completo. Para definir un a\u00f1o de nacimiento, visita {account_settings_page_link}",
+ "You need a device that has a webcam. If you receive a browser prompt for access to your camera, please make sure to click 'Allow'.": "Necesita un dispositivo que tenga una c\u00e1mara web. Si recibe un mensaje del navegador para acceder a su c\u00e1mara, aseg\u00farese de hacer clic en \"Permitir\".",
+ "You need a valid ID that contains your full name and photo.": "Necesita un ID v\u00e1lida que contenga su nombre completo y foto.",
+ "You need an ID with your name and photo. A driver's license, passport, or ID are all acceptable.": "Necesita un documento de identificaci\u00f3n con su nombre y foto. Licencia de conducir, pasaporte o c\u00e9dula son aceptados.",
"You need to activate your account before you can enroll in courses. Check your inbox for an activation email.": "Necesita activar la cuenta antes de que pueda registrarse para el curso. Revise su bandeja de entrada que un correo electr\u00f3nico de activaci\u00f3n fue enviado.",
"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.": "Necesita activar la cuenta antes de que pueda registrarse para el curso. Revise su bandeja de entrada que un correo electr\u00f3nico de activaci\u00f3n fue enviado. Una vez haya completado la activaci\u00f3n puede regresar y recargar esta p\u00e1gina.",
"You receive messages from {platform_name} and course teams at this address.": "Recibe mensajes de {platform_name} y equipos del curso en esta direcci\u00f3n.",
"You reserve all rights for your work": "Te reservas todos los derechos por tu trabajo",
- "You still need to visit the %(display_name)s website to complete the credit process.": "Todav\u00eda debe visitar el sitio web de %(display_name)s para completar el proceso de cr\u00e9dito.",
"You submitted {filename}; only {allowedFiles} are allowed.": "Tu enviaste {filename}; solamente se permiten {allowedFiles}.",
"You waive some rights for your work, such that others can use it too": "Renuncias a algunos derechos de tu trabajo para que otros puedan usarlo tambi\u00e9n. ",
"You will be refunded the amount you paid.": "Se le devolver\u00e1 el valor pagado.",
@@ -2325,7 +2384,6 @@
"enter link description here": "Ingresa la descripci\u00f3n del v\u00ednculo aqu\u00ed",
"follow this post": "sigue esta publicaci\u00f3n",
"for": "para",
- "for {courseName}": "Para {courseName}",
"group configuration": "Configuraci\u00f3n de Grupo",
"image omitted": "imagen omitida",
"incorrect": "incorrecto",
@@ -2373,6 +2431,7 @@
"team count": "Cantidad de equipos",
"text_word_{uniqueId}": "text_word_{uniqueId}",
"text_word_{uniqueId} title_word_{uniqueId}": "text_word_{uniqueId} title_word_{uniqueId}",
+ "the more quickly and helpfully we can respond!": "\u00a1lo m\u00e1s r\u00e1pido y servicial que podemos responder!",
"there is currently {numVotes} vote": [
"actualmente hay {numVotes} voto",
"actualmente hay {numVotes} votos"
@@ -2399,6 +2458,15 @@
"{categoryText} in {parentDisplayname}": "{categoryText} en {parentDisplayname}",
"{currentCountOpeningTag}{currentCharacterCount}{currentCountClosingTag} of {maxCharacters}": "{currentCountOpeningTag}{currentCharacterCount}{currentCountClosingTag} de {maxCharacters}",
"{display_name} Settings": "Ajustes de configuraci\u00f3n para {display_name} ",
+ "{download_link_start}Download this image (right-click or option-click, save as){link_end} and then {upload_link_start}upload{link_end} it to your backpack.": "{download_link_start}descargar esta imagen (clic derecho, guardar como){link_end} y luego {upload_link_start} carguela {link_end} a su bolsa en Mozilla Backpack.",
+ "{earned}/{possible} point (graded)": [
+ "{earned}/{possible} punto (calificado)",
+ "{earned}/{possible} puntos (calificado)"
+ ],
+ "{earned}/{possible} point (ungraded)": [
+ "{earned}/{possible} punto (no calificado)",
+ "{earned}/{possible} puntos (no calificado)"
+ ],
"{email}": "{email}",
"{email} is already on the {container} team. Recheck the email address if you want to add a new member.": "{email} ya est\u00e1 en el equipo de {container}. Verifique nuevamente la direcic\u00f3n de correo si desea a\u00f1adir un nuevo miembro.",
"{filename} exceeds maximum size of {maxFileSizeInGB} GB.": "El archivo {filename} excede el tama\u00f1o m\u00e1ximo de {maxFileSizeInGB} GB.",
@@ -2440,8 +2508,25 @@
"{num_of_hours} hours": "{num_of_hours} horas",
"{num_of_minutes} minute": "{num_of_minutes} minuto",
"{num_of_minutes} minutes": "{num_of_minutes} minutos",
+ "{num_points} point possible (graded)": [
+ "{num_points} punto posible (calificable)",
+ "{num_points} puntos posibles (calificables)"
+ ],
+ "{num_points} point possible (graded, results hidden)": [
+ "{num_points} punto posible (calificable, resultado oculto)",
+ "{num_points} puntos posibles (calificables, resultados ocultos)"
+ ],
+ "{num_points} point possible (ungraded)": [
+ "{num_points} punto posible (no calificable)",
+ "{num_points} puntos posibles (no calificables)"
+ ],
+ "{num_points} point possible (ungraded, results hidden)": [
+ "{num_points} punto posible (no calificable, resultado oculto)",
+ "{num_points} puntos posibles (no calificables, resultados ocultos)"
+ ],
"{organization}\\'s logo": "Logo de la {organization}",
"{paragraphStart}You entered {boldStart}{email}{boldEnd}. If this email address is associated with your {platform_name} account, we will send a message with password recovery instructions to this email address.{paragraphEnd}{paragraphStart}If you do not receive a password reset message after 1 minute, 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}": "{paragraphStart}Has escrito {boldStart}{email}{boldEnd}. Si este correo electr\u00f3nico est\u00e1 asociado a tu cuenta {platform_name}, te enviaremos un correo con las instrucciones para recuperar tu contrase\u00f1a a este correo electr\u00f3nico. {paragraphEnd}{paragraphStart}Si no recibes el correo de restablecimiento de contrase\u00f1a despu\u00e9s de 1 minuto, verifica que escribiste la direcci\u00f3n de correo correcta o mira en tu carpeta de correo no deseado.{paragraphEnd}{paragraphStart}Si necesitas m\u00e1s ayuda, {anchorStart}contacta con soporte t\u00e9cnico{anchorEnd}.{paragraphEnd}",
+ "{paragraph}=p;{preformatted}=pre;{heading3}=h3;{heading4}=h4;{heading5}=h5;{heading6}=h6": "{paragraph}=p;{preformatted}=pre;{heading3}=h3;{heading4}=h4;{heading5}=h5;{heading6}=h6",
"{screen_reader_start}Warning:{screen_reader_end} No content groups exist.": "{screen_reader_start}Advertencia:{screen_reader_end} No existe ning\u00fan grupo de contenido.",
"{screen_reader_start}Warning:{screen_reader_end} The previously selected content group was deleted. Select another content group.": "{screen_reader_start}Advertencia:{screen_reader_end} El grupo de contenido previamente seleccionado ha sido borrado. Seleccione otro grupo de contenido.",
"{seconds} {unit}": "{seconds} {unit}",
@@ -2449,6 +2534,11 @@
"{sessionDates} (Open until {enrollmentEnd})": "{sessionDates} (Abierto hasta {enrollmentEnd})",
"{sessionDates} - Currently Selected": "{sessionDates} - seleccionado actualmente",
"{start_strong}{total}{end_strong} words submitted in total.": "{start_strong}{total}{end_strong} palabras enviadas en total.",
+ "{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 {platformName}.{strongEnd}": "{strongStart}Advertencia: La eliminaci\u00f3n de la cuenta es permanente.{strongEnd} Por favor lea cuidadosamente la informaci\u00f3n en la parte superior antes de proceder. Esta es una acci\u00f3n irreversible, y {strongStart}no podr\u00e1 volver a usar el mismo correo electr\u00f3nico en {platformName}.{strongEnd}",
+ "{team_count} Team": [
+ "{team_count} equipo",
+ "{team_count} Equipos"
+ ],
"{totalItems} total": "{totalItems} total",
"{total_results} result": [
"{total_results} resultado",
diff --git a/cms/static/js/i18n/eu-es/djangojs.js b/cms/static/js/i18n/eu-es/djangojs.js
index 34eda32f87..55eed9d578 100644
--- a/cms/static/js/i18n/eu-es/djangojs.js
+++ b/cms/static/js/i18n/eu-es/djangojs.js
@@ -505,7 +505,6 @@
"Fill browser": "Zabaldu nabigatzailea",
"Filter": "Filtroa",
"Filter and sort topics": "Iragazi eta ordenatu gaiak",
- "Final Grade": "Azken kalifikazioa",
"Financial Assistance Application": "Finantza-laguntzarako eskaria",
"Find": "Bilatu",
"Find a course": "Bilatu ikastaroa",
@@ -529,7 +528,6 @@
"General": "Orokorra",
"Generate": "Sortu",
"Generate the user's certificate": "Sortu erabiltzailearen ziurtagiria",
- "Get Credit": "Lortu kreditua",
"Go Back": "Itzuli",
"Go to Dashboard": "Joan aginte-panelera",
"Go to my Dashboard": "Joan aginte-panelera",
@@ -1054,7 +1052,6 @@
"Textbook Name": "Testu-liburuaren izena",
"Textbook information": "Testu-liburuaren informazioa",
"Textbook name is required": "Testu-liburuaren izena beharrezkoa da",
- "Thank you %(full_name)s! We have received your payment for %(course_name)s.": "Eskerrik asko %(full_name)s! Zure ordainketa jaso dugu %(course_name)s dela-eta.",
"Thank you! We have received your payment for {courseName}.": "Eskerrik asko! Zure ordainketa jaso dugu {courseName} ikastarorako.",
"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Badirudi sartu duzun URL-a e-posta helbidea dela. Nahi al duzu beharrrezko den mailto: aurrizkia gehitzea?",
"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?": "Badirudi sartu duzun URL-a kanporako esteka dela. Nahi al duzu beharrezko den http:// aurrizkia gehitzea?",
@@ -1075,7 +1072,6 @@
"The grading process is still running. Refresh the page to see updates.": "Kalifikazio-prozesua abian da. Eguneratu orria azken emaitzak ikusteko.",
"The language that team members primarily use to communicate with each other.": "Elkarrekin komunikatzeko taldeko partaideek erabiltzen duten hizkuntza nagusia.",
"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.": "Gunean zehar erabilitako hizkuntza. Gune honetan hizkuntza kopuru mugatua dago eskura eskura. Eremu honetan balorea aldatzeak orria freskatuko du.",
- "The more you tell us, the more quickly and helpfully we can respond!": "Zenbat eta gehiago esan, orduan eta azkarrago eta hobeto erantzungo dizugu!",
"The name that identifies you on {platform_name}. You cannot change your username.": "{platform_name} plataforman identifikatzen zaituen izena. Ezin duzu erabiltzaile-izena aldatu.",
"The selected content group does not exist": "Aukeratutako eduki-taldea ez da existitzen",
"The server could not be contacted.": "Ezin izan da zerbitzariarekin konektatu.",
@@ -1213,7 +1209,6 @@
"Verification Deadline": "Egiaztatzeko azken data",
"Verified": "Egiaztatuta",
"Verified Certificate": "Egiaztatutako ziurtagiria",
- "Verify Now": "Egiaztatu orain!",
"Version": "Bertsioa",
"Vertical space": "Espazio bertikala",
"Very loud": "Oso altu",
diff --git a/cms/static/js/i18n/fake2/djangojs.js b/cms/static/js/i18n/fake2/djangojs.js
index f6e66551e7..354e5e2f9d 100644
--- a/cms/static/js/i18n/fake2/djangojs.js
+++ b/cms/static/js/i18n/fake2/djangojs.js
@@ -460,6 +460,7 @@
],
"Course Content": "\u023b\u00f8n\u0279s\u01dd \u023b\u00f8n\u0287\u01ddn\u0287",
"Course Credit Requirements": "\u023b\u00f8n\u0279s\u01dd \u023b\u0279\u01ddd\u1d09\u0287 \u024c\u01ddbn\u1d09\u0279\u01dd\u026f\u01ddn\u0287s",
+ "Course Discussion Forum": "\u023b\u00f8n\u0279s\u01dd \u0110\u1d09s\u0254nss\u1d09\u00f8n F\u00f8\u0279n\u026f",
"Course End": "\u023b\u00f8n\u0279s\u01dd \u0246nd",
"Course Handouts": "\u023b\u00f8n\u0279s\u01dd \u0126\u0250nd\u00f8n\u0287s",
"Course ID": "\u023b\u00f8n\u0279s\u01dd \u0197\u0110",
@@ -490,6 +491,7 @@
"Create account using %(providerName)s.": "\u023b\u0279\u01dd\u0250\u0287\u01dd \u0250\u0254\u0254\u00f8nn\u0287 ns\u1d09n\u0183 %(providerName)s.",
"Create an Account": "\u023b\u0279\u01dd\u0250\u0287\u01dd \u0250n \u023a\u0254\u0254\u00f8nn\u0287",
"Create an Account.": "\u023b\u0279\u01dd\u0250\u0287\u01dd \u0250n \u023a\u0254\u0254\u00f8nn\u0287.",
+ "Create an account": "\u023b\u0279\u01dd\u0250\u0287\u01dd \u0250n \u0250\u0254\u0254\u00f8nn\u0287",
"Create an account using": "\u023b\u0279\u01dd\u0250\u0287\u01dd \u0250n \u0250\u0254\u0254\u00f8nn\u0287 ns\u1d09n\u0183",
"Create team.": "\u023b\u0279\u01dd\u0250\u0287\u01dd \u0287\u01dd\u0250\u026f.",
"Creating missing groups": "\u023b\u0279\u01dd\u0250\u0287\u1d09n\u0183 \u026f\u1d09ss\u1d09n\u0183 \u0183\u0279\u00f8nds",
@@ -734,7 +736,6 @@
"Files that you upload must be smaller than 5MB in size.": "F\u1d09l\u01dds \u0287\u0265\u0250\u0287 \u028e\u00f8n ndl\u00f8\u0250d \u026fns\u0287 b\u01dd s\u026f\u0250ll\u01dd\u0279 \u0287\u0265\u0250n 5M\u0243 \u1d09n s\u1d09z\u01dd.",
"Fill browser": "F\u1d09ll b\u0279\u00f8\u028ds\u01dd\u0279",
"Filter and sort topics": "F\u1d09l\u0287\u01dd\u0279 \u0250nd s\u00f8\u0279\u0287 \u0287\u00f8d\u1d09\u0254s",
- "Final Grade": "F\u1d09n\u0250l \u01e4\u0279\u0250d\u01dd",
"Financial Aid": "F\u1d09n\u0250n\u0254\u1d09\u0250l \u023a\u1d09d",
"Financial Assistance": "F\u1d09n\u0250n\u0254\u1d09\u0250l \u023ass\u1d09s\u0287\u0250n\u0254\u01dd",
"Financial Assistance Application": "F\u1d09n\u0250n\u0254\u1d09\u0250l \u023ass\u1d09s\u0287\u0250n\u0254\u01dd \u023addl\u1d09\u0254\u0250\u0287\u1d09\u00f8n",
@@ -755,6 +756,7 @@
"Footer": "F\u00f8\u00f8\u0287\u01dd\u0279",
"For grading to work, you must change all {oldName} subsections to {newName}.": "F\u00f8\u0279 \u0183\u0279\u0250d\u1d09n\u0183 \u0287\u00f8 \u028d\u00f8\u0279\u029e, \u028e\u00f8n \u026fns\u0287 \u0254\u0265\u0250n\u0183\u01dd \u0250ll {oldName} snbs\u01dd\u0254\u0287\u1d09\u00f8ns \u0287\u00f8 {newName}.",
"For inquiries regarding assignments, grades, or structure of a specific course, please post in the discussion forums for that course directly.": "F\u00f8\u0279 \u1d09nbn\u1d09\u0279\u1d09\u01dds \u0279\u01dd\u0183\u0250\u0279d\u1d09n\u0183 \u0250ss\u1d09\u0183n\u026f\u01ddn\u0287s, \u0183\u0279\u0250d\u01dds, \u00f8\u0279 s\u0287\u0279n\u0254\u0287n\u0279\u01dd \u00f8\u025f \u0250 sd\u01dd\u0254\u1d09\u025f\u1d09\u0254 \u0254\u00f8n\u0279s\u01dd, dl\u01dd\u0250s\u01dd d\u00f8s\u0287 \u1d09n \u0287\u0265\u01dd d\u1d09s\u0254nss\u1d09\u00f8n \u025f\u00f8\u0279n\u026fs \u025f\u00f8\u0279 \u0287\u0265\u0250\u0287 \u0254\u00f8n\u0279s\u01dd d\u1d09\u0279\u01dd\u0254\u0287l\u028e.",
+ "Forgot my password": "F\u00f8\u0279\u0183\u00f8\u0287 \u026f\u028e d\u0250ss\u028d\u00f8\u0279d",
"Format": "F\u00f8\u0279\u026f\u0250\u0287",
"Formats": "F\u00f8\u0279\u026f\u0250\u0287s",
"Free text notes": "F\u0279\u01dd\u01dd \u0287\u01ddx\u0287 n\u00f8\u0287\u01dds",
@@ -769,7 +771,6 @@
"Generate": "\u01e4\u01ddn\u01dd\u0279\u0250\u0287\u01dd",
"Generate Exception Certificates": "\u01e4\u01ddn\u01dd\u0279\u0250\u0287\u01dd \u0246x\u0254\u01ddd\u0287\u1d09\u00f8n \u023b\u01dd\u0279\u0287\u1d09\u025f\u1d09\u0254\u0250\u0287\u01dds",
"Generate the user's certificate": "\u01e4\u01ddn\u01dd\u0279\u0250\u0287\u01dd \u0287\u0265\u01dd ns\u01dd\u0279's \u0254\u01dd\u0279\u0287\u1d09\u025f\u1d09\u0254\u0250\u0287\u01dd",
- "Get Credit": "\u01e4\u01dd\u0287 \u023b\u0279\u01ddd\u1d09\u0287",
"Go to Dashboard": "\u01e4\u00f8 \u0287\u00f8 \u0110\u0250s\u0265b\u00f8\u0250\u0279d",
"Go to my Dashboard": "\u01e4\u00f8 \u0287\u00f8 \u026f\u028e \u0110\u0250s\u0265b\u00f8\u0250\u0279d",
"Go to your Dashboard": "\u01e4\u00f8 \u0287\u00f8 \u028e\u00f8n\u0279 \u0110\u0250s\u0265b\u00f8\u0250\u0279d",
@@ -850,10 +851,8 @@
"If the subsection does not have a due date, learners always see their scores when they submit answers to assessments.": "\u0197\u025f \u0287\u0265\u01dd snbs\u01dd\u0254\u0287\u1d09\u00f8n d\u00f8\u01dds n\u00f8\u0287 \u0265\u0250\u028c\u01dd \u0250 dn\u01dd d\u0250\u0287\u01dd, l\u01dd\u0250\u0279n\u01dd\u0279s \u0250l\u028d\u0250\u028es s\u01dd\u01dd \u0287\u0265\u01dd\u1d09\u0279 s\u0254\u00f8\u0279\u01dds \u028d\u0265\u01ddn \u0287\u0265\u01dd\u028e snb\u026f\u1d09\u0287 \u0250ns\u028d\u01dd\u0279s \u0287\u00f8 \u0250ss\u01ddss\u026f\u01ddn\u0287s.",
"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.": "\u0197\u025f \u0287\u0265\u01dd nn\u1d09\u0287 \u028d\u0250s d\u0279\u01dd\u028c\u1d09\u00f8nsl\u028e dnbl\u1d09s\u0265\u01ddd \u0250nd \u0279\u01ddl\u01dd\u0250s\u01ddd \u0287\u00f8 l\u01dd\u0250\u0279n\u01dd\u0279s, \u0250n\u028e \u0254\u0265\u0250n\u0183\u01dds \u028e\u00f8n \u026f\u0250d\u01dd \u0287\u00f8 \u0287\u0265\u01dd nn\u1d09\u0287 \u028d\u0265\u01ddn \u1d09\u0287 \u028d\u0250s \u0265\u1d09dd\u01ddn \u028d\u1d09ll n\u00f8\u028d b\u01dd \u028c\u1d09s\u1d09bl\u01dd \u0287\u00f8 l\u01dd\u0250\u0279n\u01dd\u0279s.",
"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?": "\u0197\u025f \u0287\u0265\u01dd nn\u1d09\u0287 \u028d\u0250s d\u0279\u01dd\u028c\u1d09\u00f8nsl\u028e dnbl\u1d09s\u0265\u01ddd \u0250nd \u0279\u01ddl\u01dd\u0250s\u01ddd \u0287\u00f8 s\u0287nd\u01ddn\u0287s, \u0250n\u028e \u0254\u0265\u0250n\u0183\u01dds \u028e\u00f8n \u026f\u0250d\u01dd \u0287\u00f8 \u0287\u0265\u01dd nn\u1d09\u0287 \u028d\u0265\u01ddn \u1d09\u0287 \u028d\u0250s \u0265\u1d09dd\u01ddn \u028d\u1d09ll n\u00f8\u028d b\u01dd \u028c\u1d09s\u1d09bl\u01dd \u0287\u00f8 s\u0287nd\u01ddn\u0287s. \u0110\u00f8 \u028e\u00f8n \u028d\u0250n\u0287 \u0287\u00f8 d\u0279\u00f8\u0254\u01dd\u01ddd?",
- "If you are unable to access your account contact us via email using {email}.": "\u0197\u025f \u028e\u00f8n \u0250\u0279\u01dd nn\u0250bl\u01dd \u0287\u00f8 \u0250\u0254\u0254\u01ddss \u028e\u00f8n\u0279 \u0250\u0254\u0254\u00f8nn\u0287 \u0254\u00f8n\u0287\u0250\u0254\u0287 ns \u028c\u1d09\u0250 \u01dd\u026f\u0250\u1d09l ns\u1d09n\u0183 {email}.",
"If you do not yet have an account, use the button below to register.": "\u0197\u025f \u028e\u00f8n d\u00f8 n\u00f8\u0287 \u028e\u01dd\u0287 \u0265\u0250\u028c\u01dd \u0250n \u0250\u0254\u0254\u00f8nn\u0287, ns\u01dd \u0287\u0265\u01dd bn\u0287\u0287\u00f8n b\u01ddl\u00f8\u028d \u0287\u00f8 \u0279\u01dd\u0183\u1d09s\u0287\u01dd\u0279.",
"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.": "\u0197\u025f \u028e\u00f8n d\u00f8n'\u0287 \u028c\u01dd\u0279\u1d09\u025f\u028e \u028e\u00f8n\u0279 \u1d09d\u01ddn\u0287\u1d09\u0287\u028e n\u00f8\u028d, \u028e\u00f8n \u0254\u0250n s\u0287\u1d09ll \u01ddxdl\u00f8\u0279\u01dd \u028e\u00f8n\u0279 \u0254\u00f8n\u0279s\u01dd \u025f\u0279\u00f8\u026f \u028e\u00f8n\u0279 d\u0250s\u0265b\u00f8\u0250\u0279d. \u024e\u00f8n \u028d\u1d09ll \u0279\u01dd\u0254\u01dd\u1d09\u028c\u01dd d\u01dd\u0279\u1d09\u00f8d\u1d09\u0254 \u0279\u01dd\u026f\u1d09nd\u01dd\u0279s \u025f\u0279\u00f8\u026f %(platformName)s \u0287\u00f8 \u028c\u01dd\u0279\u1d09\u025f\u028e \u028e\u00f8n\u0279 \u1d09d\u01ddn\u0287\u1d09\u0287\u028e.",
- "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.": "\u0197\u025f \u028e\u00f8n d\u00f8n'\u0287 \u028c\u01dd\u0279\u1d09\u025f\u028e \u028e\u00f8n\u0279 \u1d09d\u01ddn\u0287\u1d09\u0287\u028e n\u00f8\u028d, \u028e\u00f8n \u0254\u0250n s\u0287\u1d09ll \u01ddxdl\u00f8\u0279\u01dd \u028e\u00f8n\u0279 \u0254\u00f8n\u0279s\u01dd \u025f\u0279\u00f8\u026f \u028e\u00f8n\u0279 d\u0250s\u0265b\u00f8\u0250\u0279d. \u024e\u00f8n \u028d\u1d09ll \u0279\u01dd\u0254\u01dd\u1d09\u028c\u01dd d\u01dd\u0279\u1d09\u00f8d\u1d09\u0254 \u0279\u01dd\u026f\u1d09nd\u01dd\u0279s \u025f\u0279\u00f8\u026f {platformName} \u0287\u00f8 \u028c\u01dd\u0279\u1d09\u025f\u028e \u028e\u00f8n\u0279 \u1d09d\u01ddn\u0287\u1d09\u0287\u028e.",
"If you leave, you can no longer post in this team's discussions.Your place will be available to another learner.": "\u0197\u025f \u028e\u00f8n l\u01dd\u0250\u028c\u01dd, \u028e\u00f8n \u0254\u0250n n\u00f8 l\u00f8n\u0183\u01dd\u0279 d\u00f8s\u0287 \u1d09n \u0287\u0265\u1d09s \u0287\u01dd\u0250\u026f's d\u1d09s\u0254nss\u1d09\u00f8ns.\u024e\u00f8n\u0279 dl\u0250\u0254\u01dd \u028d\u1d09ll b\u01dd \u0250\u028c\u0250\u1d09l\u0250bl\u01dd \u0287\u00f8 \u0250n\u00f8\u0287\u0265\u01dd\u0279 l\u01dd\u0250\u0279n\u01dd\u0279.",
"If you make significant changes, make sure you notify members of the team before making these changes.": "\u0197\u025f \u028e\u00f8n \u026f\u0250\u029e\u01dd s\u1d09\u0183n\u1d09\u025f\u1d09\u0254\u0250n\u0287 \u0254\u0265\u0250n\u0183\u01dds, \u026f\u0250\u029e\u01dd sn\u0279\u01dd \u028e\u00f8n n\u00f8\u0287\u1d09\u025f\u028e \u026f\u01dd\u026fb\u01dd\u0279s \u00f8\u025f \u0287\u0265\u01dd \u0287\u01dd\u0250\u026f b\u01dd\u025f\u00f8\u0279\u01dd \u026f\u0250\u029e\u1d09n\u0183 \u0287\u0265\u01dds\u01dd \u0254\u0265\u0250n\u0183\u01dds.",
"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.": "\u0197\u025f \u028e\u00f8n \u026f\u0250\u029e\u01dd \u0287\u0265\u1d09s %(xblockType)s \u028c\u1d09s\u1d09bl\u01dd \u0287\u00f8 l\u01dd\u0250\u0279n\u01dd\u0279s, l\u01dd\u0250\u0279n\u01dd\u0279s \u028d\u1d09ll b\u01dd \u0250bl\u01dd \u0287\u00f8 s\u01dd\u01dd \u1d09\u0287s \u0254\u00f8n\u0287\u01ddn\u0287 \u0250\u025f\u0287\u01dd\u0279 \u0287\u0265\u01dd \u0279\u01ddl\u01dd\u0250s\u01dd d\u0250\u0287\u01dd \u0265\u0250s d\u0250ss\u01ddd \u0250nd \u028e\u00f8n \u0265\u0250\u028c\u01dd dnbl\u1d09s\u0265\u01ddd \u0287\u0265\u01dd nn\u1d09\u0287. \u00d8nl\u028e nn\u1d09\u0287s \u0287\u0265\u0250\u0287 \u0250\u0279\u01dd \u01ddxdl\u1d09\u0254\u1d09\u0287l\u028e \u0265\u1d09dd\u01ddn \u025f\u0279\u00f8\u026f l\u01dd\u0250\u0279n\u01dd\u0279s \u028d\u1d09ll \u0279\u01dd\u026f\u0250\u1d09n \u0265\u1d09dd\u01ddn \u0250\u025f\u0287\u01dd\u0279 \u028e\u00f8n \u0254l\u01dd\u0250\u0279 \u0287\u0265\u1d09s \u00f8d\u0287\u1d09\u00f8n \u025f\u00f8\u0279 \u0287\u0265\u01dd %(xblockType)s.",
@@ -1047,6 +1046,8 @@
"Name or short description of the configuration": "N\u0250\u026f\u01dd \u00f8\u0279 s\u0265\u00f8\u0279\u0287 d\u01dds\u0254\u0279\u1d09d\u0287\u1d09\u00f8n \u00f8\u025f \u0287\u0265\u01dd \u0254\u00f8n\u025f\u1d09\u0183n\u0279\u0250\u0287\u1d09\u00f8n",
"Navigate up": "N\u0250\u028c\u1d09\u0183\u0250\u0287\u01dd nd",
"Need help logging in?": "N\u01dd\u01ddd \u0265\u01ddld l\u00f8\u0183\u0183\u1d09n\u0183 \u1d09n?",
+ "Need help signing in?": "N\u01dd\u01ddd \u0265\u01ddld s\u1d09\u0183n\u1d09n\u0183 \u1d09n?",
+ "Need other help signing in?": "N\u01dd\u01ddd \u00f8\u0287\u0265\u01dd\u0279 \u0265\u01ddld s\u1d09\u0183n\u1d09n\u0183 \u1d09n?",
"Needs verified certificate ": "N\u01dd\u01ddds \u028c\u01dd\u0279\u1d09\u025f\u1d09\u01ddd \u0254\u01dd\u0279\u0287\u1d09\u025f\u1d09\u0254\u0250\u0287\u01dd ",
"Never published": "N\u01dd\u028c\u01dd\u0279 dnbl\u1d09s\u0265\u01ddd",
"Never show assessment results": "N\u01dd\u028c\u01dd\u0279 s\u0265\u00f8\u028d \u0250ss\u01ddss\u026f\u01ddn\u0287 \u0279\u01ddsnl\u0287s",
@@ -1066,6 +1067,7 @@
"No Flash Detected": "N\u00f8 Fl\u0250s\u0265 \u0110\u01dd\u0287\u01dd\u0254\u0287\u01ddd",
"No Timed Transcript": "N\u00f8 \u0166\u1d09\u026f\u01ddd \u0166\u0279\u0250ns\u0254\u0279\u1d09d\u0287",
"No Webcam Detected": "N\u00f8 W\u01ddb\u0254\u0250\u026f \u0110\u01dd\u0287\u01dd\u0254\u0287\u01ddd",
+ "No assignments for team": "N\u00f8 \u0250ss\u1d09\u0183n\u026f\u01ddn\u0287s \u025f\u00f8\u0279 \u0287\u01dd\u0250\u026f",
"No color": "N\u00f8 \u0254\u00f8l\u00f8\u0279",
"No content-specific discussion topics exist.": "N\u00f8 \u0254\u00f8n\u0287\u01ddn\u0287-sd\u01dd\u0254\u1d09\u025f\u1d09\u0254 d\u1d09s\u0254nss\u1d09\u00f8n \u0287\u00f8d\u1d09\u0254s \u01ddx\u1d09s\u0287.",
"No description available": "N\u00f8 d\u01dds\u0254\u0279\u1d09d\u0287\u1d09\u00f8n \u0250\u028c\u0250\u1d09l\u0250bl\u01dd",
@@ -1114,7 +1116,7 @@
"Once in position, use the Take Photo button {icon} to capture your photo": "\u00d8n\u0254\u01dd \u1d09n d\u00f8s\u1d09\u0287\u1d09\u00f8n, ns\u01dd \u0287\u0265\u01dd \u0166\u0250\u029e\u01dd \u2c63\u0265\u00f8\u0287\u00f8 bn\u0287\u0287\u00f8n {icon} \u0287\u00f8 \u0254\u0250d\u0287n\u0279\u01dd \u028e\u00f8n\u0279 d\u0265\u00f8\u0287\u00f8",
"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.": "\u00d8n\u0254\u01dd \u028e\u00f8n \u0254\u00f8\u026fdl\u01dd\u0287\u01dd \u00f8n\u01dd \u00f8\u025f \u0287\u0265\u01dd d\u0279\u00f8\u0183\u0279\u0250\u026f \u0279\u01ddbn\u1d09\u0279\u01dd\u026f\u01ddn\u0287s \u028e\u00f8n \u0265\u0250\u028c\u01dd \u0250 d\u0279\u00f8\u0183\u0279\u0250\u026f \u0279\u01dd\u0254\u00f8\u0279d. \u0166\u0265\u1d09s \u0279\u01dd\u0254\u00f8\u0279d \u1d09s \u026f\u0250\u0279\u029e\u01ddd \u0254\u00f8\u026fdl\u01dd\u0287\u01dd \u00f8n\u0254\u01dd \u028e\u00f8n \u026f\u01dd\u01dd\u0287 \u0250ll d\u0279\u00f8\u0183\u0279\u0250\u026f \u0279\u01ddbn\u1d09\u0279\u01dd\u026f\u01ddn\u0287s. \u023a d\u0279\u00f8\u0183\u0279\u0250\u026f \u0279\u01dd\u0254\u00f8\u0279d \u0254\u0250n b\u01dd ns\u01ddd \u0287\u00f8 \u0254\u00f8n\u0287\u1d09nn\u01dd \u028e\u00f8n\u0279 l\u01dd\u0250\u0279n\u1d09n\u0183 \u027e\u00f8n\u0279n\u01dd\u028e \u0250nd d\u01dd\u026f\u00f8ns\u0287\u0279\u0250\u0287\u01dd \u028e\u00f8n\u0279 l\u01dd\u0250\u0279n\u1d09n\u0183 \u0287\u00f8 \u00f8\u0287\u0265\u01dd\u0279s.",
"Once your account is deleted, you cannot use it to take courses on the {platformName} app, {siteName}, or any other site hosted by {platformName}.": "\u00d8n\u0254\u01dd \u028e\u00f8n\u0279 \u0250\u0254\u0254\u00f8nn\u0287 \u1d09s d\u01ddl\u01dd\u0287\u01ddd, \u028e\u00f8n \u0254\u0250nn\u00f8\u0287 ns\u01dd \u1d09\u0287 \u0287\u00f8 \u0287\u0250\u029e\u01dd \u0254\u00f8n\u0279s\u01dds \u00f8n \u0287\u0265\u01dd {platformName} \u0250dd, {siteName}, \u00f8\u0279 \u0250n\u028e \u00f8\u0287\u0265\u01dd\u0279 s\u1d09\u0287\u01dd \u0265\u00f8s\u0287\u01ddd b\u028e {platformName}.",
- "Only <%= fileTypes %> files can be uploaded. Please select a file ending in <%= fileExtensions %> to upload.": "\u00d8nl\u028e <%= fileTypes %> \u025f\u1d09l\u01dds \u0254\u0250n b\u01dd ndl\u00f8\u0250d\u01ddd. \u2c63l\u01dd\u0250s\u01dd s\u01ddl\u01dd\u0254\u0287 \u0250 \u025f\u1d09l\u01dd \u01ddnd\u1d09n\u0183 \u1d09n <%= fileExtensions %> \u0287\u00f8 ndl\u00f8\u0250d.",
+ "Only <%- fileTypes %> files can be uploaded. Please select a file ending in <%- (fileExtensions) %> to upload.": "\u00d8nl\u028e <%- fileTypes %> \u025f\u1d09l\u01dds \u0254\u0250n b\u01dd ndl\u00f8\u0250d\u01ddd. \u2c63l\u01dd\u0250s\u01dd s\u01ddl\u01dd\u0254\u0287 \u0250 \u025f\u1d09l\u01dd \u01ddnd\u1d09n\u0183 \u1d09n <%- (fileExtensions) %> \u0287\u00f8 ndl\u00f8\u0250d.",
"Only properly formatted .csv files will be accepted.": "\u00d8nl\u028e d\u0279\u00f8d\u01dd\u0279l\u028e \u025f\u00f8\u0279\u026f\u0250\u0287\u0287\u01ddd .\u0254s\u028c \u025f\u1d09l\u01dds \u028d\u1d09ll b\u01dd \u0250\u0254\u0254\u01ddd\u0287\u01ddd.",
"Only the parent course staff of a CCX can create content groups.": "\u00d8nl\u028e \u0287\u0265\u01dd d\u0250\u0279\u01ddn\u0287 \u0254\u00f8n\u0279s\u01dd s\u0287\u0250\u025f\u025f \u00f8\u025f \u0250 \u023b\u023bX \u0254\u0250n \u0254\u0279\u01dd\u0250\u0287\u01dd \u0254\u00f8n\u0287\u01ddn\u0287 \u0183\u0279\u00f8nds.",
"Open": "\u00d8d\u01ddn",
@@ -1137,6 +1139,7 @@
"Organization of the signatory": "\u00d8\u0279\u0183\u0250n\u1d09z\u0250\u0287\u1d09\u00f8n \u00f8\u025f \u0287\u0265\u01dd s\u1d09\u0183n\u0250\u0287\u00f8\u0279\u028e",
"Organization:": "\u00d8\u0279\u0183\u0250n\u1d09z\u0250\u0287\u1d09\u00f8n:",
"Other": "\u00d8\u0287\u0265\u01dd\u0279",
+ "Other sign-in issues": "\u00d8\u0287\u0265\u01dd\u0279 s\u1d09\u0183n-\u1d09n \u1d09ssn\u01dds",
"Overall Score": "\u00d8\u028c\u01dd\u0279\u0250ll S\u0254\u00f8\u0279\u01dd",
"PDF Chapters": "\u2c63\u0110F \u023b\u0265\u0250d\u0287\u01dd\u0279s",
"Page break": "\u2c63\u0250\u0183\u01dd b\u0279\u01dd\u0250\u029e",
@@ -1383,8 +1386,8 @@
"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": "S\u01ddl\u01dd\u0254\u0287 \u0250 d\u0279\u01dd\u0279\u01ddbn\u1d09s\u1d09\u0287\u01dd snbs\u01dd\u0254\u0287\u1d09\u00f8n \u0250nd \u01ddn\u0287\u01dd\u0279 \u0250 \u026f\u1d09n\u1d09\u026fn\u026f s\u0254\u00f8\u0279\u01dd d\u01dd\u0279\u0254\u01ddn\u0287\u0250\u0183\u01dd \u0250nd \u026f\u1d09n\u1d09\u026fn\u026f \u0254\u00f8\u026fdl\u01dd\u0287\u1d09\u00f8n d\u01dd\u0279\u0254\u01ddn\u0287\u0250\u0183\u01dd \u0287\u00f8 l\u1d09\u026f\u1d09\u0287 \u0250\u0254\u0254\u01ddss \u0287\u00f8 \u0287\u0265\u1d09s snbs\u01dd\u0254\u0287\u1d09\u00f8n. \u023all\u00f8\u028d\u01ddd \u028c\u0250ln\u01dds \u0250\u0279\u01dd 0-100",
"Select a section or problem": "S\u01ddl\u01dd\u0254\u0287 \u0250 s\u01dd\u0254\u0287\u1d09\u00f8n \u00f8\u0279 d\u0279\u00f8bl\u01dd\u026f",
"Select a session:": "S\u01ddl\u01dd\u0254\u0287 \u0250 s\u01ddss\u1d09\u00f8n:",
+ "Select a subject for your support request.": "S\u01ddl\u01dd\u0254\u0287 \u0250 snb\u027e\u01dd\u0254\u0287 \u025f\u00f8\u0279 \u028e\u00f8n\u0279 sndd\u00f8\u0279\u0287 \u0279\u01ddbn\u01dds\u0287.",
"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.": "S\u01ddl\u01dd\u0254\u0287 \u0250 \u0287\u1d09\u026f\u01dd \u0250ll\u00f8\u0287\u026f\u01ddn\u0287 \u025f\u00f8\u0279 \u0287\u0265\u01dd \u01ddx\u0250\u026f. \u0197\u025f \u1d09\u0287 \u1d09s \u00f8\u028c\u01dd\u0279 24 \u0265\u00f8n\u0279s, \u0287\u028ed\u01dd \u1d09n \u0287\u0265\u01dd \u0250\u026f\u00f8nn\u0287 \u00f8\u025f \u0287\u1d09\u026f\u01dd. \u024e\u00f8n \u0254\u0250n \u0183\u0279\u0250n\u0287 \u1d09nd\u1d09\u028c\u1d09dn\u0250l l\u01dd\u0250\u0279n\u01dd\u0279s \u01ddx\u0287\u0279\u0250 \u0287\u1d09\u026f\u01dd \u0287\u00f8 \u0254\u00f8\u026fdl\u01dd\u0287\u01dd \u0287\u0265\u01dd \u01ddx\u0250\u026f \u0287\u0265\u0279\u00f8n\u0183\u0265 \u0287\u0265\u01dd \u0197ns\u0287\u0279n\u0254\u0287\u00f8\u0279 \u0110\u0250s\u0265b\u00f8\u0250\u0279d.",
- "Select a topic for your support request.": "S\u01ddl\u01dd\u0254\u0287 \u0250 \u0287\u00f8d\u1d09\u0254 \u025f\u00f8\u0279 \u028e\u00f8n\u0279 sndd\u00f8\u0279\u0287 \u0279\u01ddbn\u01dds\u0287.",
"Select all": "S\u01ddl\u01dd\u0254\u0287 \u0250ll",
"Select fidelity": "S\u01ddl\u01dd\u0254\u0287 \u025f\u1d09d\u01ddl\u1d09\u0287\u028e",
"Select language": "S\u01ddl\u01dd\u0254\u0287 l\u0250n\u0183n\u0250\u0183\u01dd",
@@ -1453,6 +1456,7 @@
"Sign in using %(providerName)s": "S\u1d09\u0183n \u1d09n ns\u1d09n\u0183 %(providerName)s",
"Sign in with %(providerName)s": "S\u1d09\u0183n \u1d09n \u028d\u1d09\u0287\u0265 %(providerName)s",
"Sign in with Institution/Campus Credentials": "S\u1d09\u0183n \u1d09n \u028d\u1d09\u0287\u0265 \u0197ns\u0287\u1d09\u0287n\u0287\u1d09\u00f8n/\u023b\u0250\u026fdns \u023b\u0279\u01ddd\u01ddn\u0287\u1d09\u0250ls",
+ "Sign in with your company or school": "S\u1d09\u0183n \u1d09n \u028d\u1d09\u0287\u0265 \u028e\u00f8n\u0279 \u0254\u00f8\u026fd\u0250n\u028e \u00f8\u0279 s\u0254\u0265\u00f8\u00f8l",
"Sign in.": "S\u1d09\u0183n \u1d09n.",
"Signatory": "S\u1d09\u0183n\u0250\u0287\u00f8\u0279\u028e",
"Signatory field(s) has invalid data.": "S\u1d09\u0183n\u0250\u0287\u00f8\u0279\u028e \u025f\u1d09\u01ddld(s) \u0265\u0250s \u1d09n\u028c\u0250l\u1d09d d\u0250\u0287\u0250.",
@@ -1559,6 +1563,7 @@
"Task inputs": "\u0166\u0250s\u029e \u1d09ndn\u0287s",
"Teaching Assistant": "\u0166\u01dd\u0250\u0254\u0265\u1d09n\u0183 \u023ass\u1d09s\u0287\u0250n\u0287",
"Team \"{team}\" successfully deleted.": "\u0166\u01dd\u0250\u026f \"{team}\" sn\u0254\u0254\u01ddss\u025fnll\u028e d\u01ddl\u01dd\u0287\u01ddd.",
+ "Team Assignments": "\u0166\u01dd\u0250\u026f \u023ass\u1d09\u0183n\u026f\u01ddn\u0287s",
"Team Description (Required) *": "\u0166\u01dd\u0250\u026f \u0110\u01dds\u0254\u0279\u1d09d\u0287\u1d09\u00f8n (\u024c\u01ddbn\u1d09\u0279\u01ddd) *",
"Team Details": "\u0166\u01dd\u0250\u026f \u0110\u01dd\u0287\u0250\u1d09ls",
"Team Name (Required) *": "\u0166\u01dd\u0250\u026f N\u0250\u026f\u01dd (\u024c\u01ddbn\u1d09\u0279\u01ddd) *",
@@ -1577,7 +1582,6 @@
"Textbook Name": "\u0166\u01ddx\u0287b\u00f8\u00f8\u029e N\u0250\u026f\u01dd",
"Textbook information": "\u0166\u01ddx\u0287b\u00f8\u00f8\u029e \u1d09n\u025f\u00f8\u0279\u026f\u0250\u0287\u1d09\u00f8n",
"Textbook name is required": "\u0166\u01ddx\u0287b\u00f8\u00f8\u029e n\u0250\u026f\u01dd \u1d09s \u0279\u01ddbn\u1d09\u0279\u01ddd",
- "Thank you %(full_name)s! We have received your payment for %(course_name)s.": "\u0166\u0265\u0250n\u029e \u028e\u00f8n %(full_name)s! W\u01dd \u0265\u0250\u028c\u01dd \u0279\u01dd\u0254\u01dd\u1d09\u028c\u01ddd \u028e\u00f8n\u0279 d\u0250\u028e\u026f\u01ddn\u0287 \u025f\u00f8\u0279 %(course_name)s.",
"Thank you for setting your course goal to {goal}!": "\u0166\u0265\u0250n\u029e \u028e\u00f8n \u025f\u00f8\u0279 s\u01dd\u0287\u0287\u1d09n\u0183 \u028e\u00f8n\u0279 \u0254\u00f8n\u0279s\u01dd \u0183\u00f8\u0250l \u0287\u00f8 {goal}!",
"Thank you for submitting a request! We appreciate your patience while we work to review your request.": "\u0166\u0265\u0250n\u029e \u028e\u00f8n \u025f\u00f8\u0279 snb\u026f\u1d09\u0287\u0287\u1d09n\u0183 \u0250 \u0279\u01ddbn\u01dds\u0287! W\u01dd \u0250dd\u0279\u01dd\u0254\u1d09\u0250\u0287\u01dd \u028e\u00f8n\u0279 d\u0250\u0287\u1d09\u01ddn\u0254\u01dd \u028d\u0265\u1d09l\u01dd \u028d\u01dd \u028d\u00f8\u0279\u029e \u0287\u00f8 \u0279\u01dd\u028c\u1d09\u01dd\u028d \u028e\u00f8n\u0279 \u0279\u01ddbn\u01dds\u0287.",
"Thank you for submitting your financial assistance application for {course_name}! You can expect a response in 2-4 business days.": "\u0166\u0265\u0250n\u029e \u028e\u00f8n \u025f\u00f8\u0279 snb\u026f\u1d09\u0287\u0287\u1d09n\u0183 \u028e\u00f8n\u0279 \u025f\u1d09n\u0250n\u0254\u1d09\u0250l \u0250ss\u1d09s\u0287\u0250n\u0254\u01dd \u0250ddl\u1d09\u0254\u0250\u0287\u1d09\u00f8n \u025f\u00f8\u0279 {course_name}! \u024e\u00f8n \u0254\u0250n \u01ddxd\u01dd\u0254\u0287 \u0250 \u0279\u01ddsd\u00f8ns\u01dd \u1d09n 2-4 bns\u1d09n\u01ddss d\u0250\u028es.",
@@ -1591,8 +1595,8 @@
"The certificate for this learner has been re-validated and the system is re-running the grade for this learner.": "\u0166\u0265\u01dd \u0254\u01dd\u0279\u0287\u1d09\u025f\u1d09\u0254\u0250\u0287\u01dd \u025f\u00f8\u0279 \u0287\u0265\u1d09s l\u01dd\u0250\u0279n\u01dd\u0279 \u0265\u0250s b\u01dd\u01ddn \u0279\u01dd-\u028c\u0250l\u1d09d\u0250\u0287\u01ddd \u0250nd \u0287\u0265\u01dd s\u028es\u0287\u01dd\u026f \u1d09s \u0279\u01dd-\u0279nnn\u1d09n\u0183 \u0287\u0265\u01dd \u0183\u0279\u0250d\u01dd \u025f\u00f8\u0279 \u0287\u0265\u1d09s l\u01dd\u0250\u0279n\u01dd\u0279.",
"The cohort cannot be added": "\u0166\u0265\u01dd \u0254\u00f8\u0265\u00f8\u0279\u0287 \u0254\u0250nn\u00f8\u0287 b\u01dd \u0250dd\u01ddd",
"The cohort cannot be saved": "\u0166\u0265\u01dd \u0254\u00f8\u0265\u00f8\u0279\u0287 \u0254\u0250nn\u00f8\u0287 b\u01dd s\u0250\u028c\u01ddd",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "\u0166\u0265\u01dd \u0254\u00f8\u026fb\u1d09n\u01ddd l\u01ddn\u0183\u0287\u0265 \u00f8\u025f \u0287\u0265\u01dd \u00f8\u0279\u0183\u0250n\u1d09z\u0250\u0287\u1d09\u00f8n \u0250nd l\u1d09b\u0279\u0250\u0279\u028e \u0254\u00f8d\u01dd \u025f\u1d09\u01ddlds \u0254\u0250nn\u00f8\u0287 b\u01dd \u026f\u00f8\u0279\u01dd \u0287\u0265\u0250n <%=limit%> \u0254\u0265\u0250\u0279\u0250\u0254\u0287\u01dd\u0279s.",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "\u0166\u0265\u01dd \u0254\u00f8\u026fb\u1d09n\u01ddd l\u01ddn\u0183\u0287\u0265 \u00f8\u025f \u0287\u0265\u01dd \u00f8\u0279\u0183\u0250n\u1d09z\u0250\u0287\u1d09\u00f8n, \u0254\u00f8n\u0279s\u01dd nn\u026fb\u01dd\u0279, \u0250nd \u0254\u00f8n\u0279s\u01dd \u0279nn \u025f\u1d09\u01ddlds \u0254\u0250nn\u00f8\u0287 b\u01dd \u026f\u00f8\u0279\u01dd \u0287\u0265\u0250n <%=limit%> \u0254\u0265\u0250\u0279\u0250\u0254\u0287\u01dd\u0279s.",
+ "The combined length of the organization and library code fields cannot be more than <%- limit %> characters.": "\u0166\u0265\u01dd \u0254\u00f8\u026fb\u1d09n\u01ddd l\u01ddn\u0183\u0287\u0265 \u00f8\u025f \u0287\u0265\u01dd \u00f8\u0279\u0183\u0250n\u1d09z\u0250\u0287\u1d09\u00f8n \u0250nd l\u1d09b\u0279\u0250\u0279\u028e \u0254\u00f8d\u01dd \u025f\u1d09\u01ddlds \u0254\u0250nn\u00f8\u0287 b\u01dd \u026f\u00f8\u0279\u01dd \u0287\u0265\u0250n <%- limit %> \u0254\u0265\u0250\u0279\u0250\u0254\u0287\u01dd\u0279s.",
+ "The combined length of the organization, course number, and course run fields cannot be more than <%- limit %> characters.": "\u0166\u0265\u01dd \u0254\u00f8\u026fb\u1d09n\u01ddd l\u01ddn\u0183\u0287\u0265 \u00f8\u025f \u0287\u0265\u01dd \u00f8\u0279\u0183\u0250n\u1d09z\u0250\u0287\u1d09\u00f8n, \u0254\u00f8n\u0279s\u01dd nn\u026fb\u01dd\u0279, \u0250nd \u0254\u00f8n\u0279s\u01dd \u0279nn \u025f\u1d09\u01ddlds \u0254\u0250nn\u00f8\u0287 b\u01dd \u026f\u00f8\u0279\u01dd \u0287\u0265\u0250n <%- limit %> \u0254\u0265\u0250\u0279\u0250\u0254\u0287\u01dd\u0279s.",
"The country or region where you live.": "\u0166\u0265\u01dd \u0254\u00f8nn\u0287\u0279\u028e \u00f8\u0279 \u0279\u01dd\u0183\u1d09\u00f8n \u028d\u0265\u01dd\u0279\u01dd \u028e\u00f8n l\u1d09\u028c\u01dd.",
"The country that team members primarily identify with.": "\u0166\u0265\u01dd \u0254\u00f8nn\u0287\u0279\u028e \u0287\u0265\u0250\u0287 \u0287\u01dd\u0250\u026f \u026f\u01dd\u026fb\u01dd\u0279s d\u0279\u1d09\u026f\u0250\u0279\u1d09l\u028e \u1d09d\u01ddn\u0287\u1d09\u025f\u028e \u028d\u1d09\u0287\u0265.",
"The course end date must be later than the course start date.": "\u0166\u0265\u01dd \u0254\u00f8n\u0279s\u01dd \u01ddnd d\u0250\u0287\u01dd \u026fns\u0287 b\u01dd l\u0250\u0287\u01dd\u0279 \u0287\u0265\u0250n \u0287\u0265\u01dd \u0254\u00f8n\u0279s\u01dd s\u0287\u0250\u0279\u0287 d\u0250\u0287\u01dd.",
@@ -1619,7 +1623,6 @@
"The minimum completion percentage must be a whole number between 0 and 100.": "\u0166\u0265\u01dd \u026f\u1d09n\u1d09\u026fn\u026f \u0254\u00f8\u026fdl\u01dd\u0287\u1d09\u00f8n d\u01dd\u0279\u0254\u01ddn\u0287\u0250\u0183\u01dd \u026fns\u0287 b\u01dd \u0250 \u028d\u0265\u00f8l\u01dd nn\u026fb\u01dd\u0279 b\u01dd\u0287\u028d\u01dd\u01ddn 0 \u0250nd 100.",
"The minimum grade for course credit is not set.": "\u0166\u0265\u01dd \u026f\u1d09n\u1d09\u026fn\u026f \u0183\u0279\u0250d\u01dd \u025f\u00f8\u0279 \u0254\u00f8n\u0279s\u01dd \u0254\u0279\u01ddd\u1d09\u0287 \u1d09s n\u00f8\u0287 s\u01dd\u0287.",
"The minimum score percentage must be a whole number between 0 and 100.": "\u0166\u0265\u01dd \u026f\u1d09n\u1d09\u026fn\u026f s\u0254\u00f8\u0279\u01dd d\u01dd\u0279\u0254\u01ddn\u0287\u0250\u0183\u01dd \u026fns\u0287 b\u01dd \u0250 \u028d\u0265\u00f8l\u01dd nn\u026fb\u01dd\u0279 b\u01dd\u0287\u028d\u01dd\u01ddn 0 \u0250nd 100.",
- "The more you tell us, the more quickly and helpfully we can respond!": "\u0166\u0265\u01dd \u026f\u00f8\u0279\u01dd \u028e\u00f8n \u0287\u01ddll ns, \u0287\u0265\u01dd \u026f\u00f8\u0279\u01dd bn\u1d09\u0254\u029el\u028e \u0250nd \u0265\u01ddld\u025fnll\u028e \u028d\u01dd \u0254\u0250n \u0279\u01ddsd\u00f8nd!",
"The name of this signatory as it should appear on certificates.": "\u0166\u0265\u01dd n\u0250\u026f\u01dd \u00f8\u025f \u0287\u0265\u1d09s s\u1d09\u0183n\u0250\u0287\u00f8\u0279\u028e \u0250s \u1d09\u0287 s\u0265\u00f8nld \u0250dd\u01dd\u0250\u0279 \u00f8n \u0254\u01dd\u0279\u0287\u1d09\u025f\u1d09\u0254\u0250\u0287\u01dds.",
"The name that identifies you on {platform_name}. You cannot change your username.": "\u0166\u0265\u01dd n\u0250\u026f\u01dd \u0287\u0265\u0250\u0287 \u1d09d\u01ddn\u0287\u1d09\u025f\u1d09\u01dds \u028e\u00f8n \u00f8n {platform_name}. \u024e\u00f8n \u0254\u0250nn\u00f8\u0287 \u0254\u0265\u0250n\u0183\u01dd \u028e\u00f8n\u0279 ns\u01dd\u0279n\u0250\u026f\u01dd.",
"The name that is used for ID verification and that appears on your certificates.": "\u0166\u0265\u01dd n\u0250\u026f\u01dd \u0287\u0265\u0250\u0287 \u1d09s ns\u01ddd \u025f\u00f8\u0279 \u0197\u0110 \u028c\u01dd\u0279\u1d09\u025f\u1d09\u0254\u0250\u0287\u1d09\u00f8n \u0250nd \u0287\u0265\u0250\u0287 \u0250dd\u01dd\u0250\u0279s \u00f8n \u028e\u00f8n\u0279 \u0254\u01dd\u0279\u0287\u1d09\u025f\u1d09\u0254\u0250\u0287\u01dds.",
@@ -1729,6 +1732,8 @@
"This response could not be unmarked as an answer. Refresh the page and try again.": "\u0166\u0265\u1d09s \u0279\u01ddsd\u00f8ns\u01dd \u0254\u00f8nld n\u00f8\u0287 b\u01dd nn\u026f\u0250\u0279\u029e\u01ddd \u0250s \u0250n \u0250ns\u028d\u01dd\u0279. \u024c\u01dd\u025f\u0279\u01dds\u0265 \u0287\u0265\u01dd d\u0250\u0183\u01dd \u0250nd \u0287\u0279\u028e \u0250\u0183\u0250\u1d09n.",
"This role requires a divided discussions scheme.": "\u0166\u0265\u1d09s \u0279\u00f8l\u01dd \u0279\u01ddbn\u1d09\u0279\u01dds \u0250 d\u1d09\u028c\u1d09d\u01ddd d\u1d09s\u0254nss\u1d09\u00f8ns s\u0254\u0265\u01dd\u026f\u01dd.",
"This short name for the assignment type (for example, HW or Midterm) appears next to assignments on a learner's Progress page.": "\u0166\u0265\u1d09s s\u0265\u00f8\u0279\u0287 n\u0250\u026f\u01dd \u025f\u00f8\u0279 \u0287\u0265\u01dd \u0250ss\u1d09\u0183n\u026f\u01ddn\u0287 \u0287\u028ed\u01dd (\u025f\u00f8\u0279 \u01ddx\u0250\u026fdl\u01dd, \u0126W \u00f8\u0279 M\u1d09d\u0287\u01dd\u0279\u026f) \u0250dd\u01dd\u0250\u0279s n\u01ddx\u0287 \u0287\u00f8 \u0250ss\u1d09\u0183n\u026f\u01ddn\u0287s \u00f8n \u0250 l\u01dd\u0250\u0279n\u01dd\u0279's \u2c63\u0279\u00f8\u0183\u0279\u01ddss d\u0250\u0183\u01dd.",
+ "This special exam has been released to learners. You may not convert it to another type of special exam. You may revert this subsection back to being a basic exam by selecting 'None', but you will NOT be able to configure it as a special exam in the future.": "\u0166\u0265\u1d09s sd\u01dd\u0254\u1d09\u0250l \u01ddx\u0250\u026f \u0265\u0250s b\u01dd\u01ddn \u0279\u01ddl\u01dd\u0250s\u01ddd \u0287\u00f8 l\u01dd\u0250\u0279n\u01dd\u0279s. \u024e\u00f8n \u026f\u0250\u028e n\u00f8\u0287 \u0254\u00f8n\u028c\u01dd\u0279\u0287 \u1d09\u0287 \u0287\u00f8 \u0250n\u00f8\u0287\u0265\u01dd\u0279 \u0287\u028ed\u01dd \u00f8\u025f sd\u01dd\u0254\u1d09\u0250l \u01ddx\u0250\u026f. \u024e\u00f8n \u026f\u0250\u028e \u0279\u01dd\u028c\u01dd\u0279\u0287 \u0287\u0265\u1d09s snbs\u01dd\u0254\u0287\u1d09\u00f8n b\u0250\u0254\u029e \u0287\u00f8 b\u01dd\u1d09n\u0183 \u0250 b\u0250s\u1d09\u0254 \u01ddx\u0250\u026f b\u028e s\u01ddl\u01dd\u0254\u0287\u1d09n\u0183 'N\u00f8n\u01dd', bn\u0287 \u028e\u00f8n \u028d\u1d09ll N\u00d8\u0166 b\u01dd \u0250bl\u01dd \u0287\u00f8 \u0254\u00f8n\u025f\u1d09\u0183n\u0279\u01dd \u1d09\u0287 \u0250s \u0250 sd\u01dd\u0254\u1d09\u0250l \u01ddx\u0250\u026f \u1d09n \u0287\u0265\u01dd \u025fn\u0287n\u0279\u01dd.",
+ "This subsection was released to learners as a special exam, but was reverted back to a basic exam. You may not configure it as a special exam now. Contact edX Support for assistance.": "\u0166\u0265\u1d09s snbs\u01dd\u0254\u0287\u1d09\u00f8n \u028d\u0250s \u0279\u01ddl\u01dd\u0250s\u01ddd \u0287\u00f8 l\u01dd\u0250\u0279n\u01dd\u0279s \u0250s \u0250 sd\u01dd\u0254\u1d09\u0250l \u01ddx\u0250\u026f, bn\u0287 \u028d\u0250s \u0279\u01dd\u028c\u01dd\u0279\u0287\u01ddd b\u0250\u0254\u029e \u0287\u00f8 \u0250 b\u0250s\u1d09\u0254 \u01ddx\u0250\u026f. \u024e\u00f8n \u026f\u0250\u028e n\u00f8\u0287 \u0254\u00f8n\u025f\u1d09\u0183n\u0279\u01dd \u1d09\u0287 \u0250s \u0250 sd\u01dd\u0254\u1d09\u0250l \u01ddx\u0250\u026f n\u00f8\u028d. \u023b\u00f8n\u0287\u0250\u0254\u0287 \u01dddX Sndd\u00f8\u0279\u0287 \u025f\u00f8\u0279 \u0250ss\u1d09s\u0287\u0250n\u0254\u01dd.",
"This team does not have any members.": "\u0166\u0265\u1d09s \u0287\u01dd\u0250\u026f d\u00f8\u01dds n\u00f8\u0287 \u0265\u0250\u028c\u01dd \u0250n\u028e \u026f\u01dd\u026fb\u01dd\u0279s.",
"This team is full.": "\u0166\u0265\u1d09s \u0287\u01dd\u0250\u026f \u1d09s \u025fnll.",
"This thread is closed.": "\u0166\u0265\u1d09s \u0287\u0265\u0279\u01dd\u0250d \u1d09s \u0254l\u00f8s\u01ddd.",
@@ -1756,7 +1761,6 @@
"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.": "\u0166\u00f8 b\u01dd sn\u0279\u01dd \u0250ll s\u0287nd\u01ddn\u0287s \u0254\u0250n \u0250\u0254\u0254\u01ddss \u0287\u0265\u01dd \u028c\u1d09d\u01dd\u00f8, \u028d\u01dd \u0279\u01dd\u0254\u00f8\u026f\u026f\u01ddnd d\u0279\u00f8\u028c\u1d09d\u1d09n\u0183 b\u00f8\u0287\u0265 \u0250n .\u026fd4 \u0250nd \u0250 .\u028d\u01ddb\u026f \u028c\u01dd\u0279s\u1d09\u00f8n \u00f8\u025f \u028e\u00f8n\u0279 \u028c\u1d09d\u01dd\u00f8. \u023bl\u1d09\u0254\u029e b\u01ddl\u00f8\u028d \u0287\u00f8 \u0250dd \u0250 \u0244\u024c\u0141 \u025f\u00f8\u0279 \u0250n\u00f8\u0287\u0265\u01dd\u0279 \u028c\u01dd\u0279s\u1d09\u00f8n. \u0166\u0265\u01dds\u01dd \u0244\u024c\u0141s \u0254\u0250nn\u00f8\u0287 b\u01dd \u024e\u00f8n\u0166nb\u01dd \u0244\u024c\u0141s. \u0166\u0265\u01dd \u025f\u1d09\u0279s\u0287 l\u1d09s\u0287\u01ddd \u028c\u1d09d\u01dd\u00f8 \u0287\u0265\u0250\u0287's \u0254\u00f8\u026fd\u0250\u0287\u1d09bl\u01dd \u028d\u1d09\u0287\u0265 \u0287\u0265\u01dd s\u0287nd\u01ddn\u0287's \u0254\u00f8\u026fdn\u0287\u01dd\u0279 \u028d\u1d09ll dl\u0250\u028e.",
"To complete the program, you must earn a verified certificate for each course.": "\u0166\u00f8 \u0254\u00f8\u026fdl\u01dd\u0287\u01dd \u0287\u0265\u01dd d\u0279\u00f8\u0183\u0279\u0250\u026f, \u028e\u00f8n \u026fns\u0287 \u01dd\u0250\u0279n \u0250 \u028c\u01dd\u0279\u1d09\u025f\u1d09\u01ddd \u0254\u01dd\u0279\u0287\u1d09\u025f\u1d09\u0254\u0250\u0287\u01dd \u025f\u00f8\u0279 \u01dd\u0250\u0254\u0265 \u0254\u00f8n\u0279s\u01dd.",
"To continue learning with this account, sign in below.": "\u0166\u00f8 \u0254\u00f8n\u0287\u1d09nn\u01dd l\u01dd\u0250\u0279n\u1d09n\u0183 \u028d\u1d09\u0287\u0265 \u0287\u0265\u1d09s \u0250\u0254\u0254\u00f8nn\u0287, s\u1d09\u0183n \u1d09n b\u01ddl\u00f8\u028d.",
- "To finalize course credit, %(display_name)s requires %(platform_name)s learners to submit a credit request.": "\u0166\u00f8 \u025f\u1d09n\u0250l\u1d09z\u01dd \u0254\u00f8n\u0279s\u01dd \u0254\u0279\u01ddd\u1d09\u0287, %(display_name)s \u0279\u01ddbn\u1d09\u0279\u01dds %(platform_name)s l\u01dd\u0250\u0279n\u01dd\u0279s \u0287\u00f8 snb\u026f\u1d09\u0287 \u0250 \u0254\u0279\u01ddd\u1d09\u0287 \u0279\u01ddbn\u01dds\u0287.",
"To invalidate a certificate for a particular learner, add the username or email address below.": "\u0166\u00f8 \u1d09n\u028c\u0250l\u1d09d\u0250\u0287\u01dd \u0250 \u0254\u01dd\u0279\u0287\u1d09\u025f\u1d09\u0254\u0250\u0287\u01dd \u025f\u00f8\u0279 \u0250 d\u0250\u0279\u0287\u1d09\u0254nl\u0250\u0279 l\u01dd\u0250\u0279n\u01dd\u0279, \u0250dd \u0287\u0265\u01dd ns\u01dd\u0279n\u0250\u026f\u01dd \u00f8\u0279 \u01dd\u026f\u0250\u1d09l \u0250dd\u0279\u01ddss b\u01ddl\u00f8\u028d.",
"To receive a certificate, you must also verify your identity before {date}.": "\u0166\u00f8 \u0279\u01dd\u0254\u01dd\u1d09\u028c\u01dd \u0250 \u0254\u01dd\u0279\u0287\u1d09\u025f\u1d09\u0254\u0250\u0287\u01dd, \u028e\u00f8n \u026fns\u0287 \u0250ls\u00f8 \u028c\u01dd\u0279\u1d09\u025f\u028e \u028e\u00f8n\u0279 \u1d09d\u01ddn\u0287\u1d09\u0287\u028e b\u01dd\u025f\u00f8\u0279\u01dd {date}.",
"To receive a certificate, you must also verify your identity.": "\u0166\u00f8 \u0279\u01dd\u0254\u01dd\u1d09\u028c\u01dd \u0250 \u0254\u01dd\u0279\u0287\u1d09\u025f\u1d09\u0254\u0250\u0287\u01dd, \u028e\u00f8n \u026fns\u0287 \u0250ls\u00f8 \u028c\u01dd\u0279\u1d09\u025f\u028e \u028e\u00f8n\u0279 \u1d09d\u01ddn\u0287\u1d09\u0287\u028e.",
@@ -1844,7 +1848,7 @@
"Upload Videos": "\u0244dl\u00f8\u0250d V\u1d09d\u01dd\u00f8s",
"Upload a CSV file": "\u0244dl\u00f8\u0250d \u0250 \u023bSV \u025f\u1d09l\u01dd",
"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.": "\u0244dl\u00f8\u0250d \u0250 \u0254\u00f8\u026f\u026f\u0250 s\u01ddd\u0250\u0279\u0250\u0287\u01ddd \u028c\u0250ln\u01dds (.\u0254s\u028c) \u025f\u1d09l\u01dd \u0287\u0265\u0250\u0287 \u0254\u00f8n\u0287\u0250\u1d09ns \u0287\u0265\u01dd ns\u01dd\u0279n\u0250\u026f\u01dds \u00f8\u0279 \u01dd\u026f\u0250\u1d09l \u0250dd\u0279\u01ddss\u01dds \u00f8\u025f l\u01dd\u0250\u0279n\u01dd\u0279s \u028d\u0265\u00f8 \u0265\u0250\u028c\u01dd b\u01dd\u01ddn \u0183\u1d09\u028c\u01ddn \u01ddx\u0254\u01ddd\u0287\u1d09\u00f8ns. \u0197n\u0254lnd\u01dd \u0287\u0265\u01dd ns\u01dd\u0279n\u0250\u026f\u01dd \u00f8\u0279 \u01dd\u026f\u0250\u1d09l \u0250dd\u0279\u01ddss \u1d09n \u0287\u0265\u01dd \u025f\u1d09\u0279s\u0287 \u0254\u00f8\u026f\u026f\u0250 s\u01ddd\u0250\u0279\u0250\u0287\u01ddd \u025f\u1d09\u01ddld. \u024e\u00f8n \u0254\u0250n \u1d09n\u0254lnd\u01dd \u0250n \u00f8d\u0287\u1d09\u00f8n\u0250l n\u00f8\u0287\u01dd d\u01dds\u0254\u0279\u1d09b\u1d09n\u0183 \u0287\u0265\u01dd \u0279\u01dd\u0250s\u00f8n \u025f\u00f8\u0279 \u0287\u0265\u01dd \u01ddx\u0254\u01ddd\u0287\u1d09\u00f8n \u1d09n \u0287\u0265\u01dd s\u01dd\u0254\u00f8nd \u0254\u00f8\u026f\u026f\u0250 s\u01ddd\u0250\u0279\u0250\u0287\u01ddd \u025f\u1d09\u01ddld.",
- "Upload a new PDF to \u201c<%= name %>\u201d": "\u0244dl\u00f8\u0250d \u0250 n\u01dd\u028d \u2c63\u0110F \u0287\u00f8 \u201c<%= name %>\u201d",
+ "Upload a new PDF to \u201c<%- name %>\u201d": "\u0244dl\u00f8\u0250d \u0250 n\u01dd\u028d \u2c63\u0110F \u0287\u00f8 \u201c<%- name %>\u201d",
"Upload an image": "\u0244dl\u00f8\u0250d \u0250n \u1d09\u026f\u0250\u0183\u01dd",
"Upload an image or capture one with your web or phone camera.": "\u0244dl\u00f8\u0250d \u0250n \u1d09\u026f\u0250\u0183\u01dd \u00f8\u0279 \u0254\u0250d\u0287n\u0279\u01dd \u00f8n\u01dd \u028d\u1d09\u0287\u0265 \u028e\u00f8n\u0279 \u028d\u01ddb \u00f8\u0279 d\u0265\u00f8n\u01dd \u0254\u0250\u026f\u01dd\u0279\u0250.",
"Upload completed": "\u0244dl\u00f8\u0250d \u0254\u00f8\u026fdl\u01dd\u0287\u01ddd",
@@ -1902,7 +1906,6 @@
"Verified Certificate upgrade": "V\u01dd\u0279\u1d09\u025f\u1d09\u01ddd \u023b\u01dd\u0279\u0287\u1d09\u025f\u1d09\u0254\u0250\u0287\u01dd nd\u0183\u0279\u0250d\u01dd",
"Verified Status": "V\u01dd\u0279\u1d09\u025f\u1d09\u01ddd S\u0287\u0250\u0287ns",
"Verified mode price": "V\u01dd\u0279\u1d09\u025f\u1d09\u01ddd \u026f\u00f8d\u01dd d\u0279\u1d09\u0254\u01dd",
- "Verify Now": "V\u01dd\u0279\u1d09\u025f\u028e N\u00f8\u028d",
"Version": "V\u01dd\u0279s\u1d09\u00f8n",
"Vertical space": "V\u01dd\u0279\u0287\u1d09\u0254\u0250l sd\u0250\u0254\u01dd",
"Very loud": "V\u01dd\u0279\u028e l\u00f8nd",
@@ -1950,7 +1953,7 @@
"We couldn't find any results for \"%s\".": "W\u01dd \u0254\u00f8nldn'\u0287 \u025f\u1d09nd \u0250n\u028e \u0279\u01ddsnl\u0287s \u025f\u00f8\u0279 \"%s\".",
"We couldn't sign you in.": "W\u01dd \u0254\u00f8nldn'\u0287 s\u1d09\u0183n \u028e\u00f8n \u1d09n.",
"We have encountered an error. Refresh your browser and then try again.": "W\u01dd \u0265\u0250\u028c\u01dd \u01ddn\u0254\u00f8nn\u0287\u01dd\u0279\u01ddd \u0250n \u01dd\u0279\u0279\u00f8\u0279. \u024c\u01dd\u025f\u0279\u01dds\u0265 \u028e\u00f8n\u0279 b\u0279\u00f8\u028ds\u01dd\u0279 \u0250nd \u0287\u0265\u01ddn \u0287\u0279\u028e \u0250\u0183\u0250\u1d09n.",
- "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.": "W\u01dd \u0265\u0250\u028c\u01dd \u0279\u01dd\u0254\u01dd\u1d09\u028c\u01ddd \u028e\u00f8n\u0279 \u1d09n\u025f\u00f8\u0279\u026f\u0250\u0287\u1d09\u00f8n \u0250nd \u0250\u0279\u01dd \u028c\u01dd\u0279\u1d09\u025f\u028e\u1d09n\u0183 \u028e\u00f8n\u0279 \u1d09d\u01ddn\u0287\u1d09\u0287\u028e. \u024e\u00f8n \u028d\u1d09ll s\u01dd\u01dd \u0250 \u026f\u01ddss\u0250\u0183\u01dd \u00f8n \u028e\u00f8n\u0279 d\u0250s\u0265b\u00f8\u0250\u0279d \u028d\u0265\u01ddn \u0287\u0265\u01dd \u028c\u01dd\u0279\u1d09\u025f\u1d09\u0254\u0250\u0287\u1d09\u00f8n d\u0279\u00f8\u0254\u01ddss \u1d09s \u0254\u00f8\u026fdl\u01dd\u0287\u01dd (nsn\u0250ll\u028e \u028d\u1d09\u0287\u0265\u1d09n 1-2 d\u0250\u028es). \u0197n \u0287\u0265\u01dd \u026f\u01dd\u0250n\u0287\u1d09\u026f\u01dd, \u028e\u00f8n \u0254\u0250n s\u0287\u1d09ll \u0250\u0254\u0254\u01ddss \u0250ll \u0250\u028c\u0250\u1d09l\u0250bl\u01dd \u0254\u00f8n\u0279s\u01dd \u0254\u00f8n\u0287\u01ddn\u0287.",
+ "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 5-7 days). In the meantime, you can still access all available course content.": "W\u01dd \u0265\u0250\u028c\u01dd \u0279\u01dd\u0254\u01dd\u1d09\u028c\u01ddd \u028e\u00f8n\u0279 \u1d09n\u025f\u00f8\u0279\u026f\u0250\u0287\u1d09\u00f8n \u0250nd \u0250\u0279\u01dd \u028c\u01dd\u0279\u1d09\u025f\u028e\u1d09n\u0183 \u028e\u00f8n\u0279 \u1d09d\u01ddn\u0287\u1d09\u0287\u028e. \u024e\u00f8n \u028d\u1d09ll s\u01dd\u01dd \u0250 \u026f\u01ddss\u0250\u0183\u01dd \u00f8n \u028e\u00f8n\u0279 d\u0250s\u0265b\u00f8\u0250\u0279d \u028d\u0265\u01ddn \u0287\u0265\u01dd \u028c\u01dd\u0279\u1d09\u025f\u1d09\u0254\u0250\u0287\u1d09\u00f8n d\u0279\u00f8\u0254\u01ddss \u1d09s \u0254\u00f8\u026fdl\u01dd\u0287\u01dd (nsn\u0250ll\u028e \u028d\u1d09\u0287\u0265\u1d09n 5-7 d\u0250\u028es). \u0197n \u0287\u0265\u01dd \u026f\u01dd\u0250n\u0287\u1d09\u026f\u01dd, \u028e\u00f8n \u0254\u0250n s\u0287\u1d09ll \u0250\u0254\u0254\u01ddss \u0250ll \u0250\u028c\u0250\u1d09l\u0250bl\u01dd \u0254\u00f8n\u0279s\u01dd \u0254\u00f8n\u0287\u01ddn\u0287.",
"We just need a little more information before you start learning with %(platformName)s.": "W\u01dd \u027ens\u0287 n\u01dd\u01ddd \u0250 l\u1d09\u0287\u0287l\u01dd \u026f\u00f8\u0279\u01dd \u1d09n\u025f\u00f8\u0279\u026f\u0250\u0287\u1d09\u00f8n b\u01dd\u025f\u00f8\u0279\u01dd \u028e\u00f8n s\u0287\u0250\u0279\u0287 l\u01dd\u0250\u0279n\u1d09n\u0183 \u028d\u1d09\u0287\u0265 %(platformName)s.",
"We securely 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.": "W\u01dd s\u01dd\u0254n\u0279\u01ddl\u028e \u01ddn\u0254\u0279\u028ed\u0287 \u028e\u00f8n\u0279 d\u0265\u00f8\u0287\u00f8 \u0250nd s\u01ddnd \u1d09\u0287 \u0287\u00f8 \u00f8n\u0279 \u0250n\u0287\u0265\u00f8\u0279\u1d09z\u0250\u0287\u1d09\u00f8n s\u01dd\u0279\u028c\u1d09\u0254\u01dd \u025f\u00f8\u0279 \u0279\u01dd\u028c\u1d09\u01dd\u028d. \u024e\u00f8n\u0279 d\u0265\u00f8\u0287\u00f8 \u0250nd \u1d09n\u025f\u00f8\u0279\u026f\u0250\u0287\u1d09\u00f8n \u0250\u0279\u01dd n\u00f8\u0287 s\u0250\u028c\u01ddd \u00f8\u0279 \u028c\u1d09s\u1d09bl\u01dd \u0250n\u028e\u028d\u0265\u01dd\u0279\u01dd \u00f8n %(platformName)s \u0250\u025f\u0287\u01dd\u0279 \u0287\u0265\u01dd \u028c\u01dd\u0279\u1d09\u025f\u1d09\u0254\u0250\u0287\u1d09\u00f8n d\u0279\u00f8\u0254\u01ddss \u1d09s \u0254\u00f8\u026fdl\u01dd\u0287\u01dd.",
"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.": "W\u01dd ns\u01dd \u0287\u0265\u01dd \u0265\u1d09\u0183\u0265\u01dds\u0287 l\u01dd\u028c\u01ddls \u00f8\u025f s\u01dd\u0254n\u0279\u1d09\u0287\u028e \u0250\u028c\u0250\u1d09l\u0250bl\u01dd \u0287\u00f8 \u01ddn\u0254\u0279\u028ed\u0287 \u028e\u00f8n\u0279 d\u0265\u00f8\u0287\u00f8 \u0250nd s\u01ddnd \u1d09\u0287 \u0287\u00f8 \u00f8n\u0279 \u0250n\u0287\u0265\u00f8\u0279\u1d09z\u0250\u0287\u1d09\u00f8n s\u01dd\u0279\u028c\u1d09\u0254\u01dd \u025f\u00f8\u0279 \u0279\u01dd\u028c\u1d09\u01dd\u028d. \u024e\u00f8n\u0279 d\u0265\u00f8\u0287\u00f8 \u0250nd \u1d09n\u025f\u00f8\u0279\u026f\u0250\u0287\u1d09\u00f8n \u0250\u0279\u01dd n\u00f8\u0287 s\u0250\u028c\u01ddd \u00f8\u0279 \u028c\u1d09s\u1d09bl\u01dd \u0250n\u028e\u028d\u0265\u01dd\u0279\u01dd \u00f8n %(platformName)s \u0250\u025f\u0287\u01dd\u0279 \u0287\u0265\u01dd \u028c\u01dd\u0279\u1d09\u025f\u1d09\u0254\u0250\u0287\u1d09\u00f8n d\u0279\u00f8\u0254\u01ddss \u1d09s \u0254\u00f8\u026fdl\u01dd\u0287\u01dd.",
@@ -1977,6 +1980,7 @@
"When learners submit an answer to an assessment, they immediately see whether the answer is correct or incorrect, and the score received.": "W\u0265\u01ddn l\u01dd\u0250\u0279n\u01dd\u0279s snb\u026f\u1d09\u0287 \u0250n \u0250ns\u028d\u01dd\u0279 \u0287\u00f8 \u0250n \u0250ss\u01ddss\u026f\u01ddn\u0287, \u0287\u0265\u01dd\u028e \u1d09\u026f\u026f\u01ddd\u1d09\u0250\u0287\u01ddl\u028e s\u01dd\u01dd \u028d\u0265\u01dd\u0287\u0265\u01dd\u0279 \u0287\u0265\u01dd \u0250ns\u028d\u01dd\u0279 \u1d09s \u0254\u00f8\u0279\u0279\u01dd\u0254\u0287 \u00f8\u0279 \u1d09n\u0254\u00f8\u0279\u0279\u01dd\u0254\u0287, \u0250nd \u0287\u0265\u01dd s\u0254\u00f8\u0279\u01dd \u0279\u01dd\u0254\u01dd\u1d09\u028c\u01ddd.",
"When your face is in position, use the Take Photo button {icon} below to take your photo.": "W\u0265\u01ddn \u028e\u00f8n\u0279 \u025f\u0250\u0254\u01dd \u1d09s \u1d09n d\u00f8s\u1d09\u0287\u1d09\u00f8n, ns\u01dd \u0287\u0265\u01dd \u0166\u0250\u029e\u01dd \u2c63\u0265\u00f8\u0287\u00f8 bn\u0287\u0287\u00f8n {icon} b\u01ddl\u00f8\u028d \u0287\u00f8 \u0287\u0250\u029e\u01dd \u028e\u00f8n\u0279 d\u0265\u00f8\u0287\u00f8.",
"Which timed transcript would you like to use?": "W\u0265\u1d09\u0254\u0265 \u0287\u1d09\u026f\u01ddd \u0287\u0279\u0250ns\u0254\u0279\u1d09d\u0287 \u028d\u00f8nld \u028e\u00f8n l\u1d09\u029e\u01dd \u0287\u00f8 ns\u01dd?",
+ "While our support team is happy to assist with the edX platform, the course staff has the expertise for specific assignment questions, grading or the proper procedures in each course. Please post all course related questions within the Discussion Forum where the Course Staff can directly respond.": "W\u0265\u1d09l\u01dd \u00f8n\u0279 sndd\u00f8\u0279\u0287 \u0287\u01dd\u0250\u026f \u1d09s \u0265\u0250dd\u028e \u0287\u00f8 \u0250ss\u1d09s\u0287 \u028d\u1d09\u0287\u0265 \u0287\u0265\u01dd \u01dddX dl\u0250\u0287\u025f\u00f8\u0279\u026f, \u0287\u0265\u01dd \u0254\u00f8n\u0279s\u01dd s\u0287\u0250\u025f\u025f \u0265\u0250s \u0287\u0265\u01dd \u01ddxd\u01dd\u0279\u0287\u1d09s\u01dd \u025f\u00f8\u0279 sd\u01dd\u0254\u1d09\u025f\u1d09\u0254 \u0250ss\u1d09\u0183n\u026f\u01ddn\u0287 bn\u01dds\u0287\u1d09\u00f8ns, \u0183\u0279\u0250d\u1d09n\u0183 \u00f8\u0279 \u0287\u0265\u01dd d\u0279\u00f8d\u01dd\u0279 d\u0279\u00f8\u0254\u01dddn\u0279\u01dds \u1d09n \u01dd\u0250\u0254\u0265 \u0254\u00f8n\u0279s\u01dd. \u2c63l\u01dd\u0250s\u01dd d\u00f8s\u0287 \u0250ll \u0254\u00f8n\u0279s\u01dd \u0279\u01ddl\u0250\u0287\u01ddd bn\u01dds\u0287\u1d09\u00f8ns \u028d\u1d09\u0287\u0265\u1d09n \u0287\u0265\u01dd \u0110\u1d09s\u0254nss\u1d09\u00f8n F\u00f8\u0279n\u026f \u028d\u0265\u01dd\u0279\u01dd \u0287\u0265\u01dd \u023b\u00f8n\u0279s\u01dd S\u0287\u0250\u025f\u025f \u0254\u0250n d\u1d09\u0279\u01dd\u0254\u0287l\u028e \u0279\u01ddsd\u00f8nd.",
"Whole words": "W\u0265\u00f8l\u01dd \u028d\u00f8\u0279ds",
"Why activate?": "W\u0265\u028e \u0250\u0254\u0287\u1d09\u028c\u0250\u0287\u01dd?",
"Why does %(platformName)s need my photo?": "W\u0265\u028e d\u00f8\u01dds %(platformName)s n\u01dd\u01ddd \u026f\u028e d\u0265\u00f8\u0287\u00f8?",
@@ -2056,7 +2060,6 @@
"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.": "\u024e\u00f8n n\u01dd\u01ddd \u0287\u00f8 \u0250\u0254\u0287\u1d09\u028c\u0250\u0287\u01dd \u028e\u00f8n\u0279 \u0250\u0254\u0254\u00f8nn\u0287 b\u01dd\u025f\u00f8\u0279\u01dd \u028e\u00f8n \u0254\u0250n \u01ddn\u0279\u00f8ll \u1d09n \u0254\u00f8n\u0279s\u01dds. \u023b\u0265\u01dd\u0254\u029e \u028e\u00f8n\u0279 \u1d09nb\u00f8x \u025f\u00f8\u0279 \u0250n \u0250\u0254\u0287\u1d09\u028c\u0250\u0287\u1d09\u00f8n \u01dd\u026f\u0250\u1d09l. \u023a\u025f\u0287\u01dd\u0279 \u028e\u00f8n \u0254\u00f8\u026fdl\u01dd\u0287\u01dd \u0250\u0254\u0287\u1d09\u028c\u0250\u0287\u1d09\u00f8n \u028e\u00f8n \u0254\u0250n \u0279\u01dd\u0287n\u0279n \u0250nd \u0279\u01dd\u025f\u0279\u01dds\u0265 \u0287\u0265\u1d09s d\u0250\u0183\u01dd.",
"You receive messages from {platform_name} and course teams at this address.": "\u024e\u00f8n \u0279\u01dd\u0254\u01dd\u1d09\u028c\u01dd \u026f\u01ddss\u0250\u0183\u01dds \u025f\u0279\u00f8\u026f {platform_name} \u0250nd \u0254\u00f8n\u0279s\u01dd \u0287\u01dd\u0250\u026fs \u0250\u0287 \u0287\u0265\u1d09s \u0250dd\u0279\u01ddss.",
"You reserve all rights for your work": "\u024e\u00f8n \u0279\u01dds\u01dd\u0279\u028c\u01dd \u0250ll \u0279\u1d09\u0183\u0265\u0287s \u025f\u00f8\u0279 \u028e\u00f8n\u0279 \u028d\u00f8\u0279\u029e",
- "You still need to visit the %(display_name)s website to complete the credit process.": "\u024e\u00f8n s\u0287\u1d09ll n\u01dd\u01ddd \u0287\u00f8 \u028c\u1d09s\u1d09\u0287 \u0287\u0265\u01dd %(display_name)s \u028d\u01ddbs\u1d09\u0287\u01dd \u0287\u00f8 \u0254\u00f8\u026fdl\u01dd\u0287\u01dd \u0287\u0265\u01dd \u0254\u0279\u01ddd\u1d09\u0287 d\u0279\u00f8\u0254\u01ddss.",
"You submitted {filename}; only {allowedFiles} are allowed.": "\u024e\u00f8n snb\u026f\u1d09\u0287\u0287\u01ddd {filename}; \u00f8nl\u028e {allowedFiles} \u0250\u0279\u01dd \u0250ll\u00f8\u028d\u01ddd.",
"You waive some rights for your work, such that others can use it too": "\u024e\u00f8n \u028d\u0250\u1d09\u028c\u01dd s\u00f8\u026f\u01dd \u0279\u1d09\u0183\u0265\u0287s \u025f\u00f8\u0279 \u028e\u00f8n\u0279 \u028d\u00f8\u0279\u029e, sn\u0254\u0265 \u0287\u0265\u0250\u0287 \u00f8\u0287\u0265\u01dd\u0279s \u0254\u0250n ns\u01dd \u1d09\u0287 \u0287\u00f8\u00f8",
"You will be refunded the amount you paid.": "\u024e\u00f8n \u028d\u1d09ll b\u01dd \u0279\u01dd\u025fnnd\u01ddd \u0287\u0265\u01dd \u0250\u026f\u00f8nn\u0287 \u028e\u00f8n d\u0250\u1d09d.",
@@ -2152,7 +2155,6 @@
"enter link description here": "\u01ddn\u0287\u01dd\u0279 l\u1d09n\u029e d\u01dds\u0254\u0279\u1d09d\u0287\u1d09\u00f8n \u0265\u01dd\u0279\u01dd",
"follow this post": "\u025f\u00f8ll\u00f8\u028d \u0287\u0265\u1d09s d\u00f8s\u0287",
"for": "\u025f\u00f8\u0279",
- "for {courseName}": "\u025f\u00f8\u0279 {courseName}",
"group configuration": "\u0183\u0279\u00f8nd \u0254\u00f8n\u025f\u1d09\u0183n\u0279\u0250\u0287\u1d09\u00f8n",
"image omitted": "\u1d09\u026f\u0250\u0183\u01dd \u00f8\u026f\u1d09\u0287\u0287\u01ddd",
"incorrect": "\u1d09n\u0254\u00f8\u0279\u0279\u01dd\u0254\u0287",
@@ -2188,6 +2190,7 @@
"team count": "\u0287\u01dd\u0250\u026f \u0254\u00f8nn\u0287",
"text_word_{uniqueId}": "\u0287\u01ddx\u0287_\u028d\u00f8\u0279d_{uniqueId}",
"text_word_{uniqueId} title_word_{uniqueId}": "\u0287\u01ddx\u0287_\u028d\u00f8\u0279d_{uniqueId} \u0287\u1d09\u0287l\u01dd_\u028d\u00f8\u0279d_{uniqueId}",
+ "the more quickly and helpfully we can respond!": "\u0287\u0265\u01dd \u026f\u00f8\u0279\u01dd bn\u1d09\u0254\u029el\u028e \u0250nd \u0265\u01ddld\u025fnll\u028e \u028d\u01dd \u0254\u0250n \u0279\u01ddsd\u00f8nd!",
"there is currently {numVotes} vote": [
"\u0287\u0265\u01dd\u0279\u01dd \u1d09s \u0254n\u0279\u0279\u01ddn\u0287l\u028e {numVotes} \u028c\u00f8\u0287\u01dd",
"\u0287\u0265\u01dd\u0279\u01dd \u0250\u0279\u01dd \u0254n\u0279\u0279\u01ddn\u0287l\u028e {numVotes} \u028c\u00f8\u0287\u01dds"
diff --git a/cms/static/js/i18n/fil/djangojs.js b/cms/static/js/i18n/fil/djangojs.js
index a81c827e53..5e1878aa25 100644
--- a/cms/static/js/i18n/fil/djangojs.js
+++ b/cms/static/js/i18n/fil/djangojs.js
@@ -12,42 +12,6 @@
django.catalog = django.catalog || {};
- var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected",
- "%(sel)s of %(cnt)s selected"
- ],
- "6 a.m.": "6 a.m.",
- "Available %s": "Available %s",
- "Cancel": "Cancel",
- "Choose": "Choose",
- "Choose a time": "Choose a time",
- "Choose all": "Choose all",
- "Chosen %s": "Chosen %s",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
- "Filter": "Filter",
- "Hide": "Hide",
- "Midnight": "Midnight",
- "Noon": "Noon",
- "Now": "Now",
- "Remove": "Remove",
- "Remove all": "Remove all",
- "Show": "Show",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
- "Today": "Today",
- "Tomorrow": "Tomorrow",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
- "Yesterday": "Yesterday",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."
- };
- for (var key in newcatalog) {
- django.catalog[key] = newcatalog[key];
- }
-
if (!django.jsi18n_initialized) {
django.gettext = function(msgid) {
diff --git a/cms/static/js/i18n/fr/djangojs.js b/cms/static/js/i18n/fr/djangojs.js
index 34740649b6..8f20eb5a57 100644
--- a/cms/static/js/i18n/fr/djangojs.js
+++ b/cms/static/js/i18n/fr/djangojs.js
@@ -719,7 +719,6 @@
"Generate": "G\u00e9n\u00e9r\u00e9",
"Generate Exception Certificates": "G\u00e9n\u00e9rer les attestations de d\u00e9rogation",
"Generate the user's certificate": "G\u00e9n\u00e9rer le certificat de l'utilisateur",
- "Get Credit": "Obtenir un cr\u00e9dit",
"Go Back": "Retour",
"Go to Dashboard": "Aller au tableau de bord",
"Go to your Dashboard": "Aller \u00e0 votre tableau de bord",
@@ -1437,7 +1436,6 @@
"Text to display": "Texte \u00e0 afficher",
"Textbook Name": "Nom du manuel",
"Textbook information": "information sur le manuel",
- "Thank you %(full_name)s! We have received your payment for %(course_name)s.": "Merci %(full_name)s! Nous avons re\u00e7u votre paiement pour %(course_name)s.",
"Thank you for submitting your financial assistance application for {course_name}! You can expect a response in 2-4 business days.": "Merci d'avoir soumis votre demande d'aide financi\u00e8re pour {course_name}! Vous aurez une r\u00e9ponse dans 2-4 jours ouvrables.",
"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.": "Merci d'avoir envoyer vos photos. Nous allons les valider rapidement. Vous pouvez maintenant vous inscrire \u00e0 tous les cours %(platformName)s offrants un certificat v\u00e9rifi\u00e9. La v\u00e9rification est valide un an. Apr\u00e8s un an, vous devrez renvoyer vos photos pour v\u00e9rification.",
"Thank you! We have received your payment for {courseName}.": "Merci. Nous avons re\u00e7u votre paiement pour {courseName}.",
@@ -1447,8 +1445,6 @@
"The certificate for this learner has been re-validated and the system is re-running the grade for this learner.": "Le certificat de cet apprenant a \u00e9t\u00e9 re-valid\u00e9 et le syst\u00e8me est en train de re-\u00e9valuer les notes de cet apprenant. ",
"The cohort cannot be added": "La cohorte ne peut pas \u00eatre ajout\u00e9e",
"The cohort cannot be saved": "La cohorte ne peut pas \u00eatre enregistr\u00e9e",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "La longueur totale des champs organisation et codes de biblioth\u00e8que ne doit pas d\u00e9passer <%=limit%> caract\u00e8res.",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "La longueur totale des champs organisation, num\u00e9ro du cours et session du cours ne peut d\u00e9passer <%=limit%> caract\u00e8res.",
"The country or region where you live.": "Votre pays ou r\u00e9gion de r\u00e9sidence.",
"The country that team members primarily identify with.": "Le pays avec lequel les membres de l'\u00e9quipe sont le plus proche.",
"The course end date must be later than the course start date.": "La date de fin du cours doit \u00eatre post\u00e9rieure \u00e0 la date de d\u00e9but du cours.",
@@ -1594,7 +1590,6 @@
"Titles more than 100 characters may prevent students from printing their certificate on a single page.": "Les titres de plus de 100 caract\u00e8res peuvent emp\u00eacher les \u00e9tudiants d'imprimer leur certificat sur une seule page.",
"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.": "Afin que tous les \u00e9tudiants puisse acc\u00e9der \u00e0 la vid\u00e9o, nous vous recommandons de fournir une version .mp4 ainsi qu'une version .webm de la vid\u00e9o. Cliquer ci-dessous pour ajouter une URL pour une autre version. Les URLs youtube ne sont pas support\u00e9es. La premi\u00e8re vid\u00e9o de la liste compatible avec l'ordinateur de l'\u00e9tudiant sera vue.",
"To complete the program, you must earn a verified certificate for each course.": "Afin de compl\u00e9ter ce programme, vous devez obtenir un certificat v\u00e9rifi\u00e9 pour chacun de ces cours.",
- "To finalize course credit, %(display_name)s requires %(platform_name)s learners to submit a credit request.": "Pour finaliser l'obtention de cr\u00e9dit de cours, %(display_name)s demande aux apprenants de %(platform_name)s de soumettre une demande de cr\u00e9dit.",
"To invalidate a certificate for a particular learner, add the username or email address below.": "Pour invalider une attestation pour un apprenant, ajouter le nom d'usager ou l'adresse courriel ci-dessous.",
"To pass this exam, you must complete the problems in the time allowed.": "Pour r\u00e9ussir l'examen, vous devez r\u00e9pondre aux questions dans le temps imparti.",
"To receive a certificate, you must also verify your identity before {date}.": "Pour recevoir un certificat, vous devez aussi valider votre identit\u00e9 avant le {date}.",
@@ -1719,7 +1714,6 @@
"Verified Certificate upgrade": "Passer \u00e0 un certificat v\u00e9rifi\u00e9",
"Verified Status": "Statut v\u00e9rifi\u00e9",
"Verified mode price": "Prix du mode v\u00e9rifi\u00e9",
- "Verify Now": "V\u00e9rifier Maintenant",
"Vertical space": "Espace Vertical",
"Very loud": "Tr\u00e8s fort",
"Very low": "Tr\u00e8s faible",
@@ -1756,7 +1750,6 @@
"We couldn't create your account.": "Nous n'avons pas pu cr\u00e9er votre compte.",
"We couldn't find any results for \"%s\".": "Nous ne trouvons pas de r\u00e9sultat pour \"%s\".",
"We couldn't sign you in.": "Nous n'avons pas pu vous connecter.",
- "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.": "Nous avons re\u00e7us vos informations et nous v\u00e9rifions votre identit\u00e9. Un message sera visible sur votre tableau de bord (1-2 jours de d\u00e9lai). Entre temps, vous avez toujours acc\u00e8s \u00e0 l'ensemble du cours.",
"We just need a little more information before you start learning with %(platformName)s.": "Nous avons juste besoin d'un peu plus d'informations avant que vous commenciez votre apprentissage avec %(platformName)s.",
"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.": "Nous utilisons le niveau de s\u00e9curit\u00e9 le plus \u00e9lev\u00e9 pour chiffrer votre photo et l'envoyer \u00e0 notre service d\u2019autorisation afin d'y \u00eatre examin\u00e9e. Votre photo et vos informations ne sont pas enregistr\u00e9es, et ils ne sont pas visible nulle part sur %(platformName)s apr\u00e8s l'accomplissement de processus de v\u00e9rification.",
"We've encountered an error. Refresh your browser and then try again.": "Nous avons rencontr\u00e9 une erreur. Rafra\u00eechissez votre navigateur puis r\u00e9essayer.",
@@ -1841,7 +1834,6 @@
"You need to activate your account before you can enroll in courses. Check your inbox for an activation email.": "Vous devez activer votre compte avant de vous inscrire \u00e0 des cours. V\u00e9rifier votre bo\u00eete de r\u00e9ception.",
"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.": "Vous devez activer votre compte avant de pouvoir vous inscrire aux cours. V\u00e9rifier votre bo\u00eete de r\u00e9ception pour un email d'activation. Apr\u00e8s l'activation vous pouvez revenir et rafraichir cette page.",
"You receive messages from {platform_name} and course teams at this address.": "Les messages que vous recevrez de la part de la plateforme {platform_name} et des \u00e9quipes p\u00e9dagogiques seront envoy\u00e9s \u00e0 cette adresse.",
- "You still need to visit the %(display_name)s website to complete the credit process.": "Vous devez encore visiter le site web de %(display_name)s afinn de compl\u00e9ter le processus de cr\u00e9dit.",
"You submitted {filename}; only {allowedFiles} are allowed.": "Vous avez envoy\u00e9 {filename}; seul les {allowedFiles} sont autoris\u00e9s.",
"You will be refunded the amount you paid.": "Le montant pay\u00e9 vous sera rembours\u00e9.",
"You will not be refunded the amount you paid.": "Le montant pay\u00e9 ne vous sera pas rembours\u00e9.",
@@ -1926,7 +1918,6 @@
"enter code here": "saisir du code ici",
"enter link description here": "saisir une description du lien ici",
"for": "pour",
- "for {courseName}": "pour {courseName}",
"group configuration": "configuration des groupes",
"image omitted": "image manquante",
"incorrect": "incorrect",
diff --git a/cms/static/js/i18n/gu/djangojs.js b/cms/static/js/i18n/gu/djangojs.js
index a81c827e53..5e1878aa25 100644
--- a/cms/static/js/i18n/gu/djangojs.js
+++ b/cms/static/js/i18n/gu/djangojs.js
@@ -12,42 +12,6 @@
django.catalog = django.catalog || {};
- var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected",
- "%(sel)s of %(cnt)s selected"
- ],
- "6 a.m.": "6 a.m.",
- "Available %s": "Available %s",
- "Cancel": "Cancel",
- "Choose": "Choose",
- "Choose a time": "Choose a time",
- "Choose all": "Choose all",
- "Chosen %s": "Chosen %s",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
- "Filter": "Filter",
- "Hide": "Hide",
- "Midnight": "Midnight",
- "Noon": "Noon",
- "Now": "Now",
- "Remove": "Remove",
- "Remove all": "Remove all",
- "Show": "Show",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
- "Today": "Today",
- "Tomorrow": "Tomorrow",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
- "Yesterday": "Yesterday",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."
- };
- for (var key in newcatalog) {
- django.catalog[key] = newcatalog[key];
- }
-
if (!django.jsi18n_initialized) {
django.gettext = function(msgid) {
diff --git a/cms/static/js/i18n/id/djangojs.js b/cms/static/js/i18n/id/djangojs.js
index 3862d178eb..9dc978e064 100644
--- a/cms/static/js/i18n/id/djangojs.js
+++ b/cms/static/js/i18n/id/djangojs.js
@@ -606,7 +606,6 @@
"Fill browser": "Peramban penuh",
"Filter": "Filter",
"Filter and sort topics": "Saring dan urutkan topik",
- "Final Grade": "Nilai Akhir",
"Final Grade Received": "Nilai Akhir Diterima",
"Financial Aid": "Bantuan Finansial",
"Financial Assistance": "Bantuan Finansial",
@@ -637,7 +636,6 @@
"General": "Umum",
"Generate": "Generate",
"Generate Exception Certificates": "Buat Sertifikat Pengecualian",
- "Get Credit": "Dapatkan kredit",
"Go Back": "Kembali",
"Go to Dashboard": "Menuju dashboard",
"Go to my Dashboard": "Menuju Dashboard",
@@ -700,7 +698,6 @@
"Hyperlink (Ctrl+L)": "Hyperlink (Ctrl+L)",
"ID": "ID",
"ID-Verification is not required for this Professional Education course.": "Verifikasi ID tidak dibutuhkan untuk kursus pendidikan profesional",
- "If you are unable to access your account contact us via email using {email}.": "Jika Anda tidak dapat masuk, hubungi kami melalui email ke {email}.",
"If you do not yet have an account, use the button below to register.": "Jika Anda belum memiliki akun, gunakan tombol di bawah untuk registrasi.",
"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.": "Jika Anda tidak memverifikasi identitas Anda sekarang, Anda masih dapat melihat kursus Anda dari dashboard Anda. Anda akan menerima pengingat dari %(platformName)s secara periodik untuk memverifikasi identitas Anda.",
"If you leave this page without saving or submitting your response, you will lose any work you have done on the response.": "Jika Anda meninggalkan halaman ini tanpa menyimpan atau mengirim tanggapan Anda, Anda akan kehilangan semua pekerjaan yang Anda buat pada tanggapan Anda.",
@@ -859,7 +856,6 @@
"Name of the signatory": "Nama Penandatangan",
"Name or short description of the configuration": "Nama atau gambaran singkat dari konfigurasi",
"Navigate up": "Navigasi naik",
- "Need help logging in?": "Butuh bantuan untuk masuk?",
"Needs verified certificate ": "Memerlukan sertifikat terverifikasi",
"Never published": "Tidak pernah dipublikasikan",
"Never show assessment results": "Jangan tampilkan hasil penilaian",
@@ -926,7 +922,6 @@
"Ok": "Ok",
"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.": "Setelah Anda melengkapi salah satu persyaratan program Anda akan memiliki record program. Record ini ditandai lengkap setelah Anda memenuhi semua persyaratan program. Record program dapat digunakan untuk melanjutkan perjalanan pembelajaran Anda dan menunjukkan pembelajaran Anda kepada orang lain.",
"One or more rescheduling tasks failed.": "Salah satu tugas penjadwalan telah gagal.",
- "Only <%= fileTypes %> files can be uploaded. Please select a file ending in <%= fileExtensions %> to upload.": "Hanya berkas <%= fileTypes %> yang dapat diunggah. Harap pilih berkas dengan ekstensi <%= fileExtensions %> untuk diunggah.",
"Only properly formatted .csv files will be accepted.": "Hanya berkas-berkas .csv yang diformat dengan tepat dapat diterima.",
"Open Calculator": "Buka Kalkulator",
"Open language menu": "Buka menu bahasa",
@@ -1346,7 +1341,6 @@
"The language that team members primarily use to communicate with each other.": "Bahasa yang terutama digunakan oleh anggota tim untuk berkomunikasi.",
"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.": "Bahasa yang digunakan di seluruh situs. Situs ini saat ini tersedia dalam sejumlah bahasa. Mengubah nilai isian ini akan merefresh halaman ini.",
"The minimum score percentage must be a whole number between 0 and 100.": "Persentase skor minimum mesti angka diantara 0 dan 100.",
- "The more you tell us, the more quickly and helpfully we can respond!": "Semakin lengkap informasimu, semakin cepat dan tepat respon kami!",
"The name of this signatory as it should appear on certificates.": "Nama penandatangan yang harus tercetak di sertifikat",
"The name that identifies you on {platform_name}. You cannot change your username.": "Nama yang digunakan untuk mengenali Anda pada {platform_name}. Anda tidak dapat mengubah nama pengguna Anda.",
"The name that is used for ID verification and that appears on your certificates.": "Nama yang digunakan untuk verifikasi ID dan ditampilkan di sertifikat Anda.",
@@ -1532,7 +1526,6 @@
"Upload PDF": "Unggah PDF",
"Upload Photo": "Unggah Foto",
"Upload Signature Image": "Unggah Gambar Tandatangan",
- "Upload a new PDF to \u201c<%= name %>\u201d": "Unggah berkas PDF baru ke \u201c<%= name %>\u201d",
"Upload an image": "Unggah gambar",
"Upload completed": "Unggah selesai",
"Upload is in progress. To avoid errors, stay on this page until the process is complete.": "Proses unggah sedang berlangsung. Untuk menghindari kesalahan, tetap berada di halaman ini sampai proses selesai.",
@@ -1570,7 +1563,6 @@
"Verified Certificate for {courseName}": "Sertifikat Terverifikasi untuk {courseName}",
"Verified Certificate upgrade": "Tingkatkan Sertifikat Terverifikasi",
"Verified Status": "Status terverifikasi",
- "Verify Now": "Verifikasi sekarang",
"Vertical space": "Ruang vertikal",
"Very loud": "Sangat Keras",
"Very low": "Sangat rendah",
@@ -1770,7 +1762,6 @@
"enter code here": "masukan kode disini",
"enter link description here": "masukan keterangan tautan di sini",
"for": "untuk",
- "for {courseName}": "untuk {courseName}",
"image omitted": "gambar dihilangkan",
"incorrect": "Salah",
"internally reviewed": "Telah diulas secara internal",
diff --git a/cms/static/js/i18n/ja-jp/djangojs.js b/cms/static/js/i18n/ja-jp/djangojs.js
index ab43b2810a..a09a5b03a2 100644
--- a/cms/static/js/i18n/ja-jp/djangojs.js
+++ b/cms/static/js/i18n/ja-jp/djangojs.js
@@ -537,7 +537,6 @@
"Generate": "\u751f\u6210",
"Generate Exception Certificates": "\u4f8b\u5916\u4fee\u4e86\u8a3c\u3092\u751f\u6210",
"Generate the user's certificate": "\u30e6\u30fc\u30b6\u30fc\u306e\u4fee\u4e86\u8a3c\u3092\u751f\u6210",
- "Get Credit": "\u5358\u4f4d\u3092\u7372\u5f97\u3059\u308b",
"Go Back": "\u623b\u308b",
"Go to Dashboard": "\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3078\u79fb\u52d5",
"Go to your Dashboard": "\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3078",
@@ -582,7 +581,6 @@
"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.": "\u30e6\u30cb\u30c3\u30c8\u304c\u4ee5\u524d\u53d7\u8b1b\u8005\u306b\u516c\u958b\u3055\u308c\u3066\u3044\u305f\u5834\u5408\u3001\u975e\u516c\u958b\u4e2d\u306e\u5909\u66f4\u3082\u5f8c\u307b\u3069\u53d7\u8b1b\u8005\u306b\u8868\u793a\u3055\u308c\u307e\u3059\u3002",
"If you do not yet have an account, use the button below to register.": "\u307e\u3060\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u767b\u9332\u3057\u3066\u3044\u306a\u3044\u306e\u3067\u3042\u308c\u3070\u3001\u4e0b\u306e\u30dc\u30bf\u30f3\u3092\u4f7f\u3063\u3066\u767b\u9332\u3057\u3066\u304f\u3060\u3055\u3044\u3002",
"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.": "\u3044\u307e\u3059\u3050\u672c\u4eba\u8a8d\u8a3c\u3092\u884c\u308f\u306a\u304f\u3066\u3082\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3067\u8b1b\u5ea7\u3092\u63a2\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u3059\u3002\u5b9a\u671f\u7684\u306b%(platformName)s\u304b\u3089\u672c\u4eba\u8a8d\u8a3c\u3092\u884c\u3046\u3088\u3046\u306b\u901a\u77e5\u304c\u3042\u308a\u307e\u3059\u3002",
- "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.": "\u3059\u3050\u306b\u672c\u4eba\u8a8d\u8a3c\u3092\u884c\u308f\u306a\u3044\u5834\u5408\u3067\u3082\u3001\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u3067\u8b1b\u5ea7\u3092\u63a2\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u5b9a\u671f\u7684\u306b{platformName}\u304b\u3089\u672c\u4eba\u8a8d\u8a3c\u3092\u884c\u3046\u3088\u3046\u901a\u77e5\u304c\u3042\u308a\u307e\u3059\u3002",
"If you leave this page without saving or submitting your response, you will lose any work you have done on the response.": "\u8fd4\u4fe1\u3092\u4fdd\u5b58\u307e\u305f\u306f\u63d0\u51fa\u305b\u305a\u306b\u5225\u306e\u30da\u30fc\u30b8\u3078\u79fb\u52d5\u3059\u308b\u5834\u5408\u3001\u8a18\u8ff0\u3057\u305f\u5185\u5bb9\u304c\u5931\u308f\u308c\u307e\u3059\u3002",
"If you leave this page without submitting your peer assessment, you will lose any work you have done.": "\u30d4\u30a2\u30fb\u30a2\u30bb\u30b9\u30e1\u30f3\u30c8\u3092\u63d0\u51fa\u305b\u305a\u306b\u5225\u306e\u30da\u30fc\u30b8\u3078\u79fb\u52d5\u3059\u308b\u5834\u5408\u3001\u8a18\u8ff0\u3057\u305f\u5185\u5bb9\u304c\u5931\u308f\u308c\u307e\u3059\u3002",
"If you leave this page without submitting your self assessment, you will lose any work you have done.": "\u30bb\u30eb\u30d5\u30fb\u30a2\u30bb\u30b9\u30e1\u30f3\u30c8\u3092\u63d0\u51fa\u305b\u305a\u306b\u5225\u306e\u30da\u30fc\u30b8\u3078\u79fb\u52d5\u3059\u308b\u3068\u3001\u8a18\u8ff0\u3057\u305f\u5185\u5bb9\u304c\u5931\u308f\u308c\u307e\u3059\u3002",
@@ -1087,7 +1085,6 @@
"Terms of Service and Honor Code": "\u5229\u7528\u898f\u7d04\u304a\u3088\u3073\u502b\u7406\u898f\u5b9a",
"Textbook Name": "\u6559\u79d1\u66f8\u540d",
"Textbook information": "\u6559\u79d1\u66f8\u60c5\u5831",
- "Thank you %(full_name)s! We have received your payment for %(course_name)s.": "%(full_name)s\u69d8\u3001\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff01%(course_name)s\u306b\u95a2\u3059\u308b\u304a\u652f\u6255\u3044\u3092\u53d7\u7406\u3057\u307e\u3057\u305f\u3002",
"Thank you for submitting your financial assistance application for {course_name}! You can expect a response in 2-4 business days.": "{course_name}\u306e\u7d4c\u6e08\u63f4\u52a9\u7533\u8fbc\u66f8\u3092\u3054\u63d0\u51fa\u3044\u305f\u3060\u304d\u3001\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\uff012-4\u55b6\u696d\u65e5\u4ee5\u5185\u306b\u8fd4\u4fe1\u304c\u5c4a\u304d\u307e\u3059\u3002",
"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.": "\u5199\u771f\u3092\u3054\u63d0\u51fa\u3044\u305f\u3060\u304d\u3001\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059\u3002\u307e\u3082\u306a\u304f\u78ba\u8a8d\u3044\u305f\u3057\u307e\u3059\u3002%(platformName)s\u306e\u8a8d\u8a3c\u4ed8\u304d\u4fee\u4e86\u8a3c\u3092\u767a\u884c\u3057\u3066\u3044\u308b\u8b1b\u5ea7\u306b\u767b\u9332\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002\u8a8d\u8a3c\u306f\uff11\u5e74\u9593\u6709\u52b9\u3067\u3059\u3002\uff11\u5e74\u5f8c\u306b\u518d\u3073\u8a8d\u8a3c\u7528\u5199\u771f\u306e\u63d0\u51fa\u304c\u5fc5\u8981\u3068\u306a\u308a\u307e\u3059\u3002",
"Thank you! We have received your payment for {courseName}.": "\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3057\u305f\uff01 {courseName}\u8b1b\u5ea7\u306e\u652f\u6255\u3092\u53d7\u9818\u3057\u307e\u3057\u305f\u3002",
@@ -1096,8 +1093,6 @@
"The certificate for this learner has been re-validated and the system is re-running the grade for this learner.": "\u3053\u306e\u53d7\u8b1b\u8005\u306e\u4fee\u4e86\u8a3c\u306f\u518d\u5ea6\u6709\u52b9\u3068\u306a\u308a\u307e\u3057\u305f\u306e\u3067\u3001\u30b7\u30b9\u30c6\u30e0\u306f\u63a1\u70b9\u3092\u518d\u958b\u3057\u307e\u3059\u3002",
"The cohort cannot be added": "\u30b3\u30db\u30fc\u30c8\u304c\u8ffd\u52a0\u3067\u304d\u307e\u305b\u3093",
"The cohort cannot be saved": "\u30b3\u30db\u30fc\u30c8\u304c\u4fdd\u5b58\u3067\u304d\u307e\u305b\u3093",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "\u7d44\u7e54\u540d\u3001\u30e9\u30a4\u30d6\u30e9\u30ea\u30b3\u30fc\u30c9\u6b04\u306e\u5408\u8a08\u6587\u5b57\u6570\u306f<%=limit%>\u6587\u5b57\u307e\u3067\u3067\u3059\u3002",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "\u7d44\u7e54\u540d\u3001\u8b1b\u5ea7\u756a\u53f7\u3001course run\u6b04\u306e\u5408\u8a08\u6587\u5b57\u6570\u306f<%=limit%>\u6587\u5b57\u307e\u3067\u3067\u3059\u3002",
"The country or region where you live.": "\u304a\u4f4f\u307e\u3044\u306e\u56fd\u30fb\u5730\u57df\u3002",
"The country that team members primarily identify with.": "\u30c1\u30fc\u30e0\u306e\u4e3b\u306a\u30e1\u30f3\u30d0\u30fc\u306e\u56fd\u3002",
"The course end date must be later than the course start date.": "\u8b1b\u5ea7\u7d42\u4e86\u65e5\u306f\u3001\u8b1b\u5ea7\u958b\u59cb\u65e5\u3088\u308a\u5f8c\u3067\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002",
@@ -1235,7 +1230,6 @@
"Titles more than 100 characters may prevent students from printing their certificate on a single page.": "\u5f79\u8077\u304c100\u6587\u5b57\u4ee5\u4e0a\u3060\u3068\u3001\u4fee\u4e86\u8a3c\u30921\u30da\u30fc\u30b8\u306b\u53ce\u3081\u3066\u5370\u5237\u3067\u304d\u306a\u3044\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002",
"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.": "\u5168\u53d7\u8b1b\u8005\u304c\u52d5\u753b\u306b\u30a2\u30af\u30bb\u30b9\u3067\u304d\u308b\u3088\u3046\u306b\u3001.mp4\u3068.webm\u306e\u4e21\u65b9\u306e\u7a2e\u985e\u306e\u52d5\u753b\u3092\u63d0\u4f9b\u3059\u308b\u3053\u3068\u3092\u304a\u52e7\u3081\u3057\u307e\u3059\u3002\u5225\u306e\u7a2e\u985e\u306eURL\u3092\u8ffd\u52a0\u3059\u308b\u306b\u306f\u4ee5\u4e0b\u3092\u30af\u30ea\u30c3\u30af\u3057\u307e\u3059\u3002\u3053\u308c\u3089\u306eURL\u306fYouTube\u306f\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093\u3002\u4e00\u89a7\u306e\u4e2d\u304b\u3089\u53d7\u8b1b\u8005\u306e\u30b3\u30f3\u30d4\u30e5\u30fc\u30bf\u306b\u5bfe\u5fdc\u3059\u308b\uff11\u756a\u76ee\u306e\u52d5\u753b\u304c\u518d\u751f\u3055\u308c\u307e\u3059\u3002",
"To complete the program, you must earn a verified certificate for each course.": "\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u4fee\u4e86\u3059\u308b\u306b\u306f\u3001\u5404\u8b1b\u5ea7\u306e\u8a8d\u8a3c\u4ed8\u304d\u4fee\u4e86\u8a3c\u3092\u7372\u5f97\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002",
- "To finalize course credit, %(display_name)s requires %(platform_name)s learners to submit a credit request.": "\u5358\u4f4d\u8a8d\u5b9a\u306e\u6700\u7d42\u51e6\u7406\u3092\u3059\u308b\u305f\u3081\u306b\u3001%(display_name)s\u3067\u306f%(platform_name)s\u53d7\u8b1b\u8005\u306b\u5358\u4f4d\u8a8d\u5b9a\u7533\u8acb\u3092\u63d0\u51fa\u3059\u308b\u3088\u3046\u6c42\u3081\u3066\u3044\u307e\u3059\u3002",
"To invalidate a certificate for a particular learner, add the username or email address below.": "\u7279\u5b9a\u306e\u53d7\u8b1b\u8005\u306e\u4fee\u4e86\u8a3c\u3092\u7121\u52b9\u306b\u3059\u308b\u306b\u306f\u3001\u30e6\u30fc\u30b6\u30fc\u540d\u307e\u305f\u306f\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u3092\u4ee5\u4e0b\u306b\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002",
"To receive a certificate, you must also verify your identity before {date}.": "\u4fee\u4e86\u8a3c\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f\u3001{date}\u307e\u3067\u306b\u672c\u4eba\u8a8d\u8a3c\u3092\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002",
"To receive a certificate, you must also verify your identity.": "\u4fee\u4e86\u8a3c\u3092\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u306f\u3001\u672c\u4eba\u8a8d\u8a3c\u3092\u3057\u306a\u3051\u308c\u3070\u306a\u308a\u307e\u305b\u3093\u3002",
@@ -1345,7 +1339,6 @@
"Verified Certificate upgrade": "\u8a8d\u8a3c\u4ed8\u304d\u4fee\u4e86\u8a3c\u306e\u30a2\u30c3\u30d7\u30b0\u30ec\u30fc\u30c9",
"Verified Status": "\u8a8d\u8a3c\u30b9\u30c6\u30fc\u30bf\u30b9",
"Verified mode price": "\u8a8d\u8a3c\u30e2\u30fc\u30c9\u4fa1\u683c",
- "Verify Now": "\u3044\u307e\u3059\u3050\u8a8d\u8a3c\u3057\u3088\u3046",
"Video Capture Error": "\u30d3\u30c7\u30aa\u30ad\u30e3\u30d7\u30c1\u30e3\u30a8\u30e9\u30fc",
"Video ID": "\u52d5\u753bID",
"Video duration is {humanizeDuration}": "\u52d5\u753b\u306e\u9577\u3055\u306f {humanizeDuration}",
@@ -1373,7 +1366,6 @@
"We couldn't find any results for \"%s\".": "\"%s\" \u306e\u691c\u7d22\u7d50\u679c\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002",
"We couldn't sign you in.": "\u30b5\u30a4\u30f3\u30a4\u30f3\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002",
"We have encountered an error. Refresh your browser and then try again.": "\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30d6\u30e9\u30a6\u30b6\u3092\u66f4\u65b0\u3057\u3066\u518d\u8a66\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002",
- "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.": "\u3042\u306a\u305f\u306e\u60c5\u5831\u3092\u53d7\u3051\u53d6\u308a\u3001\u672c\u4eba\u8a8d\u8a3c\u4e2d\u3067\u3059\u3002\u8a8d\u8a3c\u624b\u7d9a\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3089\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u306b\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u8868\u793a\u3055\u308c\u307e\u3059(\u901a\u5e381\uff5e2\u65e5\u4ee5\u5185)\u3002\u305d\u306e\u9593\u3082\u8b1b\u5ea7\u30b3\u30f3\u30c6\u30f3\u30c4\u306b\u306f\u30a2\u30af\u30bb\u30b9\u3067\u304d\u307e\u3059\u3002",
"We just need a little more information before you start learning with %(platformName)s.": "%(platformName)s\u3067\u306e\u5b66\u7fd2\u3092\u59cb\u3081\u308b\u306b\u3042\u305f\u3063\u3066\u3001\u3082\u3046\u5c11\u3057\u60c5\u5831\u304c\u5fc5\u8981\u3067\u3059\u3002",
"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.": "\u6700\u9ad8\u30ec\u30d9\u30eb\u306e\u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u3067\u5199\u771f\u3092\u6697\u53f7\u5316\u3057\u3001\u8a8d\u8a3c\u30b5\u30fc\u30d3\u30b9\u3078\u9001\u308a\u307e\u3059\u3002\u8a8d\u8a3c\u624b\u7d9a\u304c\u5b8c\u4e86\u3057\u305f\u5f8c\u306f\u3001\u5199\u771f\u3084\u60c5\u5831\u3092%(platformName)s\u3067\u4fdd\u5b58\u3057\u305f\u308a\u95b2\u89a7\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002",
"We've encountered an error. Refresh your browser and then try again.": "\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u30d6\u30e9\u30a6\u30b6\u3092\u66f4\u65b0\u3057\u3066\u518d\u8a66\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002",
@@ -1447,7 +1439,6 @@
"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}": "\u5168\u30d7\u30ed\u30d5\u30a3\u30fc\u30eb\u3092\u516c\u958b\u3059\u308b\u305f\u3081\u306b\u306f\u3001\u8a95\u751f\u5e74\u3092\u6307\u5b9a\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u8a95\u751f\u5e74\u3092\u5165\u529b\u3059\u308b\u306b\u306f {account_settings_page_link}\u3078\u79fb\u52d5\u3057\u307e\u3059\u3002",
"You need to activate your account before you can enroll in courses. Check your inbox for an activation email.": "\u8b1b\u5ea7\u306e\u53d7\u8b1b\u767b\u9332\u3092\u59cb\u3081\u308b\u524d\u306b\u3001\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u6709\u52b9\u5316\u3055\u305b\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u6709\u52b9\u5316\u306b\u95a2\u3059\u308b\u30e1\u30fc\u30eb\u304c\u5c4a\u3044\u3066\u3044\u308b\u304b\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044\u3002",
"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.": "\u8b1b\u5ea7\u306e\u53d7\u8b1b\u767b\u9332\u3092\u59cb\u3081\u308b\u524d\u306b\u3001\u30a2\u30ab\u30a6\u30f3\u30c8\u3092\u6709\u52b9\u5316\u3055\u305b\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u6709\u52b9\u5316\u306b\u95a2\u3059\u308b\u30e1\u30fc\u30eb\u304c\u5c4a\u3044\u3066\u3044\u308b\u304b\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044\u3002\u6709\u52b9\u5316\u304c\u5b8c\u4e86\u3057\u305f\u3089\u3001\u3053\u306e\u753b\u9762\u306b\u623b\u308a\u518d\u8aad\u8fbc\u3057\u3066\u304f\u3060\u3055\u3044\u3002",
- "You still need to visit the %(display_name)s website to complete the credit process.": "\u5358\u4f4d\u8a8d\u5b9a\u51e6\u7406\u3092\u5b8c\u4e86\u3059\u308b\u306b\u306f\u5f15\u304d\u7d9a\u304d%(display_name)s\u3092\u898b\u3066\u304f\u3060\u3055\u3044\u3002",
"You will be refunded the amount you paid.": "\u304a\u652f\u6255\u3044\u3044\u305f\u3060\u3044\u305f\u91d1\u984d\u304c\u8fd4\u91d1\u3055\u308c\u307e\u3059\u3002",
"You will not be refunded the amount you paid.": "\u304a\u652f\u6255\u3044\u3044\u305f\u3060\u3044\u305f\u91d1\u984d\u306f\u8fd4\u91d1\u3055\u308c\u307e\u305b\u3093\u3002",
"You will not receive notification for emails that bounce, so double-check your spelling.": "\u623b\u3063\u3066\u304f\u308b\u30e1\u30fc\u30eb\u306b\u95a2\u3059\u308b\u901a\u77e5\u306f\u5c4a\u304d\u307e\u305b\u3093\u306e\u3067\u3001\u7db4\u308a\u306f\u30c0\u30d6\u30eb\u30c1\u30a7\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002",
diff --git a/cms/static/js/i18n/kk-kz/djangojs.js b/cms/static/js/i18n/kk-kz/djangojs.js
index baa81f1d72..7d5ca2071b 100644
--- a/cms/static/js/i18n/kk-kz/djangojs.js
+++ b/cms/static/js/i18n/kk-kz/djangojs.js
@@ -27,25 +27,16 @@
"6 a.m.": "06",
"Available %s": "%s \u0431\u0430\u0440",
"Cancel": "\u0411\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443",
- "Choose": "Choose",
"Choose a time": "\u0423\u0430\u049b\u044b\u0442\u0442\u044b \u0442\u0430\u04a3\u0434\u0430",
- "Choose all": "Choose all",
- "Chosen %s": "Chosen %s",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
"Filter": "\u0421\u04af\u0437\u0433\u0456\u0448",
"Hide": "\u0416\u0430\u0441\u044b\u0440\u0443",
"Midnight": "\u0422\u04af\u043d \u0436\u0430\u0440\u044b\u043c",
"Noon": "\u0422\u0430\u043b\u0442\u04af\u0441",
"Now": "\u049a\u0430\u0437\u0456\u0440",
"Remove": "\u04e8\u0448\u0456\u0440\u0443(\u0436\u043e\u044e)",
- "Remove all": "Remove all",
"Show": "\u041a\u04e9\u0440\u0441\u0435\u0442\u0443",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
"Today": "\u0411\u04af\u0433\u0456\u043d",
"Tomorrow": "\u0415\u0440\u0442\u0435\u04a3",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
"Yesterday": "\u041a\u0435\u0448\u0435",
"You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "\u0421\u0456\u0437 \u0421\u0430\u049b\u0442\u0430\u0443 \u0431\u0430\u0442\u044b\u0440\u043c\u0430\u0441\u044b\u043d\u0430 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430, Go(\u0410\u043b\u0493\u0430) \u0431\u0430\u0442\u044b\u0440\u043c\u0430\u0441\u044b\u043d \u0456\u0437\u0434\u0435\u043f \u043e\u0442\u044b\u0440\u0493\u0430\u043d \u0431\u043e\u043b\u0430\u0440\u0441\u044b\u0437, \u0441\u0435\u0431\u0435\u0431\u0456 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u04e9\u0437\u0433\u0435\u0440\u0456\u0441 \u0436\u0430\u0441\u0430\u043c\u0430\u0439, \u04d9\u0440\u0435\u043a\u0435\u0442 \u0436\u0430\u0441\u0430\u0434\u044b\u04a3\u044b\u0437.",
"You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "\u0421\u0456\u0437 \u04e9\u0437 \u04e9\u0437\u0433\u0435\u0440\u0456\u0441\u0442\u0435\u0440\u0456\u04a3\u0456\u0437\u0434\u0456 \u0441\u0430\u049b\u0442\u0430\u043c\u0430\u0439, \u04d9\u0440\u0435\u043a\u0435\u0442 \u0436\u0430\u0441\u0430\u0434\u044b\u04a3\u044b\u0437. \u04e8\u0442\u0456\u043d\u0456\u0448, \u0441\u0430\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u041e\u041a \u0431\u0430\u0442\u044b\u0440\u043c\u0430\u0441\u044b\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u04e9\u0437 \u04d9\u0440\u0435\u043a\u0435\u0442\u0456\u04a3\u0456\u0437\u0434\u0456 \u049b\u0430\u0439\u0442\u0430 \u0436\u0430\u0441\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437. ",
diff --git a/cms/static/js/i18n/km-kh/djangojs.js b/cms/static/js/i18n/km-kh/djangojs.js
index e6e100efbb..d0454035fb 100644
--- a/cms/static/js/i18n/km-kh/djangojs.js
+++ b/cms/static/js/i18n/km-kh/djangojs.js
@@ -20,35 +20,20 @@
django.catalog = django.catalog || {};
var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected"
- ],
"6 a.m.": "\u1798\u17c9\u17c4\u1784\u00a0\u17e6\u00a0\u1796\u17d2\u179a\u17b9\u1780",
"Available %s": "%s \u178a\u17c2\u179b\u17a2\u17b6\u1785\u200b\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u1794\u17b6\u1793",
"Cancel": "\u179b\u1794\u17cb\u1785\u17c4\u179b",
- "Choose": "Choose",
"Choose a time": "\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u1798\u17c9\u17c4\u1784",
"Choose all": "\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f\u1791\u17b6\u17c6\u1784\u17a2\u179f\u17cb",
"Chosen %s": "%s \u178a\u17c2\u179b\u1794\u17b6\u1793\u1787\u17d2\u179a\u17be\u179f\u179a\u17be\u179f",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
"Filter": "\u179f\u17d2\u179c\u17c2\u1784\u179a\u1780\u1787\u17b6\u1798\u17bd\u1799",
- "Hide": "Hide",
"Midnight": "\u17a2\u1792\u17d2\u179a\u17b6\u178f\u17d2\u179a",
"Noon": "\u1796\u17c1\u179b\u1790\u17d2\u1784\u17c2\u178f\u17d2\u179a\u1784\u17cb",
"Now": "\u17a5\u17a1\u17bc\u179c\u1793\u17c1\u17c7",
"Remove": "\u179b\u1794\u17cb\u1785\u17c1\u1789",
- "Remove all": "Remove all",
- "Show": "Show",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
"Today": "\u1790\u17d2\u1784\u17c3\u1793\u17c1\u17c7",
"Tomorrow": "\u1790\u17d2\u1784\u17c3\u179f\u17d2\u17a2\u17c2\u1780",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
- "Yesterday": "\u1798\u17d2\u179f\u17b7\u179b\u1798\u17b7\u1789",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."
+ "Yesterday": "\u1798\u17d2\u179f\u17b7\u179b\u1798\u17b7\u1789"
};
for (var key in newcatalog) {
django.catalog[key] = newcatalog[key];
diff --git a/cms/static/js/i18n/kn/djangojs.js b/cms/static/js/i18n/kn/djangojs.js
index 0d7824d7d0..9a3e4908fc 100644
--- a/cms/static/js/i18n/kn/djangojs.js
+++ b/cms/static/js/i18n/kn/djangojs.js
@@ -20,18 +20,12 @@
django.catalog = django.catalog || {};
var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected"
- ],
"6 a.m.": "\u0cac\u0cc6\u0cb3\u0c97\u0cbf\u0ca8 \u0cec \u0c97\u0c82\u0c9f\u0cc6 ",
"Available %s": "\u0cb2\u0cad\u0ccd\u0caf %s ",
"Cancel": "\u0cb0\u0ca6\u0ccd\u0ca6\u0cc1\u0c97\u0cca\u0cb3\u0cbf\u0cb8\u0cbf",
- "Choose": "Choose",
"Choose a time": "\u0cb8\u0cae\u0caf\u0cb5\u0cca\u0c82\u0ca6\u0ca8\u0ccd\u0ca8\u0cc1 \u0c86\u0cb0\u0cbf\u0cb8\u0cbf",
"Choose all": "\u0c8e\u0cb2\u0ccd\u0cb2\u0cb5\u0ca8\u0ccd\u0ca8\u0cc2 \u0c86\u0caf\u0ccd\u0ca6\u0cc1\u0c95\u0cca\u0cb3\u0ccd\u0cb3\u0cbf",
"Chosen %s": "%s \u0c86\u0caf\u0ccd\u0ca6\u0cc1\u0c95\u0cca\u0cb3\u0ccd\u0cb3\u0cb2\u0cbe\u0c97\u0cbf\u0ca6\u0cc6",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
"Filter": "\u0cb6\u0cca\u0cd5\u0ca7\u0c95",
"Hide": "\u0cae\u0cb0\u0cc6\u0cae\u0cbe\u0ca1\u0cb2\u0cc1",
"Midnight": "\u0cae\u0ca7\u0ccd\u0caf\u0cb0\u0cbe\u0ca4\u0ccd\u0cb0\u0cbf",
@@ -40,14 +34,9 @@
"Remove": "\u0ca4\u0cc6\u0c97\u0cc6\u0ca6\u0cc1 \u0cb9\u0cbe\u0c95\u0cbf",
"Remove all": "\u0c8e\u0cb2\u0ccd\u0cb2\u0cbe \u0ca4\u0cc6\u0c97\u0cc6\u0ca6\u0cc1\u0cb9\u0cbe\u0c95\u0cbf",
"Show": "\u0caa\u0ccd\u0cb0\u0ca6\u0cb0\u0ccd\u0cb6\u0ca8",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
"Today": "\u0c88 \u0ca6\u0cbf\u0ca8",
"Tomorrow": "\u0ca8\u0cbe\u0cb3\u0cc6",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
"Yesterday": "\u0ca8\u0cbf\u0ca8\u0ccd\u0ca8\u0cc6",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
"You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "\u0ca8\u0cbf\u0cd5\u0cb5\u0cc1 \u0caa\u0ccd\u0cb0\u0ca4\u0ccd\u0caf\u0cc6\u0cd5\u0c95 \u0ca4\u0cbf\u0ca6\u0ccd\u0ca6\u0cac\u0cb2\u0ccd\u0cb2 \u0c95\u0ccd\u0cb7\u0cc6\u0cd5\u0ca4\u0ccd\u0cb0\u0c97\u0cb3\u0cb2\u0ccd\u0cb2\u0cbf \u0cac\u0ca6\u0cb2\u0cbe\u0cb5\u0ca3\u0cc6 \u0c89\u0cb3\u0cbf\u0cb8\u0cbf\u0cb2\u0ccd\u0cb2. \u0ca8\u0cbf\u0cae\u0ccd\u0cae \u0c89\u0cb3\u0cbf\u0cb8\u0ca6 \u0cac\u0ca6\u0cb2\u0cbe\u0cb5\u0ca3\u0cc6\u0c97\u0cb3\u0cc1 \u0ca8\u0cbe\u0cb6\u0cb5\u0cbe\u0c97\u0cc1\u0ca4\u0ccd\u0ca4\u0cb5\u0cc6"
};
for (var key in newcatalog) {
diff --git a/cms/static/js/i18n/mr/djangojs.js b/cms/static/js/i18n/mr/djangojs.js
index 6beddc0204..f099ebfc1d 100644
--- a/cms/static/js/i18n/mr/djangojs.js
+++ b/cms/static/js/i18n/mr/djangojs.js
@@ -19,42 +19,6 @@
django.catalog = django.catalog || {};
- var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected",
- "%(sel)s of %(cnt)s selected"
- ],
- "6 a.m.": "6 a.m.",
- "Available %s": "Available %s",
- "Cancel": "Cancel",
- "Choose": "Choose",
- "Choose a time": "Choose a time",
- "Choose all": "Choose all",
- "Chosen %s": "Chosen %s",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
- "Filter": "Filter",
- "Hide": "Hide",
- "Midnight": "Midnight",
- "Noon": "Noon",
- "Now": "Now",
- "Remove": "Remove",
- "Remove all": "Remove all",
- "Show": "Show",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
- "Today": "Today",
- "Tomorrow": "Tomorrow",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
- "Yesterday": "Yesterday",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."
- };
- for (var key in newcatalog) {
- django.catalog[key] = newcatalog[key];
- }
-
if (!django.jsi18n_initialized) {
django.gettext = function(msgid) {
diff --git a/cms/static/js/i18n/ms/djangojs.js b/cms/static/js/i18n/ms/djangojs.js
index a81c827e53..5e1878aa25 100644
--- a/cms/static/js/i18n/ms/djangojs.js
+++ b/cms/static/js/i18n/ms/djangojs.js
@@ -12,42 +12,6 @@
django.catalog = django.catalog || {};
- var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected",
- "%(sel)s of %(cnt)s selected"
- ],
- "6 a.m.": "6 a.m.",
- "Available %s": "Available %s",
- "Cancel": "Cancel",
- "Choose": "Choose",
- "Choose a time": "Choose a time",
- "Choose all": "Choose all",
- "Chosen %s": "Chosen %s",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
- "Filter": "Filter",
- "Hide": "Hide",
- "Midnight": "Midnight",
- "Noon": "Noon",
- "Now": "Now",
- "Remove": "Remove",
- "Remove all": "Remove all",
- "Show": "Show",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
- "Today": "Today",
- "Tomorrow": "Tomorrow",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
- "Yesterday": "Yesterday",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."
- };
- for (var key in newcatalog) {
- django.catalog[key] = newcatalog[key];
- }
-
if (!django.jsi18n_initialized) {
django.gettext = function(msgid) {
diff --git a/cms/static/js/i18n/or/djangojs.js b/cms/static/js/i18n/or/djangojs.js
index a81c827e53..5e1878aa25 100644
--- a/cms/static/js/i18n/or/djangojs.js
+++ b/cms/static/js/i18n/or/djangojs.js
@@ -12,42 +12,6 @@
django.catalog = django.catalog || {};
- var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected",
- "%(sel)s of %(cnt)s selected"
- ],
- "6 a.m.": "6 a.m.",
- "Available %s": "Available %s",
- "Cancel": "Cancel",
- "Choose": "Choose",
- "Choose a time": "Choose a time",
- "Choose all": "Choose all",
- "Chosen %s": "Chosen %s",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
- "Filter": "Filter",
- "Hide": "Hide",
- "Midnight": "Midnight",
- "Noon": "Noon",
- "Now": "Now",
- "Remove": "Remove",
- "Remove all": "Remove all",
- "Show": "Show",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
- "Today": "Today",
- "Tomorrow": "Tomorrow",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
- "Yesterday": "Yesterday",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."
- };
- for (var key in newcatalog) {
- django.catalog[key] = newcatalog[key];
- }
-
if (!django.jsi18n_initialized) {
django.gettext = function(msgid) {
diff --git a/cms/static/js/i18n/pl/djangojs.js b/cms/static/js/i18n/pl/djangojs.js
index 67492ea8c9..3589f94bca 100644
--- a/cms/static/js/i18n/pl/djangojs.js
+++ b/cms/static/js/i18n/pl/djangojs.js
@@ -563,7 +563,6 @@
"Files must be in JPEG or PNG format.": "Pliki musz\u0105 by\u0107 w formacie JPEG lub PNG.",
"Filter": "Filtr",
"Filter and sort topics": "Filtruj i sortuj tematy",
- "Final Grade": "Ocena ko\u0144cowa",
"Final Grade Received": "Uzyskana ocena ko\u0144cowa",
"Financial Assistance": "Wsparcie finansowe",
"Financial Assistance Application": "Program wsparcia finansowego",
@@ -583,7 +582,6 @@
"Generate": "Wygeneruj",
"Generate Exception Certificates": "Wygeneruj certyfikaty w wyj\u0105tku",
"Generate the user's certificate": "Wygeneruj certyfikat studenta",
- "Get Credit": "Odbierz punkty",
"Go to Dashboard": "Przejd\u017a do pulpitu",
"Go to your Dashboard": "Przejd\u017a do swojego pulpitu",
"Going forward, your account information will be updated and maintained by {enterprise_name}.": "Informacje na temat Twojego konta b\u0119d\u0105 aktualizowane i zarz\u0105dzane przez {enterprise_name}.",
@@ -632,7 +630,6 @@
"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.": "Je\u015bli ten ekran zosta\u0142 wcze\u015bniej opublikowany i upubliczniony dla student\u00f3w, wszystkie zmiany, jakich dokona\u0142e\u015b kiedy ekran by\u0142 ukryty, b\u0119d\u0105 teraz widoczne dla student\u00f3w.",
"If you do not yet have an account, use the button below to register.": "Je\u015bli nie posiadasz konta, u\u017cyj poni\u017cszego przycisku, aby si\u0119 zarejestrowa\u0107.",
"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.": "Je\u015bli nie potwierdzisz swojej to\u017csamo\u015bci ju\u017c teraz, wci\u0105\u017c mo\u017cesz uczestniczy\u0107 w kursie z poziomu pulpitu studenta. B\u0119dziesz otrzymywa\u0107 cykliczne powiadomienia od %(platformName)s z pro\u015bb\u0105 o poddanie si\u0119 weryfikacji to\u017csamo\u015bci.",
- "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.": "Je\u015bli nie potwierdzisz swojej to\u017csamo\u015bci ju\u017c teraz, wci\u0105\u017c mo\u017cesz uczestniczy\u0107 w kursie z poziomu pulpitu studenta. B\u0119dziesz otrzymywa\u0107 cykliczne powiadomienia od {platformName} z pro\u015bb\u0105 o poddanie si\u0119 weryfikacji to\u017csamo\u015bci.",
"If you leave this page without saving or submitting your response, you will lose any work you have done on the response.": "Je\u017celi opu\u015bcisz t\u0119 stron\u0119 bez zapisania lub przes\u0142ania swojej odpowiedzi, stracisz ca\u0142\u0105 swoj\u0105 prac\u0119.",
"If you leave this page without submitting your peer assessment, you will lose any work you have done.": "Je\u017celi opu\u015bcisz t\u0119 stron\u0119 bez przes\u0142ania zadania do oceny, stracisz ca\u0142\u0105 swoj\u0105 prac\u0119.",
"If you leave this page without submitting your self assessment, you will lose any work you have done.": "Je\u017celi opu\u015bcisz t\u0119 stron\u0119 bez przes\u0142ania swojego zadania, stracisz ca\u0142\u0105 swoj\u0105 prac\u0119.",
@@ -1183,7 +1180,6 @@
"Terms of Service and Honor Code": "Warunki korzystania z Serwisu oraz Kodeks Honorowy",
"Textbook Name": "Nazwa podr\u0119cznika",
"Textbook information": "Informacje o podr\u0119czniku",
- "Thank you %(full_name)s! We have received your payment for %(course_name)s.": "Dzi\u0119kujemy, %(full_name)s! Otrzymali\u015bmy twoj\u0105 op\u0142at\u0119 za %(course_name)s.",
"Thank you for submitting your financial assistance application for {course_name}! You can expect a response in 2-4 business days.": "Dzi\u0119kujemy za twoje zg\u0142oszenie do wsparcia finansowego dla kursu {course_name}. Mo\u017cesz spodziewa\u0107 si\u0119 odpowiedzi w ci\u0105gu 2-4 dni roboczych.",
"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.": "Dzi\u0119kujemy za przes\u0142anie twoich zdj\u0119\u0107. Wkr\u00f3tce dokonamy ich sprawdzenia. Mo\u017cesz si\u0119 teraz zapisa\u0107 na dowolny kurs w %(platformName)s, kt\u00f3ry oferuje potwierdzone certyfikaty. Weryfikacja to\u017csamo\u015bci jest wa\u017cna przez okres jednego roku. Po tym okresie konieczne b\u0119dzie ponowne przes\u0142anie zdj\u0119\u0107 do cel\u00f3w potwierdzenia to\u017csamo\u015bci.",
"Thank you! We have received your payment for {courseName}.": "Dzi\u0119kujemy! Otrzymali\u015bmy twoj\u0105 op\u0142at\u0119 za kurs {courseName}.",
@@ -1193,8 +1189,6 @@
"The certificate for this learner has been re-validated and the system is re-running the grade for this learner.": "Certyfikat tego studenta zosta\u0142 ponownie zatwierdzony, a uzyskana ocena przywr\u00f3cona.",
"The cohort cannot be added": "Kohorta nie mo\u017ce zosta\u0107 dodana",
"The cohort cannot be saved": "Kohorta nie mo\u017ce zosta\u0107 zapisana",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "\u0141\u0105czna d\u0142ugo\u015b\u0107 p\u00f3l nazwy organizacji i kodu biblioteki nie mo\u017ce przekroczy\u0107 <%=limit%> znak\u00f3w.",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "\u0141\u0105czna d\u0142ugo\u015b\u0107 nazwy organizacji, numeru kursu i edycji kursu nie mo\u017ce przekroczy\u0107 <%=limit%> znak\u00f3w.",
"The country or region where you live.": "Kraj lub region w kt\u00f3rym mieszkasz.",
"The country that team members primarily identify with.": "G\u0142\u00f3wny region, z kt\u00f3rym identyfikuj\u0105 si\u0119 cz\u0142onkowie zespo\u0142u.",
"The course end date must be later than the course start date.": "Data zako\u0144czenia kursu musi by\u0107 p\u00f3\u017aniejsza od daty rozpocz\u0119cia.",
@@ -1347,7 +1341,6 @@
"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.": "Aby upewni\u0107 si\u0119, \u017ce wszyscy studenci b\u0119d\u0105 mogli odtworzy\u0107 film, zalecamy dostarczenie wersji filmu w formatach .mp4 jak i .webm. Kliknij poni\u017cej, aby doda\u0107 odno\u015bnik do kolejnej wersji. Odno\u015bnik nie mo\u017ce prowadzi\u0107 do Youtube. Studentowi odtworzony zostanie pierwszy film kompatybilny z jego komputerem.",
"To complete the program, you must earn a verified certificate for each course.": "Aby uko\u0144czy\u0107 program, musisz uzyska\u0107 potwierdzony certyfikat z ka\u017cdego kursu.",
"To continue learning with this account, sign in below.": "Aby kontynuowa\u0107 nauk\u0119 za po\u015brednictwem tego konta, zaloguj si\u0119.",
- "To finalize course credit, %(display_name)s requires %(platform_name)s learners to submit a credit request.": "W celu sfinalizowania procesu przyznawania punkt\u00f3w edukacyjnych, %(display_name)s wymaga od student\u00f3w %(platform_name)s przes\u0142ania zg\u0142oszenia \u017c\u0105dania przyznania punkt\u00f3w.",
"To invalidate a certificate for a particular learner, add the username or email address below.": "W celu uniewa\u017cnienia certyfikatu dla okre\u015blonego studenta, wprowad\u017a poni\u017cej jego nazw\u0119 u\u017cytkownika lub adres e-mail.",
"To receive a certificate, you must also verify your identity before {date}.": "Aby otrzyma\u0107 certyfikat, musisz r\u00f3wnie\u017c potwierdzi\u0107 swoj\u0105 to\u017csamo\u015b\u0107 przed {date}.",
"To receive a certificate, you must also verify your identity.": "Aby otrzyma\u0107 certyfikat, musisz r\u00f3wnie\u017c potwierdzi\u0107 swoj\u0105 to\u017csamo\u015b\u0107.",
@@ -1466,7 +1459,6 @@
"Verified Certificate upgrade": "Zg\u0142oszenie do potwierdzonego certyfikatu",
"Verified Status": "Status potwierdzony",
"Verified mode price": "Cena trybu potwierdzonego",
- "Verify Now": "Potwierd\u017a teraz",
"Video Capture Error": "B\u0142\u0105d przechwytywania obrazu wideo",
"Video ID": "Identyfikator filmu",
"Video Source Language": "Oryginalny j\u0119zyk filmu",
@@ -1498,7 +1490,6 @@
"We couldn't find any results for \"%s\".": "Nie uda\u0142o si\u0119 znale\u017a\u0107 \u017cadnych wynik\u00f3w dla \"%s\".",
"We couldn't sign you in.": "Logowanie nie powiod\u0142o si\u0119.",
"We have encountered an error. Refresh your browser and then try again.": "Napotkali\u015bmy b\u0142\u0105d. Od\u015bwie\u017c przegl\u0105dark\u0119 i spr\u00f3buj jeszcze raz.",
- "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.": "Otrzymali\u015bmy twoje dane i sprawdzimy je by potwierdzi\u0107 twoj\u0105 to\u017csamo\u015b\u0107. Na swoim pulpicie studenta znajdziesz wiadomo\u015b\u0107 gdy proces weryfikacyjny zostanie zako\u0144czony (zwykle w ci\u0105gu 1-2 dni). W mi\u0119dzyczasie mo\u017cesz bez przeszk\u00f3d korzysta\u0107 ze wszystkich materia\u0142\u00f3w kursowych.",
"We just need a little more information before you start learning with %(platformName)s.": "Potrzebujemy jeszcze nieco informacji zanim b\u0119dziesz m\u00f3g\u0142 rozpocz\u0105\u0107 nauk\u0119 w %(platformName)s.",
"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.": "U\u017cywamy najwy\u017cszych dost\u0119pnych poziom\u00f3w bezpiecze\u0144stwa w celu szyfrowania zdj\u0119\u0107 i przesy\u0142ania ich do sprawdzenia. Po zako\u0144czeniu czynno\u015bci weryfikacyjnych, twoje zdj\u0119cia i dane z dokumentu nie s\u0105 zapisywane ani widoczne gdziekolwiek na \u0142amach %(platformName)s.",
"We've encountered an error. Refresh your browser and then try again.": "Napotkali\u015bmy b\u0142\u0105d. Od\u015bwie\u017c przegl\u0105dark\u0119 i spr\u00f3buj ponownie.",
@@ -1581,7 +1572,6 @@
"You need to activate your account before you can enroll in courses. Check your inbox for an activation email.": "Aby m\u00f3c zarejestrowa\u0107 si\u0119 na kursy, musisz najpierw aktywowa\u0107 swoje konto. Sprawd\u017a poczt\u0119 i odnajd\u017a e-mail z odno\u015bnikiem aktywacyjnym.",
"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.": "Przed zapisaniem si\u0119 na pierwszy kurs musisz aktywowa\u0107 swoje konto. Sprawd\u017a poczt\u0119 e-mail i znajd\u017a wiadomo\u015b\u0107 z instrukcj\u0105 aktywacji. Po jej dokonaniu wr\u00f3\u0107 i od\u015bwie\u017c t\u0119 stron\u0119.",
"You receive messages from {platform_name} and course teams at this address.": "Na ten adres otrzymujesz wiadomo\u015bci z {platform_name} i od prowadz\u0105cych kursy.",
- "You still need to visit the %(display_name)s website to complete the credit process.": "Wci\u0105\u017c musisz odwiedzi\u0107 stron\u0119 %(display_name)s w celu dope\u0142nienia formalno\u015bci zwi\u0105zanych z przyznaniem punkt\u00f3w edukacyjnych.",
"You will be refunded the amount you paid.": "Zap\u0142acona kwota zostanie zwr\u00f3cona.",
"You will not be refunded the amount you paid.": "Zap\u0142acona kwota nie zostanie zwr\u00f3cona.",
"You will not receive notification for emails that bounce, so double-check your spelling.": "Nie otrzymasz powiadomie\u0144 na nieprawid\u0142owe adresy e-mail, dlatego raz jeszcze sprawd\u017a poprawno\u015b\u0107.",
@@ -1652,7 +1642,6 @@
"enter code here": "Wprowad\u017a kod",
"enter link description here": "Wprowad\u017a opis linku",
"for": "za",
- "for {courseName}": "z kursu {courseName}",
"group configuration": "konfiguracja grupy",
"image omitted": "pomini\u0119ty obrazek",
"last activity": "ostatnia aktywno\u015b\u0107",
diff --git a/cms/static/js/i18n/pt-br/djangojs.js b/cms/static/js/i18n/pt-br/djangojs.js
index 0b5bc6172b..17d279c246 100644
--- a/cms/static/js/i18n/pt-br/djangojs.js
+++ b/cms/static/js/i18n/pt-br/djangojs.js
@@ -384,7 +384,6 @@
"Generate": "Emitir",
"Generate Exception Certificates": "Gerar certificados de exce\u00e7\u00e3o",
"Generate the user's certificate": "Emitir certificado do usu\u00e1rio",
- "Get Credit": "Obter Cr\u00e9dito",
"Go to Dashboard": "Ir para a P\u00e1gina Inicial",
"Go to your Dashboard": "Ir para o seu Painel de controle",
"Government-Issued Photo ID": "Foto de um documento de identidade oficial",
@@ -771,8 +770,6 @@
"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.": "Obrigado por enviar suas fotos. N\u00f3s vamos analis\u00e1-las rapidamente. Voc\u00ea pode inscrever-se para qualquer curso da plataforma %(platformName)s que ofere\u00e7a certificados verificados. A verifica\u00e7\u00e3o \u00e9 v\u00e1lida por um ano. Depois disso, voc\u00ea precisa enviar fotos para verificar novamente.",
"The cohort cannot be added": "O grupo n\u00e3o pode ser adicionado",
"The cohort cannot be saved": "O grupo n\u00e3o p\u00f4de ser salvo",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "Os campos comprimento combinando da Organiza\u00e7\u00e3o e c\u00f3digo da biblioteca n\u00e3o podem ultrapassar <%=limit%> caracteres. ",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "Os campos comprimento total da Organiza\u00e7\u00e3o, n\u00famero do curso e funcionamento do curso n\u00e3o podem exceder <%=limit%> caracteres. ",
"The country that team members primarily identify with.": "O pa\u00eds com o qual os membros da equipe se identificam.",
"The course end date must be later than the course start date.": "A data do final do curso deve ser posterior \u00e0 data de in\u00edcio da matr\u00edcula. ",
"The course must have an assigned start date.": "O curso deve ter uma data de in\u00edcio designada.",
@@ -857,7 +854,6 @@
"Title of the signatory": "T\u00edtulo da assinatura",
"Titles more than 100 characters may prevent students from printing their certificate on a single page.": "T\u00edtulos com mais de 100 caracteres podem impedir que os estudantes imprimam seu certificado em uma \u00fanica p\u00e1gina.",
"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.": "Para garantir que todos os estudantes poder\u00e3o acessar o video, n\u00f3s recomendamos providenciar vers\u00f5es em .mp4 e .webm do video. Clique abaixo para adicionar um URL para outra vers\u00e3o. Esses URLs n\u00e3o podem ser do YouTube. O primeiro v\u00eddeo que for compat\u00edvel com o computador dos alunos ser\u00e1 exibido.",
- "To finalize course credit, %(display_name)s requires %(platform_name)s learners to submit a credit request.": "Para finalizar os cr\u00e9ditos do curso, %(display_name)s exige que os alunos %(platform_name)s enviem uma solicita\u00e7\u00e3o de cr\u00e9ditos. ",
"To invalidate a certificate for a particular learner, add the username or email address below.": "Para invalidar um certificado para um aluno em particular, adicionar o nome do usu\u00e1rio ou endere\u00e7o de e-mail abaixo",
"To receive a certificate, you must also verify your identity.": "Para receber um certificado, voc\u00ea tamb\u00e9m deve verificar a sua identidade.",
"To take a successful photo, make sure that:": "Para tirar uma foto corretamente, certifique-se que:",
@@ -930,7 +926,6 @@
"Verified Certificate upgrade": "Atualiza\u00e7\u00e3o do certificado verificado",
"Verified Status": "Status verificado",
"Verified mode price": "Pre\u00e7o de modo verificado",
- "Verify Now": "Verifique agora",
"Video Capture Error": "Falha na captura de v\u00eddeo",
"Video ID": "ID do V\u00eddeo",
"View": "Visualizar",
@@ -946,7 +941,6 @@
"Warning": "Aviso",
"Warnings": "Avisos",
"We couldn't find any results for \"%s\".": "N\u00e3o foi poss\u00edvel encontrar resultados para \"%s\".",
- "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.": "Recebemos as suas informa\u00e7\u00f5es e estamos verificando a sua identifica\u00e7\u00e3o. Voc\u00ea receber\u00e1 uma mensagem em seu painel de controle quando o processo de verifica\u00e7\u00e3o estiver conclu\u00eddo (normalmente entre 1-2 dias). Enquanto isso, voc\u00ea ainda pode acessar a todo o conte\u00fado do curso.",
"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.": "N\u00f3s usamos os mais altos n\u00edveis de seguran\u00e7a dispon\u00edveis para encriptar sua foto e envi\u00e1-la para no servi\u00e7o de autoriza\u00e7\u00e3o para an\u00e1lise. Informa\u00e7\u00f5es sobre voc\u00ea e sua foto n\u00e3o s\u00e3o salvas ou vis\u00edveis em qualquer lugar em %(platformName)s depois que o processo de verifica\u00e7\u00e3o \u00e9 completado.",
"We've encountered an error. Refresh your browser and then try again.": "Encontramos um erro. Atualize seu navegador e tente novamente.",
"Web:": "Web:",
@@ -999,7 +993,6 @@
"You must specify a name for the cohort": "Voc\u00ea deve especificar um nome para o grupo",
"You need to activate your account before you can enroll in courses. Check your inbox for an activation email.": "Voc\u00ea precisa ativar a sua conta antes de se matricular nos cursos. Verifique em sua caixa de entrada o e-mail de ativa\u00e7\u00e3o.",
"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.": "Voc\u00ea precisa ativar a sua conta antes de matricular-se nos cursos. Confira se o e-mail de ativa\u00e7\u00e3o est\u00e1 na sua caixa de entrada. Depois de completar a ativa\u00e7\u00e3o, voc\u00ea pode voltar e atualizar esta p\u00e1gina.",
- "You still need to visit the %(display_name)s website to complete the credit process.": "Voc\u00ea ainda precisa visitar o site %(display_name)s para completar o processo de cr\u00e9dito.",
"You will not receive notification for emails that bounce, so double-check your spelling.": "Voc\u00ea n\u00e3o receber\u00e1 notifica\u00e7\u00f5es de e-mails que n\u00e3o entregues, ent\u00e3o verifique novamente se digitou corretamente.",
"You will use your webcam to take a picture of your face and of your government-issued photo ID.": "Voc\u00ea vai usar sua webcam para tirar uma foto do seu rosto e do seu documento com foto emitido pelo governo.",
"You!": "Voc\u00ea!",
diff --git a/cms/static/js/i18n/rtl/djangojs.js b/cms/static/js/i18n/rtl/djangojs.js
index f643769d69..b556d73765 100644
--- a/cms/static/js/i18n/rtl/djangojs.js
+++ b/cms/static/js/i18n/rtl/djangojs.js
@@ -460,6 +460,7 @@
],
"Course Content": "\u0630\u062e\u0639\u0642\u0633\u062b \u0630\u062e\u0631\u0641\u062b\u0631\u0641",
"Course Credit Requirements": "\u0630\u062e\u0639\u0642\u0633\u062b \u0630\u0642\u062b\u064a\u0647\u0641 \u0642\u062b\u0636\u0639\u0647\u0642\u062b\u0648\u062b\u0631\u0641\u0633",
+ "Course Discussion Forum": "\u0630\u062e\u0639\u0642\u0633\u062b \u064a\u0647\u0633\u0630\u0639\u0633\u0633\u0647\u062e\u0631 \u0628\u062e\u0642\u0639\u0648",
"Course End": "\u0630\u062e\u0639\u0642\u0633\u062b \u062b\u0631\u064a",
"Course Handouts": "\u0630\u062e\u0639\u0642\u0633\u062b \u0627\u0634\u0631\u064a\u062e\u0639\u0641\u0633",
"Course ID": "\u0630\u062e\u0639\u0642\u0633\u062b \u0647\u064a",
@@ -490,6 +491,7 @@
"Create account using %(providerName)s.": "\u0630\u0642\u062b\u0634\u0641\u062b \u0634\u0630\u0630\u062e\u0639\u0631\u0641 \u0639\u0633\u0647\u0631\u0644 %(providerName)s.",
"Create an Account": "\u0630\u0642\u062b\u0634\u0641\u062b \u0634\u0631 \u0634\u0630\u0630\u062e\u0639\u0631\u0641",
"Create an Account.": "\u0630\u0642\u062b\u0634\u0641\u062b \u0634\u0631 \u0634\u0630\u0630\u062e\u0639\u0631\u0641.",
+ "Create an account": "\u0630\u0642\u062b\u0634\u0641\u062b \u0634\u0631 \u0634\u0630\u0630\u062e\u0639\u0631\u0641",
"Create an account using": "\u0630\u0642\u062b\u0634\u0641\u062b \u0634\u0631 \u0634\u0630\u0630\u062e\u0639\u0631\u0641 \u0639\u0633\u0647\u0631\u0644",
"Create team.": "\u0630\u0642\u062b\u0634\u0641\u062b \u0641\u062b\u0634\u0648.",
"Creating missing groups": "\u0630\u0642\u062b\u0634\u0641\u0647\u0631\u0644 \u0648\u0647\u0633\u0633\u0647\u0631\u0644 \u0644\u0642\u062e\u0639\u062d\u0633",
@@ -734,7 +736,6 @@
"Files that you upload must be smaller than 5MB in size.": "\u0628\u0647\u0645\u062b\u0633 \u0641\u0627\u0634\u0641 \u063a\u062e\u0639 \u0639\u062d\u0645\u062e\u0634\u064a \u0648\u0639\u0633\u0641 \u0632\u062b \u0633\u0648\u0634\u0645\u0645\u062b\u0642 \u0641\u0627\u0634\u0631 5\u0648\u0632 \u0647\u0631 \u0633\u0647\u0638\u062b.",
"Fill browser": "\u0628\u0647\u0645\u0645 \u0632\u0642\u062e\u0635\u0633\u062b\u0642",
"Filter and sort topics": "\u0628\u0647\u0645\u0641\u062b\u0642 \u0634\u0631\u064a \u0633\u062e\u0642\u0641 \u0641\u062e\u062d\u0647\u0630\u0633",
- "Final Grade": "\u0628\u0647\u0631\u0634\u0645 \u0644\u0642\u0634\u064a\u062b",
"Financial Aid": "\u0628\u0647\u0631\u0634\u0631\u0630\u0647\u0634\u0645 \u0634\u0647\u064a",
"Financial Assistance": "\u0628\u0647\u0631\u0634\u0631\u0630\u0647\u0634\u0645 \u0634\u0633\u0633\u0647\u0633\u0641\u0634\u0631\u0630\u062b",
"Financial Assistance Application": "\u0628\u0647\u0631\u0634\u0631\u0630\u0647\u0634\u0645 \u0634\u0633\u0633\u0647\u0633\u0641\u0634\u0631\u0630\u062b \u0634\u062d\u062d\u0645\u0647\u0630\u0634\u0641\u0647\u062e\u0631",
@@ -755,6 +756,7 @@
"Footer": "\u0628\u062e\u062e\u0641\u062b\u0642",
"For grading to work, you must change all {oldName} subsections to {newName}.": "\u0628\u062e\u0642 \u0644\u0642\u0634\u064a\u0647\u0631\u0644 \u0641\u062e \u0635\u062e\u0642\u0646, \u063a\u062e\u0639 \u0648\u0639\u0633\u0641 \u0630\u0627\u0634\u0631\u0644\u062b \u0634\u0645\u0645 {oldName} \u0633\u0639\u0632\u0633\u062b\u0630\u0641\u0647\u062e\u0631\u0633 \u0641\u062e {newName}.",
"For inquiries regarding assignments, grades, or structure of a specific course, please post in the discussion forums for that course directly.": "\u0628\u062e\u0642 \u0647\u0631\u0636\u0639\u0647\u0642\u0647\u062b\u0633 \u0642\u062b\u0644\u0634\u0642\u064a\u0647\u0631\u0644 \u0634\u0633\u0633\u0647\u0644\u0631\u0648\u062b\u0631\u0641\u0633, \u0644\u0642\u0634\u064a\u062b\u0633, \u062e\u0642 \u0633\u0641\u0642\u0639\u0630\u0641\u0639\u0642\u062b \u062e\u0628 \u0634 \u0633\u062d\u062b\u0630\u0647\u0628\u0647\u0630 \u0630\u062e\u0639\u0642\u0633\u062b, \u062d\u0645\u062b\u0634\u0633\u062b \u062d\u062e\u0633\u0641 \u0647\u0631 \u0641\u0627\u062b \u064a\u0647\u0633\u0630\u0639\u0633\u0633\u0647\u062e\u0631 \u0628\u062e\u0642\u0639\u0648\u0633 \u0628\u062e\u0642 \u0641\u0627\u0634\u0641 \u0630\u062e\u0639\u0642\u0633\u062b \u064a\u0647\u0642\u062b\u0630\u0641\u0645\u063a.",
+ "Forgot my password": "\u0628\u062e\u0642\u0644\u062e\u0641 \u0648\u063a \u062d\u0634\u0633\u0633\u0635\u062e\u0642\u064a",
"Format": "\u0628\u062e\u0642\u0648\u0634\u0641",
"Formats": "\u0628\u062e\u0642\u0648\u0634\u0641\u0633",
"Free text notes": "\u0628\u0642\u062b\u062b \u0641\u062b\u0637\u0641 \u0631\u062e\u0641\u062b\u0633",
@@ -769,7 +771,6 @@
"Generate": "\u0644\u062b\u0631\u062b\u0642\u0634\u0641\u062b",
"Generate Exception Certificates": "\u0644\u062b\u0631\u062b\u0642\u0634\u0641\u062b \u062b\u0637\u0630\u062b\u062d\u0641\u0647\u062e\u0631 \u0630\u062b\u0642\u0641\u0647\u0628\u0647\u0630\u0634\u0641\u062b\u0633",
"Generate the user's certificate": "\u0644\u062b\u0631\u062b\u0642\u0634\u0641\u062b \u0641\u0627\u062b \u0639\u0633\u062b\u0642'\u0633 \u0630\u062b\u0642\u0641\u0647\u0628\u0647\u0630\u0634\u0641\u062b",
- "Get Credit": "\u0644\u062b\u0641 \u0630\u0642\u062b\u064a\u0647\u0641",
"Go to Dashboard": "\u0644\u062e \u0641\u062e \u064a\u0634\u0633\u0627\u0632\u062e\u0634\u0642\u064a",
"Go to my Dashboard": "\u0644\u062e \u0641\u062e \u0648\u063a \u064a\u0634\u0633\u0627\u0632\u062e\u0634\u0642\u064a",
"Go to your Dashboard": "\u0644\u062e \u0641\u062e \u063a\u062e\u0639\u0642 \u064a\u0634\u0633\u0627\u0632\u062e\u0634\u0642\u064a",
@@ -850,10 +851,8 @@
"If the subsection does not have a due date, learners always see their scores when they submit answers to assessments.": "\u0647\u0628 \u0641\u0627\u062b \u0633\u0639\u0632\u0633\u062b\u0630\u0641\u0647\u062e\u0631 \u064a\u062e\u062b\u0633 \u0631\u062e\u0641 \u0627\u0634\u062f\u062b \u0634 \u064a\u0639\u062b \u064a\u0634\u0641\u062b, \u0645\u062b\u0634\u0642\u0631\u062b\u0642\u0633 \u0634\u0645\u0635\u0634\u063a\u0633 \u0633\u062b\u062b \u0641\u0627\u062b\u0647\u0642 \u0633\u0630\u062e\u0642\u062b\u0633 \u0635\u0627\u062b\u0631 \u0641\u0627\u062b\u063a \u0633\u0639\u0632\u0648\u0647\u0641 \u0634\u0631\u0633\u0635\u062b\u0642\u0633 \u0641\u062e \u0634\u0633\u0633\u062b\u0633\u0633\u0648\u062b\u0631\u0641\u0633.",
"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.": "\u0647\u0628 \u0641\u0627\u062b \u0639\u0631\u0647\u0641 \u0635\u0634\u0633 \u062d\u0642\u062b\u062f\u0647\u062e\u0639\u0633\u0645\u063a \u062d\u0639\u0632\u0645\u0647\u0633\u0627\u062b\u064a \u0634\u0631\u064a \u0642\u062b\u0645\u062b\u0634\u0633\u062b\u064a \u0641\u062e \u0645\u062b\u0634\u0642\u0631\u062b\u0642\u0633, \u0634\u0631\u063a \u0630\u0627\u0634\u0631\u0644\u062b\u0633 \u063a\u062e\u0639 \u0648\u0634\u064a\u062b \u0641\u062e \u0641\u0627\u062b \u0639\u0631\u0647\u0641 \u0635\u0627\u062b\u0631 \u0647\u0641 \u0635\u0634\u0633 \u0627\u0647\u064a\u064a\u062b\u0631 \u0635\u0647\u0645\u0645 \u0631\u062e\u0635 \u0632\u062b \u062f\u0647\u0633\u0647\u0632\u0645\u062b \u0641\u062e \u0645\u062b\u0634\u0642\u0631\u062b\u0642\u0633.",
"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?": "\u0647\u0628 \u0641\u0627\u062b \u0639\u0631\u0647\u0641 \u0635\u0634\u0633 \u062d\u0642\u062b\u062f\u0647\u062e\u0639\u0633\u0645\u063a \u062d\u0639\u0632\u0645\u0647\u0633\u0627\u062b\u064a \u0634\u0631\u064a \u0642\u062b\u0645\u062b\u0634\u0633\u062b\u064a \u0641\u062e \u0633\u0641\u0639\u064a\u062b\u0631\u0641\u0633, \u0634\u0631\u063a \u0630\u0627\u0634\u0631\u0644\u062b\u0633 \u063a\u062e\u0639 \u0648\u0634\u064a\u062b \u0641\u062e \u0641\u0627\u062b \u0639\u0631\u0647\u0641 \u0635\u0627\u062b\u0631 \u0647\u0641 \u0635\u0634\u0633 \u0627\u0647\u064a\u064a\u062b\u0631 \u0635\u0647\u0645\u0645 \u0631\u062e\u0635 \u0632\u062b \u062f\u0647\u0633\u0647\u0632\u0645\u062b \u0641\u062e \u0633\u0641\u0639\u064a\u062b\u0631\u0641\u0633. \u064a\u062e \u063a\u062e\u0639 \u0635\u0634\u0631\u0641 \u0641\u062e \u062d\u0642\u062e\u0630\u062b\u062b\u064a?",
- "If you are unable to access your account contact us via email using {email}.": "\u0647\u0628 \u063a\u062e\u0639 \u0634\u0642\u062b \u0639\u0631\u0634\u0632\u0645\u062b \u0641\u062e \u0634\u0630\u0630\u062b\u0633\u0633 \u063a\u062e\u0639\u0642 \u0634\u0630\u0630\u062e\u0639\u0631\u0641 \u0630\u062e\u0631\u0641\u0634\u0630\u0641 \u0639\u0633 \u062f\u0647\u0634 \u062b\u0648\u0634\u0647\u0645 \u0639\u0633\u0647\u0631\u0644 {email}.",
"If you do not yet have an account, use the button below to register.": "\u0647\u0628 \u063a\u062e\u0639 \u064a\u062e \u0631\u062e\u0641 \u063a\u062b\u0641 \u0627\u0634\u062f\u062b \u0634\u0631 \u0634\u0630\u0630\u062e\u0639\u0631\u0641, \u0639\u0633\u062b \u0641\u0627\u062b \u0632\u0639\u0641\u0641\u062e\u0631 \u0632\u062b\u0645\u062e\u0635 \u0641\u062e \u0642\u062b\u0644\u0647\u0633\u0641\u062b\u0642.",
"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.": "\u0647\u0628 \u063a\u062e\u0639 \u064a\u062e\u0631'\u0641 \u062f\u062b\u0642\u0647\u0628\u063a \u063a\u062e\u0639\u0642 \u0647\u064a\u062b\u0631\u0641\u0647\u0641\u063a \u0631\u062e\u0635, \u063a\u062e\u0639 \u0630\u0634\u0631 \u0633\u0641\u0647\u0645\u0645 \u062b\u0637\u062d\u0645\u062e\u0642\u062b \u063a\u062e\u0639\u0642 \u0630\u062e\u0639\u0642\u0633\u062b \u0628\u0642\u062e\u0648 \u063a\u062e\u0639\u0642 \u064a\u0634\u0633\u0627\u0632\u062e\u0634\u0642\u064a. \u063a\u062e\u0639 \u0635\u0647\u0645\u0645 \u0642\u062b\u0630\u062b\u0647\u062f\u062b \u062d\u062b\u0642\u0647\u062e\u064a\u0647\u0630 \u0642\u062b\u0648\u0647\u0631\u064a\u062b\u0642\u0633 \u0628\u0642\u062e\u0648 %(platformName)s \u0641\u062e \u062f\u062b\u0642\u0647\u0628\u063a \u063a\u062e\u0639\u0642 \u0647\u064a\u062b\u0631\u0641\u0647\u0641\u063a.",
- "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.": "\u0647\u0628 \u063a\u062e\u0639 \u064a\u062e\u0631'\u0641 \u062f\u062b\u0642\u0647\u0628\u063a \u063a\u062e\u0639\u0642 \u0647\u064a\u062b\u0631\u0641\u0647\u0641\u063a \u0631\u062e\u0635, \u063a\u062e\u0639 \u0630\u0634\u0631 \u0633\u0641\u0647\u0645\u0645 \u062b\u0637\u062d\u0645\u062e\u0642\u062b \u063a\u062e\u0639\u0642 \u0630\u062e\u0639\u0642\u0633\u062b \u0628\u0642\u062e\u0648 \u063a\u062e\u0639\u0642 \u064a\u0634\u0633\u0627\u0632\u062e\u0634\u0642\u064a. \u063a\u062e\u0639 \u0635\u0647\u0645\u0645 \u0642\u062b\u0630\u062b\u0647\u062f\u062b \u062d\u062b\u0642\u0647\u062e\u064a\u0647\u0630 \u0642\u062b\u0648\u0647\u0631\u064a\u062b\u0642\u0633 \u0628\u0642\u062e\u0648 {platformName} \u0641\u062e \u062f\u062b\u0642\u0647\u0628\u063a \u063a\u062e\u0639\u0642 \u0647\u064a\u062b\u0631\u0641\u0647\u0641\u063a.",
"If you leave, you can no longer post in this team's discussions.Your place will be available to another learner.": "\u0647\u0628 \u063a\u062e\u0639 \u0645\u062b\u0634\u062f\u062b, \u063a\u062e\u0639 \u0630\u0634\u0631 \u0631\u062e \u0645\u062e\u0631\u0644\u062b\u0642 \u062d\u062e\u0633\u0641 \u0647\u0631 \u0641\u0627\u0647\u0633 \u0641\u062b\u0634\u0648'\u0633 \u064a\u0647\u0633\u0630\u0639\u0633\u0633\u0647\u062e\u0631\u0633.\u063a\u062e\u0639\u0642 \u062d\u0645\u0634\u0630\u062b \u0635\u0647\u0645\u0645 \u0632\u062b \u0634\u062f\u0634\u0647\u0645\u0634\u0632\u0645\u062b \u0641\u062e \u0634\u0631\u062e\u0641\u0627\u062b\u0642 \u0645\u062b\u0634\u0642\u0631\u062b\u0642.",
"If you make significant changes, make sure you notify members of the team before making these changes.": "\u0647\u0628 \u063a\u062e\u0639 \u0648\u0634\u0646\u062b \u0633\u0647\u0644\u0631\u0647\u0628\u0647\u0630\u0634\u0631\u0641 \u0630\u0627\u0634\u0631\u0644\u062b\u0633, \u0648\u0634\u0646\u062b \u0633\u0639\u0642\u062b \u063a\u062e\u0639 \u0631\u062e\u0641\u0647\u0628\u063a \u0648\u062b\u0648\u0632\u062b\u0642\u0633 \u062e\u0628 \u0641\u0627\u062b \u0641\u062b\u0634\u0648 \u0632\u062b\u0628\u062e\u0642\u062b \u0648\u0634\u0646\u0647\u0631\u0644 \u0641\u0627\u062b\u0633\u062b \u0630\u0627\u0634\u0631\u0644\u062b\u0633.",
"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.": "\u0647\u0628 \u063a\u062e\u0639 \u0648\u0634\u0646\u062b \u0641\u0627\u0647\u0633 %(xblockType)s \u062f\u0647\u0633\u0647\u0632\u0645\u062b \u0641\u062e \u0645\u062b\u0634\u0642\u0631\u062b\u0642\u0633, \u0645\u062b\u0634\u0642\u0631\u062b\u0642\u0633 \u0635\u0647\u0645\u0645 \u0632\u062b \u0634\u0632\u0645\u062b \u0641\u062e \u0633\u062b\u062b \u0647\u0641\u0633 \u0630\u062e\u0631\u0641\u062b\u0631\u0641 \u0634\u0628\u0641\u062b\u0642 \u0641\u0627\u062b \u0642\u062b\u0645\u062b\u0634\u0633\u062b \u064a\u0634\u0641\u062b \u0627\u0634\u0633 \u062d\u0634\u0633\u0633\u062b\u064a \u0634\u0631\u064a \u063a\u062e\u0639 \u0627\u0634\u062f\u062b \u062d\u0639\u0632\u0645\u0647\u0633\u0627\u062b\u064a \u0641\u0627\u062b \u0639\u0631\u0647\u0641. \u062e\u0631\u0645\u063a \u0639\u0631\u0647\u0641\u0633 \u0641\u0627\u0634\u0641 \u0634\u0642\u062b \u062b\u0637\u062d\u0645\u0647\u0630\u0647\u0641\u0645\u063a \u0627\u0647\u064a\u064a\u062b\u0631 \u0628\u0642\u062e\u0648 \u0645\u062b\u0634\u0642\u0631\u062b\u0642\u0633 \u0635\u0647\u0645\u0645 \u0642\u062b\u0648\u0634\u0647\u0631 \u0627\u0647\u064a\u064a\u062b\u0631 \u0634\u0628\u0641\u062b\u0642 \u063a\u062e\u0639 \u0630\u0645\u062b\u0634\u0642 \u0641\u0627\u0647\u0633 \u062e\u062d\u0641\u0647\u062e\u0631 \u0628\u062e\u0642 \u0641\u0627\u062b %(xblockType)s.",
@@ -1047,6 +1046,8 @@
"Name or short description of the configuration": "\u0631\u0634\u0648\u062b \u062e\u0642 \u0633\u0627\u062e\u0642\u0641 \u064a\u062b\u0633\u0630\u0642\u0647\u062d\u0641\u0647\u062e\u0631 \u062e\u0628 \u0641\u0627\u062b \u0630\u062e\u0631\u0628\u0647\u0644\u0639\u0642\u0634\u0641\u0647\u062e\u0631",
"Navigate up": "\u0631\u0634\u062f\u0647\u0644\u0634\u0641\u062b \u0639\u062d",
"Need help logging in?": "\u0631\u062b\u062b\u064a \u0627\u062b\u0645\u062d \u0645\u062e\u0644\u0644\u0647\u0631\u0644 \u0647\u0631?",
+ "Need help signing in?": "\u0631\u062b\u062b\u064a \u0627\u062b\u0645\u062d \u0633\u0647\u0644\u0631\u0647\u0631\u0644 \u0647\u0631?",
+ "Need other help signing in?": "\u0631\u062b\u062b\u064a \u062e\u0641\u0627\u062b\u0642 \u0627\u062b\u0645\u062d \u0633\u0647\u0644\u0631\u0647\u0631\u0644 \u0647\u0631?",
"Needs verified certificate ": "\u0631\u062b\u062b\u064a\u0633 \u062f\u062b\u0642\u0647\u0628\u0647\u062b\u064a \u0630\u062b\u0642\u0641\u0647\u0628\u0647\u0630\u0634\u0641\u062b ",
"Never published": "\u0631\u062b\u062f\u062b\u0642 \u062d\u0639\u0632\u0645\u0647\u0633\u0627\u062b\u064a",
"Never show assessment results": "\u0631\u062b\u062f\u062b\u0642 \u0633\u0627\u062e\u0635 \u0634\u0633\u0633\u062b\u0633\u0633\u0648\u062b\u0631\u0641 \u0642\u062b\u0633\u0639\u0645\u0641\u0633",
@@ -1066,6 +1067,7 @@
"No Flash Detected": "\u0631\u062e \u0628\u0645\u0634\u0633\u0627 \u064a\u062b\u0641\u062b\u0630\u0641\u062b\u064a",
"No Timed Transcript": "\u0631\u062e \u0641\u0647\u0648\u062b\u064a \u0641\u0642\u0634\u0631\u0633\u0630\u0642\u0647\u062d\u0641",
"No Webcam Detected": "\u0631\u062e \u0635\u062b\u0632\u0630\u0634\u0648 \u064a\u062b\u0641\u062b\u0630\u0641\u062b\u064a",
+ "No assignments for team": "\u0631\u062e \u0634\u0633\u0633\u0647\u0644\u0631\u0648\u062b\u0631\u0641\u0633 \u0628\u062e\u0642 \u0641\u062b\u0634\u0648",
"No color": "\u0631\u062e \u0630\u062e\u0645\u062e\u0642",
"No content-specific discussion topics exist.": "\u0631\u062e \u0630\u062e\u0631\u0641\u062b\u0631\u0641-\u0633\u062d\u062b\u0630\u0647\u0628\u0647\u0630 \u064a\u0647\u0633\u0630\u0639\u0633\u0633\u0647\u062e\u0631 \u0641\u062e\u062d\u0647\u0630\u0633 \u062b\u0637\u0647\u0633\u0641.",
"No description available": "\u0631\u062e \u064a\u062b\u0633\u0630\u0642\u0647\u062d\u0641\u0647\u062e\u0631 \u0634\u062f\u0634\u0647\u0645\u0634\u0632\u0645\u062b",
@@ -1114,7 +1116,7 @@
"Once in position, use the Take Photo button {icon} to capture your photo": "\u062e\u0631\u0630\u062b \u0647\u0631 \u062d\u062e\u0633\u0647\u0641\u0647\u062e\u0631, \u0639\u0633\u062b \u0641\u0627\u062b \u0641\u0634\u0646\u062b \u062d\u0627\u062e\u0641\u062e \u0632\u0639\u0641\u0641\u062e\u0631 {icon} \u0641\u062e \u0630\u0634\u062d\u0641\u0639\u0642\u062b \u063a\u062e\u0639\u0642 \u062d\u0627\u062e\u0641\u062e",
"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.": "\u062e\u0631\u0630\u062b \u063a\u062e\u0639 \u0630\u062e\u0648\u062d\u0645\u062b\u0641\u062b \u062e\u0631\u062b \u062e\u0628 \u0641\u0627\u062b \u062d\u0642\u062e\u0644\u0642\u0634\u0648 \u0642\u062b\u0636\u0639\u0647\u0642\u062b\u0648\u062b\u0631\u0641\u0633 \u063a\u062e\u0639 \u0627\u0634\u062f\u062b \u0634 \u062d\u0642\u062e\u0644\u0642\u0634\u0648 \u0642\u062b\u0630\u062e\u0642\u064a. \u0641\u0627\u0647\u0633 \u0642\u062b\u0630\u062e\u0642\u064a \u0647\u0633 \u0648\u0634\u0642\u0646\u062b\u064a \u0630\u062e\u0648\u062d\u0645\u062b\u0641\u062b \u062e\u0631\u0630\u062b \u063a\u062e\u0639 \u0648\u062b\u062b\u0641 \u0634\u0645\u0645 \u062d\u0642\u062e\u0644\u0642\u0634\u0648 \u0642\u062b\u0636\u0639\u0647\u0642\u062b\u0648\u062b\u0631\u0641\u0633. \u0634 \u062d\u0642\u062e\u0644\u0642\u0634\u0648 \u0642\u062b\u0630\u062e\u0642\u064a \u0630\u0634\u0631 \u0632\u062b \u0639\u0633\u062b\u064a \u0641\u062e \u0630\u062e\u0631\u0641\u0647\u0631\u0639\u062b \u063a\u062e\u0639\u0642 \u0645\u062b\u0634\u0642\u0631\u0647\u0631\u0644 \u062a\u062e\u0639\u0642\u0631\u062b\u063a \u0634\u0631\u064a \u064a\u062b\u0648\u062e\u0631\u0633\u0641\u0642\u0634\u0641\u062b \u063a\u062e\u0639\u0642 \u0645\u062b\u0634\u0642\u0631\u0647\u0631\u0644 \u0641\u062e \u062e\u0641\u0627\u062b\u0642\u0633.",
"Once your account is deleted, you cannot use it to take courses on the {platformName} app, {siteName}, or any other site hosted by {platformName}.": "\u062e\u0631\u0630\u062b \u063a\u062e\u0639\u0642 \u0634\u0630\u0630\u062e\u0639\u0631\u0641 \u0647\u0633 \u064a\u062b\u0645\u062b\u0641\u062b\u064a, \u063a\u062e\u0639 \u0630\u0634\u0631\u0631\u062e\u0641 \u0639\u0633\u062b \u0647\u0641 \u0641\u062e \u0641\u0634\u0646\u062b \u0630\u062e\u0639\u0642\u0633\u062b\u0633 \u062e\u0631 \u0641\u0627\u062b {platformName} \u0634\u062d\u062d, {siteName}, \u062e\u0642 \u0634\u0631\u063a \u062e\u0641\u0627\u062b\u0642 \u0633\u0647\u0641\u062b \u0627\u062e\u0633\u0641\u062b\u064a \u0632\u063a {platformName}.",
- "Only <%= fileTypes %> files can be uploaded. Please select a file ending in <%= fileExtensions %> to upload.": "\u062e\u0631\u0645\u063a <%= fileTypes %> \u0628\u0647\u0645\u062b\u0633 \u0630\u0634\u0631 \u0632\u062b \u0639\u062d\u0645\u062e\u0634\u064a\u062b\u064a. \u062d\u0645\u062b\u0634\u0633\u062b \u0633\u062b\u0645\u062b\u0630\u0641 \u0634 \u0628\u0647\u0645\u062b \u062b\u0631\u064a\u0647\u0631\u0644 \u0647\u0631 <%= fileExtensions %> \u0641\u062e \u0639\u062d\u0645\u062e\u0634\u064a.",
+ "Only <%- fileTypes %> files can be uploaded. Please select a file ending in <%- (fileExtensions) %> to upload.": "\u062e\u0631\u0645\u063a <%- fileTypes %> \u0628\u0647\u0645\u062b\u0633 \u0630\u0634\u0631 \u0632\u062b \u0639\u062d\u0645\u062e\u0634\u064a\u062b\u064a. \u062d\u0645\u062b\u0634\u0633\u062b \u0633\u062b\u0645\u062b\u0630\u0641 \u0634 \u0628\u0647\u0645\u062b \u062b\u0631\u064a\u0647\u0631\u0644 \u0647\u0631 <%- (fileExtensions) %> \u0641\u062e \u0639\u062d\u0645\u062e\u0634\u064a.",
"Only properly formatted .csv files will be accepted.": "\u062e\u0631\u0645\u063a \u062d\u0642\u062e\u062d\u062b\u0642\u0645\u063a \u0628\u062e\u0642\u0648\u0634\u0641\u0641\u062b\u064a .\u0630\u0633\u062f \u0628\u0647\u0645\u062b\u0633 \u0635\u0647\u0645\u0645 \u0632\u062b \u0634\u0630\u0630\u062b\u062d\u0641\u062b\u064a.",
"Only the parent course staff of a CCX can create content groups.": "\u062e\u0631\u0645\u063a \u0641\u0627\u062b \u062d\u0634\u0642\u062b\u0631\u0641 \u0630\u062e\u0639\u0642\u0633\u062b \u0633\u0641\u0634\u0628\u0628 \u062e\u0628 \u0634 \u0630\u0630\u0637 \u0630\u0634\u0631 \u0630\u0642\u062b\u0634\u0641\u062b \u0630\u062e\u0631\u0641\u062b\u0631\u0641 \u0644\u0642\u062e\u0639\u062d\u0633.",
"Open": "\u062e\u062d\u062b\u0631",
@@ -1137,6 +1139,7 @@
"Organization of the signatory": "\u062e\u0642\u0644\u0634\u0631\u0647\u0638\u0634\u0641\u0647\u062e\u0631 \u062e\u0628 \u0641\u0627\u062b \u0633\u0647\u0644\u0631\u0634\u0641\u062e\u0642\u063a",
"Organization:": "\u062e\u0642\u0644\u0634\u0631\u0647\u0638\u0634\u0641\u0647\u062e\u0631:",
"Other": "\u062e\u0641\u0627\u062b\u0642",
+ "Other sign-in issues": "\u062e\u0641\u0627\u062b\u0642 \u0633\u0647\u0644\u0631-\u0647\u0631 \u0647\u0633\u0633\u0639\u062b\u0633",
"Overall Score": "\u062e\u062f\u062b\u0642\u0634\u0645\u0645 \u0633\u0630\u062e\u0642\u062b",
"PDF Chapters": "\u062d\u064a\u0628 \u0630\u0627\u0634\u062d\u0641\u062b\u0642\u0633",
"Page break": "\u062d\u0634\u0644\u062b \u0632\u0642\u062b\u0634\u0646",
@@ -1383,8 +1386,8 @@
"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": "\u0633\u062b\u0645\u062b\u0630\u0641 \u0634 \u062d\u0642\u062b\u0642\u062b\u0636\u0639\u0647\u0633\u0647\u0641\u062b \u0633\u0639\u0632\u0633\u062b\u0630\u0641\u0647\u062e\u0631 \u0634\u0631\u064a \u062b\u0631\u0641\u062b\u0642 \u0634 \u0648\u0647\u0631\u0647\u0648\u0639\u0648 \u0633\u0630\u062e\u0642\u062b \u062d\u062b\u0642\u0630\u062b\u0631\u0641\u0634\u0644\u062b \u0634\u0631\u064a \u0648\u0647\u0631\u0647\u0648\u0639\u0648 \u0630\u062e\u0648\u062d\u0645\u062b\u0641\u0647\u062e\u0631 \u062d\u062b\u0642\u0630\u062b\u0631\u0641\u0634\u0644\u062b \u0641\u062e \u0645\u0647\u0648\u0647\u0641 \u0634\u0630\u0630\u062b\u0633\u0633 \u0641\u062e \u0641\u0627\u0647\u0633 \u0633\u0639\u0632\u0633\u062b\u0630\u0641\u0647\u062e\u0631. \u0634\u0645\u0645\u062e\u0635\u062b\u064a \u062f\u0634\u0645\u0639\u062b\u0633 \u0634\u0642\u062b 0-100",
"Select a section or problem": "\u0633\u062b\u0645\u062b\u0630\u0641 \u0634 \u0633\u062b\u0630\u0641\u0647\u062e\u0631 \u062e\u0642 \u062d\u0642\u062e\u0632\u0645\u062b\u0648",
"Select a session:": "\u0633\u062b\u0645\u062b\u0630\u0641 \u0634 \u0633\u062b\u0633\u0633\u0647\u062e\u0631:",
+ "Select a subject for your support request.": "\u0633\u062b\u0645\u062b\u0630\u0641 \u0634 \u0633\u0639\u0632\u062a\u062b\u0630\u0641 \u0628\u062e\u0642 \u063a\u062e\u0639\u0642 \u0633\u0639\u062d\u062d\u062e\u0642\u0641 \u0642\u062b\u0636\u0639\u062b\u0633\u0641.",
"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.": "\u0633\u062b\u0645\u062b\u0630\u0641 \u0634 \u0641\u0647\u0648\u062b \u0634\u0645\u0645\u062e\u0641\u0648\u062b\u0631\u0641 \u0628\u062e\u0642 \u0641\u0627\u062b \u062b\u0637\u0634\u0648. \u0647\u0628 \u0647\u0641 \u0647\u0633 \u062e\u062f\u062b\u0642 24 \u0627\u062e\u0639\u0642\u0633, \u0641\u063a\u062d\u062b \u0647\u0631 \u0641\u0627\u062b \u0634\u0648\u062e\u0639\u0631\u0641 \u062e\u0628 \u0641\u0647\u0648\u062b. \u063a\u062e\u0639 \u0630\u0634\u0631 \u0644\u0642\u0634\u0631\u0641 \u0647\u0631\u064a\u0647\u062f\u0647\u064a\u0639\u0634\u0645 \u0645\u062b\u0634\u0642\u0631\u062b\u0642\u0633 \u062b\u0637\u0641\u0642\u0634 \u0641\u0647\u0648\u062b \u0641\u062e \u0630\u062e\u0648\u062d\u0645\u062b\u0641\u062b \u0641\u0627\u062b \u062b\u0637\u0634\u0648 \u0641\u0627\u0642\u062e\u0639\u0644\u0627 \u0641\u0627\u062b \u0647\u0631\u0633\u0641\u0642\u0639\u0630\u0641\u062e\u0642 \u064a\u0634\u0633\u0627\u0632\u062e\u0634\u0642\u064a.",
- "Select a topic for your support request.": "\u0633\u062b\u0645\u062b\u0630\u0641 \u0634 \u0641\u062e\u062d\u0647\u0630 \u0628\u062e\u0642 \u063a\u062e\u0639\u0642 \u0633\u0639\u062d\u062d\u062e\u0642\u0641 \u0642\u062b\u0636\u0639\u062b\u0633\u0641.",
"Select all": "\u0633\u062b\u0645\u062b\u0630\u0641 \u0634\u0645\u0645",
"Select fidelity": "\u0633\u062b\u0645\u062b\u0630\u0641 \u0628\u0647\u064a\u062b\u0645\u0647\u0641\u063a",
"Select language": "\u0633\u062b\u0645\u062b\u0630\u0641 \u0645\u0634\u0631\u0644\u0639\u0634\u0644\u062b",
@@ -1453,6 +1456,7 @@
"Sign in using %(providerName)s": "\u0633\u0647\u0644\u0631 \u0647\u0631 \u0639\u0633\u0647\u0631\u0644 %(providerName)s",
"Sign in with %(providerName)s": "\u0633\u0647\u0644\u0631 \u0647\u0631 \u0635\u0647\u0641\u0627 %(providerName)s",
"Sign in with Institution/Campus Credentials": "\u0633\u0647\u0644\u0631 \u0647\u0631 \u0635\u0647\u0641\u0627 \u0647\u0631\u0633\u0641\u0647\u0641\u0639\u0641\u0647\u062e\u0631/\u0630\u0634\u0648\u062d\u0639\u0633 \u0630\u0642\u062b\u064a\u062b\u0631\u0641\u0647\u0634\u0645\u0633",
+ "Sign in with your company or school": "\u0633\u0647\u0644\u0631 \u0647\u0631 \u0635\u0647\u0641\u0627 \u063a\u062e\u0639\u0642 \u0630\u062e\u0648\u062d\u0634\u0631\u063a \u062e\u0642 \u0633\u0630\u0627\u062e\u062e\u0645",
"Sign in.": "\u0633\u0647\u0644\u0631 \u0647\u0631.",
"Signatory": "\u0633\u0647\u0644\u0631\u0634\u0641\u062e\u0642\u063a",
"Signatory field(s) has invalid data.": "\u0633\u0647\u0644\u0631\u0634\u0641\u062e\u0642\u063a \u0628\u0647\u062b\u0645\u064a(\u0633) \u0627\u0634\u0633 \u0647\u0631\u062f\u0634\u0645\u0647\u064a \u064a\u0634\u0641\u0634.",
@@ -1559,6 +1563,7 @@
"Task inputs": "\u0641\u0634\u0633\u0646 \u0647\u0631\u062d\u0639\u0641\u0633",
"Teaching Assistant": "\u0641\u062b\u0634\u0630\u0627\u0647\u0631\u0644 \u0634\u0633\u0633\u0647\u0633\u0641\u0634\u0631\u0641",
"Team \"{team}\" successfully deleted.": "\u0641\u062b\u0634\u0648 \"{team}\" \u0633\u0639\u0630\u0630\u062b\u0633\u0633\u0628\u0639\u0645\u0645\u063a \u064a\u062b\u0645\u062b\u0641\u062b\u064a.",
+ "Team Assignments": "\u0641\u062b\u0634\u0648 \u0634\u0633\u0633\u0647\u0644\u0631\u0648\u062b\u0631\u0641\u0633",
"Team Description (Required) *": "\u0641\u062b\u0634\u0648 \u064a\u062b\u0633\u0630\u0642\u0647\u062d\u0641\u0647\u062e\u0631 (\u0642\u062b\u0636\u0639\u0647\u0642\u062b\u064a) *",
"Team Details": "\u0641\u062b\u0634\u0648 \u064a\u062b\u0641\u0634\u0647\u0645\u0633",
"Team Name (Required) *": "\u0641\u062b\u0634\u0648 \u0631\u0634\u0648\u062b (\u0642\u062b\u0636\u0639\u0647\u0642\u062b\u064a) *",
@@ -1577,7 +1582,6 @@
"Textbook Name": "\u0641\u062b\u0637\u0641\u0632\u062e\u062e\u0646 \u0631\u0634\u0648\u062b",
"Textbook information": "\u0641\u062b\u0637\u0641\u0632\u062e\u062e\u0646 \u0647\u0631\u0628\u062e\u0642\u0648\u0634\u0641\u0647\u062e\u0631",
"Textbook name is required": "\u0641\u062b\u0637\u0641\u0632\u062e\u062e\u0646 \u0631\u0634\u0648\u062b \u0647\u0633 \u0642\u062b\u0636\u0639\u0647\u0642\u062b\u064a",
- "Thank you %(full_name)s! We have received your payment for %(course_name)s.": "\u0641\u0627\u0634\u0631\u0646 \u063a\u062e\u0639 %(full_name)s! \u0635\u062b \u0627\u0634\u062f\u062b \u0642\u062b\u0630\u062b\u0647\u062f\u062b\u064a \u063a\u062e\u0639\u0642 \u062d\u0634\u063a\u0648\u062b\u0631\u0641 \u0628\u062e\u0642 %(course_name)s.",
"Thank you for setting your course goal to {goal}!": "\u0641\u0627\u0634\u0631\u0646 \u063a\u062e\u0639 \u0628\u062e\u0642 \u0633\u062b\u0641\u0641\u0647\u0631\u0644 \u063a\u062e\u0639\u0642 \u0630\u062e\u0639\u0642\u0633\u062b \u0644\u062e\u0634\u0645 \u0641\u062e {goal}!",
"Thank you for submitting a request! We appreciate your patience while we work to review your request.": "\u0641\u0627\u0634\u0631\u0646 \u063a\u062e\u0639 \u0628\u062e\u0642 \u0633\u0639\u0632\u0648\u0647\u0641\u0641\u0647\u0631\u0644 \u0634 \u0642\u062b\u0636\u0639\u062b\u0633\u0641! \u0635\u062b \u0634\u062d\u062d\u0642\u062b\u0630\u0647\u0634\u0641\u062b \u063a\u062e\u0639\u0642 \u062d\u0634\u0641\u0647\u062b\u0631\u0630\u062b \u0635\u0627\u0647\u0645\u062b \u0635\u062b \u0635\u062e\u0642\u0646 \u0641\u062e \u0642\u062b\u062f\u0647\u062b\u0635 \u063a\u062e\u0639\u0642 \u0642\u062b\u0636\u0639\u062b\u0633\u0641.",
"Thank you for submitting your financial assistance application for {course_name}! You can expect a response in 2-4 business days.": "\u0641\u0627\u0634\u0631\u0646 \u063a\u062e\u0639 \u0628\u062e\u0642 \u0633\u0639\u0632\u0648\u0647\u0641\u0641\u0647\u0631\u0644 \u063a\u062e\u0639\u0642 \u0628\u0647\u0631\u0634\u0631\u0630\u0647\u0634\u0645 \u0634\u0633\u0633\u0647\u0633\u0641\u0634\u0631\u0630\u062b \u0634\u062d\u062d\u0645\u0647\u0630\u0634\u0641\u0647\u062e\u0631 \u0628\u062e\u0642 {course_name}! \u063a\u062e\u0639 \u0630\u0634\u0631 \u062b\u0637\u062d\u062b\u0630\u0641 \u0634 \u0642\u062b\u0633\u062d\u062e\u0631\u0633\u062b \u0647\u0631 2-4 \u0632\u0639\u0633\u0647\u0631\u062b\u0633\u0633 \u064a\u0634\u063a\u0633.",
@@ -1591,8 +1595,8 @@
"The certificate for this learner has been re-validated and the system is re-running the grade for this learner.": "\u0641\u0627\u062b \u0630\u062b\u0642\u0641\u0647\u0628\u0647\u0630\u0634\u0641\u062b \u0628\u062e\u0642 \u0641\u0627\u0647\u0633 \u0645\u062b\u0634\u0642\u0631\u062b\u0642 \u0627\u0634\u0633 \u0632\u062b\u062b\u0631 \u0642\u062b-\u062f\u0634\u0645\u0647\u064a\u0634\u0641\u062b\u064a \u0634\u0631\u064a \u0641\u0627\u062b \u0633\u063a\u0633\u0641\u062b\u0648 \u0647\u0633 \u0642\u062b-\u0642\u0639\u0631\u0631\u0647\u0631\u0644 \u0641\u0627\u062b \u0644\u0642\u0634\u064a\u062b \u0628\u062e\u0642 \u0641\u0627\u0647\u0633 \u0645\u062b\u0634\u0642\u0631\u062b\u0642.",
"The cohort cannot be added": "\u0641\u0627\u062b \u0630\u062e\u0627\u062e\u0642\u0641 \u0630\u0634\u0631\u0631\u062e\u0641 \u0632\u062b \u0634\u064a\u064a\u062b\u064a",
"The cohort cannot be saved": "\u0641\u0627\u062b \u0630\u062e\u0627\u062e\u0642\u0641 \u0630\u0634\u0631\u0631\u062e\u0641 \u0632\u062b \u0633\u0634\u062f\u062b\u064a",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "\u0641\u0627\u062b \u0630\u062e\u0648\u0632\u0647\u0631\u062b\u064a \u0645\u062b\u0631\u0644\u0641\u0627 \u062e\u0628 \u0641\u0627\u062b \u062e\u0642\u0644\u0634\u0631\u0647\u0638\u0634\u0641\u0647\u062e\u0631 \u0634\u0631\u064a \u0645\u0647\u0632\u0642\u0634\u0642\u063a \u0630\u062e\u064a\u062b \u0628\u0647\u062b\u0645\u064a\u0633 \u0630\u0634\u0631\u0631\u062e\u0641 \u0632\u062b \u0648\u062e\u0642\u062b \u0641\u0627\u0634\u0631 <%=limit%> \u0630\u0627\u0634\u0642\u0634\u0630\u0641\u062b\u0642\u0633.",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "\u0641\u0627\u062b \u0630\u062e\u0648\u0632\u0647\u0631\u062b\u064a \u0645\u062b\u0631\u0644\u0641\u0627 \u062e\u0628 \u0641\u0627\u062b \u062e\u0642\u0644\u0634\u0631\u0647\u0638\u0634\u0641\u0647\u062e\u0631, \u0630\u062e\u0639\u0642\u0633\u062b \u0631\u0639\u0648\u0632\u062b\u0642, \u0634\u0631\u064a \u0630\u062e\u0639\u0642\u0633\u062b \u0642\u0639\u0631 \u0628\u0647\u062b\u0645\u064a\u0633 \u0630\u0634\u0631\u0631\u062e\u0641 \u0632\u062b \u0648\u062e\u0642\u062b \u0641\u0627\u0634\u0631 <%=limit%> \u0630\u0627\u0634\u0642\u0634\u0630\u0641\u062b\u0642\u0633.",
+ "The combined length of the organization and library code fields cannot be more than <%- limit %> characters.": "\u0641\u0627\u062b \u0630\u062e\u0648\u0632\u0647\u0631\u062b\u064a \u0645\u062b\u0631\u0644\u0641\u0627 \u062e\u0628 \u0641\u0627\u062b \u062e\u0642\u0644\u0634\u0631\u0647\u0638\u0634\u0641\u0647\u062e\u0631 \u0634\u0631\u064a \u0645\u0647\u0632\u0642\u0634\u0642\u063a \u0630\u062e\u064a\u062b \u0628\u0647\u062b\u0645\u064a\u0633 \u0630\u0634\u0631\u0631\u062e\u0641 \u0632\u062b \u0648\u062e\u0642\u062b \u0641\u0627\u0634\u0631 <%- limit %> \u0630\u0627\u0634\u0642\u0634\u0630\u0641\u062b\u0642\u0633.",
+ "The combined length of the organization, course number, and course run fields cannot be more than <%- limit %> characters.": "\u0641\u0627\u062b \u0630\u062e\u0648\u0632\u0647\u0631\u062b\u064a \u0645\u062b\u0631\u0644\u0641\u0627 \u062e\u0628 \u0641\u0627\u062b \u062e\u0642\u0644\u0634\u0631\u0647\u0638\u0634\u0641\u0647\u062e\u0631, \u0630\u062e\u0639\u0642\u0633\u062b \u0631\u0639\u0648\u0632\u062b\u0642, \u0634\u0631\u064a \u0630\u062e\u0639\u0642\u0633\u062b \u0642\u0639\u0631 \u0628\u0647\u062b\u0645\u064a\u0633 \u0630\u0634\u0631\u0631\u062e\u0641 \u0632\u062b \u0648\u062e\u0642\u062b \u0641\u0627\u0634\u0631 <%- limit %> \u0630\u0627\u0634\u0642\u0634\u0630\u0641\u062b\u0642\u0633.",
"The country or region where you live.": "\u0641\u0627\u062b \u0630\u062e\u0639\u0631\u0641\u0642\u063a \u062e\u0642 \u0642\u062b\u0644\u0647\u062e\u0631 \u0635\u0627\u062b\u0642\u062b \u063a\u062e\u0639 \u0645\u0647\u062f\u062b.",
"The country that team members primarily identify with.": "\u0641\u0627\u062b \u0630\u062e\u0639\u0631\u0641\u0642\u063a \u0641\u0627\u0634\u0641 \u0641\u062b\u0634\u0648 \u0648\u062b\u0648\u0632\u062b\u0642\u0633 \u062d\u0642\u0647\u0648\u0634\u0642\u0647\u0645\u063a \u0647\u064a\u062b\u0631\u0641\u0647\u0628\u063a \u0635\u0647\u0641\u0627.",
"The course end date must be later than the course start date.": "\u0641\u0627\u062b \u0630\u062e\u0639\u0642\u0633\u062b \u062b\u0631\u064a \u064a\u0634\u0641\u062b \u0648\u0639\u0633\u0641 \u0632\u062b \u0645\u0634\u0641\u062b\u0642 \u0641\u0627\u0634\u0631 \u0641\u0627\u062b \u0630\u062e\u0639\u0642\u0633\u062b \u0633\u0641\u0634\u0642\u0641 \u064a\u0634\u0641\u062b.",
@@ -1619,7 +1623,6 @@
"The minimum completion percentage must be a whole number between 0 and 100.": "\u0641\u0627\u062b \u0648\u0647\u0631\u0647\u0648\u0639\u0648 \u0630\u062e\u0648\u062d\u0645\u062b\u0641\u0647\u062e\u0631 \u062d\u062b\u0642\u0630\u062b\u0631\u0641\u0634\u0644\u062b \u0648\u0639\u0633\u0641 \u0632\u062b \u0634 \u0635\u0627\u062e\u0645\u062b \u0631\u0639\u0648\u0632\u062b\u0642 \u0632\u062b\u0641\u0635\u062b\u062b\u0631 0 \u0634\u0631\u064a 100.",
"The minimum grade for course credit is not set.": "\u0641\u0627\u062b \u0648\u0647\u0631\u0647\u0648\u0639\u0648 \u0644\u0642\u0634\u064a\u062b \u0628\u062e\u0642 \u0630\u062e\u0639\u0642\u0633\u062b \u0630\u0642\u062b\u064a\u0647\u0641 \u0647\u0633 \u0631\u062e\u0641 \u0633\u062b\u0641.",
"The minimum score percentage must be a whole number between 0 and 100.": "\u0641\u0627\u062b \u0648\u0647\u0631\u0647\u0648\u0639\u0648 \u0633\u0630\u062e\u0642\u062b \u062d\u062b\u0642\u0630\u062b\u0631\u0641\u0634\u0644\u062b \u0648\u0639\u0633\u0641 \u0632\u062b \u0634 \u0635\u0627\u062e\u0645\u062b \u0631\u0639\u0648\u0632\u062b\u0642 \u0632\u062b\u0641\u0635\u062b\u062b\u0631 0 \u0634\u0631\u064a 100.",
- "The more you tell us, the more quickly and helpfully we can respond!": "\u0641\u0627\u062b \u0648\u062e\u0642\u062b \u063a\u062e\u0639 \u0641\u062b\u0645\u0645 \u0639\u0633, \u0641\u0627\u062b \u0648\u062e\u0642\u062b \u0636\u0639\u0647\u0630\u0646\u0645\u063a \u0634\u0631\u064a \u0627\u062b\u0645\u062d\u0628\u0639\u0645\u0645\u063a \u0635\u062b \u0630\u0634\u0631 \u0642\u062b\u0633\u062d\u062e\u0631\u064a!",
"The name of this signatory as it should appear on certificates.": "\u0641\u0627\u062b \u0631\u0634\u0648\u062b \u062e\u0628 \u0641\u0627\u0647\u0633 \u0633\u0647\u0644\u0631\u0634\u0641\u062e\u0642\u063a \u0634\u0633 \u0647\u0641 \u0633\u0627\u062e\u0639\u0645\u064a \u0634\u062d\u062d\u062b\u0634\u0642 \u062e\u0631 \u0630\u062b\u0642\u0641\u0647\u0628\u0647\u0630\u0634\u0641\u062b\u0633.",
"The name that identifies you on {platform_name}. You cannot change your username.": "\u0641\u0627\u062b \u0631\u0634\u0648\u062b \u0641\u0627\u0634\u0641 \u0647\u064a\u062b\u0631\u0641\u0647\u0628\u0647\u062b\u0633 \u063a\u062e\u0639 \u062e\u0631 {platform_name}. \u063a\u062e\u0639 \u0630\u0634\u0631\u0631\u062e\u0641 \u0630\u0627\u0634\u0631\u0644\u062b \u063a\u062e\u0639\u0642 \u0639\u0633\u062b\u0642\u0631\u0634\u0648\u062b.",
"The name that is used for ID verification and that appears on your certificates.": "\u0641\u0627\u062b \u0631\u0634\u0648\u062b \u0641\u0627\u0634\u0641 \u0647\u0633 \u0639\u0633\u062b\u064a \u0628\u062e\u0642 \u0647\u064a \u062f\u062b\u0642\u0647\u0628\u0647\u0630\u0634\u0641\u0647\u062e\u0631 \u0634\u0631\u064a \u0641\u0627\u0634\u0641 \u0634\u062d\u062d\u062b\u0634\u0642\u0633 \u062e\u0631 \u063a\u062e\u0639\u0642 \u0630\u062b\u0642\u0641\u0647\u0628\u0647\u0630\u0634\u0641\u062b\u0633.",
@@ -1729,6 +1732,8 @@
"This response could not be unmarked as an answer. Refresh the page and try again.": "\u0641\u0627\u0647\u0633 \u0642\u062b\u0633\u062d\u062e\u0631\u0633\u062b \u0630\u062e\u0639\u0645\u064a \u0631\u062e\u0641 \u0632\u062b \u0639\u0631\u0648\u0634\u0642\u0646\u062b\u064a \u0634\u0633 \u0634\u0631 \u0634\u0631\u0633\u0635\u062b\u0642. \u0642\u062b\u0628\u0642\u062b\u0633\u0627 \u0641\u0627\u062b \u062d\u0634\u0644\u062b \u0634\u0631\u064a \u0641\u0642\u063a \u0634\u0644\u0634\u0647\u0631.",
"This role requires a divided discussions scheme.": "\u0641\u0627\u0647\u0633 \u0642\u062e\u0645\u062b \u0642\u062b\u0636\u0639\u0647\u0642\u062b\u0633 \u0634 \u064a\u0647\u062f\u0647\u064a\u062b\u064a \u064a\u0647\u0633\u0630\u0639\u0633\u0633\u0647\u062e\u0631\u0633 \u0633\u0630\u0627\u062b\u0648\u062b.",
"This short name for the assignment type (for example, HW or Midterm) appears next to assignments on a learner's Progress page.": "\u0641\u0627\u0647\u0633 \u0633\u0627\u062e\u0642\u0641 \u0631\u0634\u0648\u062b \u0628\u062e\u0642 \u0641\u0627\u062b \u0634\u0633\u0633\u0647\u0644\u0631\u0648\u062b\u0631\u0641 \u0641\u063a\u062d\u062b (\u0628\u062e\u0642 \u062b\u0637\u0634\u0648\u062d\u0645\u062b, \u0627\u0635 \u062e\u0642 \u0648\u0647\u064a\u0641\u062b\u0642\u0648) \u0634\u062d\u062d\u062b\u0634\u0642\u0633 \u0631\u062b\u0637\u0641 \u0641\u062e \u0634\u0633\u0633\u0647\u0644\u0631\u0648\u062b\u0631\u0641\u0633 \u062e\u0631 \u0634 \u0645\u062b\u0634\u0642\u0631\u062b\u0642'\u0633 \u062d\u0642\u062e\u0644\u0642\u062b\u0633\u0633 \u062d\u0634\u0644\u062b.",
+ "This special exam has been released to learners. You may not convert it to another type of special exam. You may revert this subsection back to being a basic exam by selecting 'None', but you will NOT be able to configure it as a special exam in the future.": "\u0641\u0627\u0647\u0633 \u0633\u062d\u062b\u0630\u0647\u0634\u0645 \u062b\u0637\u0634\u0648 \u0627\u0634\u0633 \u0632\u062b\u062b\u0631 \u0642\u062b\u0645\u062b\u0634\u0633\u062b\u064a \u0641\u062e \u0645\u062b\u0634\u0642\u0631\u062b\u0642\u0633. \u063a\u062e\u0639 \u0648\u0634\u063a \u0631\u062e\u0641 \u0630\u062e\u0631\u062f\u062b\u0642\u0641 \u0647\u0641 \u0641\u062e \u0634\u0631\u062e\u0641\u0627\u062b\u0642 \u0641\u063a\u062d\u062b \u062e\u0628 \u0633\u062d\u062b\u0630\u0647\u0634\u0645 \u062b\u0637\u0634\u0648. \u063a\u062e\u0639 \u0648\u0634\u063a \u0642\u062b\u062f\u062b\u0642\u0641 \u0641\u0627\u0647\u0633 \u0633\u0639\u0632\u0633\u062b\u0630\u0641\u0647\u062e\u0631 \u0632\u0634\u0630\u0646 \u0641\u062e \u0632\u062b\u0647\u0631\u0644 \u0634 \u0632\u0634\u0633\u0647\u0630 \u062b\u0637\u0634\u0648 \u0632\u063a \u0633\u062b\u0645\u062b\u0630\u0641\u0647\u0631\u0644 '\u0631\u062e\u0631\u062b', \u0632\u0639\u0641 \u063a\u062e\u0639 \u0635\u0647\u0645\u0645 \u0631\u062e\u0641 \u0632\u062b \u0634\u0632\u0645\u062b \u0641\u062e \u0630\u062e\u0631\u0628\u0647\u0644\u0639\u0642\u062b \u0647\u0641 \u0634\u0633 \u0634 \u0633\u062d\u062b\u0630\u0647\u0634\u0645 \u062b\u0637\u0634\u0648 \u0647\u0631 \u0641\u0627\u062b \u0628\u0639\u0641\u0639\u0642\u062b.",
+ "This subsection was released to learners as a special exam, but was reverted back to a basic exam. You may not configure it as a special exam now. Contact edX Support for assistance.": "\u0641\u0627\u0647\u0633 \u0633\u0639\u0632\u0633\u062b\u0630\u0641\u0647\u062e\u0631 \u0635\u0634\u0633 \u0642\u062b\u0645\u062b\u0634\u0633\u062b\u064a \u0641\u062e \u0645\u062b\u0634\u0642\u0631\u062b\u0642\u0633 \u0634\u0633 \u0634 \u0633\u062d\u062b\u0630\u0647\u0634\u0645 \u062b\u0637\u0634\u0648, \u0632\u0639\u0641 \u0635\u0634\u0633 \u0642\u062b\u062f\u062b\u0642\u0641\u062b\u064a \u0632\u0634\u0630\u0646 \u0641\u062e \u0634 \u0632\u0634\u0633\u0647\u0630 \u062b\u0637\u0634\u0648. \u063a\u062e\u0639 \u0648\u0634\u063a \u0631\u062e\u0641 \u0630\u062e\u0631\u0628\u0647\u0644\u0639\u0642\u062b \u0647\u0641 \u0634\u0633 \u0634 \u0633\u062d\u062b\u0630\u0647\u0634\u0645 \u062b\u0637\u0634\u0648 \u0631\u062e\u0635. \u0630\u062e\u0631\u0641\u0634\u0630\u0641 \u062b\u064a\u0637 \u0633\u0639\u062d\u062d\u062e\u0642\u0641 \u0628\u062e\u0642 \u0634\u0633\u0633\u0647\u0633\u0641\u0634\u0631\u0630\u062b.",
"This team does not have any members.": "\u0641\u0627\u0647\u0633 \u0641\u062b\u0634\u0648 \u064a\u062e\u062b\u0633 \u0631\u062e\u0641 \u0627\u0634\u062f\u062b \u0634\u0631\u063a \u0648\u062b\u0648\u0632\u062b\u0642\u0633.",
"This team is full.": "\u0641\u0627\u0647\u0633 \u0641\u062b\u0634\u0648 \u0647\u0633 \u0628\u0639\u0645\u0645.",
"This thread is closed.": "\u0641\u0627\u0647\u0633 \u0641\u0627\u0642\u062b\u0634\u064a \u0647\u0633 \u0630\u0645\u062e\u0633\u062b\u064a.",
@@ -1756,7 +1761,6 @@
"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.": "\u0641\u062e \u0632\u062b \u0633\u0639\u0642\u062b \u0634\u0645\u0645 \u0633\u0641\u0639\u064a\u062b\u0631\u0641\u0633 \u0630\u0634\u0631 \u0634\u0630\u0630\u062b\u0633\u0633 \u0641\u0627\u062b \u062f\u0647\u064a\u062b\u062e, \u0635\u062b \u0642\u062b\u0630\u062e\u0648\u0648\u062b\u0631\u064a \u062d\u0642\u062e\u062f\u0647\u064a\u0647\u0631\u0644 \u0632\u062e\u0641\u0627 \u0634\u0631 .\u0648\u062d4 \u0634\u0631\u064a \u0634 .\u0635\u062b\u0632\u0648 \u062f\u062b\u0642\u0633\u0647\u062e\u0631 \u062e\u0628 \u063a\u062e\u0639\u0642 \u062f\u0647\u064a\u062b\u062e. \u0630\u0645\u0647\u0630\u0646 \u0632\u062b\u0645\u062e\u0635 \u0641\u062e \u0634\u064a\u064a \u0634 \u0639\u0642\u0645 \u0628\u062e\u0642 \u0634\u0631\u062e\u0641\u0627\u062b\u0642 \u062f\u062b\u0642\u0633\u0647\u062e\u0631. \u0641\u0627\u062b\u0633\u062b \u0639\u0642\u0645\u0633 \u0630\u0634\u0631\u0631\u062e\u0641 \u0632\u062b \u063a\u062e\u0639\u0641\u0639\u0632\u062b \u0639\u0642\u0645\u0633. \u0641\u0627\u062b \u0628\u0647\u0642\u0633\u0641 \u0645\u0647\u0633\u0641\u062b\u064a \u062f\u0647\u064a\u062b\u062e \u0641\u0627\u0634\u0641'\u0633 \u0630\u062e\u0648\u062d\u0634\u0641\u0647\u0632\u0645\u062b \u0635\u0647\u0641\u0627 \u0641\u0627\u062b \u0633\u0641\u0639\u064a\u062b\u0631\u0641'\u0633 \u0630\u062e\u0648\u062d\u0639\u0641\u062b\u0642 \u0635\u0647\u0645\u0645 \u062d\u0645\u0634\u063a.",
"To complete the program, you must earn a verified certificate for each course.": "\u0641\u062e \u0630\u062e\u0648\u062d\u0645\u062b\u0641\u062b \u0641\u0627\u062b \u062d\u0642\u062e\u0644\u0642\u0634\u0648, \u063a\u062e\u0639 \u0648\u0639\u0633\u0641 \u062b\u0634\u0642\u0631 \u0634 \u062f\u062b\u0642\u0647\u0628\u0647\u062b\u064a \u0630\u062b\u0642\u0641\u0647\u0628\u0647\u0630\u0634\u0641\u062b \u0628\u062e\u0642 \u062b\u0634\u0630\u0627 \u0630\u062e\u0639\u0642\u0633\u062b.",
"To continue learning with this account, sign in below.": "\u0641\u062e \u0630\u062e\u0631\u0641\u0647\u0631\u0639\u062b \u0645\u062b\u0634\u0642\u0631\u0647\u0631\u0644 \u0635\u0647\u0641\u0627 \u0641\u0627\u0647\u0633 \u0634\u0630\u0630\u062e\u0639\u0631\u0641, \u0633\u0647\u0644\u0631 \u0647\u0631 \u0632\u062b\u0645\u062e\u0635.",
- "To finalize course credit, %(display_name)s requires %(platform_name)s learners to submit a credit request.": "\u0641\u062e \u0628\u0647\u0631\u0634\u0645\u0647\u0638\u062b \u0630\u062e\u0639\u0642\u0633\u062b \u0630\u0642\u062b\u064a\u0647\u0641, %(display_name)s \u0642\u062b\u0636\u0639\u0647\u0642\u062b\u0633 %(platform_name)s \u0645\u062b\u0634\u0642\u0631\u062b\u0642\u0633 \u0641\u062e \u0633\u0639\u0632\u0648\u0647\u0641 \u0634 \u0630\u0642\u062b\u064a\u0647\u0641 \u0642\u062b\u0636\u0639\u062b\u0633\u0641.",
"To invalidate a certificate for a particular learner, add the username or email address below.": "\u0641\u062e \u0647\u0631\u062f\u0634\u0645\u0647\u064a\u0634\u0641\u062b \u0634 \u0630\u062b\u0642\u0641\u0647\u0628\u0647\u0630\u0634\u0641\u062b \u0628\u062e\u0642 \u0634 \u062d\u0634\u0642\u0641\u0647\u0630\u0639\u0645\u0634\u0642 \u0645\u062b\u0634\u0642\u0631\u062b\u0642, \u0634\u064a\u064a \u0641\u0627\u062b \u0639\u0633\u062b\u0642\u0631\u0634\u0648\u062b \u062e\u0642 \u062b\u0648\u0634\u0647\u0645 \u0634\u064a\u064a\u0642\u062b\u0633\u0633 \u0632\u062b\u0645\u062e\u0635.",
"To receive a certificate, you must also verify your identity before {date}.": "\u0641\u062e \u0642\u062b\u0630\u062b\u0647\u062f\u062b \u0634 \u0630\u062b\u0642\u0641\u0647\u0628\u0647\u0630\u0634\u0641\u062b, \u063a\u062e\u0639 \u0648\u0639\u0633\u0641 \u0634\u0645\u0633\u062e \u062f\u062b\u0642\u0647\u0628\u063a \u063a\u062e\u0639\u0642 \u0647\u064a\u062b\u0631\u0641\u0647\u0641\u063a \u0632\u062b\u0628\u062e\u0642\u062b {date}.",
"To receive a certificate, you must also verify your identity.": "\u0641\u062e \u0642\u062b\u0630\u062b\u0647\u062f\u062b \u0634 \u0630\u062b\u0642\u0641\u0647\u0628\u0647\u0630\u0634\u0641\u062b, \u063a\u062e\u0639 \u0648\u0639\u0633\u0641 \u0634\u0645\u0633\u062e \u062f\u062b\u0642\u0647\u0628\u063a \u063a\u062e\u0639\u0642 \u0647\u064a\u062b\u0631\u0641\u0647\u0641\u063a.",
@@ -1844,7 +1848,7 @@
"Upload Videos": "\u0639\u062d\u0645\u062e\u0634\u064a \u062f\u0647\u064a\u062b\u062e\u0633",
"Upload a CSV file": "\u0639\u062d\u0645\u062e\u0634\u064a \u0634 \u0630\u0633\u062f \u0628\u0647\u0645\u062b",
"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.": "\u0639\u062d\u0645\u062e\u0634\u064a \u0634 \u0630\u062e\u0648\u0648\u0634 \u0633\u062b\u062d\u0634\u0642\u0634\u0641\u062b\u064a \u062f\u0634\u0645\u0639\u062b\u0633 (.\u0630\u0633\u062f) \u0628\u0647\u0645\u062b \u0641\u0627\u0634\u0641 \u0630\u062e\u0631\u0641\u0634\u0647\u0631\u0633 \u0641\u0627\u062b \u0639\u0633\u062b\u0642\u0631\u0634\u0648\u062b\u0633 \u062e\u0642 \u062b\u0648\u0634\u0647\u0645 \u0634\u064a\u064a\u0642\u062b\u0633\u0633\u062b\u0633 \u062e\u0628 \u0645\u062b\u0634\u0642\u0631\u062b\u0642\u0633 \u0635\u0627\u062e \u0627\u0634\u062f\u062b \u0632\u062b\u062b\u0631 \u0644\u0647\u062f\u062b\u0631 \u062b\u0637\u0630\u062b\u062d\u0641\u0647\u062e\u0631\u0633. \u0647\u0631\u0630\u0645\u0639\u064a\u062b \u0641\u0627\u062b \u0639\u0633\u062b\u0642\u0631\u0634\u0648\u062b \u062e\u0642 \u062b\u0648\u0634\u0647\u0645 \u0634\u064a\u064a\u0642\u062b\u0633\u0633 \u0647\u0631 \u0641\u0627\u062b \u0628\u0647\u0642\u0633\u0641 \u0630\u062e\u0648\u0648\u0634 \u0633\u062b\u062d\u0634\u0642\u0634\u0641\u062b\u064a \u0628\u0647\u062b\u0645\u064a. \u063a\u062e\u0639 \u0630\u0634\u0631 \u0647\u0631\u0630\u0645\u0639\u064a\u062b \u0634\u0631 \u062e\u062d\u0641\u0647\u062e\u0631\u0634\u0645 \u0631\u062e\u0641\u062b \u064a\u062b\u0633\u0630\u0642\u0647\u0632\u0647\u0631\u0644 \u0641\u0627\u062b \u0642\u062b\u0634\u0633\u062e\u0631 \u0628\u062e\u0642 \u0641\u0627\u062b \u062b\u0637\u0630\u062b\u062d\u0641\u0647\u062e\u0631 \u0647\u0631 \u0641\u0627\u062b \u0633\u062b\u0630\u062e\u0631\u064a \u0630\u062e\u0648\u0648\u0634 \u0633\u062b\u062d\u0634\u0642\u0634\u0641\u062b\u064a \u0628\u0647\u062b\u0645\u064a.",
- "Upload a new PDF to \u201c<%= name %>\u201d": "\u0639\u062d\u0645\u062e\u0634\u064a \u0634 \u0631\u062b\u0635 \u062d\u064a\u0628 \u0641\u062e \u201c<%= name %>\u201d",
+ "Upload a new PDF to \u201c<%- name %>\u201d": "\u0639\u062d\u0645\u062e\u0634\u064a \u0634 \u0631\u062b\u0635 \u062d\u064a\u0628 \u0641\u062e \u201c<%- name %>\u201d",
"Upload an image": "\u0639\u062d\u0645\u062e\u0634\u064a \u0634\u0631 \u0647\u0648\u0634\u0644\u062b",
"Upload an image or capture one with your web or phone camera.": "\u0639\u062d\u0645\u062e\u0634\u064a \u0634\u0631 \u0647\u0648\u0634\u0644\u062b \u062e\u0642 \u0630\u0634\u062d\u0641\u0639\u0642\u062b \u062e\u0631\u062b \u0635\u0647\u0641\u0627 \u063a\u062e\u0639\u0642 \u0635\u062b\u0632 \u062e\u0642 \u062d\u0627\u062e\u0631\u062b \u0630\u0634\u0648\u062b\u0642\u0634.",
"Upload completed": "\u0639\u062d\u0645\u062e\u0634\u064a \u0630\u062e\u0648\u062d\u0645\u062b\u0641\u062b\u064a",
@@ -1902,7 +1906,6 @@
"Verified Certificate upgrade": "\u062f\u062b\u0642\u0647\u0628\u0647\u062b\u064a \u0630\u062b\u0642\u0641\u0647\u0628\u0647\u0630\u0634\u0641\u062b \u0639\u062d\u0644\u0642\u0634\u064a\u062b",
"Verified Status": "\u062f\u062b\u0642\u0647\u0628\u0647\u062b\u064a \u0633\u0641\u0634\u0641\u0639\u0633",
"Verified mode price": "\u062f\u062b\u0642\u0647\u0628\u0647\u062b\u064a \u0648\u062e\u064a\u062b \u062d\u0642\u0647\u0630\u062b",
- "Verify Now": "\u062f\u062b\u0642\u0647\u0628\u063a \u0631\u062e\u0635",
"Version": "\u062f\u062b\u0642\u0633\u0647\u062e\u0631",
"Vertical space": "\u062f\u062b\u0642\u0641\u0647\u0630\u0634\u0645 \u0633\u062d\u0634\u0630\u062b",
"Very loud": "\u062f\u062b\u0642\u063a \u0645\u062e\u0639\u064a",
@@ -1950,7 +1953,7 @@
"We couldn't find any results for \"%s\".": "\u0635\u062b \u0630\u062e\u0639\u0645\u064a\u0631'\u0641 \u0628\u0647\u0631\u064a \u0634\u0631\u063a \u0642\u062b\u0633\u0639\u0645\u0641\u0633 \u0628\u062e\u0642 \"%s\".",
"We couldn't sign you in.": "\u0635\u062b \u0630\u062e\u0639\u0645\u064a\u0631'\u0641 \u0633\u0647\u0644\u0631 \u063a\u062e\u0639 \u0647\u0631.",
"We have encountered an error. Refresh your browser and then try again.": "\u0635\u062b \u0627\u0634\u062f\u062b \u062b\u0631\u0630\u062e\u0639\u0631\u0641\u062b\u0642\u062b\u064a \u0634\u0631 \u062b\u0642\u0642\u062e\u0642. \u0642\u062b\u0628\u0642\u062b\u0633\u0627 \u063a\u062e\u0639\u0642 \u0632\u0642\u062e\u0635\u0633\u062b\u0642 \u0634\u0631\u064a \u0641\u0627\u062b\u0631 \u0641\u0642\u063a \u0634\u0644\u0634\u0647\u0631.",
- "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.": "\u0635\u062b \u0627\u0634\u062f\u062b \u0642\u062b\u0630\u062b\u0647\u062f\u062b\u064a \u063a\u062e\u0639\u0642 \u0647\u0631\u0628\u062e\u0642\u0648\u0634\u0641\u0647\u062e\u0631 \u0634\u0631\u064a \u0634\u0642\u062b \u062f\u062b\u0642\u0647\u0628\u063a\u0647\u0631\u0644 \u063a\u062e\u0639\u0642 \u0647\u064a\u062b\u0631\u0641\u0647\u0641\u063a. \u063a\u062e\u0639 \u0635\u0647\u0645\u0645 \u0633\u062b\u062b \u0634 \u0648\u062b\u0633\u0633\u0634\u0644\u062b \u062e\u0631 \u063a\u062e\u0639\u0642 \u064a\u0634\u0633\u0627\u0632\u062e\u0634\u0642\u064a \u0635\u0627\u062b\u0631 \u0641\u0627\u062b \u062f\u062b\u0642\u0647\u0628\u0647\u0630\u0634\u0641\u0647\u062e\u0631 \u062d\u0642\u062e\u0630\u062b\u0633\u0633 \u0647\u0633 \u0630\u062e\u0648\u062d\u0645\u062b\u0641\u062b (\u0639\u0633\u0639\u0634\u0645\u0645\u063a \u0635\u0647\u0641\u0627\u0647\u0631 1-2 \u064a\u0634\u063a\u0633). \u0647\u0631 \u0641\u0627\u062b \u0648\u062b\u0634\u0631\u0641\u0647\u0648\u062b, \u063a\u062e\u0639 \u0630\u0634\u0631 \u0633\u0641\u0647\u0645\u0645 \u0634\u0630\u0630\u062b\u0633\u0633 \u0634\u0645\u0645 \u0634\u062f\u0634\u0647\u0645\u0634\u0632\u0645\u062b \u0630\u062e\u0639\u0642\u0633\u062b \u0630\u062e\u0631\u0641\u062b\u0631\u0641.",
+ "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 5-7 days). In the meantime, you can still access all available course content.": "\u0635\u062b \u0627\u0634\u062f\u062b \u0642\u062b\u0630\u062b\u0647\u062f\u062b\u064a \u063a\u062e\u0639\u0642 \u0647\u0631\u0628\u062e\u0642\u0648\u0634\u0641\u0647\u062e\u0631 \u0634\u0631\u064a \u0634\u0642\u062b \u062f\u062b\u0642\u0647\u0628\u063a\u0647\u0631\u0644 \u063a\u062e\u0639\u0642 \u0647\u064a\u062b\u0631\u0641\u0647\u0641\u063a. \u063a\u062e\u0639 \u0635\u0647\u0645\u0645 \u0633\u062b\u062b \u0634 \u0648\u062b\u0633\u0633\u0634\u0644\u062b \u062e\u0631 \u063a\u062e\u0639\u0642 \u064a\u0634\u0633\u0627\u0632\u062e\u0634\u0642\u064a \u0635\u0627\u062b\u0631 \u0641\u0627\u062b \u062f\u062b\u0642\u0647\u0628\u0647\u0630\u0634\u0641\u0647\u062e\u0631 \u062d\u0642\u062e\u0630\u062b\u0633\u0633 \u0647\u0633 \u0630\u062e\u0648\u062d\u0645\u062b\u0641\u062b (\u0639\u0633\u0639\u0634\u0645\u0645\u063a \u0635\u0647\u0641\u0627\u0647\u0631 5-7 \u064a\u0634\u063a\u0633). \u0647\u0631 \u0641\u0627\u062b \u0648\u062b\u0634\u0631\u0641\u0647\u0648\u062b, \u063a\u062e\u0639 \u0630\u0634\u0631 \u0633\u0641\u0647\u0645\u0645 \u0634\u0630\u0630\u062b\u0633\u0633 \u0634\u0645\u0645 \u0634\u062f\u0634\u0647\u0645\u0634\u0632\u0645\u062b \u0630\u062e\u0639\u0642\u0633\u062b \u0630\u062e\u0631\u0641\u062b\u0631\u0641.",
"We just need a little more information before you start learning with %(platformName)s.": "\u0635\u062b \u062a\u0639\u0633\u0641 \u0631\u062b\u062b\u064a \u0634 \u0645\u0647\u0641\u0641\u0645\u062b \u0648\u062e\u0642\u062b \u0647\u0631\u0628\u062e\u0642\u0648\u0634\u0641\u0647\u062e\u0631 \u0632\u062b\u0628\u062e\u0642\u062b \u063a\u062e\u0639 \u0633\u0641\u0634\u0642\u0641 \u0645\u062b\u0634\u0642\u0631\u0647\u0631\u0644 \u0635\u0647\u0641\u0627 %(platformName)s.",
"We securely 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.": "\u0635\u062b \u0633\u062b\u0630\u0639\u0642\u062b\u0645\u063a \u062b\u0631\u0630\u0642\u063a\u062d\u0641 \u063a\u062e\u0639\u0642 \u062d\u0627\u062e\u0641\u062e \u0634\u0631\u064a \u0633\u062b\u0631\u064a \u0647\u0641 \u0641\u062e \u062e\u0639\u0642 \u0634\u0639\u0641\u0627\u062e\u0642\u0647\u0638\u0634\u0641\u0647\u062e\u0631 \u0633\u062b\u0642\u062f\u0647\u0630\u062b \u0628\u062e\u0642 \u0642\u062b\u062f\u0647\u062b\u0635. \u063a\u062e\u0639\u0642 \u062d\u0627\u062e\u0641\u062e \u0634\u0631\u064a \u0647\u0631\u0628\u062e\u0642\u0648\u0634\u0641\u0647\u062e\u0631 \u0634\u0642\u062b \u0631\u062e\u0641 \u0633\u0634\u062f\u062b\u064a \u062e\u0642 \u062f\u0647\u0633\u0647\u0632\u0645\u062b \u0634\u0631\u063a\u0635\u0627\u062b\u0642\u062b \u062e\u0631 %(platformName)s \u0634\u0628\u0641\u062b\u0642 \u0641\u0627\u062b \u062f\u062b\u0642\u0647\u0628\u0647\u0630\u0634\u0641\u0647\u062e\u0631 \u062d\u0642\u062e\u0630\u062b\u0633\u0633 \u0647\u0633 \u0630\u062e\u0648\u062d\u0645\u062b\u0641\u062b.",
"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.": "\u0635\u062b \u0639\u0633\u062b \u0641\u0627\u062b \u0627\u0647\u0644\u0627\u062b\u0633\u0641 \u0645\u062b\u062f\u062b\u0645\u0633 \u062e\u0628 \u0633\u062b\u0630\u0639\u0642\u0647\u0641\u063a \u0634\u062f\u0634\u0647\u0645\u0634\u0632\u0645\u062b \u0641\u062e \u062b\u0631\u0630\u0642\u063a\u062d\u0641 \u063a\u062e\u0639\u0642 \u062d\u0627\u062e\u0641\u062e \u0634\u0631\u064a \u0633\u062b\u0631\u064a \u0647\u0641 \u0641\u062e \u062e\u0639\u0642 \u0634\u0639\u0641\u0627\u062e\u0642\u0647\u0638\u0634\u0641\u0647\u062e\u0631 \u0633\u062b\u0642\u062f\u0647\u0630\u062b \u0628\u062e\u0642 \u0642\u062b\u062f\u0647\u062b\u0635. \u063a\u062e\u0639\u0642 \u062d\u0627\u062e\u0641\u062e \u0634\u0631\u064a \u0647\u0631\u0628\u062e\u0642\u0648\u0634\u0641\u0647\u062e\u0631 \u0634\u0642\u062b \u0631\u062e\u0641 \u0633\u0634\u062f\u062b\u064a \u062e\u0642 \u062f\u0647\u0633\u0647\u0632\u0645\u062b \u0634\u0631\u063a\u0635\u0627\u062b\u0642\u062b \u062e\u0631 %(platformName)s \u0634\u0628\u0641\u062b\u0642 \u0641\u0627\u062b \u062f\u062b\u0642\u0647\u0628\u0647\u0630\u0634\u0641\u0647\u062e\u0631 \u062d\u0642\u062e\u0630\u062b\u0633\u0633 \u0647\u0633 \u0630\u062e\u0648\u062d\u0645\u062b\u0641\u062b.",
@@ -1977,6 +1980,7 @@
"When learners submit an answer to an assessment, they immediately see whether the answer is correct or incorrect, and the score received.": "\u0635\u0627\u062b\u0631 \u0645\u062b\u0634\u0642\u0631\u062b\u0642\u0633 \u0633\u0639\u0632\u0648\u0647\u0641 \u0634\u0631 \u0634\u0631\u0633\u0635\u062b\u0642 \u0641\u062e \u0634\u0631 \u0634\u0633\u0633\u062b\u0633\u0633\u0648\u062b\u0631\u0641, \u0641\u0627\u062b\u063a \u0647\u0648\u0648\u062b\u064a\u0647\u0634\u0641\u062b\u0645\u063a \u0633\u062b\u062b \u0635\u0627\u062b\u0641\u0627\u062b\u0642 \u0641\u0627\u062b \u0634\u0631\u0633\u0635\u062b\u0642 \u0647\u0633 \u0630\u062e\u0642\u0642\u062b\u0630\u0641 \u062e\u0642 \u0647\u0631\u0630\u062e\u0642\u0642\u062b\u0630\u0641, \u0634\u0631\u064a \u0641\u0627\u062b \u0633\u0630\u062e\u0642\u062b \u0642\u062b\u0630\u062b\u0647\u062f\u062b\u064a.",
"When your face is in position, use the Take Photo button {icon} below to take your photo.": "\u0635\u0627\u062b\u0631 \u063a\u062e\u0639\u0642 \u0628\u0634\u0630\u062b \u0647\u0633 \u0647\u0631 \u062d\u062e\u0633\u0647\u0641\u0647\u062e\u0631, \u0639\u0633\u062b \u0641\u0627\u062b \u0641\u0634\u0646\u062b \u062d\u0627\u062e\u0641\u062e \u0632\u0639\u0641\u0641\u062e\u0631 {icon} \u0632\u062b\u0645\u062e\u0635 \u0641\u062e \u0641\u0634\u0646\u062b \u063a\u062e\u0639\u0642 \u062d\u0627\u062e\u0641\u062e.",
"Which timed transcript would you like to use?": "\u0635\u0627\u0647\u0630\u0627 \u0641\u0647\u0648\u062b\u064a \u0641\u0642\u0634\u0631\u0633\u0630\u0642\u0647\u062d\u0641 \u0635\u062e\u0639\u0645\u064a \u063a\u062e\u0639 \u0645\u0647\u0646\u062b \u0641\u062e \u0639\u0633\u062b?",
+ "While our support team is happy to assist with the edX platform, the course staff has the expertise for specific assignment questions, grading or the proper procedures in each course. Please post all course related questions within the Discussion Forum where the Course Staff can directly respond.": "\u0635\u0627\u0647\u0645\u062b \u062e\u0639\u0642 \u0633\u0639\u062d\u062d\u062e\u0642\u0641 \u0641\u062b\u0634\u0648 \u0647\u0633 \u0627\u0634\u062d\u062d\u063a \u0641\u062e \u0634\u0633\u0633\u0647\u0633\u0641 \u0635\u0647\u0641\u0627 \u0641\u0627\u062b \u062b\u064a\u0637 \u062d\u0645\u0634\u0641\u0628\u062e\u0642\u0648, \u0641\u0627\u062b \u0630\u062e\u0639\u0642\u0633\u062b \u0633\u0641\u0634\u0628\u0628 \u0627\u0634\u0633 \u0641\u0627\u062b \u062b\u0637\u062d\u062b\u0642\u0641\u0647\u0633\u062b \u0628\u062e\u0642 \u0633\u062d\u062b\u0630\u0647\u0628\u0647\u0630 \u0634\u0633\u0633\u0647\u0644\u0631\u0648\u062b\u0631\u0641 \u0636\u0639\u062b\u0633\u0641\u0647\u062e\u0631\u0633, \u0644\u0642\u0634\u064a\u0647\u0631\u0644 \u062e\u0642 \u0641\u0627\u062b \u062d\u0642\u062e\u062d\u062b\u0642 \u062d\u0642\u062e\u0630\u062b\u064a\u0639\u0642\u062b\u0633 \u0647\u0631 \u062b\u0634\u0630\u0627 \u0630\u062e\u0639\u0642\u0633\u062b. \u062d\u0645\u062b\u0634\u0633\u062b \u062d\u062e\u0633\u0641 \u0634\u0645\u0645 \u0630\u062e\u0639\u0642\u0633\u062b \u0642\u062b\u0645\u0634\u0641\u062b\u064a \u0636\u0639\u062b\u0633\u0641\u0647\u062e\u0631\u0633 \u0635\u0647\u0641\u0627\u0647\u0631 \u0641\u0627\u062b \u064a\u0647\u0633\u0630\u0639\u0633\u0633\u0647\u062e\u0631 \u0628\u062e\u0642\u0639\u0648 \u0635\u0627\u062b\u0642\u062b \u0641\u0627\u062b \u0630\u062e\u0639\u0642\u0633\u062b \u0633\u0641\u0634\u0628\u0628 \u0630\u0634\u0631 \u064a\u0647\u0642\u062b\u0630\u0641\u0645\u063a \u0642\u062b\u0633\u062d\u062e\u0631\u064a.",
"Whole words": "\u0635\u0627\u062e\u0645\u062b \u0635\u062e\u0642\u064a\u0633",
"Why activate?": "\u0635\u0627\u063a \u0634\u0630\u0641\u0647\u062f\u0634\u0641\u062b?",
"Why does %(platformName)s need my photo?": "\u0635\u0627\u063a \u064a\u062e\u062b\u0633 %(platformName)s \u0631\u062b\u062b\u064a \u0648\u063a \u062d\u0627\u062e\u0641\u062e?",
@@ -2056,7 +2060,6 @@
"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.": "\u063a\u062e\u0639 \u0631\u062b\u062b\u064a \u0641\u062e \u0634\u0630\u0641\u0647\u062f\u0634\u0641\u062b \u063a\u062e\u0639\u0642 \u0634\u0630\u0630\u062e\u0639\u0631\u0641 \u0632\u062b\u0628\u062e\u0642\u062b \u063a\u062e\u0639 \u0630\u0634\u0631 \u062b\u0631\u0642\u062e\u0645\u0645 \u0647\u0631 \u0630\u062e\u0639\u0642\u0633\u062b\u0633. \u0630\u0627\u062b\u0630\u0646 \u063a\u062e\u0639\u0642 \u0647\u0631\u0632\u062e\u0637 \u0628\u062e\u0642 \u0634\u0631 \u0634\u0630\u0641\u0647\u062f\u0634\u0641\u0647\u062e\u0631 \u062b\u0648\u0634\u0647\u0645. \u0634\u0628\u0641\u062b\u0642 \u063a\u062e\u0639 \u0630\u062e\u0648\u062d\u0645\u062b\u0641\u062b \u0634\u0630\u0641\u0647\u062f\u0634\u0641\u0647\u062e\u0631 \u063a\u062e\u0639 \u0630\u0634\u0631 \u0642\u062b\u0641\u0639\u0642\u0631 \u0634\u0631\u064a \u0642\u062b\u0628\u0642\u062b\u0633\u0627 \u0641\u0627\u0647\u0633 \u062d\u0634\u0644\u062b.",
"You receive messages from {platform_name} and course teams at this address.": "\u063a\u062e\u0639 \u0642\u062b\u0630\u062b\u0647\u062f\u062b \u0648\u062b\u0633\u0633\u0634\u0644\u062b\u0633 \u0628\u0642\u062e\u0648 {platform_name} \u0634\u0631\u064a \u0630\u062e\u0639\u0642\u0633\u062b \u0641\u062b\u0634\u0648\u0633 \u0634\u0641 \u0641\u0627\u0647\u0633 \u0634\u064a\u064a\u0642\u062b\u0633\u0633.",
"You reserve all rights for your work": "\u063a\u062e\u0639 \u0642\u062b\u0633\u062b\u0642\u062f\u062b \u0634\u0645\u0645 \u0642\u0647\u0644\u0627\u0641\u0633 \u0628\u062e\u0642 \u063a\u062e\u0639\u0642 \u0635\u062e\u0642\u0646",
- "You still need to visit the %(display_name)s website to complete the credit process.": "\u063a\u062e\u0639 \u0633\u0641\u0647\u0645\u0645 \u0631\u062b\u062b\u064a \u0641\u062e \u062f\u0647\u0633\u0647\u0641 \u0641\u0627\u062b %(display_name)s \u0635\u062b\u0632\u0633\u0647\u0641\u062b \u0641\u062e \u0630\u062e\u0648\u062d\u0645\u062b\u0641\u062b \u0641\u0627\u062b \u0630\u0642\u062b\u064a\u0647\u0641 \u062d\u0642\u062e\u0630\u062b\u0633\u0633.",
"You submitted {filename}; only {allowedFiles} are allowed.": "\u063a\u062e\u0639 \u0633\u0639\u0632\u0648\u0647\u0641\u0641\u062b\u064a {filename}; \u062e\u0631\u0645\u063a {allowedFiles} \u0634\u0642\u062b \u0634\u0645\u0645\u062e\u0635\u062b\u064a.",
"You waive some rights for your work, such that others can use it too": "\u063a\u062e\u0639 \u0635\u0634\u0647\u062f\u062b \u0633\u062e\u0648\u062b \u0642\u0647\u0644\u0627\u0641\u0633 \u0628\u062e\u0642 \u063a\u062e\u0639\u0642 \u0635\u062e\u0642\u0646, \u0633\u0639\u0630\u0627 \u0641\u0627\u0634\u0641 \u062e\u0641\u0627\u062b\u0642\u0633 \u0630\u0634\u0631 \u0639\u0633\u062b \u0647\u0641 \u0641\u062e\u062e",
"You will be refunded the amount you paid.": "\u063a\u062e\u0639 \u0635\u0647\u0645\u0645 \u0632\u062b \u0642\u062b\u0628\u0639\u0631\u064a\u062b\u064a \u0641\u0627\u062b \u0634\u0648\u062e\u0639\u0631\u0641 \u063a\u062e\u0639 \u062d\u0634\u0647\u064a.",
@@ -2152,7 +2155,6 @@
"enter link description here": "\u062b\u0631\u0641\u062b\u0642 \u0645\u0647\u0631\u0646 \u064a\u062b\u0633\u0630\u0642\u0647\u062d\u0641\u0647\u062e\u0631 \u0627\u062b\u0642\u062b",
"follow this post": "\u0628\u062e\u0645\u0645\u062e\u0635 \u0641\u0627\u0647\u0633 \u062d\u062e\u0633\u0641",
"for": "\u0628\u062e\u0642",
- "for {courseName}": "\u0628\u062e\u0642 {courseName}",
"group configuration": "\u0644\u0642\u062e\u0639\u062d \u0630\u062e\u0631\u0628\u0647\u0644\u0639\u0642\u0634\u0641\u0647\u062e\u0631",
"image omitted": "\u0647\u0648\u0634\u0644\u062b \u062e\u0648\u0647\u0641\u0641\u062b\u064a",
"incorrect": "\u0647\u0631\u0630\u062e\u0642\u0642\u062b\u0630\u0641",
@@ -2188,6 +2190,7 @@
"team count": "\u0641\u062b\u0634\u0648 \u0630\u062e\u0639\u0631\u0641",
"text_word_{uniqueId}": "\u0641\u062b\u0637\u0641_\u0635\u062e\u0642\u064a_{uniqueId}",
"text_word_{uniqueId} title_word_{uniqueId}": "\u0641\u062b\u0637\u0641_\u0635\u062e\u0642\u064a_{uniqueId} \u0641\u0647\u0641\u0645\u062b_\u0635\u062e\u0642\u064a_{uniqueId}",
+ "the more quickly and helpfully we can respond!": "\u0641\u0627\u062b \u0648\u062e\u0642\u062b \u0636\u0639\u0647\u0630\u0646\u0645\u063a \u0634\u0631\u064a \u0627\u062b\u0645\u062d\u0628\u0639\u0645\u0645\u063a \u0635\u062b \u0630\u0634\u0631 \u0642\u062b\u0633\u062d\u062e\u0631\u064a!",
"there is currently {numVotes} vote": [
"\u0641\u0627\u062b\u0642\u062b \u0647\u0633 \u0630\u0639\u0642\u0642\u062b\u0631\u0641\u0645\u063a {numVotes} \u062f\u062e\u0641\u062b",
"\u0641\u0627\u062b\u0642\u062b \u0634\u0642\u062b \u0630\u0639\u0642\u0642\u062b\u0631\u0641\u0645\u063a {numVotes} \u062f\u062e\u0641\u062b\u0633"
diff --git a/cms/static/js/i18n/ru/djangojs.js b/cms/static/js/i18n/ru/djangojs.js
index a4410a1b78..4298eaa6c5 100644
--- a/cms/static/js/i18n/ru/djangojs.js
+++ b/cms/static/js/i18n/ru/djangojs.js
@@ -776,7 +776,6 @@
"Generate": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c",
"Generate Exception Certificates": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u044b \u0434\u043b\u044f \u0438\u0441\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u0441\u043b\u0443\u0447\u0430\u0435\u0432",
"Generate the user's certificate": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442",
- "Get Credit": "\u041f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0437\u0430\u0447\u0451\u0442",
"Go Back": "\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f",
"Go to Dashboard": "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u043f\u0430\u043d\u0435\u043b\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f",
"Go to my Dashboard": "\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u043c\u043e\u0435\u0439 \u043f\u0430\u043d\u0435\u043b\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f",
@@ -850,7 +849,6 @@
"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.": "\u0415\u0441\u043b\u0438 \u0431\u043b\u043e\u043a \u0431\u044b\u043b \u043f\u0440\u0435\u0436\u0434\u0435 \u043e\u043f\u0443\u0431\u043b\u0438\u043a\u043e\u0432\u0430\u043d \u0438 \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u0441\u043b\u0443\u0448\u0430\u0442\u0435\u043b\u044f\u043c, \u0432\u0441\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f, \u0432\u043d\u0435\u0441\u0451\u043d\u043d\u044b\u0435 \u0432 \u043d\u0435\u0433\u043e, \u043f\u043e\u043a\u0430 \u043e\u043d \u0431\u044b\u043b \u0441\u043a\u0440\u044b\u0442, \u0442\u0435\u043f\u0435\u0440\u044c \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0441\u043b\u0443\u0448\u0430\u0442\u0435\u043b\u0435\u0439.",
"If you do not yet have an account, use the button below to register.": "\u0415\u0449\u0451 \u043d\u0435 \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u044b? \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u043d\u0438\u0436\u0435.",
"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.": "\u0415\u0441\u043b\u0438 \u0432\u044b \u043d\u0435 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0441\u0432\u043e\u0438 \u0434\u0430\u043d\u043d\u044b\u0435, \u0432\u044b \u0432\u0441\u0451 \u0440\u0430\u0432\u043d\u043e \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u043a\u0443\u0440\u0441 \u0447\u0435\u0440\u0435\u0437 \u043f\u0430\u043d\u0435\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f. \u0412\u044b \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u0438 \u0431\u0443\u0434\u0435\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f \u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u043b\u0438\u0447\u043d\u043e\u0441\u0442\u0438 \u043e\u0442 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u00ab%(platformName)s\u00bb.",
- "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.": "\u0415\u0441\u043b\u0438 \u0432\u044b \u043d\u0435 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0441\u0432\u043e\u044e \u043b\u0438\u0447\u043d\u043e\u0441\u0442\u044c \u0441\u0435\u0439\u0447\u0430\u0441, \u0432\u044b \u0432\u0441\u0451 \u0440\u0430\u0432\u043d\u043e \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043a\u0443\u0440\u0441\u0443 \u0447\u0435\u0440\u0435\u0437 \u043f\u0430\u043d\u0435\u043b\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f. \u0412\u044b \u043f\u0435\u0440\u0438\u043e\u0434\u0438\u0447\u0435\u0441\u043a\u0438 \u0431\u0443\u0434\u0435\u0442\u0435 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u043d\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f \u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u043b\u0438\u0447\u043d\u043e\u0441\u0442\u0438 \u043e\u0442 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b \u00ab{platformName}\u00bb.",
"If you leave this page without saving or submitting your response, you will lose any work you have done on the response.": "\u0415\u0441\u043b\u0438 \u0432\u044b \u043f\u043e\u043a\u0438\u043d\u0435\u0442\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443, \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0432 \u0438\u043b\u0438 \u043d\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0432 \u0441\u0432\u043e\u0439 \u043e\u0442\u0432\u0435\u0442, \u0432\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0439 \u0432\u0430\u043c\u0438 \u043e\u0442\u0432\u0435\u0442 \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u0442\u0435\u0440\u044f\u043d.",
"If you leave this page without submitting your peer assessment, you will lose any work you have done.": "\u0415\u0441\u043b\u0438 \u0432\u044b \u043f\u043e\u043a\u0438\u043d\u0435\u0442\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443, \u043d\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0432 \u0432\u0430\u0448\u0443 \u043e\u0446\u0435\u043d\u043a\u0443, \u0432\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0435 \u0432\u0430\u043c\u0438 \u0434\u0430\u043d\u043d\u044b\u0435 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u0442\u0435\u0440\u044f\u043d\u044b.",
"If you leave this page without submitting your self assessment, you will lose any work you have done.": "\u0415\u0441\u043b\u0438 \u0432\u044b \u043f\u043e\u043a\u0438\u043d\u0435\u0442\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443, \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0432 \u0438\u043b\u0438 \u043d\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0432 \u0441\u0432\u043e\u0439 \u043e\u0442\u0432\u0435\u0442, \u0432\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0435 \u0432\u0430\u043c\u0438 \u043e\u0442\u0432\u0435\u0442 \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u0442\u0435\u0440\u044f\u043d.",
@@ -1494,7 +1492,6 @@
"Text to display": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u044b\u0439 \u0442\u0435\u043a\u0441\u0442",
"Textbook Name": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0443\u0447\u0435\u0431\u043d\u0438\u043a\u0430",
"Textbook information": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0431 \u0443\u0447\u0435\u0431\u043d\u0438\u043a\u0435",
- "Thank you %(full_name)s! We have received your payment for %(course_name)s.": "\u0421\u043f\u0430\u0441\u0438\u0431\u043e, %(full_name)s! \u0412\u0430\u0448 \u043f\u043b\u0430\u0442\u0451\u0436 \u0437\u0430 \u043a\u0443\u0440\u0441 %(course_name)s \u043f\u0440\u0438\u043d\u044f\u0442.",
"Thank you for submitting your financial assistance application for {course_name}! You can expect a response in 2-4 business days.": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0432\u0430\u0441 \u0437\u0430 \u043f\u043e\u0434\u0430\u0447\u0443 \u0437\u0430\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u0430 \u0433\u0440\u0430\u043d\u0442 \u043f\u043e \u043a\u0443\u0440\u0441\u0443 {course_name}! \u0412\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u043e\u0442\u0432\u0435\u0442 \u0447\u0435\u0440\u0435\u0437 2-4 \u0440\u0430\u0431\u043e\u0447\u0438\u0445 \u0434\u043d\u044f.",
"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.": "\u0421\u043f\u0430\u0441\u0438\u0431\u043e, \u0447\u0442\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u043b\u0438 \u0444\u043e\u0442\u043e! \u041c\u044b \u0441\u043a\u043e\u0440\u043e \u0438\u0445 \u043f\u0440\u043e\u0432\u0435\u0440\u0438\u043c. \u0421\u0435\u0439\u0447\u0430\u0441 \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u043f\u0438\u0441\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u043b\u044e\u0431\u043e\u0439 \u0438\u0437 \u043a\u0443\u0440\u0441\u043e\u0432 %(platformName)s, \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u044e\u0449\u0438\u0445 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0451\u043d\u043d\u044b\u0435 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u044b. \u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043b\u0438\u0447\u043d\u043e\u0441\u0442\u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442 \u043e\u0434\u0438\u043d \u0433\u043e\u0434. \u041f\u043e\u0441\u043b\u0435 \u044d\u0442\u043e\u0433\u043e \u0432\u0430\u043c \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0444\u043e\u0442\u043e \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e.",
"Thank you! We have received your payment for {courseName}.": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0412\u0430\u0441! \u0412\u0430\u0448 \u043f\u043b\u0430\u0442\u0451\u0436 \u0437\u0430 \u043a\u0443\u0440\u0441 {courseName} \u043f\u0440\u0438\u043d\u044f\u0442.",
@@ -1506,8 +1503,6 @@
"The certificate for this learner has been re-validated and the system is re-running the grade for this learner.": "\u0421\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442 \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043e\u0431\u0443\u0447\u0430\u044e\u0449\u0435\u0433\u043e\u0441\u044f \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d, \u0437\u0430\u043f\u0443\u0449\u0435\u043d \u043f\u0435\u0440\u0435\u0441\u0447\u0451\u0442 \u043e\u0446\u0435\u043d\u043a\u0438.",
"The cohort cannot be added": "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0433\u0440\u0443\u043f\u043f\u0443",
"The cohort cannot be saved": "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0433\u0440\u0443\u043f\u043f\u0443",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "\u0421\u043e\u0432\u043e\u043a\u0443\u043f\u043d\u0430\u044f \u0434\u043b\u0438\u043d\u0430 \u043a\u043e\u0434\u0430 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0442\u044c <%=limit%> \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432.",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "\u0421\u043e\u0432\u043e\u043a\u0443\u043f\u043d\u0430\u044f \u0434\u043b\u0438\u043d\u0430 \u043d\u0430\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u044f \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u0438, \u043d\u043e\u043c\u0435\u0440\u0430 \u0438 \u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043a\u0443\u0440\u0441\u0430 \u043d\u0435 \u0434\u043e\u043b\u0436\u043d\u0430 \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0442\u044c <%=limit%> \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432.",
"The country or region where you live.": "\u0421\u0442\u0440\u0430\u043d\u0430 \u0438\u043b\u0438 \u0440\u0435\u0433\u0438\u043e\u043d, \u0433\u0434\u0435 \u0432\u044b \u0436\u0438\u0432\u0451\u0442\u0435.",
"The country that team members primarily identify with.": "\u0421\u0442\u0440\u0430\u043d\u0430, \u0441 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438 \u043a\u043e\u043c\u0430\u043d\u0434\u044b \u0432 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u043c \u043e\u0442\u043e\u0436\u0434\u0435\u0441\u0442\u0432\u043b\u044f\u044e\u0442 \u0441\u0435\u0431\u044f.",
"The course end date must be later than the course start date.": "\u0414\u0430\u0442\u0430 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u043a\u0443\u0440\u0441\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u043f\u043e\u0437\u0436\u0435 \u0434\u0430\u0442\u044b \u043d\u0430\u0447\u0430\u043b\u0430 \u043a\u0443\u0440\u0441\u0430.",
@@ -1642,7 +1637,6 @@
"Titles more than 100 characters may prevent students from printing their certificate on a single page.": "\u0415\u0441\u043b\u0438 \u0434\u043b\u0438\u043d\u0430 \u0437\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u0435\u0432\u044b\u0441\u0438\u0442 100 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432, \u043f\u0435\u0447\u0430\u0442\u043d\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430 \u043c\u043e\u0436\u0435\u0442 \u0432\u044b\u0439\u0442\u0438 \u0437\u0430 \u043f\u0440\u0435\u0434\u0435\u043b\u044b \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b.",
"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.": "\u0427\u0442\u043e\u0431\u044b \u0431\u044b\u0442\u044c \u0443\u0432\u0435\u0440\u0435\u043d\u043d\u044b\u043c \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u0432\u0441\u0435 \u0441\u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0432\u0438\u0434\u0435\u043e, \u043c\u044b \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u043c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0444\u0430\u0439\u043b \u0432 \u0444\u043e\u0440\u043c\u0430\u0442\u0430\u0445 .mp4 \u0438 .webm. \u041a\u043b\u0438\u043a\u043d\u0438\u0442\u0435 \u043d\u0438\u0436\u0435, \u0447\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 \u043d\u0430 \u0444\u0430\u0439\u043b \u0432 \u0434\u0440\u0443\u0433\u043e\u043c \u0444\u043e\u0440\u043c\u0430\u0442\u0435. \u0421\u0441\u044b\u043b\u043a\u0438 \u043d\u0430 YouTube \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u043d\u0435\u043b\u044c\u0437\u044f. \u041d\u0430 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0435 \u0441\u043b\u0443\u0448\u0430\u0442\u0435\u043b\u044f \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e \u043f\u0435\u0440\u0432\u043e\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0435 \u0434\u043b\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0432\u0438\u0434\u0435\u043e \u0438\u0437 \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u043f\u0438\u0441\u043a\u0430.",
"To complete the program, you must earn a verified certificate for each course.": "\u0427\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u043f\u0440\u043e\u0439\u0442\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0443, \u0432\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0451\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442 \u043f\u043e \u043a\u0430\u0436\u0434\u043e\u043c\u0443 \u043a\u0443\u0440\u0441\u0443.",
- "To finalize course credit, %(display_name)s requires %(platform_name)s learners to submit a credit request.": "\u0427\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0437\u0430\u0447\u0451\u0442\u043d\u044b\u0435 \u0435\u0434\u0438\u043d\u0438\u0446\u044b, %(display_name)s \u043e\u0442 %(platform_name)s \u0441\u043b\u0443\u0448\u0430\u0442\u0435\u043b\u044c \u0434\u043e\u043b\u0436\u0435\u043d \u043f\u043e\u0434\u0430\u0442\u044c \u0437\u0430\u043f\u0440\u043e\u0441.",
"To invalidate a certificate for a particular learner, add the username or email address below.": "\u0414\u043b\u044f \u0430\u043d\u043d\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0441\u043b\u0443\u0448\u0430\u0442\u0435\u043b\u044f \u0434\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u0441\u044e\u0434\u0430 \u0435\u0433\u043e \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0439 \u0430\u0434\u0440\u0435\u0441.",
"To pass this exam, you must complete the problems in the time allowed.": "\u0412\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0434\u0430\u0442\u044c \u043e\u0442\u0432\u0435\u0442 \u043d\u0430 \u0432\u0441\u0435 \u0437\u0430\u0434\u0430\u0447\u0438 \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0433\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438.",
"To receive a certificate, you must also verify your identity before {date}.": "\u0414\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430 \u0432\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0441\u0432\u043e\u044e \u043b\u0438\u0447\u043d\u043e\u0441\u0442\u044c \u0434\u043e {date}.",
@@ -1767,7 +1761,6 @@
"Verified Certificate upgrade": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0451\u043d\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430",
"Verified Status": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0451\u043d\u043d\u044b\u0439 \u0441\u0442\u0430\u0442\u0443\u0441",
"Verified mode price": "\u0421\u0442\u043e\u0438\u043c\u043e\u0441\u0442\u044c \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0451\u043d\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430",
- "Verify Now": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c",
"Vertical space": "\u041e\u0442\u0441\u0442\u0443\u043f \u043f\u043e \u0432\u044b\u0441\u043e\u0442\u0435",
"Very loud": "\u041e\u0447\u0435\u043d\u044c \u0433\u0440\u043e\u043c\u043a\u043e",
"Very low": "\u041e\u0447\u0435\u043d\u044c \u0442\u0438\u0445\u043e",
@@ -1806,7 +1799,6 @@
"We couldn't find any results for \"%s\".": "\u041d\u0435\u0442 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0434\u043b\u044f \u00ab%s\u00bb.",
"We couldn't sign you in.": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0432\u043e\u0439\u0442\u0438 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443.",
"We have encountered an error. Refresh your browser and then try again.": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430. \u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u0441\u0432\u043e\u0439 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u0438 \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0451 \u0440\u0430\u0437.",
- "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.": "\u041c\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u0432\u0430\u0448\u0438 \u0434\u0430\u043d\u043d\u044b\u0435 \u0438 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0430\u0435\u043c \u0438\u0445 \u0432 \u0431\u043b\u0438\u0436\u0430\u0439\u0448\u0435\u0435 \u0432\u0440\u0435\u043c\u044f (1-2 \u0434\u043d\u044f). \u041a\u0430\u043a \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u044b, \u043d\u0430 \u0432\u0430\u0448\u0435\u0439 \u043f\u0430\u043d\u0435\u043b\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u043e\u044f\u0432\u0438\u0442\u0441\u044f \u043e\u043f\u043e\u0432\u0435\u0449\u0435\u043d\u0438\u0435. \u041e\u0431\u0440\u0430\u0442\u0438\u0442\u0435 \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435, \u0447\u0442\u043e \u0434\u043e \u044d\u0442\u043e\u0433\u043e \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u0432\u0430\u043c \u0431\u0443\u0434\u0443\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u0432\u0441\u0435 \u0443\u0447\u0435\u0431\u043d\u044b\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b.",
"We just need a little more information before you start learning with %(platformName)s.": "\u041f\u0435\u0440\u0435\u0434 \u043d\u0430\u0447\u0430\u043b\u043e\u043c \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u044f \u043d\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0435 \u00ab%(platformName)s\u00bb \u0443\u043a\u0430\u0436\u0438\u0442\u0435 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0434\u0430\u043d\u043d\u044b\u0435.",
"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.": "\u041c\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c \u0441\u0430\u043c\u044b\u0439 \u0432\u044b\u0441\u043e\u043a\u0438\u0439 \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u0437\u0430\u0449\u0438\u0449\u0451\u043d\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0432\u0430\u0448\u0435\u0433\u043e \u0444\u043e\u0442\u043e \u0438 \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 \u0435\u0433\u043e \u043d\u0430 \u043d\u0430\u0448 \u0441\u0435\u0440\u0432\u0438\u0441 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438. \u0412\u0430\u0448\u0430 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f \u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u0442\u0441\u044f \u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043d\u0438\u0433\u0434\u0435 \u043d\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0435 \u00ab%(platformName)s\u00bb \u043f\u043e\u0441\u043b\u0435 \u0442\u043e\u0433\u043e, \u043a\u0430\u043a \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0431\u0443\u0434\u0435\u0442 \u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d.",
"We've encountered an error. Refresh your browser and then try again.": "\u0412\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430. \u041f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u0441\u0432\u043e\u0439 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u0438 \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0435\u0449\u0451 \u0440\u0430\u0437.",
@@ -1889,7 +1881,6 @@
"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}": "\u0414\u043b\u044f \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0432\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0433\u043e\u0434 \u0432\u0430\u0448\u0435\u0433\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f \u0432 {account_settings_page_link}",
"You need to activate your account before you can enroll in courses. Check your inbox for an activation email.": "\u041f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043d\u0430\u0447\u0430\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u043a\u0443\u0440\u0441\u044b, \u0432\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u044e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c. \u041f\u0438\u0441\u044c\u043c\u043e \u0434\u043b\u044f \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u0438 \u0432\u044b\u0441\u043b\u0430\u043d\u043e \u0432\u0430\u043c \u043d\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0443\u044e \u043f\u043e\u0447\u0442\u0443.",
"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.": "\u041f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u043f\u0438\u0441\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u043a\u0443\u0440\u0441\u044b, \u0432\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u044e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c. \u041f\u0438\u0441\u044c\u043c\u043e \u0434\u043b\u044f \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u0438 \u0432\u044b\u0441\u043b\u0430\u043d\u043e \u0432\u0430\u043c \u043d\u0430 \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u0443\u044e \u043f\u043e\u0447\u0442\u0443. \u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0432 \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u044e, \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043d\u0430 \u044d\u0442\u0443 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u0438 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0435\u0451.",
- "You still need to visit the %(display_name)s website to complete the credit process.": "\u0412\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u044c %(display_name)s \u0432\u0435\u0431-\u0441\u0430\u0439\u0442 \u0434\u043b\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u043f\u043e\u043a\u0443\u043f\u043a\u0438.",
"You submitted {filename}; only {allowedFiles} are allowed.": "\u0412\u044b \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u043b\u0438 \u0444\u0430\u0439\u043b {filename}; \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0444\u0430\u0439\u043b\u044b {allowedFiles}.",
"You will be refunded the amount you paid.": "\u0412\u0430\u043c \u0431\u0443\u0434\u0443\u0442 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0430 \u0441\u0443\u043c\u043c\u0430, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0437\u0430\u043f\u043b\u0430\u0442\u0438\u043b\u0438.",
"You will not be refunded the amount you paid.": "\u0412\u0430\u043c \u043d\u0435 \u0431\u0443\u0434\u0435\u0442 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u0430 \u0441\u0443\u043c\u043c\u0430, \u043a\u043e\u0442\u043e\u0440\u0443\u044e \u0432\u044b \u0437\u0430\u043f\u043b\u0430\u0442\u0438\u043b\u0438.",
diff --git a/cms/static/js/i18n/si/djangojs.js b/cms/static/js/i18n/si/djangojs.js
index a81c827e53..5e1878aa25 100644
--- a/cms/static/js/i18n/si/djangojs.js
+++ b/cms/static/js/i18n/si/djangojs.js
@@ -12,42 +12,6 @@
django.catalog = django.catalog || {};
- var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected",
- "%(sel)s of %(cnt)s selected"
- ],
- "6 a.m.": "6 a.m.",
- "Available %s": "Available %s",
- "Cancel": "Cancel",
- "Choose": "Choose",
- "Choose a time": "Choose a time",
- "Choose all": "Choose all",
- "Chosen %s": "Chosen %s",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
- "Filter": "Filter",
- "Hide": "Hide",
- "Midnight": "Midnight",
- "Noon": "Noon",
- "Now": "Now",
- "Remove": "Remove",
- "Remove all": "Remove all",
- "Show": "Show",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
- "Today": "Today",
- "Tomorrow": "Tomorrow",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
- "Yesterday": "Yesterday",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."
- };
- for (var key in newcatalog) {
- django.catalog[key] = newcatalog[key];
- }
-
if (!django.jsi18n_initialized) {
django.gettext = function(msgid) {
diff --git a/cms/static/js/i18n/ta/djangojs.js b/cms/static/js/i18n/ta/djangojs.js
index 1555b1b7f4..f15ff7285b 100644
--- a/cms/static/js/i18n/ta/djangojs.js
+++ b/cms/static/js/i18n/ta/djangojs.js
@@ -20,36 +20,20 @@
django.catalog = django.catalog || {};
var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected",
- "%(sel)s of %(cnt)s selected"
- ],
"6 a.m.": "\u0b95\u0bbe\u0bb2\u0bc8 6 \u0bae\u0ba3\u0bbf ",
"Available %s": "%s \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0ba4\u0bbe ",
"Cancel": "\u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbe\u0bae\u0bcd ",
- "Choose": "Choose",
"Choose a time": "\u0b92\u0bb0\u0bc1 \u0ba8\u0bc7\u0bb0\u0ba4\u0bcd\u0ba4\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95 ",
"Choose all": "\u0b8e\u0bb2\u0bcd\u0bb2\u0bbe\u0bb5\u0bb1\u0bcd\u0bb1\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95",
"Chosen %s": "%s \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
"Filter": "\u0bb5\u0b9f\u0bbf\u0b95\u0b9f\u0bcd\u0b9f\u0bbf",
- "Hide": "Hide",
"Midnight": "\u0ba8\u0b9f\u0bc1 \u0b87\u0bb0\u0bb5\u0bc1 ",
"Noon": "\u0bae\u0ba4\u0bbf\u0baf\u0bae\u0bcd ",
"Now": "\u0b87\u0baa\u0bcd\u0baa\u0bc6\u0bbe\u0bb4\u0bc1\u0ba4\u0bc1 ",
"Remove": "\u0b85\u0bb4\u0bbf\u0b95\u0bcd\u0b95",
- "Remove all": "Remove all",
- "Show": "Show",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
"Today": "\u0b87\u0ba9\u0bcd\u0bb1\u0bc1 ",
"Tomorrow": "\u0ba8\u0bbe\u0bb3\u0bc8",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
- "Yesterday": "\u0ba8\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1 ",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."
+ "Yesterday": "\u0ba8\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1 "
};
for (var key in newcatalog) {
django.catalog[key] = newcatalog[key];
diff --git a/cms/static/js/i18n/te/djangojs.js b/cms/static/js/i18n/te/djangojs.js
index 7ec065b736..1a65f9c185 100644
--- a/cms/static/js/i18n/te/djangojs.js
+++ b/cms/static/js/i18n/te/djangojs.js
@@ -20,36 +20,22 @@
django.catalog = django.catalog || {};
var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected",
- "%(sel)s of %(cnt)s selected"
- ],
"6 a.m.": "6 a.m",
"Available %s": "\u0c06\u0c02\u0c26\u0c41\u0c2c\u0c3e\u0c24\u0c41\u0c32\u0c4b\u0c09\u0c28\u0c4d\u0c28 %s ",
"Cancel": "\u0c30\u0c26\u0c4d\u0c26\u0c41 \u0c1a\u0c47\u0c2f\u0c41",
- "Choose": "Choose",
"Choose a time": "\u0c12\u0c15 \u0c38\u0c2e\u0c2f\u0c2e\u0c41 \u0c0e\u0c28\u0c4d\u0c28\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f",
"Choose all": "\u0c05\u0c28\u0c4d\u0c28\u0c40 \u0c0e\u0c28\u0c4d\u0c28\u0c41\u0c15\u0c4b\u0c02\u0c21\u0c3f",
"Chosen %s": "\u0c0e\u0c28\u0c4d\u0c28\u0c41\u0c15\u0c41\u0c28\u0c4d\u0c28 %s",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
"Filter": "\u0c35\u0c21\u0c2a\u0c4b\u0c24",
"Hide": "\u0c26\u0c3e\u0c1a\u0c41",
"Midnight": "\u0c06\u0c30\u0c4d\u0c27\u0c30\u0c3e\u0c24\u0c4d\u0c30\u0c3f",
"Noon": "\u0c2e\u0c27\u0c4d\u0c2f\u0c3e\u0c39\u0c4d\u0c28\u0c2e\u0c41",
"Now": "\u0c07\u0c2a\u0c4d\u0c2a\u0c41\u0c21\u0c41",
"Remove": "\u0c24\u0c40\u0c38\u0c3f\u0c35\u0c47\u0c2f\u0c02\u0c21\u0c3f",
- "Remove all": "Remove all",
"Show": "\u0c1a\u0c42\u0c2a\u0c3f\u0c02\u0c1a\u0c41\u0c2e\u0c41",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
"Today": "\u0c08\u0c28\u0c3e\u0c21\u0c41",
"Tomorrow": "\u0c30\u0c47\u0c2a\u0c41",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
- "Yesterday": "\u0c28\u0c3f\u0c28\u0c4d\u0c28",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."
+ "Yesterday": "\u0c28\u0c3f\u0c28\u0c4d\u0c28"
};
for (var key in newcatalog) {
django.catalog[key] = newcatalog[key];
diff --git a/cms/static/js/i18n/tr-tr/djangojs.js b/cms/static/js/i18n/tr-tr/djangojs.js
index dbeaf7cc2f..30b782f9ab 100644
--- a/cms/static/js/i18n/tr-tr/djangojs.js
+++ b/cms/static/js/i18n/tr-tr/djangojs.js
@@ -205,7 +205,10 @@
"Add URLs for additional versions": "Ek s\u00fcr\u00fcmler i\u00e7in URL'leri ekle",
"Add a Chapter": "Bir b\u00f6l\u00fcm ekle",
"Add a New Cohort": "Yeni Topluluk Ekle",
+ "Add a Post": "\u0130leti Ekle",
"Add a Response": "Bir Cevap Ekle",
+ "Add a clear and descriptive title to encourage participation. (Required)": "Kat\u0131l\u0131ma te\u015fvik etmek i\u00e7in a\u00e7\u0131k ve tan\u0131t\u0131c\u0131 bir ba\u015fl\u0131k ekle. (Gerekli)",
+ "Add a comment": "Bir yorum ekleyin",
"Add a learning outcome here": "\u00d6\u011frenme \u00e7\u0131kt\u0131s\u0131n\u0131 buraya ekleyin",
"Add a response:": "Bir cevap ekle:",
"Add another group": "Ba\u015fka grup ekle",
@@ -237,6 +240,7 @@
"Align left": "Sola yasla",
"Align right": "Sa\u011fa yasla",
"Alignment": "Hizalama",
+ "All Groups": "B\u00fct\u00fcn Gruplar",
"All Learners and Staff": "T\u00fcm \u00d6\u011frenciler ve Personeller",
"All Posts": "T\u00fcm G\u00f6nderiler",
"All Rights Reserved": "T\u00fcm Haklar\u0131 Sakl\u0131d\u0131r",
@@ -322,6 +326,7 @@
"Assessment": "De\u011ferlendirme",
"Assessment Results Visibility": "De\u011ferlendirme Sonu\u00e7lar\u0131 G\u00f6r\u00fcn\u00fcrl\u00fc\u011f\u00fc",
"Assessments": "De\u011ferlendirmeler",
+ "Assign Team Memberships": "Tak\u0131m \u00dcyeliklerini Belirle",
"Assign learners to cohorts by uploading a CSV file": "CSV dosyas\u0131 y\u00fckleyerek \u00f6\u011frencileri topluluklara atay\u0131n",
"Assign students to cohorts by uploading a CSV file.": "CSV dosyas\u0131n\u0131 y\u00fckleyerek toplulu\u011fa \u00f6\u011frencileri ata.",
"Assignment Type Name": "G\u00f6rev T\u00fcr\u00fc \u0130smi",
@@ -477,6 +482,8 @@
"Coming Soon": "Yak\u0131nda",
"Commentary": "Yorum",
"Common Problem Types": "S\u0131k Kar\u015f\u0131la\u015f\u0131lan Problem T\u00fcrleri",
+ "Community TA": "Topluluk \u00d6\u011fretim Eleman\u0131",
+ "Complete courses on your schedule to ensure you stand out in your field!": "Alan\u0131n\u0131zda \u00f6ne \u00e7\u0131kman\u0131z\u0131 sa\u011flamak i\u00e7in derslerinizi tamamlay\u0131n!",
"Completed": "Tamamland\u0131",
"Component": "Bile\u015fen",
"Components": "Bile\u015fenler",
@@ -519,8 +526,13 @@
"Country": "\u00dclke",
"Country of residence": "\u0130kamet edilen \u00fclke",
"Country or Region of Residence": "\u0130kamet Edilen \u00dclke ya da B\u00f6lge",
+ "Course": [
+ "Ders",
+ "Dersler"
+ ],
"Course Content": "Ders \u0130\u00e7eri\u011fi",
"Course Credit Requirements": "Ders Kredisi Gereklilikleri",
+ "Course Discussion Forum": "Ders Tart\u0131\u015fma Forumu",
"Course End": "Ders Biti\u015fi",
"Course Handouts": "Ders Notlar\u0131",
"Course ID": "Ders No",
@@ -614,6 +626,7 @@
"Disc": "Disk",
"Discard Changes": "De\u011fi\u015fiklikleri \u00c7\u0131kart",
"Discarding Changes": "\u00c7\u0131kar\u0131lan De\u011fi\u015fiklikler",
+ "Discussion": "Forum",
"Discussion Home": "Tart\u0131\u015fma Anasayfas\u0131",
"Discussion topics in the course are not divided.": "Dersteki tart\u0131\u015fma ba\u015fl\u0131klar\u0131 b\u00f6l\u00fcnmemi\u015f.",
"Discussions are unified; all learners interact with posts from other learners, regardless of the group they are in.": "Tart\u0131\u015fmalar birle\u015ftirilmi\u015f durumda; t\u00fcm \u00f6\u011frenciler i\u00e7inde olduklar\u0131 gruplardan ba\u011f\u0131ms\u0131z olarak, di\u011fer \u00f6\u011frencilerin g\u00f6nderileriyle etkile\u015fime girebilir.",
@@ -667,9 +680,12 @@
"Edit Title": "Ba\u015fl\u0131\u011f\u0131 D\u00fczenle",
"Edit Your Name": "\u0130sminizi D\u00fczeltiniz",
"Edit this certificate?": "Bu sertifikay\u0131 d\u00fczenle?",
+ "Edit your post below.": "\u0130letinizi a\u015fa\u011f\u0131da d\u00fczenleyin.",
"Editable": "D\u00fczenlenebilir",
"Editing access for: {title}": "{title} i\u00e7in eri\u015fim d\u00fczenleniyor",
"Editing comment": "Yorum de\u011fi\u015ftiriliyor",
+ "Editing post": "\u0130leti d\u00fczenleniyor",
+ "Editing response": "Cevap d\u00fczenleniyor",
"Editing: {title}": "D\u00fczenleme: {title}",
"Editor": "Edit\u00f6r",
"Education Completed": "Tamamlanan E\u011fitim",
@@ -687,6 +703,7 @@
"Encoding": "Kodlama",
"End My Exam": "S\u0131nav\u0131m\u0131 Bitir",
"End of transcript. Skip to the start.": "Altyaz\u0131n\u0131n sonu. Ba\u015flang\u0131ca atla.",
+ "Endorse": "Destekle",
"Ends {end}": "Bitti {end}",
"Engage with posts": "G\u00f6nderilerle etkile\u015fimde bulunun",
"Enroll Now": "Hemen Kaydol",
@@ -791,7 +808,6 @@
"Fill browser": "Taray\u0131c\u0131y\u0131 doldurun",
"Filter": "S\u00fczge\u00e7",
"Filter and sort topics": "Konular\u0131 filtrele ve s\u0131rala",
- "Final Grade": "Final Notu",
"Final Grade Received": "Final Notu Al\u0131nd\u0131",
"Financial Aid": "M\u00e2li Yard\u0131m",
"Financial Assistance": "M\u00e2li Yard\u0131m",
@@ -805,7 +821,9 @@
"Find previous": "\u00d6ncekini bul",
"Finish": "Bitir",
"First time here?": "\u0130lk kez mi buradas\u0131n\u0131z?",
+ "Follow": "Takip et",
"Follow or unfollow posts": "G\u00f6nderileri takip et veya takipten \u00e7\u0131k",
+ "Following": "Takip ediliyor",
"Font Family": "Yaz\u0131tipi Ailesi",
"Font Sizes": "Yaz\u0131 Boyutlar\u0131",
"Footer": "Alt bilgi",
@@ -824,7 +842,6 @@
"Generate": "Olu\u015ftur",
"Generate Exception Certificates": "\u0130stisna Sertifikalar\u0131 Olu\u015ftur",
"Generate the user's certificate": "Kullan\u0131c\u0131n\u0131n sertifikas\u0131n\u0131 olu\u015ftur",
- "Get Credit": "Kredi Al",
"Go Back": "Geri D\u00f6n",
"Go to Dashboard": "Ana Panele Git",
"Go to my Dashboard": "Panelime Git",
@@ -903,10 +920,8 @@
"If the subsection does not have a due date, learners always see their scores when they submit answers to assessments.": "Bir alt b\u00f6l\u00fcm\u00fcn son tarihi yoksa, \u00f6\u011frenciler cevaplar\u0131n\u0131 de\u011ferlendirmeye g\u00f6nderdi\u011finde notlar\u0131n\u0131 g\u00f6r\u00fcrler.",
"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.": "E\u011fer \u00fcnite \u00f6\u011frencilere daha \u00f6nce a\u00e7\u0131ld\u0131 ve yay\u0131nland\u0131ysa, gizliyken \u00fcnitede yapt\u0131\u011f\u0131n\u0131z t\u00fcm de\u011fi\u015fiklikler \u015fimdi \u00f6\u011frencilere g\u00f6r\u00fcn\u00fcr olacak.",
"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?": "E\u011fer \u00fcnite \u00f6nceden yay\u0131nlanm\u0131\u015f ve \u00f6\u011frencilere a\u00e7\u0131lm\u0131\u015fsa, \u00fcnite gizliyken yapt\u0131\u011f\u0131n\u0131z de\u011fi\u015fiklikler \u00f6\u011frencilere art\u0131k g\u00f6r\u00fcn\u00fcr olacak. Devam etmek istiyor musunuz?",
- "If you are unable to access your account contact us via email using {email}.": "Hesab\u0131n\u0131za ula\u015fam\u0131yorsan\u0131z bizimle {email} e-posta adresi \u00fczerinden ileti\u015fime ge\u00e7ebilirsiniz.",
"If you do not yet have an account, use the button below to register.": "Hen\u00fcz bir hesab\u0131n\u0131z yoksa, kay\u0131t i\u00e7in a\u015fa\u011f\u0131daki d\u00fc\u011fmeyi kullan\u0131n.",
"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.": "E\u011fer kimli\u011finizi \u015fimdi do\u011frulamazsan\u0131z, hala daha ana panelinizden dersinizi ke\u015ffedebilirsiniz. Kimli\u011finizi do\u011frulamak i\u00e7in %(platformName)s \u00fczerinden periyodik hat\u0131rlatma alacaks\u0131n\u0131z.",
- "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.": "\u015eu an kimli\u011finizi onaylamasan\u0131z da, dersinize h\u00e2l\u00e2 panelinizden ula\u015fabilirsiniz. Kimli\u011finizi onaylaman\u0131z i\u00e7in, {platformName} size d\u00fczenli bildirimler g\u00f6nderecek.",
"If you leave this page without saving or submitting your response, you will lose any work you have done on the response.": "E\u011fer sayfadan cevab\u0131n\u0131z\u0131 kaydetmeden ya da g\u00f6ndermeden ayr\u0131l\u0131rsan\u0131z, cevap i\u00e7in yapt\u0131\u011f\u0131n\u0131z i\u015flemleri kaybedeceksiniz.",
"If you leave this page without submitting your peer assessment, you will lose any work you have done.": "Bu sayfay\u0131 \u00f6zde\u011ferlendirmenizi yazmadan terk etmeniz durumunda, yapt\u0131\u011f\u0131n\u0131z t\u00fcm i\u015fleri kaybedeceksiniz.",
"If you leave this page without submitting your self assessment, you will lose any work you have done.": "Bu sayfay\u0131 de\u011ferlendirmenizi yazmadan terk etmeniz durumunda, yapt\u0131\u011f\u0131n\u0131z t\u00fcm i\u015fleri kaybedeceksiniz.",
@@ -1032,6 +1047,7 @@
"Live view of webcam": "Web kameran\u0131z\u0131n canl\u0131 g\u00f6r\u00fcnt\u00fcs\u00fc",
"Load Another File": "Ba\u015fka Bir Dosya Y\u00fckle",
"Load all responses": "B\u00fct\u00fcn cevaplar\u0131 y\u00fckle",
+ "Load more": "Daha fazla y\u00fckle",
"Load next {numResponses} responses": "Sonraki {numResponses} cevap y\u00fckleniyor",
"Loading": "Y\u00fckl\u00fcyor...",
"Loading content": "\u0130\u00e7erik y\u00fckleniyor",
@@ -1061,6 +1077,7 @@
"Manual": "El ile",
"March": "Mart",
"Mark Exam As Completed": "S\u0131nav\u0131 Tamamland\u0131 Olarak \u0130\u015faretle",
+ "Mark as Answer": "Cevap olarak \u0130\u015faretle",
"Mark enrollment code as unused": "Kay\u0131tlanma kodunu kullan\u0131lmayan olarak i\u015faretle",
"Markdown Editing Help": "Markdown \u0130\u015faretleme Dili Yard\u0131m\u0131",
"Masters": "Y\u00fcksek Lisanslar",
@@ -1174,8 +1191,8 @@
"Ok": "Tamam",
"One or more rescheduling tasks failed.": "Bir veya daha fazla yeniden zamanlama g\u00f6revi ba\u015far\u0131s\u0131z oldu.",
"Only ": "Sadece",
- "Only <%= fileTypes %> files can be uploaded. Please select a file ending in <%= fileExtensions %> to upload.": "Sadece <%= fileTypes %> dosya uzant\u0131lar\u0131n\u0131 y\u00fckleyebilirsiniz. L\u00fctfen sonunda <%= fileExtensions %> uzant\u0131s\u0131 olan bir dosya y\u00fckleyin.",
"Only properly formatted .csv files will be accepted.": "Sadece d\u00fczg\u00fcn formatlanm\u0131\u015f .csv dosyalar\u0131 kabul edilecek.",
+ "Open": "A\u00e7",
"Open Calculator": "Hesap Makinesini A\u00e7",
"Open language menu": "Dil men\u00fcs\u00fcn\u00fc a\u00e7\u0131n",
"Open the certificate you earned for the %(title)s program.": "%(title)s program\u0131nda hak kazand\u0131\u011f\u0131n\u0131z sertifikay\u0131 a\u00e7\u0131n.",
@@ -1227,6 +1244,7 @@
"Photo of %(fullName)s's ID": "%(fullName)s'in Foto\u011frafl\u0131 Kimli\u011fi ",
"Photo requirements:": "Foto\u011fraf gereklilikleri:",
"Photos don't meet the requirements?": "Foto\u011fraflar gereksinimleri kar\u015f\u0131l\u0131yor mu?",
+ "Pin": "\u0130\u015faretle",
"Pinned": "\u0130\u015faretli",
"Placeholder": "Yer tutucu",
"Play": "Oynat",
@@ -1271,6 +1289,7 @@
"Please wait": "L\u00fctfen bekleyin",
"Plugins": "Eklentiler",
"Post": "G\u00f6nderi",
+ "Post type": "G\u00f6nderi t\u00fcr\u00fc",
"Poster": "Poster",
"Practice Exam Completed": "Al\u0131\u015ft\u0131rma S\u0131nav\u0131 Tamamland\u0131",
"Practice Exam Failed": "Al\u0131\u015ft\u0131rma S\u0131nav\u0131 Ba\u015far\u0131s\u0131z",
@@ -1330,6 +1349,7 @@
"Published and Live": "Yay\u0131nland\u0131 ve Canl\u0131",
"Publishing": "Yay\u0131nlama",
"Publishing Status": "Yay\u0131nlanma Durumu",
+ "Question": "Soru",
"Queued": "Kuyru\u011fa Al\u0131nd\u0131",
"REMAINING COURSES": "KALAN DERSLER",
"Re-run Course": "Dersi Yeniden \u00c7al\u0131\u015ft\u0131r",
@@ -1352,6 +1372,7 @@
"Regenerate the user's certificate": "Kullan\u0131c\u0131n\u0131n sertifikas\u0131n\u0131 yeniden olu\u015ftur",
"Register with Institution/Campus Credentials": "Kurum / Kamp\u00fcs Kimlik Bilgileri ile Kay\u0131t",
"Rejected": "Reddedildi",
+ "Related to: %(courseware_title_linked)s": "\u0130lgili: %(courseware_title_linked)s",
"Release Date and Time": "Yay\u0131m Tarih ve Zaman\u0131",
"Release Date:": "Yay\u0131m Tarihi:",
"Release Status:": "Yay\u0131n Durumu:",
@@ -1380,6 +1401,8 @@
"Replace all": "T\u00fcm\u00fcn\u00fc de\u011fi\u015ftir",
"Replace with": "De\u011fi\u015ftir",
"Reply to Annotation": "\u0130pu\u00e7lar\u0131na Yan\u0131t Ver",
+ "Report": "Raporla",
+ "Report abuse": "K\u00f6t\u00fc kullan\u0131m\u0131 bildir",
"Report abuse, topics, and responses": "\u0130hlalleri, konular\u0131 ve yan\u0131tlar\u0131 bildir",
"Reported": "Rapor edildi",
"Requester": "\u0130steyen",
@@ -1448,6 +1471,7 @@
"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": "\u00d6nko\u015ful altb\u00f6l\u00fcm\u00fcn\u00fc se\u00e7in ve bu altb\u00f6l\u00fcme eri\u015fimi s\u0131n\u0131rlamak i\u00e7in gerekli minimum skor y\u00fczdesini girin ve minimum tamamlama y\u00fczdesini ekleyin. \u0130zin verilen de\u011ferler 0-100 aras\u0131d\u0131r",
"Select a section or problem": "Bir b\u00f6l\u00fcm ya da problem se\u00e7in",
"Select a session:": "Bir oturum se\u00e7:",
+ "Select a subject for your support request.": "Destek talebiniz i\u00e7in bir konu se\u00e7in.",
"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.": "S\u0131nav i\u00e7in ayr\u0131lan s\u00fcreyi se\u00e7in. E\u011fer 24 saatten fazlaysa, s\u00fcreyi yazarak girin. E\u011fitmen Paneli arac\u0131l\u0131\u011f\u0131yla belli \u00f6\u011frencilere s\u0131nav\u0131 tamamlamalar\u0131 i\u00e7in daha fazla s\u00fcre tan\u0131mlayabilirsiniz.",
"Select all": "T\u00fcm\u00fcn\u00fc se\u00e7",
"Select language": "Dil Se\u00e7imi",
@@ -1633,7 +1657,6 @@
"Textbook Name": "Ders Kitab\u0131 Ad\u0131",
"Textbook information": "Ders Kitab\u0131 bilgisi",
"Textbook name is required": "Ders kitab\u0131 ad\u0131 gerekli",
- "Thank you %(full_name)s! We have received your payment for %(course_name)s.": "%(course_name)s dersi i\u00e7in \u00f6demenizi ald\u0131k. Te\u015fekk\u00fcrler %(full_name)s!",
"Thank you for setting your course goal to {goal}!": "Ders hedefinizi {goal} olarak belirledi\u011finiz i\u00e7in te\u015fekk\u00fcr ederiz!",
"Thank you for submitting your financial assistance application for {course_name}! You can expect a response in 2-4 business days.": "{course_name} i\u00e7in mali yard\u0131m ba\u015fvurunuzu g\u00f6nderdi\u011finiz i\u00e7in te\u015fekk\u00fcrler ! 2-4 i\u015f g\u00fcn\u00fc i\u00e7erisinde size geri d\u00f6nece\u011fiz. ",
"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.": "Foto\u011fraflar\u0131n\u0131z\u0131 g\u00f6nderdi\u011finiz i\u00e7in te\u015fekk\u00fcr ederiz. K\u0131sa s\u00fcre i\u00e7inde de\u011ferlendirece\u011fiz. \u015eimdi onayl\u0131 sertifika sunan herhangi bir %(platformName)s derse kay\u0131t olabilirsiniz. Do\u011frulama bir y\u0131l i\u00e7indir. Bir y\u0131ldan sonra yeniden do\u011frulama i\u00e7in foto\u011fraflar\u0131n\u0131z\u0131 tekrar g\u00f6ndermelisiniz.",
@@ -1646,8 +1669,6 @@
"The certificate for this learner has been re-validated and the system is re-running the grade for this learner.": "Bu \u00f6\u011frenci i\u00e7in sertifika yeniden de\u011ferlendiriliyor ve sistem bu \u00f6\u011frencinin notlar\u0131n\u0131 yeniden hesapl\u0131yor.",
"The cohort cannot be added": "Topluluk eklenemedi",
"The cohort cannot be saved": "Tapluluk kaydedilemedi",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "Organizasyonun birle\u015fik boyutu ve k\u00fct\u00fcphane kodu alanlar\u0131 <%=limit%> karakterden fazla olamaz.",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "Organizasyonun birle\u015fik boyutu, ders say\u0131s\u0131, ve ders alanlar\u0131 <%=limit%> karakterden fazla olamaz.",
"The country or region where you live.": "\u0130kamet etti\u011finiz \u00fclke veya b\u00f6lge.",
"The country that team members primarily identify with.": "Tak\u0131m \u00fcyelerinin \u00f6ncelikli olarak \u00f6zde\u015fle\u015ftirildi\u011fi \u00fclke.",
"The course end date must be later than the course start date.": "Dersin biti\u015f tarihi, ba\u015flang\u0131\u00e7 tarihinden sonra olmal\u0131d\u0131r.",
@@ -1674,7 +1695,6 @@
"The minimum completion percentage must be a whole number between 0 and 100.": "Minimum tamamlama y\u00fczdesi 0 ile 100 aras\u0131nda bir tamsay\u0131 olmal\u0131.",
"The minimum grade for course credit is not set.": "Ders kredisi i\u00e7in minimum not ayarlanmad\u0131.",
"The minimum score percentage must be a whole number between 0 and 100.": "Minimum not y\u00fczdesi 0 ile 100 aras\u0131nda bir tamsay\u0131 olmal\u0131.",
- "The more you tell us, the more quickly and helpfully we can respond!": "Bize ne kadar \u00e7ok ayr\u0131nt\u0131 verirseniz, size o kadar h\u0131zl\u0131 ve faydal\u0131 bir \u015fekilde cevap verebiliriz!",
"The name of this signatory as it should appear on certificates.": "Bu imza sahibinin ad\u0131 sertifikada g\u00f6r\u00fcnd\u00fc\u011f\u00fc gibidir.",
"The name that identifies you on {platform_name}. You cannot change your username.": "Sizi {platform_name} platformunda tan\u0131mlayan kullan\u0131c\u0131 ad\u0131n\u0131z. Kullan\u0131c\u0131 ad\u0131n\u0131z\u0131 de\u011fi\u015ftiremezsiniz. ",
"The name that is used for ID verification and that appears on your certificates.": "Kimlik do\u011frulamas\u0131nda ve sertifikalar\u0131n\u0131z\u0131n \u00fczerinde kullan\u0131lacak isim.",
@@ -1773,6 +1793,8 @@
"This post could not be reopened. Refresh the page and try again.": "Bu g\u00f6nderi yeniden a\u00e7\u0131lamaz. Sayfay\u0131 yenileyin ve tekrar deneyin.",
"This post could not be unflagged for abuse. Refresh the page and try again.": "Bu g\u00f6nderinin taciz i\u015faretlemesi kald\u0131r\u0131lamaz. Sayfay\u0131 yenileyin ve tekrar deneyin.",
"This post could not be unpinned. Refresh the page and try again.": "Bu g\u00f6nderi sabitlenmesi kald\u0131r\u0131lamad\u0131. Sayfay\u0131 yeniden y\u00fckleyin ve tekrar deneyin.",
+ "This post is visible to everyone.": "Bu g\u00f6nderi herkese a\u00e7\u0131kt\u0131r",
+ "This post will be visible to everyone.": "Bu ileti herkese g\u00f6r\u00fcn\u00fcr olacak.",
"This problem could not be saved.": "Bu problem kaydedilemedi.",
"This problem has already been released. Any changes will apply only to future assessments.": "Bu problem \u015fu anda yay\u0131mlanm\u0131\u015f bulunuyor. Bu durumda herhangi bir de\u011fi\u015fiklik sadece ileriki de\u011ferlendirmelerde uygulanacakt\u0131r.",
"This problem has been reset.": "Bu problem s\u0131f\u0131rland\u0131.",
@@ -1815,7 +1837,6 @@
"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.": "T\u00fcm \u00f6\u011frencilerin videoya eri\u015febildi\u011finden emin olmak i\u00e7in, videonuzun .mp4 ve .webm s\u00fcr\u00fcmlerini sa\u011flaman\u0131z\u0131 \u00f6neririz. Ba\u015fka bir s\u00fcr\u00fcm i\u00e7in URL eklemek \u00fczere a\u015fa\u011f\u0131ya t\u0131klay\u0131n. Bu URL'ler YouTube URL'si olamaz. \u00d6\u011frencilerin bilgisayarlar\u0131yla uyumlu olan ilk listelenen video oynayacakt\u0131r.",
"To complete the program, you must earn a verified certificate for each course.": "Program\u0131 tamamlamak i\u00e7in, t\u00fcm derslerde onayl\u0131 sertifikaya hak kazanmal\u0131s\u0131n\u0131z.",
"To continue learning with this account, sign in below.": "Bu hesap ile \u00f6\u011frenmeye devam etmek i\u00e7in, a\u015fa\u011f\u0131dan giri\u015f yap.",
- "To finalize course credit, %(display_name)s requires %(platform_name)s learners to submit a credit request.": "Ders kredisini sonland\u0131rmak i\u00e7in, %(display_name)s, kredi talebini y\u00fcklemek i\u00e7in %(platform_name)s \u00f6\u011frencilerini gerektirir.",
"To invalidate a certificate for a particular learner, add the username or email address below.": "Belli bir \u00f6\u011frencinin sertifikas\u0131n\u0131 ge\u00e7ersizle\u015ftirmek i\u00e7in, kullan\u0131c\u0131 ad\u0131 veya e-posta adresini a\u015fa\u011f\u0131ya girin.",
"To pass this exam, you must complete the problems in the time allowed.": "Bu s\u0131navdan ge\u00e7mek i\u00e7in, problemleri size tan\u0131nan s\u00fcrede \u00e7\u00f6zmelisiniz.",
"To receive a certificate, you must also verify your identity before {date}.": "Sertifika almak i\u00e7in {date} tarihinden \u00f6nce kimli\u011finizi do\u011frulamal\u0131s\u0131n\u0131z.",
@@ -1852,6 +1873,7 @@
"Type into this box to filter down the list of available %s.": "Mevcut %s listesini s\u00fczmek i\u00e7in bu kutu i\u00e7ine yaz\u0131n.",
"URL": "URL",
"Unable to delete account": "Hesap silinemedi",
+ "Unable to determine whether we should give you a refund because of System Error. Please try again later.": "\u015eu anda Sistem Hatas\u0131ndan dolay\u0131 geri \u00f6deme verip veremeyece\u011fimizi saptayam\u0131yoruz. L\u00fctfen daha sonra tekrar deneyiniz.",
"Unable to load": "Y\u00fcklenemedi",
"Unable to submit application": "Ba\u015fvuru g\u00f6nderilemedi",
"Underline": "Alt \u00e7izgi",
@@ -1860,7 +1882,9 @@
"Undo Changes": "De\u011fi\u015fiklikleri Geri Al",
"Undo move": "Ta\u015f\u0131may\u0131 geri al",
"Undo moving": "Ta\u015f\u0131may\u0131 geri al",
+ "Unendorse": "Destekleme",
"Unexpected server error.": "Beklenmeyen sunucu hatas\u0131.",
+ "Unfollow": "Takibi b\u0131rak",
"Ungraded": "Puanlanmam\u0131\u015f",
"Ungraded Practice Exam": "Puanlanmam\u0131\u015f Al\u0131\u015ft\u0131rma S\u0131nav\u0131",
"Unit": "\u00dcnite",
@@ -1873,15 +1897,20 @@
"Unlink This Account": "Hesab\u0131n Ba\u011flant\u0131s\u0131n\u0131 Kald\u0131r",
"Unlink your {accountName} account": "{accountName} hesab\u0131n\u0131z\u0131n ba\u011flant\u0131s\u0131n\u0131 kald\u0131r\u0131n",
"Unlinking": "Ba\u011flant\u0131 kald\u0131rma",
+ "Unmark as Answer": "Cevap i\u015faretini Kald\u0131r",
"Unmute": "Ses",
"Unnamed Option": "Adland\u0131r\u0131lmam\u0131\u015f Se\u00e7enek",
+ "Unpin": "\u0130\u015fareti kald\u0131r",
"Unpublished changes to content that will release in the future": "\u0130\u00e7eri\u011fin yay\u0131mlanmam\u0131\u015f de\u011fi\u015fiklikleri ilerde yay\u0131nlanacakt\u0131r.",
"Unpublished changes to live content": "Canl\u0131 yay\u0131n i\u00e7eri\u011findeki yay\u0131mlanmam\u0131\u015f de\u011fi\u015fiklikler",
"Unpublished units will not be released": "Yay\u0131mlanmam\u0131\u015f birimler yay\u0131nlanmayacakt\u0131r",
+ "Unreport": "Bildirme",
"Unscheduled": "Planlanmam\u0131\u015f",
"Update": "G\u00fcncelle",
"Update Settings": "Ayarlar\u0131 G\u00fcncelle",
"Update comment": "Yorumu g\u00fcncelle",
+ "Update post": "\u0130leti g\u00fcncelle",
+ "Update response": "Cevab\u0131 g\u00fcncelle",
"Update team.": "Tak\u0131m\u0131 g\u00fcncelle.",
"Updating Tags": "Etiketler G\u00fcncelleniyor",
"Updating with latest library content": "Son k\u00fct\u00fcphane i\u00e7eri\u011fiyle g\u00fcncelleniyor",
@@ -1901,7 +1930,6 @@
"Upload Videos": "Videolar\u0131 Y\u00fckle",
"Upload a CSV file": "CSV dosyas\u0131 y\u00fckle",
"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.": "\u0130stisna hakk\u0131 verilen \u00f6\u011frencilerin kullan\u0131c\u0131 adlar\u0131n\u0131 ve e-posta adreslerini i\u00e7eren ve virg\u00fclle ayr\u0131lan de\u011ferler (.csv) dosyas\u0131n\u0131 y\u00fckleyin. Virg\u00fclle ayr\u0131lm\u0131\u015f ilk alana kullan\u0131c\u0131 ad\u0131 ya da e-posta adreslerini ekleyin. \u0130kinci virg\u00fclle ayr\u0131lm\u0131\u015f alana istisna tan\u0131ma nedenini belirten, iste\u011fe ba\u011fl\u0131 bir not ekleyebilirsiniz.",
- "Upload a new PDF to \u201c<%= name %>\u201d": " \u015eu konuma \u201c<%= name %>\u201d yeni bir PDF dosyas\u0131 y\u00fckle",
"Upload an image": "G\u00f6rsel y\u00fckle",
"Upload an image or capture one with your web or phone camera.": "Resim y\u00fckle veya Web kameran\u0131z veya telefonunuzun kameras\u0131yla \u00e7ekiniz.",
"Upload completed": "Y\u00fckleme tamamland\u0131",
@@ -1950,7 +1978,6 @@
"Verified Certificate upgrade": "Onayl\u0131 Sertifikay\u0131 G\u00fcncelle",
"Verified Status": "Onaylanm\u0131\u015f Durum",
"Verified mode price": "Onaylanm\u0131\u015f \u00fccret",
- "Verify Now": "\u015eimdi Do\u011frula",
"Version": "S\u00fcr\u00fcm",
"Vertical space": "Dikey a\u00e7\u0131kl\u0131k",
"Very loud": "\u00c7ok y\u00fcksek sesli",
@@ -1975,12 +2002,15 @@
"View Program Record": "Program Kayd\u0131n\u0131 G\u00f6ster",
"View Teams in the {topic_name} Topic": "{topic_name} Ba\u015fl\u0131\u011f\u0131 Alt\u0131ndaki Tak\u0131mlar\u0131 G\u00f6r\u00fcnt\u00fcle ",
"View all errors": "T\u00fcm hatalar\u0131 g\u00f6r",
+ "View discussion": "Tart\u0131\u015fmay\u0131 g\u00f6r\u00fcnt\u00fcle",
"View my exam": "S\u0131nav\u0131m\u0131 g\u00f6r\u00fcnt\u00fcle",
"Visibility": "G\u00f6r\u00fcn\u00fcrl\u00fck",
+ "Visible to": "G\u00f6r\u00fcnecek ki\u015filer",
"Visible to Staff Only": "Sadece Personele G\u00f6r\u00fcn\u00fcr",
"Visual aids": "G\u00f6rsel yard\u0131mlar",
"Volume": "Ses \u015eiddeti",
"Vote for good posts and responses": "\u0130yi g\u00f6nderi ve yan\u0131tlar\u0131 oyla",
+ "Vote for this post,": "Bu ileti i\u00e7in oyla,",
"Waiting": "Bekleniyor",
"Want to confirm your identity later?": "Kimli\u011finizi daha sonra m\u0131 do\u011frulamak istersiniz?",
"Warning": "Uyar\u0131",
@@ -1990,7 +2020,6 @@
"We couldn't find any results for \"%s\".": "\"%s\" i\u00e7in hi\u00e7bir sonu\u00e7 bulunamad\u0131.",
"We couldn't sign you in.": "Oturumunuzu a\u00e7amad\u0131k.",
"We have encountered an error. Refresh your browser and then try again.": "Bir hatayla kar\u015f\u0131la\u015ft\u0131k. Taray\u0131c\u0131n\u0131z\u0131 yenileyin ve sonra tekrar deneyin.",
- "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.": "Bilgilerinizi ald\u0131k ve kimli\u011finizi do\u011fruluyoruz. Do\u011frulama s\u00fcreci tamaland\u0131\u011f\u0131nda (genelde 1-2 g\u00fcn i\u00e7erisinde tamamlan\u0131r) ana panelinize mesaj gelecektir. Bu s\u00fcre i\u00e7inde mevcut olan ders i\u00e7eriklerine ula\u015fabilirsiniz.",
"We just need a little more information before you start learning with %(platformName)s.": "%(platformName)s ile \u00f6\u011frenmeye ba\u015flamadan \u00f6nce biraz daha bilgiye ihtiyac\u0131m\u0131z var.",
"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.": "Foto\u011fraf\u0131n\u0131z\u0131 \u015fifrelemek ve inceleme i\u00e7in yetkilendirme hizmetimize g\u00f6ndermek i\u00e7in uygun olan en y\u00fcksek seviyede g\u00fcvenli\u011fi kullan\u0131yoruz. Foto\u011fraf\u0131n\u0131z ve bilgileriniz kaydedilmez ve do\u011frulama s\u00fcreci tamamland\u0131ktan sonra %(platformName)s \u00fczerinde hi\u00e7bir yerde g\u00f6r\u00fclmez.",
"We're sorry to see you go! Your account will be deleted shortly.": "Gitti\u011finizi g\u00f6rmek bizi \u00fcz\u00fcyor! Hesab\u0131n\u0131z yak\u0131nda silinecek.",
@@ -2091,7 +2120,6 @@
"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.": "Derse kay\u0131t olmadan \u00f6nce hesab\u0131n\u0131z\u0131 aktive edin. Etkinle\u015ftirme e-posta i\u00e7in gelen kutunuzu kontrol edin. Etkinle\u015ftirmeyi tamamlad\u0131ktan sonra bu sayfaya d\u00f6nebilir ve yenileyebilirsiniz.",
"You receive messages from {platform_name} and course teams at this address.": "{platform_name} platformundan ve ders tak\u0131mlar\u0131ndan iletileri bu adrese alacaks\u0131n\u0131z.",
"You reserve all rights for your work": "Eserinizin t\u00fcm haklar\u0131 sizde sakl\u0131d\u0131r",
- "You still need to visit the %(display_name)s website to complete the credit process.": "Sizin hala daha kredi i\u015flemini tamamlamak i\u00e7in %(display_name)s websitesine ziyaret etmeniz gerekmektedir.",
"You submitted {filename}; only {allowedFiles} are allowed.": "{filename} dosyas\u0131n\u0131 g\u00f6nderdiniz; sadece {allowedFiles} dosyalar\u0131na izin veriliyor.",
"You waive some rights for your work, such that others can use it too": "Eserinizdeki baz\u0131 haklar\u0131n\u0131zdan feragat edebilirsiniz, b\u00f6ylece ba\u015fkalar\u0131 da onu kolayca kullanabilir",
"You will be refunded the amount you paid.": "\u00d6dedi\u011finiz tutar size iade edilecektir.",
@@ -2161,6 +2189,7 @@
"and others": "ve di\u011ferleri",
"anonymous": "anonim",
"answer": "cevap",
+ "answered question": "soru cevapland\u0131",
"asset_path is required": "asset_path gerekli",
"bytes": "byte",
"certificate": "sertifika",
@@ -2186,8 +2215,8 @@
"emphasized text": "vurgulu metin",
"enter code here": "kodu buraya girin",
"enter link description here": "ba\u011flant\u0131 tan\u0131m\u0131n\u0131 buraya girin",
+ "follow this post": "bu iletiyi takip et",
"for": "i\u00e7in",
- "for {courseName}": "{courseName} i\u00e7in",
"group configuration": "grup ayar\u0131",
"image omitted": "g\u00f6rsel atland\u0131",
"incorrect": "yanl\u0131\u015f",
@@ -2211,6 +2240,8 @@
"or create a new one here": "ya da burada yeni bir tane olu\u015fturunuz",
"or sign in with": "veya oturum a\u00e7\u0131n",
"pending": "beklemede",
+ "post anonymously": "isimsiz olarak ileti yolla",
+ "posted %(time_ago)s by %(author)s": "%(author)s taraf\u0131ndan %(time_ago)s \u00f6nce g\u00f6nderildi",
"practice": "al\u0131\u015ft\u0131rma",
"price": "\u00fccret",
"proctored": "g\u00f6zetmenli",
@@ -2227,6 +2258,7 @@
"subsection": "altb\u00f6l\u00fcm",
"team count": "tak\u0131m say\u0131s\u0131",
"timed": "zamanlanm\u0131\u015f",
+ "unanswered question": "cevaplanmayan soru",
"unit": "\u00fcnite",
"unsatisfactory": "yetersiz",
"unsubmitted": "g\u00f6nderilmedi",
@@ -2309,6 +2341,7 @@
"{totalItems} total": "toplam {totalItems}",
"{transcriptClientTitle}_{transcriptLanguageCode}.{fileExtension}": "{transcriptClientTitle}_{transcriptLanguageCode}.{fileExtension}",
"{type} Progress": "{type} \u0130lerleme",
+ "{unread_comments_count} new": "{unread_comments_count} yeni",
"\u2026": "..."
};
for (var key in newcatalog) {
diff --git a/cms/static/js/i18n/uk/djangojs.js b/cms/static/js/i18n/uk/djangojs.js
index 6f40f8c6fb..1df88e2866 100644
--- a/cms/static/js/i18n/uk/djangojs.js
+++ b/cms/static/js/i18n/uk/djangojs.js
@@ -803,7 +803,6 @@
"October": "\u0436\u043e\u0432\u0442\u043d\u044f",
"Ok": "\u0414\u043e\u0431\u0440\u0435",
"One or more rescheduling tasks failed.": "\u041e\u0434\u043d\u0430 \u0430\u0431\u043e \u043a\u0456\u043b\u044c\u043a\u0430 \u0437\u0430\u0434\u0430\u0447 \u043f\u0435\u0440\u0435\u043f\u043b\u0430\u043d\u0443\u0432\u0430\u043d\u043d\u044f \u043f\u0440\u043e\u0432\u0430\u043b\u0438\u043b\u0430\u0441\u044f.",
- "Only <%= fileTypes %> files can be uploaded. Please select a file ending in <%= fileExtensions %> to upload.": "\u041b\u0438\u0448\u0435 \u0444\u0430\u0439\u043b\u0438 \u0442\u0438\u043f\u0456\u0432 <%= fileTypes %> \u043c\u043e\u0436\u0443\u0442\u044c \u0431\u0443\u0442\u0438 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u0456. \u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u043e\u0431\u0435\u0440\u0456\u0442\u044c \u0434\u043b\u044f \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0444\u0430\u0439\u043b \u0437 \u0440\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f\u043c <%= fileExtensions %>.",
"Only properly formatted .csv files will be accepted.": "\u0414\u043e\u043f\u0443\u0441\u043a\u0430\u044e\u0442\u044c\u0441\u044f \u0442\u0456\u043b\u044c\u043a\u0438 .csv \u0444\u0430\u0439\u043b\u0438 \u0437 \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u043d\u0438\u043c \u0444\u043e\u0440\u043c\u0430\u0442\u043e\u043c.",
"Open Calculator": "\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u043a\u0430\u043b\u044c\u043a\u0443\u043b\u044f\u0442\u043e\u0440",
"Open language menu": "\u0412\u0438\u0431\u0456\u0440 \u043c\u043e\u0432\u0438",
@@ -1106,8 +1105,6 @@
"The certificate for this learner has been re-validated and the system is re-running the grade for this learner.": "\u0421\u0435\u0440\u0442\u0438\u0444\u0456\u043a\u0430\u0442 \u0434\u043b\u044f \u0434\u0430\u043d\u043e\u0433\u043e \u0441\u0442\u0443\u0434\u0435\u043d\u0442\u0430 \u0432\u0456\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439, \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e \u043f\u0435\u0440\u0435\u0440\u0430\u0445\u0443\u043d\u043e\u043a \u043e\u0446\u0456\u043d\u043a\u0438.",
"The cohort cannot be added": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0434\u043e\u0434\u0430\u0442\u0438 \u043a\u043e\u0433\u043e\u0440\u0442\u0443",
"The cohort cannot be saved": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u043a\u043e\u0433\u043e\u0440\u0442\u0443",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "\u0421\u0443\u043a\u0443\u043f\u043d\u0430 \u0434\u043e\u0432\u0436\u0438\u043d\u0430 \u043d\u0430\u0437\u0432\u0438 \u043e\u0440\u0433\u0430\u043d\u0456\u0437\u0430\u0446\u0456\u0457 \u0442\u0430 \u043a\u043e\u0434\u0443 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435 \u043f\u0435\u0440\u0435\u0432\u0438\u0449\u0443\u0432\u0430\u0442\u0438 <%=limit%> \u0441\u0438\u043c\u0432\u043e\u043b\u0456\u0432.",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "\u0421\u0443\u043a\u0443\u043f\u043d\u0430 \u0434\u043e\u0432\u0436\u0438\u043d\u0430 \u043d\u0430\u0437\u0432\u0438 \u043e\u0440\u0433\u0430\u043d\u0456\u0437\u0430\u0446\u0456\u0457, \u043d\u043e\u043c\u0435\u0440\u0430 \u043a\u0443\u0440\u0441\u0443 \u0442\u0430 \u043d\u0430\u0432\u0447\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0440\u043e\u043a\u0443 \u043d\u0435 \u043c\u043e\u0436\u0435 \u043f\u0435\u0440\u0435\u0432\u0438\u0449\u0443\u0432\u0430\u0442\u0438 <%=limit%> \u0441\u0438\u043c\u0432\u043e\u043b\u0456\u0432.",
"The country or region where you live.": "\u041a\u0440\u0430\u0457\u043d\u0430 \u0430\u0431\u043e \u0440\u0435\u0433\u0456\u043e\u043d, \u0434\u0435 \u0412\u0438 \u043f\u0440\u043e\u0436\u0438\u0432\u0430\u0454\u0442\u0435.",
"The country that team members primarily identify with.": "\u041a\u0440\u0430\u0457\u043d\u0430, \u0434\u043e \u044f\u043a\u043e\u0457 \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u0432\u0456\u0434\u043d\u043e\u0441\u0438\u0442\u044c \u0441\u0435\u0431\u0435.",
"The display of ungraded and checked out responses could not be loaded.": "\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u0435\u043a\u0440\u0430\u043d \u043d\u0435\u043f\u0435\u0440\u0435\u0432\u0456\u0440\u0435\u043d\u0438\u0445 \u0442\u0430 \u043f\u0435\u0440\u0435\u0432\u0456\u0440\u0435\u043d\u0438\u0445 \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u0435\u0439.",
@@ -1288,7 +1285,6 @@
"Upload Videos": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u0412\u0456\u0434\u0435\u043e",
"Upload a CSV file": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 CSV \u0444\u0430\u0439\u043b",
"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.": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0442\u0435 \u0444\u0430\u0439\u043b \u0437\u0456 \u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f\u043c\u0438, \u0440\u043e\u0437\u0434\u0456\u043b\u0435\u043d\u0438\u043c\u0438 \u043a\u043e\u043c\u0430\u043c\u0438 (.csv), \u044f\u043a\u0438\u0439 \u043c\u0456\u0441\u0442\u0438\u0442\u044c \u0456\u043c\u0435\u043d\u0430 \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456\u0432 \u0430\u0431\u043e \u0430\u0434\u0440\u0435\u0441\u0438 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0457 \u043f\u043e\u0448\u0442\u0438 \u0442\u0438\u0445 \u0441\u0442\u0443\u0434\u0435\u043d\u0442\u0456\u0432, \u044f\u043a\u0438\u043c \u043d\u0430\u0434\u0430\u043d\u043e \u0432\u0438\u043d\u044f\u0442\u043e\u043a. \u041f\u0435\u0440\u0448\u0438\u043c \u0432\u0432\u0435\u0434\u0456\u0442\u044c \u0456\u043c'\u044f \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430 \u0430\u0431\u043e \u0430\u0434\u0440\u0435\u0441\u0443 \u0435\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0457 \u043f\u043e\u0448\u0442\u0438 \u0442\u0430 \u0432\u0456\u0434\u043e\u043a\u0440\u0435\u043c\u0442\u0435 \u043a\u043e\u043c\u043e\u044e. \u0417\u0430 \u0431\u0430\u0436\u0430\u043d\u043d\u044f\u043c \u0412\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u043e\u0434\u0430\u0442\u0438 \u043f\u0440\u0438\u043c\u0456\u0442\u043a\u0443, \u044f\u043a\u0430 \u0431 \u043e\u043f\u0438\u0441\u0443\u0432\u0430\u043b\u0430 \u043f\u0440\u0438\u0447\u0438\u043d\u0443 \u0432\u0438\u043d\u044f\u0442\u043a\u0443. \u0412\u043e\u043d\u0430 \u0431\u0443\u0434\u0435 \u0432\u0456\u0434\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u0438\u0441\u044f \u0443 \u0434\u0440\u0443\u0433\u043e\u043c\u0443 \u043f\u043e\u043b\u0456.",
- "Upload a new PDF to \u201c<%= name %>\u201d": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u043d\u043e\u0432\u0438\u0439 PDF \u0432 \u201c<%= name %>\u201d",
"Upload an image": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 \u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
"Upload completed": "\u0412\u0438\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e",
"Upload completed for video {fileName}": "\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0432\u0456\u0434\u0435\u043e {fileName}",
diff --git a/cms/static/js/i18n/ur/djangojs.js b/cms/static/js/i18n/ur/djangojs.js
index b293decc95..63d4b562ff 100644
--- a/cms/static/js/i18n/ur/djangojs.js
+++ b/cms/static/js/i18n/ur/djangojs.js
@@ -27,25 +27,18 @@
"6 a.m.": "6 \u0635",
"Available %s": "\u062f\u0633\u062a\u06cc\u0627\u0628 %s",
"Cancel": "\u0645\u0646\u0633\u0648\u062e \u06a9\u0631\u06cc\u06ba",
- "Choose": "Choose",
"Choose a time": "\u0648\u0642\u062a \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba",
"Choose all": "\u0633\u0628 \u0645\u0646\u062a\u062e\u0628 \u06a9\u0631\u06cc\u06ba",
"Chosen %s": "\u0645\u0646\u062a\u062e\u0628 \u0634\u062f\u06c1 %s",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
"Filter": "\u0686\u06be\u0627\u0646\u0679\u06cc\u06ba",
"Hide": "\u0686\u06be\u067e\u0627\u0626\u06cc\u06ba",
"Midnight": "\u0646\u0635\u0641 \u0631\u0627\u062a",
"Noon": "\u062f\u0648\u067e\u06be\u0631",
"Now": "\u0627\u0628",
"Remove": "\u062e\u0627\u0631\u062c \u06a9\u0631\u06cc\u06ba",
- "Remove all": "Remove all",
"Show": "\u062f\u06a9\u06be\u0627\u0626\u06cc\u06ba",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
"Today": "\u0627\u0653\u062c",
"Tomorrow": "\u0627\u0653\u0626\u0646\u062f\u06c1 \u06a9\u0644",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
"Yesterday": "\u06af\u0632\u0634\u062a\u06c1 \u06a9\u0644",
"You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "\u0627\u0653\u067e \u0646\u06d2 \u0627\u06cc\u06a9 \u06a9\u0627\u0631\u0648\u0627\u0626\u06cc \u0645\u0646\u062a\u062e\u0628 \u06a9\u06cc \u06be\u06d2\u060c \u0627\u0648\u0631 \u0627\u0653\u067e \u0646\u06d2 \u0630\u0627\u062a\u06cc \u062e\u0627\u0646\u0648\u06ba \u0645\u06cc\u06ba \u06a9\u0648\u0626\u06cc \u062a\u0628\u062f\u06cc\u0644\u06cc \u0646\u06c1\u06cc\u06ba \u06a9\u06cc \u063a\u0627\u0644\u0628\u0627\u064b \u0627\u0653\u067e '\u062c\u0627\u0648\u0654' \u0628\u0679\u0646 \u062a\u0644\u0627\u0634 \u06a9\u0631 \u0631\u06be\u06d2 \u06be\u06cc\u06ba \u0628\u062c\u0627\u0626\u06d2 '\u0645\u062e\u0641\u0648\u0638 \u06a9\u0631\u06cc\u06ba' \u0628\u0679\u0646 \u06a9\u06d2\u06d4",
"You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "\u0627\u0653\u067e \u0646\u06d2 \u0627\u06cc\u06a9 \u06a9\u0627\u0631\u0648\u0627\u0626\u06cc \u0645\u0646\u062a\u062e\u0628 \u06a9\u06cc \u06be\u06d2 \u0644\u06cc\u06a9\u0646 \u0627\u0628\u06be\u06cc \u062a\u06a9 \u0627\u0653\u067e \u0646\u06d2 \u0630\u0627\u062a\u06cc \u062e\u0627\u0646\u0648\u06ba \u0645\u06cc\u06ba \u0627\u067e\u0646\u06cc \u062a\u0628\u062f\u06cc\u0644\u06cc\u0627\u06ba \u0645\u062d\u0641\u0648\u0638 \u0646\u06c1\u06cc\u06ba \u06a9\u06cc \u06c1\u06cc\u06ba \u0628\u0631\u0627\u06c1 \u0645\u06be\u0631\u0628\u0627\u0646\u06cc \u0645\u062d\u0641\u0648\u0637 \u06a9\u0631\u0646\u06d2 \u06a9\u06d2 \u0644\u0626\u06d2 OK \u067e\u0631 \u06a9\u0644\u06a9 \u06a9\u0631\u06cc\u06ba\u06d4 \u0627\u0653\u067e \u06a9\u0627\u0648\u0627\u0626\u06cc \u062f\u0648\u0628\u0627\u0631\u06c1 \u0686\u0644\u0627\u0646\u06d2 \u06a9\u06cc \u0636\u0631\u0648\u0631\u062a \u06be\u0648\u06af\u06cc\u06d4",
diff --git a/cms/static/js/i18n/uz/djangojs.js b/cms/static/js/i18n/uz/djangojs.js
index a81c827e53..5e1878aa25 100644
--- a/cms/static/js/i18n/uz/djangojs.js
+++ b/cms/static/js/i18n/uz/djangojs.js
@@ -12,42 +12,6 @@
django.catalog = django.catalog || {};
- var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected",
- "%(sel)s of %(cnt)s selected"
- ],
- "6 a.m.": "6 a.m.",
- "Available %s": "Available %s",
- "Cancel": "Cancel",
- "Choose": "Choose",
- "Choose a time": "Choose a time",
- "Choose all": "Choose all",
- "Chosen %s": "Chosen %s",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
- "Filter": "Filter",
- "Hide": "Hide",
- "Midnight": "Midnight",
- "Noon": "Noon",
- "Now": "Now",
- "Remove": "Remove",
- "Remove all": "Remove all",
- "Show": "Show",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
- "Today": "Today",
- "Tomorrow": "Tomorrow",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
- "Yesterday": "Yesterday",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."
- };
- for (var key in newcatalog) {
- django.catalog[key] = newcatalog[key];
- }
-
if (!django.jsi18n_initialized) {
django.gettext = function(msgid) {
diff --git a/cms/static/js/i18n/vi/djangojs.js b/cms/static/js/i18n/vi/djangojs.js
index d010e4390e..331127c282 100644
--- a/cms/static/js/i18n/vi/djangojs.js
+++ b/cms/static/js/i18n/vi/djangojs.js
@@ -611,7 +611,6 @@
"Gender": "Gi\u1edbi t\u00ednh",
"General": "Chung",
"General Proctored Exam Rules": "Quy t\u1eafc Chung v\u1ec1 Thi C\u00f3 gi\u00e1m s\u00e1t",
- "Get Credit": "L\u1ea5y t\u00edn ch\u1ec9",
"Go to Dashboard": "\u0110i \u0111\u1ebfn b\u1ea3ng \u0111i\u1ec1u khi\u1ec3n",
"Go to my Dashboard": "Chuy\u1ec3n \u0111\u1ebfn b\u1ea3ng th\u00f4ng tin c\u1ee7a t\u00f4i",
"Go to {platform} Home": "Chuy\u1ec3n \u0111\u1ebfn Trang ch\u1ee7 {platform}",
@@ -903,7 +902,6 @@
"ORDER PLACED": "\u0110\u00c3 \u0110\u1eb6T H\u00c0NG",
"Ok": "Ok",
"One or more rescheduling tasks failed.": "M\u1ed9t ho\u1eb7c nhi\u1ec1u t\u00e1c v\u1ee5 \u0111i\u1ec1u ch\u1ec9nh l\u1ecbch h\u1ecdc \u0111\u00e3 th\u1ea5t b\u1ea1i.",
- "Only <%= fileTypes %> files can be uploaded. Please select a file ending in <%= fileExtensions %> to upload.": "Ch\u1ec9 t\u1eadp tin d\u1ea1ng <%= fileTypes %> c\u00f3 th\u1ec3 \u0111\u01b0\u1ee3c t\u1ea3i l\u00ean. Xin vui l\u00f2ng ch\u1ecdn m\u1ed9t t\u1eadp tin k\u1ebft th\u00fac b\u1eb1ng <%= fileExtensions %> \u0111\u1ec3 t\u1ea3i l\u00ean.",
"Only properly formatted .csv files will be accepted.": "Ch\u1ec9 nh\u1eefng t\u1ec7p tin theo \u0111\u1ecbnh d\u1ea1ng .csv chu\u1ea9n \u0111\u01b0\u1ee3c ch\u1ea5p nh\u1eadn.",
"Open Calculator": "M\u1edf m\u00e1y t\u00ednh ",
"Open language menu": "M\u1edf menu ng\u00f4n ng\u1eef",
@@ -1287,8 +1285,6 @@
"The certificate for this learner has been re-validated and the system is re-running the grade for this learner.": "Gi\u1ea5y ch\u1ee9ng nh\u1eadn cho h\u1ecdc vi\u00ean n\u00e0y \u0111\u00e3 \u0111\u01b0\u1ee3c x\u00e1c nh\u1eadn l\u1ea1i v\u00e0 h\u1ec7 th\u1ed1ng \u0111ang x\u1eed l\u00fd c\u1ea5p ph\u00e1t l\u1ea1i cho h\u1ecdc vi\u00ean n\u00e0y n\u00e0y.",
"The cohort cannot be added": "Kh\u00f4ng th\u00eam \u0111\u01b0\u1ee3c nh\u00f3m h\u1ecdc vi\u00ean n\u00e0y",
"The cohort cannot be saved": "Kh\u00f4ng l\u01b0u \u0111\u01b0\u1ee3c nh\u00f3m h\u1ecdc vi\u00ean n\u00e0y",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "Chi\u1ec1u d\u00e0i k\u1ebft h\u1ee3p c\u1ee7a tr\u01b0\u1eddng t\u1ed5 ch\u1ee9c v\u00e0 m\u00e3 m\u00e3 th\u01b0 vi\u1ec7n kh\u00f4ng \u0111\u01b0\u1ee3c nhi\u1ec1u h\u01a1n <%=limit%> k\u00fd t\u1ef1.",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "Chi\u1ec1u d\u00e0i k\u1ebft h\u1ee3p c\u1ee7a c\u00e1c tr\u01b0\u1eddng t\u1ed5 ch\u1ee9c, s\u1ed1 hi\u1ec7u kho\u00e1 h\u1ecdc, h\u1ecdc k\u1ef3 kh\u00f4ng \u0111\u01b0\u1ee3c nhi\u1ec1u h\u01a1n <%=limit%> k\u00fd t\u1ef1.",
"The country or region where you live.": "Qu\u1ed1c gia ho\u1eb7c n\u01a1i b\u1ea1n sinh s\u1ed1ng.",
"The country that team members primarily identify with.": "Qu\u1ed1c gia ch\u00ednh c\u1ee7a c\u00e1c th\u00e0nh vi\u00ean nh\u00f3m.",
"The course end date must be later than the course start date.": "Ng\u00e0y k\u1ebft th\u00fac c\u1ee7a kh\u00f3a h\u1ecdc ph\u1ea3i sau ng\u00e0y b\u1eaft \u0111\u1ea7u c\u1ee7a kh\u00f3a h\u1ecdc.",
@@ -1505,7 +1501,6 @@
"Upload Photo": "T\u1ea3i \u1ea2nh l\u00ean",
"Upload Signature Image": "T\u1ea3i l\u00ean H\u00ecnh \u1ea3nh Ch\u1eef k\u00fd",
"Upload Videos": "T\u1ea3i l\u00ean Video",
- "Upload a new PDF to \u201c<%= name %>\u201d": "T\u1ea3i l\u00ean m\u1ed9t file PDF m\u1edbi l\u00ean \u201c<%= name %>\u201d",
"Upload an image": "T\u1ea3i l\u00ean h\u00ecnh \u1ea3nh",
"Upload an image or capture one with your web or phone camera.": "T\u1ea3i l\u00ean m\u1ed9t h\u00ecnh \u1ea3nh ho\u1eb7c ch\u1ee5p m\u1ed9t v\u1edbi web c\u1ee7a b\u1ea1n ho\u1eb7c camera \u0111i\u1ec7n tho\u1ea1i.",
"Upload completed": "T\u1ea3i l\u00ean ho\u00e0n t\u1ea5t",
@@ -1547,7 +1542,6 @@
"Verification checkpoint to be completed": "Ki\u1ec3m tra \u0111\u1ec3 ho\u00e0n th\u00e0nh x\u00e1c minh",
"Verified Certificate": "Ch\u1ee9ng ch\u1ec9 c\u00f3 x\u00e1c nh\u1eadn",
"Verified Certificate upgrade": "N\u00e2ng c\u1ea5p l\u00ean ch\u1ee9ng ch\u1ec9 c\u00f3 x\u00e1c nh\u1eadn",
- "Verify Now": "X\u00e1c nh\u1eadn ngay b\u00e2y gi\u1edd",
"Version": "Phi\u00ean b\u1ea3n",
"Vertical space": "Vertical space",
"Very loud": "R\u1ea5t to",
@@ -1582,7 +1576,6 @@
"We couldn't find any results for \"%s\".": "Kh\u00f4ng th\u1ec3 t\u00ecm th\u1ea5y k\u1ebft qu\u1ea3 cho \"%s\".",
"We couldn't sign you in.": "Ch\u00fang t\u00f4i kh\u00f4ng th\u1ec3 \u0111\u0103ng nh\u1eadp cho b\u1ea1n.",
"We have encountered an error. Refresh your browser and then try again.": "\u0110\u00e3 ph\u00e1t hi\u1ec7n l\u1ed7i. L\u00e0m m\u1edbi l\u1ea1i tr\u00ecnh duy\u1ec7t c\u1ee7a b\u1ea1n r\u1ed3i th\u1eed l\u1ea1i.",
- "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.": "Ch\u00fang t\u00f4i \u0111\u00e3 nh\u1eadn \u0111\u01b0\u1ee3c th\u00f4ng tin c\u1ee7a b\u1ea1n v\u00e0 \u0111ang ti\u1ebfn x\u00e1c nh\u1eadn danh t\u00ednh c\u1ee7a b\u1ea1n. B\u1ea1n s\u1ebd th\u1ea5y m\u1ed9t tin nh\u1eafn tr\u00ean b\u1ea3ng \u0111i\u1ec1u khi\u1ec3n khi qu\u00e1 tr\u00ecnh x\u00e1c nh\u1eadn ho\u00e0n t\u1ea5t (th\u00f4ng th\u01b0\u1eddng trong v\u00f2ng 1-2 ng\u00e0y). Trong th\u1eddi gian ch\u1edd \u0111\u1ee3i, b\u1ea1n v\u00e3n c\u00f3 th\u1ec3 truy c\u1eadp n\u1ed9i dung c\u00e1c kho\u00e1 h\u1ecdc c\u00f3 s\u1eb5n.",
"We just need a little more information before you start learning with %(platformName)s.": "Ch\u00fang t\u00f4i ch\u1ec9 c\u1ea7n th\u00eam m\u1ed9t ch\u00fat th\u00f4ng tin tr\u01b0\u1edbc khi b\u1ea1n b\u1eaft \u0111\u1ea7u h\u1ecdc v\u1edbi %(platformName)s.",
"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.": "Ch\u00fang t\u00f4i s\u1eed d\u1ee5ng c\u00e1c m\u1ee9c b\u1ea3o m\u1eadt cao nh\u1ea5t c\u00f3 s\u1eb5n \u0111\u1ec3 m\u00e3 h\u00f3a h\u00ecnh \u1ea3nh c\u1ee7a b\u1ea1n v\u00e0 g\u1eedi n\u00f3 \u0111\u1ebfn d\u1ecbch v\u1ee5 \u1ee7y quy\u1ec1n c\u1ee7a ch\u00fang t\u00f4i \u0111\u1ec3 xem x\u00e9t. \u1ea2nh v\u00e0 th\u00f4ng tin c\u1ee7a b\u1ea1n s\u1ebd kh\u00f4ng \u0111\u01b0\u1ee3c l\u01b0u hay b\u1ea5t c\u1ee9 n\u01a1i n\u00e0o c\u00f3 th\u1ec3 nh\u00ecn th\u1ea5y tr\u00ean %(platformName)s sau khi qu\u00e1 tr\u00ecnh x\u00e1c minh ho\u00e0n t\u1ea5t.",
"We're sorry to see you go! Your account will be deleted shortly.": "Ch\u00fang t\u00f4i r\u1ea5t ti\u1ebfc khi th\u1ea5y b\u1ea1n ra \u0111i! T\u00e0i kho\u1ea3n c\u1ee7a b\u1ea1n s\u1ebd \u0111\u01b0\u1ee3c x\u00f3a ngay.",
@@ -1659,7 +1652,6 @@
"You need to activate your account before you can enroll in courses. Check your inbox for an activation email.": "B\u1ea1n c\u1ea7n k\u00edch ho\u1ea1t t\u00e0i kho\u1ea3n tr\u01b0\u1edbc khi ghi danh v\u00e0o kho\u00e1 h\u1ecdc. Ki\u1ec3m tra h\u1ed9p th\u01b0 \u0111\u1ebfn cho email c\u1ea7n k\u00edch ho\u1ea1t.",
"You receive messages from {platform_name} and course teams at this address.": "B\u1ea1n nh\u1eadn \u0111\u01b0\u1ee3c tin nh\u1eafn t\u1eeb {platform_name} t\u1ea1i \u0111\u1ecba ch\u1ec9 n\u00e0y.",
"You reserve all rights for your work": "B\u1ea1n d\u00e0nh t\u1ea5t c\u1ea3 c\u00e1c quy\u1ec1n cho t\u00e1c ph\u1ea9m c\u1ee7a b\u1ea1n",
- "You still need to visit the %(display_name)s website to complete the credit process.": "B\u1ea1n v\u1eabn c\u1ea7n ph\u1ea3i truy c\u1eadp v\u00e0o c\u00e1c trang web %(display_name)s \u0111\u1ec3 ho\u00e0n t\u1ea5t qu\u00e1 tr\u00ecnh t\u00edn ch\u1ec9.",
"You submitted {filename}; only {allowedFiles} are allowed.": "B\u1ea1n \u0111\u00e3 g\u1eedi {filename}; ch\u1ec9 cho ph\u00e9p {allowedFiles}.",
"You waive some rights for your work, such that others can use it too": "B\u1ea1n t\u1eeb b\u1ecf m\u1ed9t s\u1ed1 quy\u1ec1n \u0111\u1ed1i v\u1edbi t\u00e1c ph\u1ea9m c\u1ee7a b\u1ea1n, nh\u01b0 v\u1eady nh\u1eefng ng\u01b0\u1eddi kh\u00e1c c\u00f3 th\u1ec3 s\u1eed d\u1ee5ng l\u1ea1i",
"You will be refunded the amount you paid.": "B\u1ea1n s\u1ebd \u0111\u01b0\u1ee3c ho\u00e0n tr\u1ea3 s\u1ed1 ti\u1ec1n \u0111\u00e3 thanh to\u00e1n.",
diff --git a/cms/static/js/i18n/zh-cn/djangojs.js b/cms/static/js/i18n/zh-cn/djangojs.js
index aabd11f861..ee108d16e3 100644
--- a/cms/static/js/i18n/zh-cn/djangojs.js
+++ b/cms/static/js/i18n/zh-cn/djangojs.js
@@ -120,9 +120,6 @@
"%(field)s must have at least %(count)d characters.": "%(field)s \u81f3\u5c11\u8981\u6709 %(count)d \u5b57\u7b26\u3002",
"%(new_item_message)s": "%(new_item_message)s",
"%(programName)s Home Page.": "%(programName)s\u4e3b\u9875",
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected"
- ],
"%(type)s Component Template Menu": "%(type)s \u7ec4\u4ef6\u6a21\u677f\u83dc\u5355",
"%(value)s hour": [
"%(value)s\u5c0f\u65f6"
@@ -163,7 +160,6 @@
"(required)": "\uff08\u5fc5\u586b\u9879\uff09",
"(required):": "(\u5fc5\u987b):",
"- Sortable": "\u2014\u53ef\u6392\u5e8f\u7684",
- "6 a.m.": "6 a.m.",
": video upload complete.": "\u89c6\u9891\u4e0a\u4f20\u6210\u529f",
"<%= user %> already in exception list.": "<%= user %> \u5df2\u5728\u7279\u4f8b\u540d\u5355\u4e2d\u3002",
"<%= user %> has been successfully added to the exception list. Click Generate Exception Certificate below to send the certificate.": "\u5df2\u7ecf\u6210\u529f\u65b0\u589e<%= user %>\u5230\u7279\u4f8b\u540d\u5355\u4e2d\u3002\u8bf7\u70b9\u51fb\u4e0b\u9762\u7684\u4ea7\u751f\u7279\u4f8b\u8bc1\u4e66\u5e76\u53d1\u9001\u8bc1\u4e66\u3002",
@@ -341,7 +337,6 @@
"Automated Transcripts": "\u81ea\u52a8\u5316\u5b57\u5e55",
"Automatic": "\u81ea\u52a8",
"Automatic transcripts are disabled.": "\u81ea\u52a8\u811a\u672c\u5df2\u7981\u7528\u3002",
- "Available %s": "Available %s",
"Average": "\u97f3\u91cf\u4e2d\u7b49",
"Back to Full List": "\u8fd4\u56de\u5b8c\u6574\u5217\u8868",
"Back to sign in": "\u8fd4\u56de\u767b\u5f55",
@@ -431,19 +426,15 @@
"Checkout": "\u4ed8\u6b3e",
"Checkout with PayPal": "\u4f7f\u7528PayPal\u4ed8\u6b3e",
"Checkout with {processor}": "\u4f7f\u7528{processor}\u4ed8\u6b3e",
- "Choose": "Choose",
"Choose File": "\u9009\u62e9\u6587\u4ef6",
"Choose One": "\u9009\u62e9\u4e00\u4e2a",
"Choose a .csv file": "\u9009\u62e9\u4e00\u4e2a.csv\u7684\u6587\u4ef6",
"Choose a content group to associate": "\u9009\u62e9\u4e00\u4e2a\u5185\u5bb9\u7ec4\u6765\u5173\u8054",
"Choose a location to move your component to": "\u9009\u62e9\u4e00\u4e2a\u4f4d\u7f6e\u5e76\u5c06\u60a8\u7684\u7684\u7ec4\u4ef6\u79fb\u52a8\u81f3\u6b64",
- "Choose a time": "Choose a time",
- "Choose all": "Choose all",
"Choose mode": "\u9009\u62e9\u6a21\u5f0f",
"Choose new file": "\u9009\u62e9\u6587\u4ef6",
"Choose one": "\u8bf7\u9009\u62e9",
"Choose your institution from the list below:": "\u4ece\u4ee5\u4e0b\u5217\u8868\u4e2d\u9009\u62e9\u60a8\u7684\u673a\u6784\uff1a",
- "Chosen %s": "Chosen %s",
"Circle": "\u7a7a\u5fc3\u5706",
"Clear": "\u6e05\u9664",
"Clear All": "\u6e05\u9664\u6240\u6709",
@@ -459,9 +450,7 @@
"Click on this button to mute or unmute this video or press UP or DOWN buttons to increase or decrease volume level.": "\u8bf7\u70b9\u51fb\u6b64\u6309\u94ae\u4ee5\u5bf9\u8be5\u89c6\u9891\u9759\u97f3\uff0f\u53d6\u6d88\u9759\u97f3\uff0c\u6216\u8005\u4f7f\u7528\u952e\u76d8\u7684\u4e0a\u4e0b\u65b9\u5411\u952e\u589e\u5927\u6216\u51cf\u5c0f\u97f3\u91cf\u3002",
"Click to add a new %(xblock_type)s": "\u70b9\u51fb\u6dfb\u52a0\u4e00\u4e2a\u65b0%(xblock_type)s",
"Click to change": "\u70b9\u51fb\u66f4\u6539",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
"Click to edit": "\u70b9\u51fb\u4ee5\u7f16\u8f91",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
"Close": "\u5173\u95ed",
"Close Calculator": "\u5173\u95ed\u8ba1\u7b97\u5668",
"Code": "\u4ee3\u7801",
@@ -798,9 +787,7 @@
"Files that you upload must be PDFs or image files in .gif, .jpg, .jpeg, or .png format.": "\u53ea\u652f\u6301\u4e0a\u4f20PDF\u6216 .gif .jpg .jpeg .png\u00a0\u683c\u5f0f\u56fe\u7247\u6587\u4ef6\u3002",
"Files that you upload must be smaller than 5MB in size.": "\u4e0a\u4f20\u7684\u6587\u4ef6\u4e0d\u5f97\u8d85\u8fc75MB\u3002",
"Fill browser": "\u5168\u5c4f",
- "Filter": "Filter",
"Filter and sort topics": "\u8fc7\u6ee4\u548c\u6574\u7406\u8bdd\u9898",
- "Final Grade": "\u6700\u7ec8\u6210\u7ee9",
"Final Grade Received": "\u6700\u7ec8\u6536\u83b7\u5f97\u5206",
"Financial Assistance": "\u7ecf\u6d4e\u8865\u52a9",
"Financial Assistance Application": "\u7ecf\u6d4e\u63f4\u52a9\u7533\u8bf7",
@@ -832,7 +819,6 @@
"Generate": "\u751f\u6210",
"Generate Exception Certificates": "\u751f\u6210\u7279\u4f8b\u8bc1\u4e66",
"Generate the user's certificate": "\u751f\u6210\u7528\u6237\u8bc1\u4e66",
- "Get Credit": "\u83b7\u5f97\u5b66\u5206",
"Go Back": "\u8fd4\u56de",
"Go to Dashboard": "\u524d\u5f80\u8bfe\u7a0b\u9762\u677f",
"Go to my Dashboard": "\u524d\u5f80\u6211\u7684\u8bfe\u7a0b\u9762\u677f",
@@ -880,7 +866,6 @@
"Height": "\u9ad8\u5ea6",
"Help Translate into {beta_language}": "Help Translate into {beta_language}",
"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.": "\u4ecb\u7ecd\u60a8\u56e2\u961f\u7684\u7279\u70b9\uff0c\u5e2e\u52a9\u5176\u4ed6\u5b66\u5458\u51b3\u5b9a\u662f\u5426\u52a0\u5165\u60a8\u7684\u56e2\u961f\u3002\u8bf7\u4ed4\u7ec6\u9009\u62e9\uff0c\u5982\u679c\u9650\u5236\u592a\u591a\uff0c\u5c31\u4f1a\u6709\u8f83\u5c11\u7684\u4eba\u613f\u610f\u52a0\u5165\u60a8\u7684\u56e2\u961f\u3002",
- "Hide": "Hide",
"Hide Annotations": "\u9690\u85cf\u6279\u6ce8",
"Hide Deprecated Settings": "\u9690\u85cf\u5df2\u8fc7\u65f6\u7684\u8bbe\u7f6e",
"Hide Discussion": "\u9690\u85cf\u8ba8\u8bba",
@@ -912,10 +897,8 @@
"If the subsection does not have a due date, learners always see their scores when they submit answers to assessments.": "\u5982\u679c\u8282\u4e0d\u8bbe\u6709\u622a\u6b62\u65e5\u671f\uff0c\u90a3\u4e48\u53ea\u8981\u5b66\u5458\u63d0\u4ea4\u7b54\u6848\u81f3\u8bc4\u5206\uff0c\u5c31\u53ef\u4ee5\u67e5\u770b\u81ea\u5df1\u7684\u5f97\u5206\u3002",
"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.": "\u5982\u679c\u6b64\u5355\u5143\u5148\u524d\u5df2\u88ab\u53d1\u5e03\u4e14\u5411\u5b66\u751f\u516c\u5f00\uff0c\u4efb\u4f55\u5728\u8be5\u5355\u5143\u5904\u4e8e\u9690\u85cf\u65f6\u7684\u6539\u52a8\u90fd\u5c06\u5bf9\u5b66\u751f\u53ef\u89c1\u3002",
"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?": "\u82e5\u6b64\u5355\u5143\u5148\u524d\u5df2\u53d1\u8868\u4e14\u5411\u5b66\u751f\u516c\u5f00\uff0c\u4efb\u4f55\u5728\u8be5\u5355\u5143\u5904\u4e8e\u9690\u85cf\u72b6\u6001\u65f6\u6240\u4f5c\u51fa\u7684\u6539\u52a8\u90fd\u5c06\u5bf9\u5b66\u751f\u53ef\u89c1\u3002\u662f\u5426\u7ee7\u7eed\uff1f",
- "If you are unable to access your account contact us via email using {email}.": "\u5982\u679c\u60a8\u65e0\u6cd5\u8bbf\u95ee\u8d26\u53f7\uff0c\u8bf7\u901a\u8fc7\u7535\u5b50\u90ae\u4ef6\u8054\u7cfb\u6211\u4eec{email}\u3002",
"If you do not yet have an account, use the button below to register.": "\u5982\u679c\u60a8\u5c1a\u65e0\u8d26\u53f7\uff0c\u8bf7\u4f7f\u7528\u4ee5\u4e0b\u6309\u94ae\u8fdb\u884c\u6ce8\u518c\u3002",
"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.": "\u5982\u679c\u60a8\u73b0\u5728\u4e0d\u9a8c\u8bc1\u60a8\u7684\u8eab\u4efd\uff0c\u60a8\u4ecd\u53ef\u4ee5\u901a\u8fc7\u63a7\u5236\u9762\u677f\u6d4f\u89c8\u8bfe\u7a0b\u3002\u4f46\u60a8\u4f1a\u5b9a\u671f\u4ece%(platformName)s\u6536\u5230\u8eab\u4efd\u9a8c\u8bc1\u63d0\u9192\u3002",
- "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.": "\u5982\u679c\u60a8\u73b0\u5728\u4e0d\u9a8c\u8bc1\u8eab\u4efd\uff0c\u60a8\u4ecd\u53ef\u4ee5\u901a\u8fc7\u8bfe\u7a0b\u9762\u677f\u6d4f\u89c8\u8bfe\u7a0b\u3002\u4f46\u60a8\u4f1a\u5b9a\u671f\u4ece {platformName} \u6536\u5230\u8eab\u4efd\u9a8c\u8bc1\u63d0\u9192\u3002",
"If you leave this page without saving or submitting your response, you will lose any work you have done on the response.": "\u5982\u679c\u60a8\u4e0d\u4fdd\u5b58\u6216\u8005\u63d0\u4ea4\u7b54\u6848\u5c31\u79bb\u5f00\uff0c\u60a8\u53ef\u80fd\u4f1a\u4e22\u5931\u6389\u5199\u5b8c\u7684\u4e00\u5207\u3002",
"If you leave this page without submitting your peer assessment, you will lose any work you have done.": "\u5982\u679c\u60a8\u79bb\u5f00\u672c\u9875\u65f6\u6ca1\u6709\u63d0\u4ea4\u60a8\u7684\u540c\u5b66\u4e92\u8bc4\uff0c\u60a8\u5c06\u4e22\u5931\u60a8\u6240\u505a\u7684\u4e00\u5207\u3002",
"If you leave this page without submitting your self assessment, you will lose any work you have done.": "\u5982\u679c\u60a8\u672a\u63d0\u4ea4\u60a8\u7684\u81ea\u6211\u8bc4\u4f30\u5c31\u79bb\u5f00\u6b64\u9875\u9762\uff0c\u60a8\u5c06\u4e22\u5931\u6240\u505a\u7684\u4e00\u5207\u3002",
@@ -1079,7 +1062,6 @@
"Merge cells": "\u5408\u5e76\u5355\u5143\u683c",
"Message:": "\u6d88\u606f\uff1a",
"Middle": "\u4e2d\u95f4",
- "Midnight": "Midnight",
"Minimum Completion:": "\u6700\u4f4e\u5b8c\u6210\u7387\uff1a",
"Minimum Score:": "\u6700\u4f4e\u5206\u6570\uff1a",
"Module state successfully deleted.": "\u5df2\u6210\u529f\u5220\u9664\u6a21\u5757\u72b6\u6001\u3002",
@@ -1103,7 +1085,6 @@
"Name of the signatory": "\u7b7e\u53d1\u8005\u59d3\u540d",
"Name or short description of the configuration": "\u8be5\u914d\u7f6e\u7684\u540d\u79f0\u6216\u7b80\u77ed\u63cf\u8ff0",
"Navigate up": "\u5411\u4e0a\u5bfc\u822a",
- "Need help logging in?": "\u767b\u5f55\u65f6\u9700\u8981\u5e2e\u52a9\uff1f",
"Needs verified certificate ": "\u9700\u8981\u5df2\u8ba4\u8bc1\u8bc1\u4e66",
"Never published": "\u4ece\u672a\u53d1\u5e03\u8fc7",
"Never show assessment results": "\u4e00\u76f4\u9690\u85cf\u8bc4\u5206\u7ed3\u679c",
@@ -1138,7 +1119,6 @@
"Nonbreaking space": "\u4e0d\u95f4\u65ad\u7a7a\u683c",
"Noncommercial": "\u975e\u8425\u5229\u6027\u7684",
"None": "\u65e0",
- "Noon": "Noon",
"Not Currently Available": "\u5f53\u524d\u4e0d\u53ef\u7528",
"Not Graded": "\u5c1a\u672a\u8bc4\u5206",
"Not Selected": "\u672a\u9009\u4e2d",
@@ -1157,7 +1137,6 @@
"Notes": "\u7b14\u8bb0",
"Notes hidden": "\u6ce8\u91ca\u5df2\u9690\u85cf",
"Notes visible": "\u6ce8\u91ca\u53ef\u89c1",
- "Now": "Now",
"Number Sent": "\u53d1\u9001\u6570\u76ee",
"Number of Droppable": "\u53ef\u653e\u5f03\u7684\u6570\u91cf",
"Numbered List (Ctrl+O)": "\u6709\u5e8f\u5217\u8868(Ctrl+O)",
@@ -1171,7 +1150,6 @@
"Onboarding Exam": "\u5165\u804c\u8003\u8bd5",
"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.": "\u5b8c\u6210\u5176\u4e2d\u4e00\u4e2a\u8bfe\u7a0b\u8981\u6c42\u540e\uff0c\u60a8\u5c06\u62e5\u6709\u4e00\u4e2a\u8bfe\u7a0b\u8bb0\u5f55\u3002\u4e00\u65e6\u6ee1\u8db3\u6240\u6709\u8bfe\u7a0b\u8981\u6c42\uff0c\u6b64\u8bb0\u5f55\u5c31\u4f1a\u6807\u8bb0\u4e3a\u5df2\u5b8c\u6210\u3002\u8bfe\u7a0b\u8bb0\u5f55\u53ef\u7528\u4e8e\u7ee7\u7eed\u60a8\u7684\u5b66\u4e60\u4e4b\u65c5\uff0c\u5e76\u5411\u5176\u4ed6\u4eba\u5c55\u793a\u60a8\u7684\u5b66\u4e60\u7ecf\u5386\u3002",
"One or more rescheduling tasks failed.": "\u4e00\u9879\u6216\u51e0\u9879\u6539\u671f\u4efb\u52a1\u5931\u8d25\u4e86\u3002",
- "Only <%= fileTypes %> files can be uploaded. Please select a file ending in <%= fileExtensions %> to upload.": "\u53ea\u6709 <%= fileTypes %> \u683c\u5f0f\u7684\u6587\u4ef6\u53ef\u4ee5\u4e0a\u4f20\u3002\u8bf7\u9009\u62e9\u6269\u5c55\u540d\u4e3a <%= fileExtensions %> \u7684\u6587\u4ef6\u4e0a\u4f20\u3002",
"Only properly formatted .csv files will be accepted.": "\u53ea\u6709\u6807\u51c6\u7684CSV\u683c\u5f0f\u6587\u4ef6\u4f1a\u88ab\u63a5\u53d7\u3002",
"Only the parent course staff of a CCX can create content groups.": "\u53ea\u6709CCX\u8bfe\u7a0b\u7684\u4e3b\u6559\u5458\u624d\u53ef\u521b\u5efa\u5185\u5bb9\u7ec4\u3002",
"Open Calculator": "\u5f00\u542f\u8ba1\u7b97\u5668",
@@ -1357,7 +1335,6 @@
"Removal is in progress. To avoid errors, stay on this page until the process is complete.": "\u6b63\u5728\u79fb\u9664\u3002\u4e3a\u907f\u514d\u53d1\u751f\u9519\u8bef\uff0c\u5728\u4e0a\u4f20\u5b8c\u6210\u524d\u8bf7\u4e0d\u8981\u79bb\u5f00\u672c\u9875\u3002",
"Remove": "\u79fb\u9664",
"Remove Transcript": "\u79fb\u9664\u5b57\u5e55",
- "Remove all": "Remove all",
"Remove chapter %(chapterDisplayName)s": "\u5220\u9664\u7ae0\u8282 %(chapterDisplayName)s",
"Remove file": "\u79fb\u9664\u6587\u4ef6",
"Remove from Invalidation Table": "\u4ece\u65e0\u6548\u8868\u683c\u4e2d\u5220\u9664",
@@ -1470,7 +1447,6 @@
"Share on Mozilla Backpack": "\u5206\u4eab\u5230 Mozilla Backpack \u4e0a",
"Share your \"%(display_name)s\" award": "\u5206\u4eab\u60a8\u7684 \"%(display_name)s\" \u5956\u52b1",
"Short explanation": "\u7b80\u8981\u8bf4\u660e",
- "Show": "Show",
"Show All": "\u5168\u90e8\u663e\u793a",
"Show Annotations": "\u663e\u793a\u6279\u6ce8",
"Show Deprecated Settings": "\u663e\u793a\u5df2\u8fc7\u65f6\u7684\u8bbe\u7f6e",
@@ -1640,7 +1616,6 @@
"Textbook Name": "\u8bfe\u672c\u540d\u79f0",
"Textbook information": "\u8bfe\u672c\u4fe1\u606f",
"Textbook name is required": "\u6559\u6750\u540d\u79f0\u5fc5\u586b",
- "Thank you %(full_name)s! We have received your payment for %(course_name)s.": "\u8c22\u8c22\u60a8\uff0c%(full_name)s\uff01\u6211\u4eec\u5df2\u7ecf\u6536\u5230\u4e86\u60a8\u4e3a%(course_name)s\u7684\u4ed8\u6b3e\u3002",
"Thank you for setting your course goal to {goal}!": "\u611f\u8c22\u60a8\u5c06\u8bfe\u7a0b\u76ee\u6807\u5b9a\u4e3a{goal}\uff01",
"Thank you for submitting your financial assistance application for {course_name}! You can expect a response in 2-4 business days.": "\u611f\u8c22\u60a8\u63d0\u4ea4 {course_name} \u7684\u7ecf\u6d4e\u63f4\u52a9\u7533\u8bf7\uff01\u60a8\u5c06\u5728 2 \u81f3 4 \u4e2a\u5de5\u4f5c\u65e5\u5185\u5f97\u5230\u56de\u590d\u3002",
"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.": "\u611f\u8c22\u63d0\u4ea4\u60a8\u7684\u7167\u7247\uff0c\u6211\u4eec\u7a0d\u540e\u5c06\u8fdb\u884c\u5ba1\u6838\u3002\u60a8\u73b0\u5728\u5c31\u53ef\u4ee5\u53bb\u52a0\u5165%(platformName)s\u4e0a\u4efb\u4f55\u63d0\u4f9b\u8ba4\u8bc1\u8bc1\u4e66\u7684\u8bfe\u7a0b\u3002\u8ba4\u8bc1\u6709\u6548\u671f\u4e3a\u4e00\u5e74\u3002\u4e00\u5e74\u540e\uff0c\u60a8\u9700\u8981\u91cd\u65b0\u63d0\u4ea4\u7167\u7247\u8fdb\u884c\u8ba4\u8bc1\u3002",
@@ -1653,8 +1628,6 @@
"The certificate for this learner has been re-validated and the system is re-running the grade for this learner.": "\u8fd9\u540d\u5b66\u751f\u7684\u8bc1\u4e66\u5df2\u7ecf\u91cd\u65b0\u9a8c\u8bc1\u53ca\u7cfb\u7edf\u91cd\u65b0\u8ba1\u7b97\u8be5\u540d\u5b66\u751f\u7684\u6210\u7ee9\u3002",
"The cohort cannot be added": "\u8be5\u7fa4\u7ec4\u4e0d\u80fd\u6dfb\u52a0",
"The cohort cannot be saved": "\u8be5\u7fa4\u7ec4\u4e0d\u80fd\u4fdd\u5b58",
- "The combined length of the organization and library code fields cannot be more than <%=limit%> characters.": "\u673a\u6784\u548c\u77e5\u8bc6\u5e93\u7f16\u53f7\u5b57\u6bb5\u5408\u5728\u4e00\u8d77\u4e0d\u80fd\u8d85\u8fc7 <%=limit%> \u4e2a\u5b57\u7b26",
- "The combined length of the organization, course number, and course run fields cannot be more than <%=limit%> characters.": "\u673a\u6784\u3001\u8bfe\u7a0b\u7f16\u53f7\u548c\u5f00\u8bfe\u65f6\u95f4\u5b57\u6bb5\u5408\u5728\u4e00\u8d77\u4e0d\u80fd\u8d85\u8fc7 <%=limit%> \u4e2a\u5b57\u7b26\u3002",
"The country or region where you live.": "\u60a8\u6240\u5c45\u4f4f\u7684\u56fd\u5bb6\u6216\u5730\u533a\u3002",
"The country that team members primarily identify with.": "\u591a\u6570\u56e2\u961f\u6210\u5458\u6765\u81ea\u7684\u56fd\u5bb6",
"The course end date must be later than the course start date.": "\u8bfe\u7a0b\u7ed3\u675f\u65e5\u671f\u5fc5\u987b\u665a\u4e8e\u8bfe\u7a0b\u5f00\u59cb\u65e5\u671f\u3002",
@@ -1681,7 +1654,6 @@
"The minimum completion percentage must be a whole number between 0 and 100.": "\u6700\u4f4e\u5b8c\u6210\u7387\u5fc5\u987b\u4e3a0-100\u7684\u6574\u6570\u3002",
"The minimum grade for course credit is not set.": "\u5c1a\u672a\u8bbe\u7f6e\u80fd\u83b7\u53d6\u8bfe\u7a0b\u5b66\u5206\u7684\u6700\u4f4e\u5206\u503c\u3002",
"The minimum score percentage must be a whole number between 0 and 100.": "\u5206\u6570\u767e\u5206\u6bd4\u7684\u6700\u5c0f\u503c\u5fc5\u987b\u662f\u57280\u5230100\u4e4b\u95f4\u7684\u6574\u6570\u3002",
- "The more you tell us, the more quickly and helpfully we can respond!": "\u60a8\u63d0\u4f9b\u7684\u4fe1\u606f\u8d8a\u8be6\u7ec6\uff0c\u6211\u4eec\u8d8a\u80fd\u5feb\u901f\u5e76\u6709\u6548\u5730\u5e2e\u52a9\u5230\u60a8\uff01",
"The name of this signatory as it should appear on certificates.": "\u7b7e\u53d1\u8005\u5728\u8bc1\u4e66\u4e0a\u663e\u793a\u7684\u540d\u5b57",
"The name that identifies you on {platform_name}. You cannot change your username.": "\u60a8\u5728{platform_name}\u4e0a\u7684\u540d\u5b57\uff0c\u7528\u6237\u540d\u65e0\u6cd5\u66f4\u6539\u3002",
"The name that is used for ID verification and that appears on your certificates.": "\u7528\u4e8e\u8eab\u4efd\u8ba4\u8bc1\u548c\u663e\u793a\u5728\u8bc1\u4e66\u4e0a\u7684\u59d3\u540d\u3002",
@@ -1770,8 +1742,6 @@
"This image is for decorative purposes only and does not require a description.": "\u6b64\u56fe\u7247\u4ec5\u4f5c\u88c5\u9970\u7528\uff0c\u65e0\u9700\u63cf\u8ff0\u3002",
"This is the Description of the Group Configuration": "\u8fd9\u662f\u7ec4\u914d\u7f6e\u7684\u63cf\u8ff0",
"This is the Name of the Group Configuration": "\u8fd9\u662f\u7ec4\u914d\u7f6e\u7684\u540d\u79f0",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
"This is the name of the group": "\u8fd9\u91cc\u8f93\u5165\u7ec4\u7684\u540d\u5b57",
"This learner is currently sharing a limited profile.": "\u8be5\u5b66\u751f\u5f53\u524d\u516c\u5f00\u90e8\u5206\u4e2a\u4eba\u4fe1\u606f\u3002",
"This link will open in a modal window": "\u8be5\u94fe\u63a5\u5c06\u5728\u6a21\u5f0f\u7a97\u53e3\u4e2d\u6253\u5f00",
@@ -1826,7 +1796,6 @@
"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.": "\u8981\u786e\u4fdd\u6240\u6709\u5b66\u751f\u90fd\u80fd\u770b\u5230\u89c6\u9891\uff0c\u6211\u4eec\u5efa\u8bae\u60a8\u540c\u65f6\u63d0\u4f9b.mp4\u7248\u672c\u548c.webm\u7248\u672c\u7684\u89c6\u9891\u3002\u70b9\u51fb\u4e0b\u65b9\u6309\u94ae\u6dfb\u52a0\u53e6\u4e00\u4e2a\u7248\u672c\u7684URL\uff08\u8bf7\u52ff\u4f7f\u7528YouTube\u7684URL\uff09\uff0c\u5b66\u751f\u5c06\u4f1a\u770b\u5230\u5217\u8868\u4e2d\u7b2c\u4e00\u4e2a\u4e0e\u5176\u8ba1\u7b97\u673a\u517c\u5bb9\u7684\u89c6\u9891\u3002",
"To complete the program, you must earn a verified certificate for each course.": "\u60a8\u5fc5\u987b\u6bcf\u95e8\u8bfe\u7a0b\u90fd\u83b7\u5f97\u8bc1\u4e66\uff0c\u624d\u53ef\u4ee5\u5b8c\u6210\u6b64\u8bfe\u7a0b\u65b9\u6848\u3002",
"To continue learning with this account, sign in below.": "\u5982\u9700\u7ee7\u7eed\u4f7f\u7528\u6b64\u8d26\u53f7\u5b66\u4e60\uff0c\u8bf7\u70b9\u51fb\u4ee5\u4e0b\u6309\u94ae\u767b\u5f55\u3002",
- "To finalize course credit, %(display_name)s requires %(platform_name)s learners to submit a credit request.": "\u8981\u5b8c\u6210\u8bfe\u7a0b\u5b66\u5206\uff0c%(display_name)s \u8981\u6c42 %(platform_name)s \u5b66\u5458\u63d0\u4ea4\u4e00\u4efd\u5b66\u5206\u7533\u8bf7\u3002",
"To invalidate a certificate for a particular learner, add the username or email address below.": "\u8981\u8bbe\u5b9a\u67d0\u4e2a\u7279\u5b9a\u5b66\u5458\u7684\u8bc1\u4e66\u65e0\u6548\uff0c\u8bf7\u5728\u4e0b\u9762\u6dfb\u52a0\u76f8\u5e94\u7684\u7528\u6237\u540d\u6216\u90ae\u7bb1\u3002",
"To pass this exam, you must complete the problems in the time allowed.": "\u60a8\u5fc5\u987b\u5728\u65f6\u9650\u5185\u5b8c\u6210\u9898\u76ee\u624d\u53ef\u4ee5\u901a\u8fc7\u8003\u8bd5\u3002",
"To receive a certificate, you must also verify your identity before {date}.": "\u8981\u83b7\u5f97\u8bc1\u4e66\uff0c\u60a8\u5fc5\u987b\u5728 {date} \u4e4b\u524d\u9a8c\u8bc1\u60a8\u7684\u8eab\u4efd\u3002",
@@ -1836,10 +1805,8 @@
"To share your certificate on Mozilla Backpack, you must first have a Backpack account. Complete the following steps to add your certificate to Backpack.": "\u8981\u5728 Mozilla Backpack \u4e0a\u5206\u4eab\u60a8\u7684\u8bc1\u4e66\uff0c\u60a8\u5fc5\u987b\u9996\u5148\u62e5\u6709\u4e00\u4e2aBackpack\u8d26\u53f7\u3002\u901a\u8fc7\u5b8c\u6210\u4ee5\u4e0b\u6b65\u9aa4\u5c06\u60a8\u7684\u8bc1\u4e66\u6dfb\u52a0\u81f3 Backpack\u3002",
"To take a successful photo, make sure that:": "\u4e3a\u4e86\u7167\u76f8\u6210\u529f\uff0c\u8bf7\u786e\u4fdd\uff1a",
"To verify your identity, you need a webcam and a government-issued photo ID.": "\u8981\u9a8c\u8bc1\u60a8\u7684\u8eab\u4efd\uff0c\u60a8\u9700\u8981\u4e00\u4e2a\u7f51\u7edc\u6444\u50cf\u5934\u548c\u4e00\u5f20\u653f\u5e9c\u7b7e\u53d1\u7684\u6709\u7167\u7247\u7684\u8eab\u4efd\u8bc1\u4ef6\u3002",
- "Today": "Today",
"Toggle Account Password (Usable/Unusable)": "\u5207\u6362\u8d26\u53f7\u5bc6\u7801 \uff08\u53ef\u7528/\u4e0d\u53ef\u7528\uff09",
"Toggle Notifications Setting": "\u5207\u6362\u901a\u77e5\u8bbe\u7f6e",
- "Tomorrow": "Tomorrow",
"Tools": "\u5de5\u5177",
"Top": "\u9876\u7aef",
"Topic": "\u4e3b\u9898",
@@ -1862,7 +1829,6 @@
"Turn on transcripts": "\u6253\u5f00\u5b57\u5e55",
"Type": "\u7c7b\u578b",
"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')": "\u8f93\u5165\u4e00\u4e2a\u7f51\u5740\uff0c\u6216\u6309\u4e0b\u201c\u9009\u62e9\u6587\u4ef6\u201d\u6309\u94ae\u6765\u4e0a\u4f20\u6587\u4ef6\u3002(\u4f8b\u5982'http://example.com/img/clouds.jpg')",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
"URL": "URL",
"Unable to delete account": "\u65e0\u6cd5\u5220\u9664\u8d26\u53f7",
"Unable to determine whether we should give you a refund because of System Error. Please try again later.": "\u7cfb\u7edf\u53d1\u751f\u9519\u8bef\uff0c\u65e0\u6cd5\u5224\u65ad\u662f\u5426\u5e94\u7ed9\u60a8\u9000\u6b3e\uff0c\u8bf7\u7a0d\u540e\u91cd\u8bd5\u3002",
@@ -1914,7 +1880,6 @@
"Upload Videos": "\u4e0a\u4f20\u89c6\u9891",
"Upload a CSV file": "\u4e0a\u4f20 CSV \u6587\u4ef6",
"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.": "\u4e0a\u4f20\u4e00\u4e2a\u7528\u9017\u53f7\u9694\u5f00\u7684\u503c (.csv) \u6587\u4ef6\uff0c\u6587\u4ef6\u8981\u5305\u542b\u83b7\u5f97\u7279\u4f8b\u7684\u5b66\u5458\u7684\u7528\u6237\u540d\u6216\u90ae\u7bb1\u3002\u5c06\u7528\u6237\u540d\u6216\u90ae\u7bb1\u5217\u5165\u7b2c\u4e00\u4e2a\u9017\u53f7\u9694\u5f00\u7684\u5b57\u6bb5\u4e2d\u3002\u60a8\u53ef\u4ee5\u5728\u7b2c\u4e8c\u4e2a\u7528\u9017\u53f7\u9694\u5f00\u7684\u5b57\u6bb5\u4e2d\u8f93\u5165\u7279\u6b8a\u5904\u7406\u7684\u539f\u56e0\u63cf\u8ff0\u3002",
- "Upload a new PDF to \u201c<%= name %>\u201d": "\u4e0a\u4f20\u65b0\u7684PDF\u6587\u4ef6\u81f3\u201c<%= name %>\u201d",
"Upload an image": "\u4e0a\u4f20\u56fe\u7247",
"Upload an image or capture one with your web or phone camera.": "\u4e0a\u4f20\u7167\u7247\u6216\u901a\u8fc7\u4f7f\u7528\u60a8\u7684\u7f51\u7edc\uff0f\u624b\u673a\u6444\u50cf\u5934\u62cd\u7167\u4e0a\u4f20\u3002",
"Upload completed": "\u4e0a\u4f20\u5b8c\u6210",
@@ -1967,7 +1932,6 @@
"Verified Certificate upgrade": "\u8ba4\u8bc1\u8bc1\u4e66\u5347\u7ea7",
"Verified Status": "\u9a8c\u8bc1\u72b6\u6001",
"Verified mode price": "\u901a\u8fc7\u9a8c\u8bc1\u7684\u6a21\u5f0f\u4ef7\u683c",
- "Verify Now": "\u73b0\u5728\u8ba4\u8bc1",
"Version": "\u7248\u672c",
"Vertical space": "\u5782\u76f4\u95f4\u8ddd",
"Very loud": "\u97f3\u91cf\u6700\u5927",
@@ -2010,7 +1974,6 @@
"We couldn't find any results for \"%s\".": "\u6211\u4eec\u627e\u4e0d\u5230\u6709\u5173\u201c%s\u201d\u7684\u4efb\u4f55\u7ed3\u679c\u3002",
"We couldn't sign you in.": "\u767b\u5f55\u5931\u8d25\u3002",
"We have encountered an error. Refresh your browser and then try again.": "\u53d1\u751f\u9519\u8bef\uff0c\u8bf7\u5237\u65b0\u60a8\u7684\u6d4f\u89c8\u5668\u5e76\u91cd\u8bd5\u3002",
- "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.": "\u6211\u4eec\u5df2\u7ecf\u6536\u5230\u60a8\u7684\u4fe1\u606f\u5e76\u6b63\u5728\u9a8c\u8bc1\u60a8\u7684\u8eab\u4efd\u3002\u9a8c\u8bc1\u6d41\u7a0b\u7ed3\u675f\u540e(\u4e00\u822c\u5728 1-2 \u5929\u5185)\uff0c\u60a8\u5c06\u5728\u60a8\u7684\u63a7\u5236\u9762\u677f\u4e0a\u6536\u5230\u4e00\u6761\u6d88\u606f\u3002\u4e0e\u6b64\u540c\u65f6\uff0c\u60a8\u4ecd\u7136\u53ef\u4ee5\u8bbf\u95ee\u6240\u6709\u7684\u8bfe\u7a0b\u5185\u5bb9\u3002",
"We just need a little more information before you start learning with %(platformName)s.": "\u60a8\u53ea\u9700\u518d\u591a\u63d0\u4f9b\u4e00\u70b9\u4fe1\u606f\u5c31\u53ef\u4ee5\u5f00\u59cb\u5728%(platformName)s\u5b66\u4e60\u4e86\u3002",
"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.": "\u6211\u4eec\u4f1a\u91c7\u7528\u6700\u9ad8\u7ea7\u522b\u7684\u5b89\u5168\u6280\u672f\u6765\u52a0\u5bc6\u60a8\u7684\u7167\u7247\u5e76\u53d1\u9001\u5230\u6211\u4eec\u7684\u6388\u6743\u670d\u52a1\u7528\u4e8e\u5ba1\u6838\u76ee\u7684\uff1b\u4e00\u65e6\u5b8c\u6210\u4e86\u8ba4\u8bc1\u8fc7\u7a0b\uff0c%(platformName)s\u4e0d\u4f1a\u7ee7\u7eed\u4fdd\u5b58\u8fd9\u4e9b\u7167\u7247\u548c\u4fe1\u606f\u3002",
"We're sorry to see you go! Your account will be deleted shortly.": "\u5f88\u9057\u61be\u60a8\u8981\u79bb\u5f00\uff01\u60a8\u7684\u8d26\u53f7\u5c06\u5f88\u5feb\u88ab\u5220\u9664\u3002",
@@ -2043,7 +2006,6 @@
"Yes, allow edits to the active Certificate": "\u662f\u7684\uff0c\u5141\u8bb8\u7f16\u8f91\u6fc0\u6d3b\u7684\u8bc1\u4e66",
"Yes, delete this {xblock_type}": "\u662f\u7684\uff0c\u5220\u9664\u8be5 {xblock_type}",
"Yes, replace the edX transcript with the YouTube transcript": "\u662f\u7684\uff0c\u7528 YouTube \u5b57\u5e55\u66ff\u6362 edX \u5b57\u5e55\u3002",
- "Yesterday": "Yesterday",
"You already have an edX account with your {enterprise_name} email address.": "\u60a8\u5df2\u4f7f\u7528\u90ae\u7bb1{enterprise_name}\u6ce8\u518cedX\u8d26\u53f7\u3002",
"You are a member of this team.": "\u60a8\u662f\u8fd9\u4e2a\u56e2\u961f\u7684\u6210\u5458\u3002",
"You are currently sharing a limited profile.": "\u60a8\u5f53\u524d\u516c\u5f00\u90e8\u5206\u4e2a\u4eba\u4fe1\u606f\u3002",
@@ -2087,13 +2049,10 @@
"You have not created any certificates yet.": "\u60a8\u5c1a\u672a\u521b\u5efa\u4efb\u4f55\u8bc1\u4e66\u3002",
"You have not created any content groups yet.": "\u60a8\u8fd8\u6ca1\u6709\u521b\u5efa\u4efb\u4f55\u5185\u5bb9\u7ec4\u3002",
"You have not created any group configurations yet.": "\u60a8\u8fd8\u6ca1\u6709\u521b\u5efa\u4efb\u4f55\u7ec4\u914d\u7f6e\u3002",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
"You have set your language to {beta_language}, which is currently not fully translated. You can help us translate this language fully by joining the Transifex community and adding translations from English for learners that speak {beta_language}.": "\u60a8\u5df2\u5c06\u8bed\u8a00\u8bbe\u7f6e\u4e3a{beta_language}\uff0c\u76ee\u524d\u5c1a\u672a\u5b8c\u5168\u7ffb\u8bd1\u3002 \u60a8\u53ef\u4ee5\u52a0\u5165Transifex\u793e\u533a\uff0c\u5e76\u4e3a\u4f7f\u7528{beta_language}\u7684\u5b66\u5458\u6dfb\u52a0\u82f1\u8bed\u7ffb\u8bd1\uff0c\u4ece\u800c\u5e2e\u52a9\u6211\u4eec\u5145\u5206\u7ffb\u8bd1\u8fd9\u95e8\u8bed\u8a00\u3002",
"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.": "\u60a8\u5df2\u6210\u529f\u767b\u5f55%(currentProvider)s\uff0c\u4f46\u6b64%(currentProvider)s\u8d26\u53f7\u5c1a\u672a\u5173\u8054\u5230%(platformName)s\u8d26\u53f7\u3002\u8981\u5173\u8054\u8d26\u53f7\uff0c\u8bf7\u4f7f\u7528\u60a8\u7684%(platformName)s\u5bc6\u7801\u767b\u5f55\u3002",
"You have successfully updated your goal.": "\u60a8\u5df2\u6210\u529f\u66f4\u65b0\u76ee\u6807\u3002",
"You have unsaved changes are you sure you want to navigate away?": "\u6709\u672a\u4fdd\u5b58\u7684\u66f4\u6539\uff0c\u786e\u5b9a\u8981\u79bb\u5f00\u5417\uff1f",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.",
"You have unsaved changes. Do you really want to leave this page?": "\u60a8\u6709\u5c1a\u672a\u4fdd\u5b58\u7684\u4fee\u6539\uff0c\u786e\u5b9a\u8981\u79bb\u6b64\u9875\u9762\u5417\uff1f",
"You haven't added any assets to this course yet.": "\u60a8\u5c1a\u672a\u5411\u8be5\u8bfe\u7a0b\u6dfb\u52a0\u4efb\u4f55\u8d44\u6e90\u3002",
"You haven't added any content to this course yet.": "\u60a8\u5c1a\u672a\u5411\u8be5\u8bfe\u7a0b\u6dfb\u52a0\u4efb\u4f55\u5185\u5bb9\u3002",
@@ -2113,7 +2072,6 @@
"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.": "\u5728\u9009\u8bfe\u4e4b\u524d\u60a8\u9700\u8981\u5148\u6fc0\u6d3b\u60a8\u7684\u8d26\u53f7\uff0c\u8bf7\u68c0\u67e5\u6536\u4ef6\u7bb1\u4e2d\u7684\u6fc0\u6d3b\u90ae\u4ef6\u3002\u5f53\u60a8\u5b8c\u6210\u6fc0\u6d3b\u540e\uff0c\u60a8\u53ef\u4ee5\u8fd4\u56de\u5e76\u5237\u65b0\u672c\u9875\u9762\u3002",
"You receive messages from {platform_name} and course teams at this address.": "\u6b64\u90ae\u7bb1\u7528\u4e8e\u63a5\u6536\u6765\u81ea{platform_name}\u548c\u8bfe\u7a0b\u56e2\u961f\u7684\u4fe1\u606f\u3002",
"You reserve all rights for your work": "\u60a8\u5bf9\u60a8\u6240\u4f5c\u51fa\u7684\u8d21\u732e\u4fdd\u7559\u6240\u6709\u6743\u5229",
- "You still need to visit the %(display_name)s website to complete the credit process.": "\u60a8\u4ecd\u7136\u9700\u8981\u8bbf\u95ee %(display_name)s \u7f51\u7ad9\u5b8c\u6210\u5b66\u5206\u9886\u53d6\u6d41\u7a0b\u3002",
"You submitted {filename}; only {allowedFiles} are allowed.": "\u60a8\u63d0\u4ea4\u4e86 {filename}\uff1b\u4ec5\u652f\u6301\u63d0\u4ea4 {allowedFiles} \u683c\u5f0f\u7684\u6587\u4ef6\u3002",
"You waive some rights for your work, such that others can use it too": "\u60a8\u9700\u8981\u5bf9\u60a8\u6240\u505a\u7684\u8d21\u732e\u653e\u5f03\u90e8\u5206\u6743\u5229\uff0c\u4f8b\u5982\u4ed6\u4eba\u4e5f\u53ef\u4ee5\u4f7f\u7528\u60a8\u7684\u6210\u679c",
"You will be refunded the amount you paid.": "\u60a8\u5c06\u4f1a\u6536\u5230\u5168\u989d\u9000\u6b3e\u3002",
@@ -2207,7 +2165,6 @@
"enter code here": "\u6b64\u5904\u8f93\u5165\u4ee3\u7801",
"enter link description here": "\u6b64\u5904\u8f93\u5165\u94fe\u63a5\u7684\u63cf\u8ff0",
"for": "\u7684",
- "for {courseName}": "\u4e3a{courseName}\u8bfe\u7a0b",
"group configuration": "\u7ec4\u914d\u7f6e",
"image omitted": "\u7701\u7565\u7684\u56fe\u7247",
"incorrect": "\u4e0d\u6b63\u786e",
diff --git a/cms/static/js/i18n/zh-hk/djangojs.js b/cms/static/js/i18n/zh-hk/djangojs.js
index a81c827e53..5e1878aa25 100644
--- a/cms/static/js/i18n/zh-hk/djangojs.js
+++ b/cms/static/js/i18n/zh-hk/djangojs.js
@@ -12,42 +12,6 @@
django.catalog = django.catalog || {};
- var newcatalog = {
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected",
- "%(sel)s of %(cnt)s selected"
- ],
- "6 a.m.": "6 a.m.",
- "Available %s": "Available %s",
- "Cancel": "Cancel",
- "Choose": "Choose",
- "Choose a time": "Choose a time",
- "Choose all": "Choose all",
- "Chosen %s": "Chosen %s",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
- "Filter": "Filter",
- "Hide": "Hide",
- "Midnight": "Midnight",
- "Noon": "Noon",
- "Now": "Now",
- "Remove": "Remove",
- "Remove all": "Remove all",
- "Show": "Show",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
- "Today": "Today",
- "Tomorrow": "Tomorrow",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
- "Yesterday": "Yesterday",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost."
- };
- for (var key in newcatalog) {
- django.catalog[key] = newcatalog[key];
- }
-
if (!django.jsi18n_initialized) {
django.gettext = function(msgid) {
diff --git a/cms/static/js/i18n/zh-tw/djangojs.js b/cms/static/js/i18n/zh-tw/djangojs.js
index a8ba801bae..ddccbb9507 100644
--- a/cms/static/js/i18n/zh-tw/djangojs.js
+++ b/cms/static/js/i18n/zh-tw/djangojs.js
@@ -41,9 +41,6 @@
"%(num_students)s student opened Subsection": [
"%(num_students)s \u4f4d\u5b78\u751f\u958b\u555f\u5c0f\u7bc0"
],
- "%(sel)s of %(cnt)s selected": [
- "%(sel)s of %(cnt)s selected"
- ],
"%(team_count)s Team": [
"%(team_count)s \u500b\u5718\u968a"
],
@@ -53,7 +50,6 @@
"(\u5305\u542b%(student_count)s\u5b78\u751f)"
],
"(optional)": "(\u53ef\u9078\u586b)",
- "6 a.m.": "6 a.m.",
"<%= user %> already in exception list.": "<%= user %> \u5df2\u5728\u7279\u4f8b\u540d\u55ae\u4e2d\u3002",
"<%= user %> has been successfully added to the exception list. Click Generate Exception Certificate below to send the certificate.": "\u5df2\u7d93\u6210\u529f\u65b0\u589e<%= user %>\u5230\u7279\u4f8b\u540d\u55ae\u4e2d\u3002\u8acb\u9ede\u64ca\u4e0b\u9762\u7684\u7522\u751f\u7279\u4f8b\u8b49\u66f8\u4e26\u767c\u9001\u8b49\u66f8\u3002",
"A driver's license, passport, or government-issued ID with your name and photo.": "\u4e00\u5f35\u99d5\u7167\u3001\u8b77\u7167\uff0c\u6216\u653f\u5e9c\u7c3d\u767c\u7684\u8b49\u4ef6\uff0c\u9700\u5305\u542b\u60a8\u7684\u59d3\u540d\u548c\u7167\u7247\u3002",
@@ -122,7 +118,6 @@
"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.": "\u9032\u884c\u60a8\u81c9\u90e8\u7684\u62cd\u651d\u53ca\u653f\u5e9c\u6838\u767cID\u7167\u7247\uff0c\u4f5c\u70ba\u9a57\u8b49\u904e\u7a0b\u7684\u4e00\u90e8\u5206\u3002\u6211\u5011\u7684\u9a57\u8b49\u670d\u52d9\u900f\u904e\u6bd4\u8f03\u60a8\u62cd\u651d\u7684\u7167\u7247\u53ca\u60a8ID\u4e0a\u7684\u7167\u7247\u4f86\u78ba\u8a8d\u60a8\u7684\u8eab\u5206\u3002",
"Assign students to cohorts by uploading a CSV file.": "\u4e0a\u50b3\u4e00\u500b CSV\u6a94\u6848\u4f86\u5206\u914d\u5b78\u751f\u5230\u5b78\u7fd2\u5925\u4f34\u7fa4\u7d44\u3002",
"Automatic": "\u81ea\u52d5",
- "Available %s": "Available %s",
"Back to sign in": "\u8fd4\u56de\u767b\u5165\u9801\u9762",
"Back to {platform} FAQs": "\u56de\u5230 {platform} FAQs",
"Basic": "\u57fa\u672c",
@@ -160,23 +155,17 @@
"Checkout": "\u7d50\u5e33",
"Checkout with PayPal": "\u7528PayPal\u7d50\u5e33",
"Checkout with {processor}": "\u4ee5 {processor} \u7d50\u5e33",
- "Choose": "Choose",
"Choose File": "\u9078\u64c7\u6a94\u6848",
"Choose One": "\u8acb\u9078\u64c7",
"Choose a .csv file": "\u9078\u64c7\u4e00\u500b.csv\u6a94\u6848",
"Choose a content group to associate": "\u9078\u64c7\u4e00\u500b\u6709\u95dc\u806f\u7684\u5167\u5bb9\u7fa4\u7d44",
- "Choose a time": "Choose a time",
- "Choose all": "Choose all",
"Choose one": "\u8acb\u9078\u64c7",
"Choose your institution from the list below:": "\u5f9e\u4e0b\u9762\u7684\u5217\u8868\u4e2d\u9078\u64c7\u60a8\u7684\u6a5f\u69cb\uff1a",
- "Chosen %s": "Chosen %s",
"Clear All": "\u6e05\u9664\u5168\u90e8",
"Clear search": "\u6e05\u9664\u641c\u5c0b",
"Clear search results": "\u6e05\u9664\u641c\u5c0b\u7d50\u679c",
"Click to change": "\u9ede\u64ca\u4ee5\u8b8a\u66f4",
- "Click to choose all %s at once.": "Click to choose all %s at once.",
"Click to edit": "\u9ede\u64ca\u4ee5\u7de8\u8f2f",
- "Click to remove all chosen %s at once.": "Click to remove all chosen %s at once.",
"Close": "\u95dc\u9589",
"Code": "\u4ee3\u78bc",
"Code Sample (Ctrl+K)": "\u4ee3\u78bc\u793a\u4f8b (Ctrl+K)",
@@ -325,7 +314,6 @@
"File types can not be empty.": "\u6a94\u6848\u985e\u578b\u4e0d\u53ef\u7a7a\u767d\u3002",
"File {filename} exceeds maximum size of {maxFileSizeInMBs} MB": "\u6a94\u6848{filename}\u8d85\u904e{maxFileSizeInMBs} MB\u7684\u6700\u5927\u5bb9\u91cf",
"Files must be in JPEG or PNG format.": "\u6a94\u6848\u5fc5\u9808\u662fJPEG\u6216\u8005PNG\u683c\u5f0f",
- "Filter": "Filter",
"Filter and sort topics": "\u7be9\u9078\u548c\u6392\u5e8f\u8b70\u984c",
"Financial Assistance": "\u7d93\u6fdf\u8cc7\u52a9",
"Financial Assistance Application": "\u7d93\u6fdf\u63f4\u52a9\u7533\u8acb",
@@ -352,7 +340,6 @@
"Heading": "\u6a19\u984c",
"Heading (Ctrl+H)": "\u6a19\u984c (Ctrl+H)",
"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.": "\u900f\u904e\u70ba\u4f60\u5011\u5718\u968a\u660e\u78ba\u4ecb\u7d39\u7279\u8272\uff0c\u6709\u5229\u65bc\u5176\u4ed6\u5b78\u7fd2\u8005\u6c7a\u5b9a\u662f\u5426\u52a0\u5165\u4f60\u7684\u5718\u968a\u3002\u8acb\u614e\u91cd\u9078\u64c7\uff0c\u56e0\u70ba\u5982\u679c\u904e\u65bc\u56b4\u683c\uff0c\u5c07\u5c0e\u81f4\u6709\u8208\u8da3\u52a0\u5165\u4f60\u5718\u968a\u7684\u4eba\u8b8a\u5c11\u3002",
- "Hide": "Hide",
"Hide Deprecated Settings": "\u96b1\u85cf\u68c4\u7528\u7684\u8a2d\u5b9a",
"Hide Discussion": "\u96b1\u85cf\u8a0e\u8ad6",
"Hide content after due date": "\u5728\u622a\u6b62\u65e5\u671f\u904e\u5f8c\u96b1\u85cf\u5167\u5bb9",
@@ -440,7 +427,6 @@
"Max file size exceeded": "\u8d85\u904e\u6700\u5927\u6a94\u6848\u5bb9\u91cf",
"Membership": "\u6703\u54e1",
"Message:": "\u8a0a\u606f\uff1a",
- "Midnight": "Midnight",
"Module state successfully deleted.": "\u6210\u529f\u522a\u9664\u6a21\u584a\u72c0\u614b\u3002",
"More": "\u66f4\u591a",
"My Orders": "\u6211\u7684\u8a02\u55ae",
@@ -460,7 +446,6 @@
"No results": "\u67e5\u7121\u7d50\u679c",
"No results found for \"%(query_string)s\". Please try searching again.": "\u6c92\u6709\u627e\u5230 \"%(query_string)s\" \u7684\u7d50\u679c\u3002\u8acb\u518d\u5617\u8a66\u641c\u5c0b\u3002",
"No tasks currently running.": "\u672a\u6709\u4efb\u52d9\u5728\u9032\u884c\u4e2d\u3002",
- "Noon": "Noon",
"Not Currently Available": "\u76ee\u524d\u4e0d\u53ef\u7528",
"Not Selected": "\u672a\u9078\u53d6",
"Not Supported": "\u4e0d\u652f\u63f4",
@@ -473,7 +458,6 @@
"Notes": "\u7b46\u8a18",
"Notes hidden": "\u96b1\u85cf\u7b46\u8a18",
"Notes visible": "\u7b46\u8a18\u53ef\u898b",
- "Now": "Now",
"Number Sent": "\u5bc4\u9001\u6578\u91cf",
"Number of Students": "\u5b78\u751f\u6578\u91cf",
"Numbered List (Ctrl+O)": "\u7de8\u865f\u5217\u8868 (Ctrl+O)",
@@ -548,7 +532,6 @@
"Register with Institution/Campus Credentials": "\u4f7f\u7528\u6a5f\u69cb/\u5b78\u6821\u8a3b\u518a",
"Removal is in progress. To avoid errors, stay on this page until the process is complete.": "\u6b63\u5728\u79fb\u9664\u3002\u70ba\u4e86\u907f\u514d\u767c\u751f\u932f\u8aa4\uff0c\u8acb\u505c\u7559\u5728\u6b64\u9801\u9762\u76f4\u5230\u79fb\u9664\u5b8c\u7562\u3002",
"Remove": "\u79fb\u9664",
- "Remove all": "Remove all",
"Remove chapter %(chapterDisplayName)s": "\u522a\u9664\u7ae0 %(chapterDisplayName)s",
"Remove from Invalidation Table": "\u5f9e\u4f5c\u5ee2\u8868\u4e2d\u79fb\u9664",
"Remove from List": "\u5f9e\u6e05\u55ae\u79fb\u9664",
@@ -598,7 +581,6 @@
"Server Error, Please refresh the page and try again.": "\u4f3a\u670d\u5668\u932f\u8aa4\u3002\u8acb\u5237\u65b0\u9801\u9762\u4e26\u518d\u8a66\u4e00\u6b21\u3002",
"Set up your certificate": "\u5efa\u7acb\u60a8\u7684\u8b49\u66f8\u3002",
"Settings": "\u8a2d\u5b9a",
- "Show": "Show",
"Show Deprecated Settings": "\u986f\u793a\u68c4\u7528\u7684\u8a2d\u5b9a",
"Show Discussion": "\u986f\u793a\u8a0e\u8ad6",
"Show entire subsection": "\u5c55\u793a\u6240\u6709\u7684\u5c0f\u7bc0",
@@ -743,8 +725,6 @@
"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 edX partner manager.": "\u9019\u9580\u8ab2\u7a0b\u63a1\u7528\u81ea\u52d5\u70ba\u5df2\u78ba\u8a8d\u8ffd\u8e64\u5b78\u7fd2\u8005\u5206\u968a\u7684\u529f\u80fd\u3002\u60a8\u7121\u6cd5\u505c\u7528\u5206\u968a\uff0c\u4e5f\u7121\u6cd5\u5c07\u540d\u70ba '{verifiedCohortName}' \u7684\u624b\u52d5\u5206\u968a\u7d50\u679c\u91cd\u65b0\u547d\u540d\u3002\u82e5\u8981\u8b8a\u66f4\u5df2\u78ba\u8a8d\u8ffd\u8e64\u5206\u968a\u7684\u8a2d\u5b9a\uff0c\u8acb\u548c edX \u5925\u4f34\u7d93\u7406\u9023\u7d61\u3002",
"This feedback could not be submitted.": "\u9019\u689d\u53cd\u994b\u610f\u898b\u7121\u6cd5\u63d0\u4ea4\u3002",
"This image is for decorative purposes only and does not require a description.": "\u6b64\u5716\u7247\u50c5\u4f5c\u70ba\u8f14\u52a9\u7684\u7528\u9014\u4e26\u4e0d\u9700\u8981\u63cf\u8ff0\u3002",
- "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.": "This is the list of available %s. You may choose some by selecting them in the box below and then clicking the \"Choose\" arrow between the two boxes.",
- "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.": "This is the list of chosen %s. You may remove some by selecting them in the box below and then clicking the \"Remove\" arrow between the two boxes.",
"This learner will be removed from the team, allowing another learner to take the available spot.": "\u6b64\u6210\u54e1\u5c07\u88ab\u79fb\u9664\uff0c\u91cb\u51fa\u540d\u984d\u5f8c\u5176\u4ed6\u6210\u54e1\u53ef\u52a0\u5165\u3002",
"This page contains information about orders that you have placed with {platform_name}.": "\u6b64\u9801\u5305\u542b\u60a8\u900f\u904e{platform_name}\u767c\u51fa\u7684\u8a02\u55ae\u7684\u76f8\u95dc\u8a0a\u606f\u3002",
"This problem could not be saved.": "\u6b64\u554f\u984c\u7121\u6cd5\u5132\u5b58\u3002",
@@ -766,16 +746,13 @@
"To receive credit for problems, you must select \"Submit\" for each problem before you select \"End My Exam\".": "\u5982\u6536\u5230\u4fe1\u7528\u7684\u554f\u984c\uff0c\u5728\u60a8\u9078\u64c7\"\u7d50\u675f\u6211\u7684\u6e2c\u9a57\"\u4e4b\u524d\uff0c\u60a8\u5fc5\u9808\u70ba\u6bcf\u500b\u554f\u984c\u9ede\u64ca\"\u63d0\u4ea4\"\u6309\u9215\u3002",
"To take a successful photo, make sure that:": "\u70ba\u4e86\u6210\u529f\u5730\u62cd\u651d\u7167\u7247\uff0c\u8acb\u78ba\u4fdd\uff1a",
"To verify your identity, you need a webcam and a government-issued photo ID.": "\u70ba\u4e86\u9a57\u8b49\u4f60\u7684\u8eab\u5206\uff0c\u4f60\u5fc5\u9808\u8981\u6709\u4e00\u500b\u651d\u5f71\u93e1\u982d\u548c\u4e00\u5f35\u8b49\u4ef6\u7684\u7167\u7247\u3002",
- "Today": "Today",
"Toggle Notifications Setting": "\u5207\u63db\u901a\u77e5\u8a2d\u5b9a",
- "Tomorrow": "Tomorrow",
"Topic": "\u4e3b\u984c",
"Topics": "\u4e3b\u984c",
"Total": "\u7e3d\u6578",
"Try the transaction again in a few minutes.": "\u8acb\u7b49\u5f85\u5e7e\u5206\u9418\u5f8c\u518d\u5617\u8a66\u3002",
"Type": "\u985e\u578b",
"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')": "\u8f38\u5165\u4e00\u500b\u7db2\u5740\uff0c\u6216\u6309\u4e0b\u201c\u9078\u64c7\u6587\u4ef6\u201d\u7684\u6309\u9215\u4f86\u4e0a\u50b3\u6587\u4ef6\u3002(\u4f8b\u5982'http://example.com/img/clouds.jpg')",
- "Type into this box to filter down the list of available %s.": "Type into this box to filter down the list of available %s.",
"URL": "\u7db2\u5740",
"Unable to load": "\u7121\u6cd5\u8f09\u5165",
"Undo (Ctrl+Z)": "\u5fa9\u539f (Ctrl+Z)",
@@ -856,7 +833,6 @@
"Would you like to sign in using your %(providerName)s credentials?": "\u4f60\u60f3\u8981\u4f7f\u7528\u4f60\u7684%(providerName)s \u8cc7\u683c\u767b\u5165\u55ce\uff1f",
"Year of Birth": "\u51fa\u751f\u5e74\u4efd",
"Yes, allow edits to the active Certificate": "\u662f\u7684\uff0c\u5141\u8a31\u7de8\u8f2f\u6b64\u8b49\u66f8\u3002",
- "Yesterday": "Yesterday",
"You already belong to another team.": "\u4f60\u5df2\u7d93\u5c6c\u65bc\u53e6\u4e00\u500b\u5718\u968a\u3002",
"You are a member of this team.": "\u60a8\u73fe\u5728\u662f\u9019\u500b\u5718\u968a\u7684\u4e00\u54e1\u4e86\u3002",
"You are currently sharing a limited profile.": "\u60a8\u76ee\u524d\u5206\u4eab\u9650\u5b9a\u7684\u500b\u4eba\u6a94\u6848\u3002",
@@ -883,9 +859,6 @@
"You have not created any certificates yet.": "\u60a8\u5c1a\u672a\u5275\u5efa\u4efb\u4f55\u8b49\u66f8\u3002",
"You have not created any content groups yet.": "\u60a8\u5c1a\u672a\u5275\u5efa\u4efb\u4f55\u5167\u5bb9\u7fa4\u7d44\u3002",
"You have not created any group configurations yet.": "\u60a8\u5c1a\u672a\u5275\u5efa\u4efb\u4f55\u4e00\u500b\u7fa4\u7d44\u8a2d\u5b9a\u3002",
- "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.": "You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.",
- "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.": "You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.",
- "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.": "You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.",
"You must enter a valid email address in order to add a new team member": "\u60a8\u5fc5\u9808\u8f38\u5165\u4e00\u500b\u6709\u6548\u7684\u96fb\u5b50\u90f5\u4ef6\u5730\u5740\u4f86\u65b0\u589e\u4e00\u4f4d\u65b0\u7684\u5718\u968a\u6210\u54e1\u3002",
"You must provide a learner name.": "\u4f60\u5fc5\u9808\u63d0\u4f9b\u4e00\u500b\u5b78\u7fd2\u8005\u5168\u540d",
"You must sign out and sign back in before your language changes take effect.": "\u5728\u60a8\u7684\u8a9e\u8a00\u66f4\u6539\u751f\u6548\u524d\uff0c\u60a8\u5fc5\u9808\u767b\u51fa\u518d\u91cd\u65b0\u767b\u5165\u3002",
diff --git a/cms/static/js/index.js b/cms/static/js/index.js
index 70def59cad..58f230e6f2 100644
--- a/cms/static/js/index.js
+++ b/cms/static/js/index.js
@@ -61,8 +61,9 @@ define(['domReady', 'jquery', 'underscore', 'js/utils/cancel_on_escape', 'js/vie
analytics.track('Created a Course', course_info);
CreateCourseUtils.create(course_info, function(errorMessage) {
+ var msg = edx.HtmlUtils.joinHtml(edx.HtmlUtils.HTML('
${_('The page that you were looking for was not found.')}
- ${Text(_('Go back to the {homepage} or let us know about any pages that may have been moved at {email}.')).format(
+ ${Text(_('Go back to the {homepage}.')).format(
homepage=HTML('homepage'),
- email=HTML('{address}').format(
- address=Text(settings.TECH_SUPPORT_EMAIL)
- )
)}
diff --git a/cms/templates/500.html b/cms/templates/500.html
index bdebc79c13..ea99d6d036 100644
--- a/cms/templates/500.html
+++ b/cms/templates/500.html
@@ -29,10 +29,6 @@ ${Text(_("{studio_name} Server Error")).format(
studio_name=Text(settings.STUDIO_SHORT_NAME),
)}
${_("We've logged the error and our staff is currently working to resolve this error as soon as possible.")}
- ${Text(_(u'If the problem persists, please email us at {email_link}.')).format(
- email_link=HTML(u'{email_address}').format(
- email_address=Text(settings.TECH_SUPPORT_EMAIL),
- )
)}
${_("The Page You Requested Page Cannot be Found")}
-
${Text(_("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.")).format(
- studio_name=settings.STUDIO_SHORT_NAME,
- link_start=HTML(help_link_start),
- link_end=HTML(help_link_end),
+
${Text(_("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.")).format(
+ studio_name=settings.STUDIO_SHORT_NAME
)}
% elif error == '500':
${_("The Server Encountered an Error")}
-
${Text(_("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.")).format(
+
${Text(_("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.")).format(
studio_name=settings.STUDIO_SHORT_NAME,
- link_start=HTML(help_link_start),
- link_end=HTML(help_link_end),
)}
% endif
${_("Back to dashboard")}
diff --git a/cms/templates/js/previous-video-upload.underscore b/cms/templates/js/previous-video-upload.underscore
index 4ab630d5fd..a4cd993235 100644
--- a/cms/templates/js/previous-video-upload.underscore
+++ b/cms/templates/js/previous-video-upload.underscore
@@ -6,7 +6,7 @@
+ <% if (specialExamLockedIn && !isSpecialExam) { %>
+
+
+
+ <%- gettext("This subsection was released to learners as a special exam, but was reverted back to a basic exam. You may not configure it as a special exam now. Contact edX Support for assistance.") %>
+
+ <%- gettext("This special exam has been released to learners. You may not convert it to another type of special exam. You may revert this subsection back to being a basic exam by selecting 'None', but you will NOT be able to configure it as a special exam in the future.") %>
+
+
+ <% } %>
<%- gettext('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.') %>
- <% if (enable_proctored_exam) { %>
+ <% if (enableProctoredExams) { %>
<%- gettext('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.') %>
-
+
<% var supports_onboarding = xblockInfo.get('supports_onboarding'); %>
<% if (supports_onboarding) { %>
<%- gettext("Use Onboarding to introduce learners to proctoring, verify their identity, and create an onboarding profile. Learners must complete the onboarding profile step prior to taking a proctored exam. Profile reviews take 2+ business days.") %>
<% } else { %>
<%- gettext("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.") %>
diff --git a/cms/templates/js/video-status.underscore b/cms/templates/js/video-status.underscore
new file mode 100644
index 0000000000..e2a24faf1d
--- /dev/null
+++ b/cms/templates/js/video-status.underscore
@@ -0,0 +1,5 @@
+<%- status %>
+<% if (show_error && error_description) { %>
+
+ <%- error_description %>
+<% }%>
diff --git a/cms/templates/js/video-transcripts.underscore b/cms/templates/js/video-transcripts.underscore
index 408deba307..290291db49 100644
--- a/cms/templates/js/video-transcripts.underscore
+++ b/cms/templates/js/video-transcripts.underscore
@@ -1,4 +1,14 @@